/**********************************
    GLOBAL BASE STYLES
***********************************/
body {
    padding-top: 90px;
    font-family: 'Roboto', sans-serif;
}

p {
    font-size: 18px;
    margin: 15px 0;
}

strong,
.choose-box p {
    color: #000000ba;
}

/* Scrollbar Styles */
body::-webkit-scrollbar {
    width: 5px;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 5px;
    transition: background 0.3s;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-dark);
}

body::-webkit-scrollbar-track {
    background: var(--section-bg);
    border-radius: 5px;
}

/**********************************
    COLOR VARIABLES
***********************************/
:root {
    --primary: #CCB37C;
    --primary-dark: #795607;
    --heading-blue: #234692;
    --section-bg: rgb(250 249 245);
    --white: #fff;
    --dark-blue: #1C366A;
}

/**********************************
    HEADER + NAVBAR
***********************************/
.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
}

.btn-bg-color {
    background-color: var(--primary);
    color: var(--white);
}

.btn-bg-color:hover {
    background-color: var(--primary-dark) !important;
    color: var(--white) !important;
}

/**********************************
    DROPDOWN MENU
***********************************/
.dropdown-menu .dropdown-item {
    transition: 0.2s ease-in-out;
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--primary-dark) !important;
    color: var(--white) !important;
}

/**********************************
    SECTION SPACING
***********************************/
.about-section,
.current-project,
.amenities-section,
.why-choose-section,
.infrastructure-blog-section,
.customer-testimonial,
.youtube-section,
.previous-projects,
.previous-projects-to,
.consultation-section,
.mission-vision-section,
.who-we-are-section,
.careers-details,
.project-section {
    padding: 60px 0;
}

.about-section {
    background-color: var(--dark-blue);
}

.amenities-section {
    background-color: var(--section-bg);
}

.about-section .first-about-count {
    border: 1px solid var(--primary) !important;
}

/**********************************
    HEADING DESIGN (DOUBLE LINE)
***********************************/
.first-heading-sec h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary) !important;
}

.first-heading-sec-to h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--heading-blue);
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

/* Double Line */
.first-heading-sec-to h2::before,
.first-heading-sec-to h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    background-color: var(--heading-blue);
    border-radius: 4px;
}

/* Upper line */
.first-heading-sec-to h2::before {
    width: 200px;
    bottom: 6px;
}

/* Lower line */
.first-heading-sec-to h2::after {
    width: 130px;
    bottom: 0;
}

/**********************************
    BANNER / SLIDER
***********************************/
.banner-img {
    width: 100%;
    height: 65vh;
    object-fit: cover;
}

.banner-title {
    font-size: 52px;
}

/**********************************
    PROJECT CARD
***********************************/
.project-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

/* Badge */
.badge-custom {
    position: absolute;
    top: 10px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    background: #000000b0;
    color: var(--white);
}

.badge-left {
    left: 10px;
}

.badge-right {
    right: 10px;
}

/**********************************
    AMENITIES BOX
***********************************/
.amenity-box {
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 12px;
    transition: 0.3s ease-in-out;
}

.amenity-box:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.amenity-icon {
    font-size: 35px;
    color: var(--primary);
    transition: 0.3s ease-in-out;
}

.amenity-box:hover .amenity-icon {
    color: var(--white);
}

.amenity-box:hover h5,
.amenity-box:hover p {
    color: var(--white);
}

/**********************************
    WHY CHOOSE US (No Hover)
***********************************/
.choose-box {
    background: var(--white);
    border: 2px solid var(--primary);
    padding: 30px;
    height: 100%;
    transition: none !important;
}

.choose-icon,
.user-icon {
    font-size: 45px;
    color: var(--primary);
}

.choose-box h5 {
    color: var(--dark-blue);
}

/**********************************
    BLOG CARD
***********************************/
.infra-blog-card {
    border-radius: 12px;
    background: var(--dark-blue);
    overflow: hidden;
}

.infra-blog-img {
    height: 220px;
    object-fit: cover;
}

