/* ==================== CSS VARIABLES ==================== */
/* Yeh sab brand colors hain jo poore design mein use hote hain */
/* Inhe change karke aasani se theme badal sakte hain */
:root {
    --color-primary: #001D56;        /* Main heading color - deep navy blue */
    --color-primary-light: #21438E;  /* Paragraph text color - lighter navy */
    --color-accent: #F4B026;         /* Accent color - golden yellow for buttons/highlights */
    --color-card: #A9AEBF;           /* Card background / subtle grey tone */
    --color-card-light: rgba(169, 174, 191, 0.15); /* Transparent card shade */
    --color-white: #ffffff;
    --color-off-white: #f8f9fc;      /* Soft white background for sections */
    --color-text: #1a1f36;           /* Dark text for contrast */
    --color-muted: #5b6372;          /* Muted text for descriptions */

    /* Gradient combinations jo brand ke logo se match karte hain */
    --gradient-brand: linear-gradient(135deg, #001D56 0%, #21438E 100%);
    --gradient-accent: linear-gradient(135deg, #F4B026 0%, #f7c85d 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0,29,86,0.04) 0%, rgba(244,176,38,0.06) 100%);

    /* Typography */
    --font-heading: 'Outfit', 'Poppins', sans-serif;
    --font-body: 'Inter', 'Manrope', sans-serif;

    /* Spacing & Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
    --shadow-card: 0 15px 35px rgba(0,29,86,0.08);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
}

/* ==================== RESET & BASE STYLES ==================== */
/* Basic reset - har element ki margin/padding khatam, box-sizing set */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Smooth anchor scrolling poore page mein */
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden; /* Horizontal scroll ko rokne ke liye */
    -webkit-font-smoothing: antialiased;
}

/* ==================== TYPOGRAPHY HELPERS ==================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.3;
}

p {
    color: var(--color-primary-light);
}

/* Highlight text for accent color */
.text-highlight {
    color: var(--color-accent);
    position: relative;
}

/* ==================== SECTION TAG ==================== */
/* Small tag jo section ke upar aata hai jaise "Who We Are" */
.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    background: rgba(244, 176, 38, 0.1);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
    backdrop-filter: blur(4px);
}

.section-tag--center {
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
    width: fit-content;
}

.section-tag--hero {
    background: rgba(255,255,255,0.7);
    color: var(--color-primary);
}

/* ==================== BUTTONS ==================== */
/* Dono types ke buttons - primary aur outline */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-smooth);
    cursor: pointer;
    border: none;
    white-space: nowrap;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gradient-brand);
    color: white;
    box-shadow: 0 8px 25px rgba(0,29,86,0.25);
}
.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(0,29,86,0.35);
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn--outline:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

/* ==================== NAVBAR ==================== */
/* Thick premium navbar with increased height */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,29,86,0.05);
    transition: box-shadow var(--transition-smooth), background var(--transition-smooth);
    padding: 12px 0;
}

.navbar--scrolled {
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.95);
}

.navbar__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.navbar__logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar__logo-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

.navbar__logo-text {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--color-primary);
    letter-spacing: -0.2px;
    line-height: 1.2;
}

.navbar__logo-text--bold {
    font-weight: 800;
    color: var(--color-accent);
}

/* Nav Links */
.navbar__links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.navbar__link {
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
    padding: 10px 20px;
    border-radius: 30px;
    transition: all var(--transition-smooth);
    position: relative;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform var(--transition-smooth);
}

.navbar__link:hover,
.navbar__link.active {
    color: var(--color-primary);
    background: rgba(244,176,38,0.08);
}

.navbar__link:hover::after,
.navbar__link.active::after {
    transform: scaleX(1);
}

.navbar__link--cta {
    background: var(--gradient-brand);
    color: white !important;
    padding: 10px 24px;
    margin-left: 8px;
}
.navbar__link--cta:hover {
    box-shadow: 0 8px 20px rgba(0,29,86,0.3);
    background: var(--gradient-brand);
    color: white;
}
.navbar__link--cta::after {
    display: none;
}

