@font-face {
  font-family: 'Gayathri';
  src: url('./gayathri/Gayathri-Regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Gayathri';
  src: url('./gayathri/Gayathri-Bold.ttf') format('truetype');
  font-weight: 700;
}
@font-face {
  font-family: 'Gayathri';
  src: url('./gayathri/Gayathri-Thin.ttf') format('truetype');
  font-weight: 200;
}
@font-face {
  font-family: 'Figtree';
  src: url('./Figtree-Font/fonts/ttf/Figtree-Medium.ttf') format('truetype');
  font-weight: 500;
}
@font-face {
  font-family: 'Figtree';
  src: url('./Figtree-Font/fonts/ttf/Figtree-Regular.ttf') format('truetype');
  font-weight: 200;
}

:root {
    --color-bg: #F7EEEC;
    --color-text-primary: #32140C;
    --color-text-muted: #6B6560;
   --color-accent: #ffb16d;
    --color-border: #E0DDD8;

    
    --spacing-xs: clamp(0.5rem, 1vw, 0.75rem);
    --spacing-sm: clamp(1rem, 2vw, 1.5rem);
    --spacing-md: clamp(1.5rem, 3vw, 2.5rem);
    --spacing-lg: clamp(2rem, 4vw, 3.5rem);
    --spacing-xl: clamp(3rem, 6vw, 5rem);
    
    --navbar-height: clamp(60px, 8vh, 80px);
    --hero-min-height: calc(100vh - var(--navbar-height));
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
   
}

body.menu-open {
    overflow: hidden;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #32140C;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
    border-bottom: 1px solid #32140C;
}

.navbar.scrolled {
    box-shadow: 0 1px 0 var(--color-border);
}

.navbar-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2vh;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo a {
    text-decoration: none;
    color: var(--color-text-primary);
}

.logo-text {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 54px;
    width: auto;
    object-fit: contain;
}

.navbar-toggle {
    display: none; /* Controlled by media query usually */
    flex-direction: column;
    gap: 5px; /* Critical for the math below */
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: all 0.3s ease-in-out;
    transform-origin: center; /* Ensures rotation happens from the dead center */
    border-radius: 2px; /* Optional: makes the cross tips look softer */
}

/* ==================== ANIMATION LOGIC ==================== */

/* Top Line: Move down 7px (2px height + 5px gap) then rotate */
.navbar-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

/* Middle Line: Fade out completely */
.navbar-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0); /* Adds a subtle shrink effect */
}

/* Bottom Line: Move up 7px (2px height + 5px gap) then rotate */
.navbar-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);

}

.navbar-links {
    display: flex;
    list-style: none;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
}

.navbar-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: clamp(1.075rem, 1.75vw, 1.2rem);
    font-weight: 500;
    font-family: Figtree;
    transition: color 0.2s ease;
    position: relative;
}

.navbar-links a:hover,
.navbar-links a:focus {
    color: var(--color-accent);
}

.navbar-links a:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
    border-radius: 2px;
}

.navbar-cta {
    padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(1.25rem, 3vw, 1.75rem);
    border: 1.5px solid #F7EEEC;
    border-radius: 50px;
    text-decoration: none;
    color: #F7EEEC;
 font-size: clamp(1.075rem, 1.75vw, 1.2rem);
        font-weight: 500;
    font-family: Figtree;
    font-weight: 500;
    background-color:#32140C;
    white-space: nowrap;
}

.navbar-cta:hover,
.navbar-cta:focus {
    background-color:#F7EEEC;
    color: #32140C;
    border: 1px solid  #32140C;

    transition: 0.25s;
}

.navbar-cta:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* ----------------------------------------
   ACTIVE NAV LINK STYLES
----------------------------------------- */

.navbar-links a[aria-current="page"] {
    color: var(--color-accent);
    font-weight: 500;
}

/* underline indicator */
.navbar-links a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

/* optional smooth underline animation */
.navbar-links a::after {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.navbar-links a[aria-current="page"]::after {
    transform: scaleX(1);
}


/* ==================== HERO SECTION ==================== */
.hero {
    min-height: var(--hero-min-height);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   padding-top: 12vh;
    gap: 6vh;
    margin-bottom: 8vh;
}

.hero-content {
    max-width: 900px;
    max-height: fit-content;
    text-align: center;

}

.hero-heading {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1vh;
    color: var(--color-text-primary);
    font-family: Gayathri;
}

.hero-subheading {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto ;
    font-weight: 500;
    font-family: Figtree;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4vh;
}

.btn {
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.75rem, 4vw, 2.5rem);
    border-radius: 50px;
    text-decoration: none;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    font-weight: 500;
   
    display: inline-block;
    cursor: pointer;
    border: 1.5px solid;
}

