    /* RESET & BASICS */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html { 
    scroll-behavior: smooth; 
}
body { 
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; 
    background-color: #fcfcfc; 
    color: #1a1a1a; 
}
a {
    text-decoration: none;
    color: inherit;
}

/* REUSABLE CLASSES */
.max-w-7xl { max-width: 80rem; margin-left: auto; margin-right: auto; }
.transition { transition: all 0.2s ease-in-out; }
.uppercase { text-transform: uppercase; }
.border-r { border-right: 1px solid rgba(115, 115, 115, 0.7); }
.border-b { border-bottom: 1px solid rgba(115, 115, 115, 0.7); }
.group:hover .faq-q, .group:hover .faq-plus { color: #000000; }

/* HEADER & HERO */
.site-header {
    position: relative;
    min-height: auto;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 10.5rem 1.5rem 7rem 1.5rem;
    background-image: linear-gradient(rgb(0 0 0 / 17%), rgb(0 0 0 / 17%)), url('../image/about-us-img/about-us-banner.webp');
    padding-bottom: 80px;
}
@media (min-width: 768px) { .site-header { padding-left: 4rem; padding-right: 4rem; } }

.nav-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
    padding-bottom: 1rem;
}
.logo { font-size: 1.25rem; font-weight: 700; tracking-key: 0.1em; text-transform: uppercase; letter-spacing: 0.1em; }
.nav-links { display: none; gap: 2rem; font-size: 0.875rem; font-weight: 500; color: #e5e5e5; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a:hover { color: #ffffff; transition: all 0.2s; }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.phone-link { font-size: 0.875rem; font-weight: 500; color: #e5e5e5; display: none; }
@media (min-width: 640px) { .phone-link { display: inline; } }
.phone-link:hover { color: #ffffff; }
.btn-request { border: 1px solid #ffffff; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.5rem 1rem; transition: all 0.2s; border-radius: 0.25rem; }
.btn-request:hover { background-color: #ffffff; color: #000000; }

.header-hero {
    max-width: 80rem;
    margin: 6rem auto 0 auto;
    display: grid;
    gap: 2rem;
    align-items: flex-end;
}
@media (min-width: 768px) { .header-hero { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.breadcrumbs { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: #d4d4d4; }
.main-title { font-size: 3rem; font-weight: 300; letter-spacing: -0.025em; margin-top: 1rem; text-transform: uppercase; }
@media (min-width: 768px) { .main-title { font-size: 6rem; } }
.hero-card { background-color: rgba(0, 0, 0, 0.2); backdrop-filter: blur(4px); padding: 1.5rem; border-radius: 0.5rem; border: 1px solid rgba(255, 255, 255, 0.1); }
@media (min-width: 768px) { .hero-card { max-width: 100%; } }
.card-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.card-text {font-size: 14px;
    color: #e5e5e5;
    line-height: 25px;
    letter-spacing: 1px;
 }

/* WHAT WE OFFER */
.offers-section { padding: 6rem 1rem; background-color: #f9f2f1; width: 100%; }
@media (min-width: 768px) { .offers-section { padding-left: 1.5rem; padding-right: 1.5rem; } }
.section-title { font-size: 3rem; font-weight: 700; margin-bottom: 4rem; color: #262626; letter-spacing: -0.025em; }
@media (min-width: 768px) { .section-title { font-size: 3.75rem; } }
.offers-grid { display: grid; border: 1px solid #d4d4d4; width: 100%; }
@media (min-width: 768px) { .offers-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.offer-card { padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; min-height: 340px; }
.card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.offer-heading { font-size: 22px; font-weight: 400; line-height: 1.25; color: #262626; }
.h-w-220 { max-width: 220px; }
.h-w-240 { max-width: 240px; }
.h-w-200 { max-width: 200px; }
.card-num { font-size: 0.75rem; color: #a3a3a3; font-weight: 500; }
.offer-desc { font-size: 14px; color: #737373; font-weight: 300; line-height: 1.625; }
.card-footer { margin-top: 1.5rem; display: flex; align-items: center; }
.icon-circle { width: 2.75rem; height: 2.75rem; border-radius: 9999px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; }
.icon-circle.text-light { border: 1px solid #e5e5e5; color: #a3a3a3; }
.icon-circle.text-dark { border: 1px solid #404040; color: #a3a3a3; }
.offer-img-box { overflow: hidden; height: 340px; }
.team-img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(110%) brightness(105%); }

/* ABOUT US (TEAM) */
.about-section { padding: 5rem 1.5rem; background-color: #f9f9f9; }
@media (min-width: 768px) { .about-section { padding-left: 4rem; padding-right: 4rem; } }
.about-container { max-width: 80rem; margin: 0 auto; display: grid; gap: 3rem; }
@media (min-width: 768px) { .about-container { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.small-tag { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: #9a9a9a; display: block; margin-bottom: 1rem; }
.about-heading { font-size: 1.875rem; font-weight: 300; line-height: 1.25; color: #111827; }
@media (min-width: 768px) { .about-heading { font-size: 2.25rem; } }
.about-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .about-grid { grid-column: span 2 / span 2; } }
@media (min-width: 640px) { .about-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.team-member { display: flex; flex-direction: column; }
.member-img-box { background-color: #e5e7eb; aspect-ratio: 3/4; margin-bottom: 1rem; overflow: hidden; border-radius: 0.25rem; }
.member-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.team-member:hover .member-img { transform: scale(1.05); }
.member-name { font-weight: 500; font-size: 1.125rem; color: #111827; }
.member-role { font-size: 0.75rem; color: #9a9a9a; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.member-email { font-size: 0.75rem; color: #6b7280; }
.member-email:hover { text-decoration: underline; }

/* MISSION AND VALUES (MATCHES IMAGE 1) */
.mission-section { background-color: #fcfbfa; padding: 1rem 4rem 3rem; width: 100%; border-top: 1px solid #e5e7eb; }

@media (min-width: 768px) { .mission-section { padding-left: 4rem; padding-right: 4rem; } }
.mission-container { max-width: 80rem; margin: 0 auto; display: grid; gap: 3rem; align-items: start; }
@media (min-width: 768px) { .mission-container { grid-template-columns: repeat(12, minmax(0, 1fr)); } }
.mission-left { flex-direction: column; display: flex; gap: 1.5rem; }
@media (min-width: 768px) { .mission-left { grid-column: span 5 / span 5; } }
.mission-tag { font-size: 40px; font-weight: 600; color: #0f0e0e; display: block; margin-top: 0.5rem; }
.mission-img-wrap { width: 100%; }
.mission-img { width:100%;height:auto;display:block;border-radius:10px  }
.mission-right { display: flex; flex-direction: column; justify-content: space-between; padding-top: 11px; }
@media (min-width: 768px) { .mission-right { grid-column: span 7 / span 7; min-height: 520px; padding-top: 2px; } }
.mission-text-stack { display: flex; flex-direction: column; gap: 2rem; padding-top:160px }
.mission-main-title { font-size: 34px; font-weight: 400; color: #262626; line-height: 1.2; letter-spacing: -0.025em; }
@media (min-width: 768px) { .mission-main-title { font-size: 38px; } }
.mission-p-dark { font-size: 15px; color: #404040; font-weight: 400; line-height: 1.625; max-width: 36rem; }
.mission-p-muted { font-size: 13px; color: #a3a3a3; font-weight: 400; line-height: 1.625; max-width: 36rem; }
.mission-logo-container { padding-top: 2rem; align-self: flex-start; }

/* CAREERS */
.careers-section { padding: 150px 150px; background-color: #1e1e1e; color: #ffffff;  }
.hero-line{ margin-bottom: 100px ;}
@media (min-width: 768px) { .careers-section { padding-left: 4rem; padding-right: 4rem; } }
.careers-container { max-width: 1400px;width: 100%; margin-top: 40px; display: grid; gap: 60px; }
@media (min-width: 768px) { .careers-container { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.careers-title { font-size: 3rem; font-weight: 300; letter-spacing: -0.025em; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .careers-title { font-size: 3rem; } }
.careers-subtitle { font-size: 0.875rem; letter-spacing: 0.05em; text-transform: uppercase; color: #a3a3a3; margin-bottom: 2rem; }
.vacancies-list { border-top: 1px solid #404040; border-bottom: 1px solid #404040; display: flex; flex-direction: column; }
.vacancy-row { padding: 1rem 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.vacancy-row:hover { color: #d4d4d4; }
.vacancy-name { font-size: 1.125rem; font-weight: 500; }
.plus-icon { font-size: 1.25rem; }
.careers-info { display: flex; flex-direction: column; justify-content: space-between; border-left: 1px solid #404040; padding-left: 50px; }
.small-tag.text-gray { color: #a3a3a3; }
.info-heading { font-size: 1.25rem; font-weight: 500; margin-bottom: 1rem; }
.info-desc { font-size: 0.875rem; color: #a3a3a3; line-height: 1.625; margin-bottom: 1.5rem; }
.link-white { color: #ffffff; text-decoration: underline; }
.info-footer { font-size: 0.75rem; color: #6b7280; }
.btn-submit { margin-top: 2rem; border: 1px solid #ffffff; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.75rem 1.5rem; align-self: flex-start; background: transparent; color: #ffffff; cursor: pointer; transition: all 0.2s; border-radius: 0.25rem; }
.btn-submit:hover { background-color: #ffffff; color: #000000; }

/* FAQ SECTION
.faq-section { 
    padding: 80px 4rem; 
    width: 100%;
    box-sizing: border-box;
}

.faq-container { 
    max-width: 1400px; 
    margin: auto; 
    display: grid; 
    grid-template-columns: 30% 70%; 
    gap: 60px;

}

.faq-title { 
    font-size: 58px; 
    font-weight: 500; 
    line-height: 1; 
    margin: 0;
}

.faq-list { 
    border-top: 1px solid #e5e7eb; 
    display: flex; 
    flex-direction: column; 
}

.faq-row { 
    border-bottom: 1px solid #e5e7eb; 
    padding: 1.5rem 0;
    transition: background-color 0.3s ease;
}

.faq-header {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    cursor: pointer; 

}

.faq-q { 
    font-size: 1.5rem; 
    font-weight: 500; 
    color: #1f2937; 
    margin: 0;
}

.faq-plus { 
    color: #111827; 
    font-size: 1.5rem;
    font-weight: 300;
    user-select: none;
}


.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-top: 1rem;
    margin-bottom: 0;
    max-width: 90%;
}


.faq-row.active .faq-answer {
    max-height: 200px; 
} */

        /* Base Styling to match image layout */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f9f9f9;
            color: #333;
            margin: 0;
            /* padding: 50px 20px; */
        }

        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            gap: 60px;
            padding: 60px 20px 80px;
        }

        /* Left FAQ Heading Title */
        .faq-title {
            font-size: 52px;
            font-weight: 600;
            color: #111;
            width: 20%;
            margin-top: 0;
          
        }

        /* Right FAQ Accordion Section */
        .faq-questions {
            width: 80%;
        }

        .faq-item {
            border-bottom: 1px solid #e0e0e0;
            padding: 20px 0;
        }

        /* Question Styling with Flexbox for the Icon */
        .faq-question {
            font-size: 20px;
            color: #2c3e50;
            cursor: pointer;
            margin: 0;
            user-select: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s ease;
        }

        .faq-question:hover {
            color: #000;
        }

        /* Dynamic + Icon at the end of the line */
        .faq-question::after {
            content: '+';
            font-size: 24px;
            font-weight: 300;
            color: #888;
            transition: transform 0.3s ease;
            padding-left: 20px;
        }

        /* Changes + to - when active */
        .faq-item.active .faq-question::after {
            content: '−';
            color: #000;
        }

        /* Answer Styling - Hidden by default */
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease;
            color: #666;
            font-size: 16px;
            line-height: 1.6;
        }

        /* Active State when clicked */
        .faq-item.active .faq-answer {
            max-height: 200px; /* Content ke hisab se automatic height lega */
            padding-top: 15px;
        }
   

@media (max-width: 768px) {
    .faq-section { padding: 40px 1.5rem; }
    .faq-container{flex-direction:column;gap:30px;padding:40px 20px}
}
@media (max-width: 640px) {
    .faq-container{flex-direction:column;gap:20px;padding:30px 16px}
    .faq-title{font-size:28px;width:100%;text-align:left}
    .faq-questions{width:100%}
    .faq-question{font-size:16px}
}
@media (max-width: 768px) {
    .header-hero{margin-top:3rem}
    .main-title{font-size:3rem}
    .hero-card{padding:1rem}
    .card-title{font-size:1rem}
    .card-text{font-size:0.8rem}
}
@media (max-width: 640px) {
    .header-hero{margin-top:2rem;gap:1rem;}
    .main-title{font-size:2rem;margin-top:0.5rem;}
    .site-header{padding:7rem 1rem 5rem 1rem;}
}
@media (max-width: 768px) {
    .offers-section{padding:3rem 1rem}
    .section-title{font-size:2rem;margin-bottom:2rem}
    .offer-card{min-height:auto;padding:1.5rem}
    .offer-heading{font-size:18px}
    .h-w-220,.h-w-240,.h-w-200{max-width:100%}
}
@media (max-width: 640px) {
    .offers-section{padding:2rem 0.5rem}
    .section-title{font-size:1.5rem;margin-bottom:1.5rem}
    .offer-card{padding:1rem}
}
@media (max-width: 768px) {
    .about-section{padding:3rem 1.5rem}
    .about-container{gap:2rem}
    .about-heading{font-size:1.5rem}
    .mission-tag{
         font-size: 30px; font-weight: 600;
    }

 
}
@media (max-width: 640px) {
    .about-section{padding:2rem 1rem}
    .about-heading{font-size:1.25rem}
    .about-grid{grid-template-columns:1fr}
     .mission-tag{
         font-size: 30px; font-weight: 600;
    }
    .mission-text-stack{padding-top:0px}
}
@media (max-width: 768px) {
    .mission-section{padding:2rem 1.5rem}
    .mission-container{gap:2rem}
    .mission-main-title{font-size:28px}
        .mission-text-stack{padding-top:0px}
}
@media (max-width: 640px) {
    .mission-section{padding:1.5rem 1rem}
    .mission-container{gap:1.5rem}
    .mission-main-title{font-size:22px}
    .mission-p-dark{font-size:14px}
    .mission-p-muted{font-size:12px}
}

/* FOOTER */
.site-footer { 
    background-color: #beaa84; 
    border-top: 1px solid #f3f4f6; 
    padding: 4rem 4rem; 
    font-size: 0.75rem; 
    color: #4b5563; /* Darker color for readable text over gold background */
    clear: both;
}

.footer-container { 
    max-width: 1400px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    gap: 2rem; 
}

.footer-left { 
    display: flex; 
    flex-direction: column; 
    gap: 1.2rem; 
}

.footer-logo { 
    font-size: 1.1rem; 
    font-weight: 700; 
    color: #000000; 
    letter-spacing: 0.15em; 
    text-transform: uppercase; 
}

.social-links { 
    display: flex; 
    gap: 1.5rem; 
    font-size: 1.1rem; 
    color: #000000; 
}

.social-links a {
    color: inherit;
    text-decoration: none;
}

.footer-copyright { 
    font-size: 11px; 
    color: #111827; 
    max-width: 28rem; 
    line-height: 1.6; 
    margin: 0;
    padding-top: 0.5rem;
}

.footer-right { 
    text-align: right; 
    display: flex; 
    flex-direction: column; 
    gap: 0.6rem; 
}

.address { color: #000000; font-weight: 400; margin: 0; }
.phone-num { color: #000000; font-weight: 600; font-size: 0.9rem; margin: 0; }
.email-link { color: #000000; text-decoration: none; }
.email-link:hover { text-decoration: underline; }

.footer-legal { 
    display: flex; 
    justify-content: flex-end; 
    gap: 1.5rem; 
    font-size: 11px; 
    color: #111827; 
    padding-top: 2rem; 
}

.footer-legal a { color: inherit; text-decoration: none; }
.footer-legal a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .site-footer { padding: 3rem 1.5rem; }
    .footer-container { flex-direction: column; gap: 3rem; }
    .footer-right { text-align: left; }
    .footer-legal { justify-content: flex-start; }
}

/* Normal link ka color white ya grey hoga */
.nav-link {
    color: #999; 
    text-decoration: none;
}

/* Active (highlighted) link ka color change ho jayega */
.nav-link.active {
    color: #ffffff; /* Isse text white/bright ho jayega */
    font-weight: bold; /* Thoda bold karne ke liye */
    border-bottom: 2px solid #ffffff; /* Agar niche line chahiye toh */
}
.logo img { width: 130px; }