/* Hamburger */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.navbar__hamburger-line {
    width: 26px;
    height: 2.5px;
    background: var(--color-primary);
    border-radius: 4px;
    transition: all 0.3s;
}

/* Hamburger active state */
.navbar__hamburger.active .navbar__hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.navbar__hamburger.active .navbar__hamburger-line:nth-child(2) {
    opacity: 0;
}
.navbar__hamburger.active .navbar__hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== MOBILE NAVIGATION ==================== */

.navbar__nav{
    display: flex;
}

@media (max-width: 968px){

    /* Hamburger show */
    .navbar__hamburger{
        display: flex;
        z-index: 1001;
    }

    /* ==================== FIXED MOBILE SIDEBAR ==================== */

    .navbar__nav{

        position: fixed;

        top: 0;
        right: -100%;

        width: 75%;
        max-width: 350px;
        height: 100dvh;

        background: rgba(255,255,255,0.98);

        flex-direction: column;
        justify-content: center;

        padding: 40px;

        box-shadow: -20px 0 60px rgba(0,0,0,0.15);

        backdrop-filter: blur(20px);

        z-index: 1000;

        opacity: 0;
        visibility: hidden;

        transition:
        right 0.4s cubic-bezier(0.4,0,0.2,1),
        opacity 0.3s ease,
        visibility 0.3s ease;
    }

    /* Menu open state */
    .navbar__nav.active{

        right: 0;

        opacity: 1;
        visibility: visible;
    }

    /* Nav links */
    .navbar__links{
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .navbar__link{
        display: block;
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .navbar__link--cta{
        margin-left: 0;
        text-align: center;
    }

}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(244,176,38,0.04) 100%);
    overflow: hidden;
}

.hero__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Floating decorative shapes */
.hero__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 0;
}
.hero__shape--1 { width: 300px; height: 300px; background: rgba(0,29,86,0.03); top: -50px; right: -50px; }
.hero__shape--2 { width: 200px; height: 200px; background: rgba(244,176,38,0.08); bottom: 10%; left: -5%; }
.hero__shape--3 { width: 150px; height: 150px; background: rgba(33,67,142,0.06); top: 50%; right: 30%; }
.hero__shape--4 { width: 250px; height: 250px; background: rgba(169,174,191,0.05); bottom: -10%; right: -10%; }

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__heading {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    margin: 16px 0 24px;
    color: var(--color-primary);
}

.hero__heading--highlight {
    background: linear-gradient(135deg, var(--color-accent) 0%, #fad069 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: 1.1rem;
    color: var(--color-primary-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Image */
.hero__image-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.hero__image-frame {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4/3;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero__image:hover {
    transform: scale(1.03);
}

.hero__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    background: var(--color-accent);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 100px 0;
    background: var(--color-white);
}

.about__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about__image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.about__image-frame {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4/3.5;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__badge {
    position: absolute;
    bottom: -25px;
    left: 20px;
    background: white;
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(244,176,38,0.2);
}

.about__badge-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--color-primary);
}

.about__badge-text {
    font-size: 0.8rem;
    color: var(--color-muted);
    text-align: center;
    line-height: 1.4;
}

.about__content {
    position: relative;
}

.about__heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin: 12px 0 20px;
    font-weight: 700;
}

.about__description {
    font-size: 1.05rem;
    color: var(--color-primary-light);
    margin-bottom: 18px;
}

.about__mini-stats {
    display: flex;
    gap: 30px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.about__mini-stat {
    display: flex;
    flex-direction: column;
}

.about__mini-stat-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    color: var(--color-accent);
    line-height: 1;
}

.about__mini-stat-label {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-top: 4px;
}

/* ==================== BRANDS SECTION ==================== */
.brands {
    padding: 100px 0;
    background: var(--color-off-white);
}

.brands__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.brands__header {
    text-align: center;
    margin-bottom: 50px;
}

.brands__heading {
    font-size: clamp(2rem, 4vw, 2.7rem);
    margin-bottom: 12px;
}

.brands__subtext {
    color: var(--color-muted);
    font-size: 1.05rem;
}

/* Horizontal scroll wrapper */
.brands__scroll-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-card) transparent;
}