.btn:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.btn-primary {
    background-color: var(--color-text-primary);
    color: var(--color-bg);
    border-color: var(--color-text-primary);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 125, 58, 0.25);
 
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-primary);
    border:0.72pX solid #32140C;
        font-weight: 500;
    font-family: Figtree;
}

.btn-secondary:hover {
    background-color: var(--color-text-primary);
    color: var(--color-bg);
    border-color: var(--color-text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 37, 32, 0.15);

}

.btn-secondary:active {
    transform: translateY(0);
}


/* ==================== NAVBAR ==================== */
@media (max-width: 1024px) {
    .navbar-toggle {
        display: flex;
        color: #ffffff;
    }
    .hamburger-line {

        background-color: #ffffff;
    }

    .navbar-menu {
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
      background-color: #32140C;
        flex-direction: column;
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-links {
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 100%;
    }

    .navbar-links li {
        width: 100%;
        text-align: center;
    }

    .navbar-links a {
        display: block;
        padding: var(--spacing-xs) 0;
    }

    .navbar-cta {
        width: 100%;
        text-align: center;
    }

    

}

/* ==================== MOBILE IMAGE LOOP FIX ==================== */
@media (max-width: 768px) {
    .image-loop-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .image-loop-container::-webkit-scrollbar {
        display: none;
    }

 .image-loop {
        transform: none !important;
        animation: none !important;
    }

    .image-item {
        width: 85vw;
        scroll-snap-align: center;
    }

    /* Disable hover scaling on touch devices */
    .image-item:hover {
        transform: none;
    }

    .hero-heading {
    margin-bottom: 1vh;
}



    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        margin-top: 4vh;
    }

    .btn {
        width: 100%;
    }
}

/* ==================== EXTRA SMALL DEVICES ==================== */
@media (max-width: 375px) {
    .hero-content {
        margin-top: 0;
    }

    .image-item {
        width: 90vw;
    }
}



/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .image-loop {
        animation: none !important;
        transform: none !important;
    }

    .image-item {
        transition: none !important;
    }
}

:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

/* ==================== LARGE SCREENS ==================== */
@media (min-width: 1920px) {
    .navbar-container,
    .hero-content {
        max-width: 1600px;
    }
}















.filters {
            background-color: transparent;
            padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.5rem, 4vw, 3rem);
            width: 100%;
        }

        .filters__container {
            max-width: 1440px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .filters__group {
            display: flex;
            flex-wrap: wrap;
            gap: clamp(0.75rem, 1.5vw, 1rem);
            justify-content: center;
            align-items: center;
        }

        /* ==================== FILTER BUTTON ==================== */
        .filter-btn {
            padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.5rem, 3vw, 2rem);
            border-radius: 50px;
font-family: Figtree;
font-weight: 500;
            font-size: clamp(1.075rem, 1.75vw, 1.25rem);

            cursor: pointer;
            transition: all 0.25s ease;
            border: 1.5px solid #32140C;
            background-color: transparent;
            color: #32140C;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
            min-height: 44px;
            -webkit-tap-highlight-color: transparent;
        }

        .filter-btn:hover {
            background-color: #F0EDE8;
            border-color: #D0CCC7;
        }

        .filter-btn:focus-visible {
            outline: 2px solid #D97D3A;
            outline-offset: 3px;
        }

        .filter-btn.active {
            background-color: #32140C;
            border-color: #32140C;
            color: #FAF8F5;
        }

        .filter-btn.active:hover {
            background-color: #32140C;
            border-color: #32140C;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 768px) {
            .filters {
                padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2rem);
            }

            .filters__group {
                gap: clamp(0.625rem, 2vw, 0.875rem);
            }
        }

        @media (max-width: 480px) {
            .filters__group {
                width: 100%;
            }

            .filter-btn {
                flex: 1 1 auto;
                min-width: calc(50% - 0.5rem);
            }
        }

        /* ==================== ACCESSIBILITY ==================== */
        @media (prefers-reduced-motion: reduce) {
            .filter-btn {
                transition: none;
            }
        }












.overview {
    width: 100%;
    padding: clamp(4rem, 8vw, 6rem) 1rem;
    background-color: transparent;
}

.overview__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* ==================== HEADER ==================== */
.overview__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(3rem, 5vw, 4.5rem);
}

.overview__heading {
    font-family: 'Gayathri', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 3.25rem);
    font-weight: 700;
    color: #32140C;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.overview__subheading {
    font-family: 'Figtree', sans-serif;
    font-size: clamp(1.25rem, 2.25vw, 1.25rem);
    color: #32140C;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
}