.infra-title {
    color: var(--primary);
}

/**********************************
    CUSTOMER TESTIMONIAL
***********************************/
.customer-testimonial {
    background-color: var(--section-bg);
}

.testimonial-box {
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 12px;
    min-height: 250px;
}

.testimonial-box h5 {
    color: var(--heading-blue);
}

.testimonial-box p {
    font-size: 16px;
    height: 100px;
    overflow: auto;
    padding-right: 5px;
}

.testimonial-box p::-webkit-scrollbar {
    width: 4px;
}

.testimonial-box p::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 4px;
    transition: background 0.3s;
}

.testimonial-box p::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-dark);
}

.testimonial-box p::-webkit-scrollbar-track {
    background: var(--section-bg);
    border-radius: 4px;
}

/**********************************
    PREVIOUS PROJECTS
***********************************/
.previous-projects {
    background-color: var(--section-bg);
}

.previous-projects .first-heading-sec-to h2 {
    color: #234692;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.previous-projects .first-heading-sec-to h2::before {
    width: 200px;
    bottom: 6px;
}

.previous-projects .first-heading-sec-to h2::after {
    width: 130px;
    bottom: 0;
}

/* Project Box */
.previous-projects .project-box {
    /* border: 2px solid var(--primary); */
    /* border-radius: 12px; */
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.previous-projects .project-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.previous-projects .project-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.previous-projects .project-box:hover .project-img {
    transform: scale(1.1);
}

/* Text Overlay */
.previous-projects .project-text {
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--white);
}

.previous-projects .project-text h5,
.previous-projects .project-text p {
    margin: 0;
}

/****************************************
        Consultation Section
***************************************/

/* Default common style */
.input-group .input-group-text {
    color: var(--primary) !important;
}

.input-group .input-group-text,
.input-group .form-control,
.input-group .form-select {
    border: 2px solid var(--primary) !important;
    transition: all 0.3s ease;
}

/* Hover – icon + input/select both */
.input-group:hover .input-group-text,
.input-group:hover .form-control,
.input-group:hover .form-select {
    border-color: var(--primary-dark) !important;
}

/* Focus – whole group effect */
.input-group:focus-within .input-group-text,
.input-group:focus-within .form-control,
.input-group:focus-within .form-select {
    border-color: var(--primary-dark) !important;
    box-shadow: none;
    z-index: 5;
}

/****************************************
        Project-box-to
***************************************/

.previous-projects-to {
    background-color: var(--section-bg);
}

.project-box-to {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    transition: 0.3s ease;
    height: 100%;
}

/* Overlay */
.project-box-to::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 12px;
}

/* Content above overlay */
.project-box-to * {
    position: relative;
    z-index: 2;
}

/* Icon */
.project-icon {
    font-size: 30px;
    color: var(--primary);
}

/* Titles + text */
.project-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.project-desc {
    font-size: 14px;
    opacity: 0.9;
}

/* Hover */
.project-box-to:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/**********************************************
        Footer css 
***************************************/

.footer-sec {
    background-color: var(--dark-blue);
    /* Dark Blue */
}

.footer-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    /* Primary Gold */
}

.footer-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary) !important;
    padding-left: 2px;
}

/******************************************************************************************** About page css ****************************************************************/

/* Banner (About + Careers both use same structure) */
.about-banner,
.careers-banner,
.contact-banner,
.project-banner {
    height: 55vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.about-banner .banner-image,
.careers-banner .careers-banner-img,
.contact-banner .contact-banner-img,
.project-banner .project-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay — common */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Centered text (Both banners) */
.about-banner-text,
.careers-banner-text,
.contact-banner-text,
.project-banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Heading style (shared) */
.about-banner-text h1,
.careers-banner-text h1,
.contact-banner-text h1,
.project-banner-text h1 {
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* ============================
      OUR LEADER (THEME COLORS)
============================ */
.leader-section {
    padding: 60px 0;
    background: var(--section-bg);
    /* Light theme background */
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-blue);
    /* Heading Blue */
    margin-bottom: 10px;
}

/* Title line color: primary gold */
.title-line {
    width: 70px;
    height: 3px;
    margin: 0 auto 40px;
    background: var(--primary);
}

/* Leader Box */
.leader-box {
    background: var(--white);
    border: 2px solid var(--primary);
    /* primary border */
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all .3s ease;
}

.leader-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-dark);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
}