.brands__scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}
.brands__scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--color-card);
    border-radius: 10px;
}

.brands__cards {
    display: flex;
    gap: 28px;
    width: max-content;
    padding: 10px 0;
}

/* Brand card */
.brand-card {
    scroll-snap-align: start;
    flex: 0 0 320px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.03);
}
.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
}

.brand-card__image-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.brand-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.brand-card:hover .brand-card__image {
    transform: scale(1.08);
}

.brand-card__body {
    padding: 24px 22px 28px;
}

.brand-card__name {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.brand-card__desc {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.brand-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}
.brand-card__btn:hover {
    border-bottom-color: var(--color-accent);
}

/* ==================== TEAM SECTION ==================== */
.team {
    padding: 100px 0;
    background: white;
}

.team__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.team__header {
    text-align: center;
    margin-bottom: 50px;
}

.team__heading {
    font-size: clamp(2rem, 4vw, 2.7rem);
    margin-bottom: 12px;
}

.team__subtext {
    color: var(--color-muted);
}

.team__scroll-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-card) transparent;
}

.team__cards {
    display: flex;
    gap: 28px;
    width: max-content;
}

.team-card {
    scroll-snap-align: start;
    flex: 0 0 280px;
    background: white;
    border-radius: 24px;
    padding: 28px 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.04);
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.team-card__image-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 18px;
    border: 3px solid var(--color-accent);
}

.team-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__name {
    font-size: 1.2rem;
    font-weight: 700;
}

.team-card__role {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.team-card__desc {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-bottom: 18px;
}

.team-card__socials {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.team-card__social {
    color: var(--color-primary-light);
    transition: 0.3s;
}
.team-card__social:hover {
    color: var(--color-accent);
}

/* ==================== VISION SECTION ==================== */
.vision {
    padding: 100px 0;
    background: var(--color-off-white);
}

.vision__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.vision__header {
    text-align: center;
    margin-bottom: 60px;
}

.vision__heading {
    font-size: clamp(2rem, 4vw, 2.7rem);
    margin-bottom: 10px;
}

.vision__subtext {
    color: var(--color-muted);
}

/* Vision block alternating */
.vision-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

/* Har doosri row mein image left, content right hota hai */
.vision-block:nth-child(even) .vision-block__image-wrap {
    order: 2;
}
.vision-block:nth-child(even) .vision-block__content {
    order: 1;
}

.vision-block__image-wrap {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.vision-block__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.vision-block__title {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.vision-block__text {
    color: var(--color-primary-light);
    margin-bottom: 12px;
    font-size: 1.02rem;
}

/* Statistics grid */
.vision__stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 28px 18px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    border: 1px solid rgba(244,176,38,0.1);
}
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-brand);
}
.stat-card:hover .stat-card__number,
.stat-card:hover .stat-card__label {
    color: white;
}

.stat-card__number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--color-primary);
    display: block;
}

.stat-card__label {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-top: 6px;
}

/* ==================== CONTACT SECTION ==================== */

.contact{
    padding: 100px 0;
    background: #ffffff;
}

/* Main container */
.contact__container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Left content side */
.contact__heading{
    font-size: 2.5rem;
    margin: 12px 0 20px;
    color: var(--color-primary);
}