/* ==================== GRID SYSTEM ==================== */
.overview__cards {
    display: grid;
    /* Default: 3 Columns for Laptop/Desktop */
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
     overflow-x: hidden;
}

/* ==================== CARD COMPONENT ==================== */
.overview-card {
    background-color: #ffffff;
    border: 1px solid #D9C8C3;
    border-radius: 24px;
    /* Spacing logic */
    padding: 2.5rem 2rem;
    /* Flex logic for equal height buttons */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; 
    text-align: center;
    width: 100%; 
    height: 100%; /* Stretches to fill grid cell height */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Specific styling for the middle card */
.overview-card:nth-child(2) {
    background-color: #F7F3E3;
    border-color: #E3DCC8;
}

/* Hover Effects */
.overview-card:hover {
   
    box-shadow: 0 10px 30px rgba(50, 20, 12, 0.08);
    border-color: #32140C;
}

/* Wrapper to group top content together pushes button down */
.overview-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* ==================== CARD ICON ==================== */
.overview-card__icon-wrapper {
    width: 72px;
    height: 72px;
    background-color: #2B1F18;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
     overflow-x: hidden;
}

.overview-card__icon {
    font-size: 2.5rem;
    color: #FAF8F5;
}

/* ==================== CARD TYPOGRAPHY ==================== */
.overview-card__title {
    font-family: 'Gayathri', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #32140C;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.overview-card__description {
    font-family: 'Figtree', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #32140C;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* ==================== CARD BUTTON ==================== */
.overview-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border: 1px solid #32140C;
    border-radius: 100px;
    text-decoration: none;
    color: #32140C;
    font-size: 1.025rem;
                               font-family: Figtree;
            font-weight: 500;
    background-color: transparent;
    transition: all 0.3s ease;
    white-space: normal;
    text-align: center;
    margin-top: auto; /* Safety net to push button to bottom */
}

.overview-card__link:hover {
    background-color: #32140C;
    color: #FAF8F5;
}

.overview-card__link:focus-visible {
    outline: 2px solid #32140C;
    outline-offset: 2px;
}

/* ==================== RESPONSIVE MEDIA QUERIES ==================== */

/* Tablet Portrait & Small Laptops (Between 768px and 1024px) */
@media screen and (max-width: 1024px) {
    .overview__cards {
        /* Switch to 2 columns */
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Make the last card span full width to look balanced in a 2-col grid */
    .overview-card:last-child {
        grid-column: span 2;
        max-width: 600px; /* Prevent it from getting too wide */
        margin: 0 auto; /* Center it */
    }
}

/* Mobile Devices (Under 768px) */
@media screen and (max-width: 768px) {
    .overview {
        padding: 3rem 1rem;
    }

    .overview__cards {
        /* Switch to 1 column */
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Reset the span logic from the tablet view */
    .overview-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .overview-card {
        padding: 2rem 1.5rem;
    }

    .overview__heading {
        font-size: 1.75rem;
    }
}

/* Small Mobile (Under 380px) */
@media screen and (max-width: 380px) {
    .overview-card__title {
        font-size: 1.35rem;
    }
    
    .overview-card__link {
        width: 100%; /* Full width button on very small screens for easier tapping */
        padding: 0.875rem 1rem;
    }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .overview-card, 
    .overview-card__link, 
    .overview-card:hover {
        transition: none;
        transform: none;
    }
}























        .assessments {
            background-color: #F9F4E8;
            padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
            width: 100%;

        }

        .assessments__container {
            max-width: 1440px;
            margin: 0 auto;
        }

        /* ==================== TOP ROW ==================== */
        .assessments__top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: clamp(2rem, 5vw, 4rem);
            margin-bottom: clamp(1rem, 2vw, 2rem);
        }

        .assessments__heading {
            font-size: clamp(1.75rem, 3.5vw, 3.5rem);
            font-weight: 500;
            line-height: 1.15;
            letter-spacing: -0.015em;
            color: #32140C;
            flex: 0 0 auto;
            font-family: Gayathri;
            max-width: 480px;
        }

        .assessments__description {
            font-size: clamp(0.875rem, 1.6vw, 1.20rem);
            line-height: 1.65;
            color: #32140C;
            max-width: 520px;
            flex: 1 1 auto;
                        font-weight: 500;
            font-family: Figtree;
        }

        /* ==================== MAIN LAYOUT ==================== */
        .assessments__main {
            display: grid;
            grid-template-columns: minmax(320px, 420px) 1fr;
            gap: clamp(2rem, 4vw, 4rem);
            align-items: center;

        }

        /* ==================== LEFT COLUMN - BUTTONS ==================== */
        .assessments__buttons {
            display: flex;
            flex-direction: column;
            gap: clamp(0.75rem, 1.5vw, 1rem);
        }

        .assessment-btn {
            display: flex;
            align-items: center;
            gap: clamp(1rem, 2vw, 1.25rem);
            padding: clamp(1rem, 2.5vw, 1.375rem) clamp(1.25rem, 3vw, 1.75rem);
            background-color: #F5F0E3;
            border: 1px solid #DDD3BF;
            border-radius: clamp(14px, 2.5vw, 18px);
            font-size: clamp(0.75rem, 1.65vw, 1.1175rem);
            font-weight: 400;
            color: #32140C;
            cursor: pointer;
            transition: all 0.25s ease;
            text-align: left;
            width: 100%;
           font-family: Figtree;
        }

        .assessment-btn__icon-wrapper {
            width: clamp(44px, 8vw, 52px);
            height: clamp(44px, 8vw, 52px);
            background-color: #32140C;
            border-radius: clamp(10px, 2vw, 12px);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background-color 0.25s ease;
        }

        .assessment-btn__icon {
            font-size: clamp(1.25rem, 2.5vw, 1.5rem);
            color: #FAF8F5;
        }

        .assessment-btn:hover {
            background-color: #EDE6D5;
            border-color: #CFC5AD;
        }

        .assessment-btn:focus-visible {
            outline: 2px solid #32140C;
            outline-offset: 2px;
        }

        .assessment-btn.active {
            background-color: #32140C;
            border-color: #32140C;
            color: #FAF8F5;
        }

        .assessment-btn.active .assessment-btn__icon-wrapper {
            background-color: #ffffff;
        }

                .assessment-btn.active .assessment-btn__icon {
        color: #32140C;
        }

        .assessment-btn.active:hover {
            background-color: #32140C;
            border-color: #32140C;
        }

        /* ==================== RIGHT COLUMN - CONTENT PANEL ==================== */
        .assessments__content {
            background-color: #FFFEFA;
            border: 1px solid #E8E0CF;
            border-radius: clamp(20px, 3vw, 28px);
            padding: clamp(2rem, 4vw, 3rem);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: clamp(1.5rem, 3vw, 2.25rem);
            min-height: 520px;
        }

        .assessments__content-text {
            font-size: clamp(0.9375rem, 1.9vw, 1.0625rem);
            font-family: Figtree;
            font-weight: 500;
            line-height: 1.65;
            color: #32140C;
            max-width: 640px;
            text-align: center;
           
        }

        .assessments__content-image {
            flex: 1;
            border-radius: clamp(16px, 2.5vw, 20px);
            overflow: hidden;
      overflow: hidden;
      height: fit-content;
        }

        .assessments__content-image img {
            width: 100%;
            height: 100%;
     object-fit: cover; /* KEY: Ensures image scales to fill the box without stretching */
    display: block;
        }

        /* ==================== RESPONSIVE ==================== */










            @media (min-width: 1025px) and (max-width: 1280px){
            .assessments__main {
                grid-template-columns: minmax(280px, 380px) 1fr;
                gap: clamp(1.75rem, 3vw, 3rem);
            }

            .assessments__content {
                min-height: 380px;
            }

            
            .assessments__content-image {
        height: 100%;
            }

            
        }
        @media (max-width: 1024px) {
            .assessments__main {
                grid-template-columns: minmax(280px, 380px) 1fr;
                gap: clamp(1.75rem, 3vw, 3rem);
            }

            .assessments__content {
                min-height: 280px;
            }

            
            .assessments__content-image {
        height: 100%;
            }

            
        }

        @media (max-width: 768px) {
            .assessments {
                padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2rem);
            }

            .assessments__top {
                flex-direction: column;
                gap: clamp(1.5rem, 4vw, 2rem);
                margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
            }

            .assessments__heading {
                max-width: 100%;
                font-family: Gayathri;
            }

            .assessments__description {
                max-width: 100%;
            }

            .assessments__main {
                grid-template-columns: 1fr;
                gap: clamp(2rem, 4vw, 2.5rem);
            }

            .assessments__content {
                min-height: 360px;
            }

            .assessments__content-image {
        height: 100%;
        width: 100%;
            }
        }

        @media (max-width: 480px) {
            .assessment-btn {
                gap: clamp(0.875rem, 2.5vw, 1rem);
                padding: clamp(0.875rem, 2.5vw, 1rem) clamp(1rem, 3vw, 1.25rem);
            }

            .assessments__content {
                padding: clamp(1.5rem, 5vw, 2rem);
                min-height: 200px;
            }

        }

        /* ==================== ACCESSIBILITY ==================== */
        @media (prefers-reduced-motion: reduce) {
            .assessment-btn,
            .assessment-btn__icon-wrapper {
                transition: none;
            }
        }

























         .training {
            background-color: #F5EBE8;
            padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3rem);
            width: 100%;
        }

        .training__container {
            max-width: 1440px;
            margin: 0 auto;
        }

        /* ==================== TOP CONTENT ==================== */
        .training__header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
        }

        .training__heading {
            font-size: clamp(2.25rem, 5vw, 4.5rem);
            font-weight: 500;
            line-height: 1.15;
            letter-spacing: -0.015em;
            color: #32140C;
            margin-bottom: clamp(0.5rem, 1.15vw, 1.15rem);
            font-family: Gayathri;
        }

        .training__description {
            font-size: clamp(0.9375rem, 2vw, 1.125rem);
            line-height: 1.65;
            color: #32140C;
            max-width: 820px;
                        font-family: Figtree;
            font-weight: 500;
        }

        /* ==================== FILTER BUTTONS ==================== */
        .training__filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: clamp(0.75rem, 1.5vw, 1rem);
            margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
        }

        .training-filter {
            padding: clamp(0.75rem, 1.8vw, 0.9375rem) clamp(1.5rem, 3vw, 2rem);
            border: 1px solid #32140C;
            border-radius: 50px;
            background-color: transparent;
            color: #32140C;
            font-size: clamp(0.9375rem, 1.75vw, 1.2rem);
            font-weight: 400;
            cursor: pointer;
            transition: all 0.25s ease;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
            white-space: nowrap;
        }

        .training-filter:hover {
            background-color: rgba(90, 78, 71, 0.08);
        }

        .training-filter:focus-visible {
            outline: 2px solid #32140C;
            outline-offset: 2px;
        }

        .training-filter.active {
            background-color: #32140C;
            border-color: #32140C;
            color: #FAF8F5;
        }

        .training-filter.active:hover {
            background-color: #32140C;
        }

        /* ==================== CONTENT AREA ==================== */
        .training__content {
            display: flex;
            flex-direction: column;
            gap: clamp(2.5rem, 5vw, 3.5rem);
        }

        .training__content-description {
            font-size: clamp(0.85rem, 1.75vw, 1.1075rem);
            line-height: 1.65;
            color: #32140C;
            text-align: center;
            max-width: 820px;
            margin: 0 auto;
                        font-family: Figtree;
            font-weight: 500;
        }

        /* ==================== IMAGE + POINTS LAYOUT ==================== */
        .training__main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(2rem, 4vw, 4rem);
            align-items: center;
        }

        /* ==================== IMAGE ==================== */
        .training__image {
            width: 100%;
            border-radius: clamp(20px, 3vw, 28px);
            overflow: hidden;
            aspect-ratio: 4 / 3;
        }

        .training__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ==================== POINTS LIST ==================== */
        .training__points {
            display: flex;
            flex-direction: column;
            gap: clamp(0.875rem, 2vw, 1.125rem);
        }

        .training-point {
            background-color: #32140C;
            border-radius: clamp(14px, 2.5vw, 18px);
            padding: clamp(1.125rem, 2.5vw, 1.5rem) clamp(1.25rem, 3vw, 1.75rem);
            display: flex;
            align-items: center;
            gap: clamp(0.875rem, 2vw, 1.25rem);
            color: #FAF8F5;
        }

        .training-point__icon {
            font-size: clamp(1.25rem, 2.75vw, 1.6rem);
            flex-shrink: 0;
        }

        .training-point__text {
            font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
            line-height: 1.5;
           
                        font-family: Figtree;
            font-weight: 500;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .training__main {
                gap: clamp(1.75rem, 3vw, 3rem);
            }
        }

        @media (max-width: 768px) {
            .training {
                padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2rem);
            }

            .training__header {
                margin-bottom: clamp(2rem, 4vw, 3rem);
            }

            .training__filters {
                margin-bottom: clamp(2rem, 4vw, 3rem);
            }

            .training__main {
                grid-template-columns: 1fr;
                gap: clamp(2rem, 4vw, 2.5rem);
            }

            .training__image {
                aspect-ratio: 16 / 11;
            }
        }

        @media (max-width: 480px) {
            .training-filter {
                flex: 1 1 auto;
                min-width: calc(50% - 0.5rem);
            }

            .training-point {
                padding: clamp(1rem, 3vw, 1.125rem) clamp(1rem, 3vw, 1.25rem);
            }
        }

        /* ==================== ACCESSIBILITY ==================== */
        @media (prefers-reduced-motion: reduce) {
            .training-filter {
                transition: none;
            }
        }


















        
        .workplace-support {
            max-width: 1400px;
            margin: 0 auto;
            padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
            background-color: #F7F4EC;
            border-radius: clamp(24px, 3vw, 32px);
            margin-bottom: 12vh;
        }

        .section-heading {
            font-size: clamp(2.25rem, 5.5vw, 3.5rem);
            font-weight: 500;
            color: #2D1810;
            text-align: center;
            margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
            letter-spacing: -0.02em;
                            font-family: Gayathri;
            font-weight: 500;
        }

        .support-program {
            margin-bottom: clamp(3rem, 6vw, 5rem);
        }

        .support-program:last-child {
            margin-bottom: 0;
        }

        .image-container {
            width: 100%;
            height: 60vh;
            margin: 0 auto clamp(2rem, 4vw, 3rem);
            border-radius: clamp(20px, 3vw, 28px);
            overflow: hidden;
           
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(2rem, 4vw, 3rem);
            align-items: start;
        }

        .left-content {
            display: flex;
            flex-direction: column;
            gap: clamp(1.5rem, 3vw, 2rem);
        }

        .badge-button {
            background-color: #32140C;
            border-radius: 20px;
            padding: clamp(1rem, 2vw, 1.5rem) clamp(1.5rem, 3vw, 2rem);
            display: inline-flex;
            align-items: center;
            gap: clamp(0.875rem, 1.8vw, 1.25rem);
            border: none;
            width: fit-content;
        }

        .badge-icon {
            width: clamp(40px, 7vw, 52px);
            height: clamp(40px, 7vw, 52px);
            background-color: #F7F4EC;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .badge-icon i {
            font-size: clamp(1.25rem, 2.5vw, 1.75rem);
            color: #32140C;
        }

        .badge-text {
            font-size: clamp(1rem, 2.2vw, 1.375rem);
                                   font-family: Figtree;
            font-weight: 500;
            color: #FFFFFF;
            line-height: 1.3;
        }

        .description-text {
            font-size: clamp(0.825rem, 1.75vw, 1.125rem);
            line-height: 1.7;
            color: #32140C;
                                    font-family: Figtree;
            font-weight: 500;
            max-width: 540px;
        }

        .right-content {
            display: flex;
            flex-direction: column;
            gap: clamp(0.75rem, 1.8vw, 1rem);
        }

        .checklist-item {
            background-color: #FFFEF9;
            border: 1px solid #E3DCC8;
            border-radius: clamp(12px, 2.2vw, 16px);
            padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1rem, 2.5vw, 1.5rem);
            display: flex;
            align-items: center;
            gap: clamp(0.75rem, 1.8vw, 1rem);
            transition: all 0.3s ease;
        }

        .checklist-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(45, 24, 16, 0.08);
            border-color: #32140C;
        }

        .checklist-item i {
            font-size: clamp(1.125rem, 2.2vw, 1.375rem);
            color: #32140C;
            flex-shrink: 0;
        }

        .checklist-text {
            font-size: clamp(0.875rem, 1.7vw, 1.125rem);
            line-height: 1.5;
            color: #32140C;
                                    font-family: Figtree;
            font-weight: 500;
        }

        .image-bottom {
            display: none;
        }

        @media screen and (max-width: 1024px) {
            .content-wrapper {
                gap: clamp(1.75rem, 3vw, 2.5rem);
            }
        }

        @media screen and (max-width: 768px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }

            .image-container {
                width: 100%;
            }
        }

        @media screen and (max-width: 480px) {
            .workplace-support {
                padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 1.5rem);
            }

            .support-program {
                margin-bottom: clamp(2.5rem, 5vw, 4rem);
            }

            .image-container {
                width: 100%;
                aspect-ratio: 4 / 3;
                margin-bottom: clamp(1.5rem, 3vw, 2rem);
            }

            .content-wrapper {
                display: flex;
                flex-direction: column;
                gap: clamp(1.5rem, 4vw, 2rem);
            }

            .left-content {
                order: 1;
            }

            .right-content {
                order: 2;
            }

            .badge-button {
                width: 100%;
                justify-content: center;
                text-align: center;
            }

            .description-text {
                max-width: 100%;
                text-align: center;
            }

            .image-bottom {
                display: block;
                width: 100%;
                margin-top: clamp(1.5rem, 4vw, 2rem);
                border-radius: clamp(20px, 3vw, 28px);
                overflow: hidden;
                aspect-ratio: 4 / 3;
            }

            .image-bottom img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }
        }

        @media screen and (max-width: 380px) {
            .badge-button {
                flex-direction: column;
                padding: clamp(1.25rem, 4vw, 1.75rem);
            }

            .badge-icon {
                width: 48px;
                height: 48px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .checklist-item {
                transition: none;
            }

            .checklist-item:hover {
                transform: none;
            }
        }
















        .access-to-work {
            background: linear-gradient(135deg, #32140C 0%, #32140C 100%);
            padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3rem);
            width: 100%;
        }

        .access-to-work__container {
            max-width: 1440px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* ==================== TOP CONTENT ==================== */
        .access-to-work__header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: clamp(2rem, 4vw, 3rem);
            max-width: 900px;
        }

        .access-to-work__heading {
            font-size: clamp(2.55rem, 5.5vw, 3.95rem);
            font-weight: 500;
            line-height: 1.15;
            letter-spacing: -0.015em;
            color: #FAF8F5;
            margin-bottom: clamp(0.5rem, 1vw, 1.15rem);
            font-family: Gayathri;
        }

        .access-to-work__intro {
            font-size: clamp(0.9375rem,2vw, 1.125rem);
            line-height: 1.65;
            color: #E8E0CF;
            max-width: 820px;
            margin-bottom: clamp(1rem, 2vw, 1.25rem);
                                   font-weight: 500;
            font-family:Figtree;
        }

        .access-to-work__intro-secondary {
            font-size: clamp(0.9375rem, 1.9vw, 1.0625rem);
            line-height: 1.65;
            
            max-width: 820px;
                                   font-weight: 500;
            font-family:Figtree;
             color: #E8E0CF;
        }

        /* ==================== PRIMARY IMAGE ==================== */
        .access-to-work__image {
            width: 100%;
            height: clamp(280px, 40vh, 480px);
            border-radius: clamp(20px, 3vw, 28px);
            overflow: hidden;
            margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
        }

        .access-to-work__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ==================== CONTENT POINTS ==================== */
        .access-to-work__points {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: clamp(1rem, 2vw, 1.25rem);
            margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
        }

        .access-to-work-point {
            background-color: #FAF8F5;
            border-radius: clamp(14px, 2.5vw, 18px);
            padding: clamp(1.125rem, 2.5vw, 1.5rem) clamp(1.5rem, 3.5vw, 2.25rem);
            text-align: center;
        }

        .access-to-work-point__text {
            font-size: clamp(0.9375rem, 2vw, 1.185rem);
            line-height: 1.6;
            color: #32140C;
           font-weight: 500;
            font-family:Figtree;
        }

        /* ==================== SUPPORTING DESCRIPTION ==================== */
        .access-to-work__description {
            font-size: clamp(0.9375rem, 2vw, 1.125rem);
            line-height: 1.65;
            color: #E8E0CF;
            text-align: center;
            max-width: 820px;
            margin-bottom: clamp(2rem, 4vw, 3rem);
            font-weight: 500;
            font-family:Figtree;
        }

        /* ==================== CTA BUTTON ==================== */
        .access-to-work__cta {
            padding: clamp(0.875rem, 2vw, 1.125rem) clamp(2rem, 4vw, 2.75rem);
            background-color: #FAF8F5;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            color: #32140C;
            font-size: clamp(1rem, 2vw, 1.20rem);

            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.25s ease;
            cursor: pointer;
font-weight: 500;
            font-family:Figtree;
        }

        .access-to-work__cta:hover {
            background-color: #F0EDE8;
        }

        .access-to-work__cta:focus-visible {
            outline: 2px solid #FAF8F5;
            outline-offset: 3px;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 768px) {
            .access-to-work {
                padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2rem);
            }

            .access-to-work__header {
                margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
            }

            .access-to-work__image {
                margin-bottom: clamp(2rem, 4vw, 3rem);
                height: clamp(200px, 28vh, 320px);
            }

            .access-to-work__points {
                margin-bottom: clamp(2rem, 4vw, 3rem);
            }

            .access-to-work__description {
                margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
            }
        }

        @media (max-width: 480px) {
            .access-to-work-point {
                padding: clamp(1rem, 3vw, 1.125rem) clamp(1.25rem, 4vw, 1.5rem);
            }
        }

        /* ==================== ACCESSIBILITY ==================== */
        @media (prefers-reduced-motion: reduce) {
            .access-to-work__cta {
                transition: none;
            }
        }


















      
 .footer-wrapper {
    width: 96%;
 
    margin-left: 2%;

    border: 1px solid #ffffff47;
    border-radius: 32px;
    padding: 60px 50px;
    background-color: #32140C;
    margin-top: 4vh;
    box-sizing: border-box;
}