/* Leader Image */
.leader-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Name */
.leader-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-blue);
    /* theme blue */
    margin-bottom: 10px;
}

/* Bio text */
.leader-box p {
    font-size: 15px;
    color: #555;
}

/**********************************
    WHY CHOOSE US - THEME STYLED
***********************************/
.chooseus-box {
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 12px;
    height: 100%;
    transition: 0.3s ease-in-out;
    color: #555;
    /* default text color */
    text-align: center;
    padding: 30px 20px;
}

.chooseus-box:hover {
    background: var(--primary);
    border-color: var(--primary-dark);
    transform: translateY(-5px);
    color: var(--white);
}

/* Icons */
.chooseus-icon i,
.chooseus-icon svg {
    font-size: 40px;
    color: var(--primary);
    transition: 0.3s ease-in-out;
}

.chooseus-box:hover .chooseus-icon i,
.chooseus-box:hover .chooseus-icon svg {
    color: var(--white);
}

/* Titles */
.chooseus-box h5 {
    font-weight: 700;
    color: var(--heading-blue);
    /* theme heading blue */
    margin-bottom: 10px;
    transition: color 0.3s;
}

.chooseus-box:hover h5 {
    color: var(--white);
}

/* Text */
.chooseus-box p {
    font-size: 15px;
    color: #555;
    transition: color 0.3s;
}

.chooseus-box:hover p {
    color: var(--white);
}


/* Mission & Vision Section */
.mission-vision-section {
    background-color: var(--section-bg);
}

/* Mission & Vision Boxes */
.mv-box {
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 12px;
    color: #555;
}

/* Icons */
.mv-box .chooseus-icon i,
.mv-box .chooseus-icon svg {
    font-size: 40px;
    color: var(--primary);
    transition: 0.3s ease-in-out;
}

/* Titles */
.mv-box h4.card-title {
    color: var(--heading-blue);
    font-weight: 700;
    margin-bottom: 10px;
    transition: color 0.3s;
}

/* Text */
.mv-box p.card-text {
    color: #555;
    transition: color 0.3s;
}


/******************************************************************************* carrers page css ********************************************/

.careers-details {
    background-color: var(--section-bg);
}

.carrers-form {
    border: 2px solid var(--primary);
    border-radius: 12px;
}

/* Default input look */
.form-control,
.form-select {
    border: 2px solid var(--primary) !important;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

/* Hover */
.form-control:hover,
.form-select:hover {
    border-color: var(--primary-dark) !important;
}

/* Focus */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-dark) !important;
    box-shadow: 0 0 0 0.15rem rgba(0, 0, 0, 0.05) !important;
}


/*********************************************************************** Project page css **********************************************/

.project-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}
/*********************************************************************** Project Details page css **********************************************/
/* Breadcrumb */
.breadcrumb {
    font-size: 14px;
}

.breadcrumb-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #999;
    padding: 0 8px;
}

.first-prodect-5 img {
    background: #f8f8f8;
    padding: 6px;
    border-radius: 8px;
}


/* Project Social Icons */
.project-social .social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: 0.3s ease;
    text-decoration: none;
    font-size: 14px;
}

.project-social .social-icon:hover {
    background-color: var(--primary);
    color: var(--white);
}

.first-heading-sec h3{
    color: var(--heading-blue);
    font-weight: 600;
}

/* Project Detail Info Boxes */
.project-info-box {
    background: var(--white);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 14px 16px;
    gap: 14px;
    height: 100%;
}

/* Icons */
.project-info-box .info-icon {
    font-size: 22px;
    color: var(--primary);
    min-width: 28px;
}