.contact__description{
    color: var(--color-primary-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Contact details */
.contact__details{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__detail-item{
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact__detail-icon{
    font-size: 1.4rem;
}

.contact__detail-label{
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.contact__detail-value{
    color: var(--color-primary-light);
    text-decoration: none;
    line-height: 1.6;
}

/* ==================== FORM WRAPPER ==================== */

.contact__form-wrapper{
    background: var(--color-off-white);

    padding: 40px;
    border-radius: 28px;

    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

/* Form group spacing */
.contact__form-group{
    margin-bottom: 22px;
}

/* Labels */
.contact__form-label{
    display: block;

    margin-bottom: 8px;

    font-size: 0.95rem;
    font-weight: 600;

    color: var(--color-primary);
}

/* Inputs */
.contact__form-input{
    width: 100%;

    padding: 15px 18px;

    border: 2px solid rgba(169,174,191,0.25);
    border-radius: 14px;

    background: #ffffff;

    font-size: 0.96rem;
    font-family: var(--font-body);

    transition: all 0.3s ease;

    outline: none;
}

/* Focus effect */
.contact__form-input:focus{
    border-color: var(--color-accent);

    box-shadow: 0 0 0 4px rgba(244,176,38,0.12);
}

/* Textarea */
.contact__form-input--textarea{
    min-height: 140px;
    resize: vertical;
}

/* Submit button */
.contact__form-submit{
    width: 100%;

    margin-top: 10px;
    padding: 16px;

    border: none;
    border-radius: 14px;

    font-size: 1rem;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;
}

/* Hover effect */
.contact__form-submit:hover{
    transform: translateY(-2px);
}

/* ==================== SUCCESS / ERROR MESSAGE ==================== */

#formMessage{
    margin-top: 18px;

    font-size: 0.95rem;
    font-weight: 600;

    padding: 14px 18px;
    border-radius: 12px;

    display: inline-block;
}

/* ==================== MOBILE RESPONSIVE ==================== */

@media (max-width: 992px){

    .contact__container{
        grid-template-columns: 1fr;
        gap: 50px;
    }

}

@media (max-width: 768px){

    .contact{
        padding: 80px 0;
    }

    .contact__container{
        padding: 0 20px;
    }

    .contact__heading{
        font-size: 2rem;
    }

    .contact__form-wrapper{
        padding: 28px;
    }

}

@media (max-width: 480px){

    .contact__heading{
        font-size: 1.8rem;
    }

    .contact__form-wrapper{
        padding: 22px;
        border-radius: 22px;
    }

    .contact__form-input{
        padding: 14px 16px;
    }

}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--color-off-white);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(0,0,0,0.04);
}

.footer__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer__logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.footer__logo-text {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-primary);
}

.footer__links {
    display: flex;
    gap: 30px;
}

.footer__link {
    text-decoration: none;
    color: var(--color-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
}
.footer__link:hover {
    color: var(--color-accent);
}

.footer__divider {
    margin: 24px 0 16px;
    border: 0;
    height: 1px;
    background: rgba(0,0,0,0.06);
}

.footer__copyright {
    text-align: center;
    color: var(--color-muted);
    font-size: 0.9rem;
}

/* ==================== RESPONSIVE MEDIA QUERIES ==================== */
/* Tablet aur mobile ke liye adjustments */
@media (max-width: 1024px) {
    .hero__container,
    .about__container,
    .contact__container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero__image-wrapper,
    .about__image-wrapper {
        order: -1;
    }
    .vision-block {
        grid-template-columns: 1fr;
    }
    .vision-block:nth-child(even) .vision-block__image-wrap {
        order: 0;
    }
    .vision__stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .navbar__container,
    .hero__container,
    .about__container,
    .brands__container,
    .team__container,
    .vision__container,
    .contact__container,
    .footer__container {
        padding: 0 24px;
    }
    .hero__buttons {
        flex-direction: column;
    }
    .footer__top {
        flex-direction: column;
        text-align: center;
    }
    .vision__stats-grid {
        grid-template-columns: 1fr;
    }
}