/* Upper Section */
.footer-upper {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 128px;
    margin-bottom: 50px;
}

.footer-brand h2 {
    font-size: clamp(2.4rem, 4.6vw, 3.2rem);
    font-weight: 500;
    line-height: 1.2;
               font-weight: 700;
    font-family:Gayathri;
    color: #ffffff;
}

.footer-column h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 20px;
               font-weight: 700;
    font-family:Gayathri;
    color:#ffffff;
}

.footer-column p,
.footer-column a {
    font-size: 1.04rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
               font-weight: 500;
    font-family:Figtree;
    font-weight: 400;
}


.logonsocial{
display: flex;
flex-direction: column;
align-items: start;
gap: 6vh;
justify-content: start;
}

.footer-column a:hover {
    color: #fff;
}

.contact-info p {
    margin-bottom: 12px;
}

.map-container {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
 
}

/* Divider Line */
.footer-divider {
    width: 92%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 auto 40px auto;
}

/* Lower Section */
.footer-lower {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-section {
    flex: 1;
}

.newsletter-section h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 20px;
                font-weight: 700;
    font-family:Gayathri;
}

.newsletter-form {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 6px 6px 6px 24px;
    max-width: 450px;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.95rem;
    padding: 10px 0;
    font-family: "suisse";
    min-width: 0;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 32px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: "suisse";
    flex-shrink: 0;
}

.newsletter-form button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.social-links-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.social-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: "suisse";
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.9rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: "suisse";
}

.footer-links a:hover {
    color: #fff;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.4);
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    margin-top: 10px;
                font-weight: 700;
    font-family:Gayathri;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Large Tablets & Small Desktops (1024px and below) */
@media (max-width: 1024px) {
    .footer-wrapper {
        padding: 50px 40px;
        border-radius: 24px;
        margin-top: clamp(6vh, 8vh, 10vh);
    }
    
    .footer-upper {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 40px;
    }
    
    .footer-bottom-row {
        gap: 30px;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .footer-wrapper {
        width: 90%;
        margin-left: 5%;
        padding: 40px 30px;
        border-radius: 20px;
        margin-top: -12vh;
    }
    
    .footer-upper {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        margin-bottom: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .footer-bottom-row {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .social-links-section {
        align-items: flex-start;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
    
    .footer-links {
        justify-content: flex-start;
    }
    
    .footer-divider {
        width: 100%;
        margin: 0 0 30px 0;
    }
    
    .map-container {
        height: 160px;
    }
}

/* Mobile Landscape & Small Tablets (640px and below) */
@media (max-width: 640px) {
    .footer-wrapper {
        width: 88%;
        margin-left: 6%;
        padding: 35px 25px;
        border-radius: 16px;
        margin-top: 5vh;
    }
    
    .footer-upper {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 35px;
    }
    
    .footer-brand {
        grid-column: 1;
    }
    
    .footer-column h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-column p,
    .footer-column a {
        font-size: 0.9rem;
    }
    
    .map-container {
        height: 180px;
        border-radius: 10px;
    }
    
    .newsletter-section h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .newsletter-form {
        padding: 5px 5px 5px 20px;
    }
    
    .newsletter-form input {
        font-size: 0.9rem;
        padding: 8px 0;
    }
    
    .newsletter-form button {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 40px;
        height: 54px;
        font-size: 1rem;
    }
    
    .footer-links {
        font-size: 0.85rem;
        gap: 6px;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
    
    .footer-lower {
        gap: 25px;
    }
    
    .footer-divider {
        margin-bottom: 25px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .footer-wrapper {
        width: 86%;
        margin-left: 7%;
        padding: 30px 20px;
        border-radius: 14px;
        margin-top: 4vh;
    }
    
    .footer-upper {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .footer-brand h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .map-container {
        height: 160px;
        border-radius: 10px;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 15px;
        border-radius: 12px;
    }
    
    .newsletter-form input {
        padding: 12px 0;
        text-align: center;
    }
    
    .newsletter-form button {
        width: 100%;
        padding: 14px 24px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .footer-links span {
        display: none;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .footer-wrapper {
        width: 84%;
        margin-left: 8%;
        padding: 25px 15px;
        border-radius: 12px;
        margin-top: 4vh;
    }
    
    .footer-column h3 {
        font-size: 0.95rem;
    }
    
    .footer-column p,
    .footer-column a {
        font-size: 0.85rem;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    
    .newsletter-section h3 {
        font-size: 0.95rem;
    }
    
    .map-container {
        height: 140px;
        border-radius: 8px;
    }
}