@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;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.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;
}


.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(2.25rem, 5.5vw, 4.25rem);
    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;
    }
}































        .about-hero {
            background-color: transparent;
       
            width: 100%;
        }

        .about-hero__container {
            max-width: 1440px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(3rem, 6vw, 6rem);
            align-items: center;
        }

        /* ==================== LEFT CONTENT ==================== */
        .about-hero__content {
            display: flex;
            flex-direction: column;
            gap: clamp(1.5rem, 3vw, 2rem);
        }

        .about-hero__heading {
            font-size: clamp(2.75rem, 6.35vw, 5.5rem);
       
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: #32140C;
            font-family: Gayathri;
            font-weight: 500;
        }

        .about-hero__intro {
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            line-height: 1.6;
            color: #32140C;
            max-width: 540px;
            font-family: Figtree;
            font-weight: 500;
        }

        /* ==================== CREDENTIALS ==================== */
        .about-hero__credentials {
            display: flex;
            flex-direction: column;
            gap: clamp(0.75rem, 1.5vw, 1rem);
            list-style: none;
            margin-top: clamp(0.5rem, 1vw, 1rem);
        }

        .about-hero__credential {
            background-color: transparent;
            border: 1px solid #D9C8C3;
            border-radius: clamp(12px, 2vw, 16px);
            padding: clamp(0.75rem, 1.8vw, 1rem) clamp(1.125rem, 2.5vw, 1.5rem);
            transition: background-color 0.25s ease;
        }

        .about-hero__credential:hover {
            background-color: rgba(217, 200, 195, 0.1);
        }

        .about-hero__credential-text {
            font-size: clamp(0.875rem, 1.75vw, 1.15rem);
            line-height: 1.5;
            color: #32140C;
            font-weight: 400;
                        font-family: Figtree;
            font-weight: 500;
        }

        /* ==================== RIGHT IMAGE ==================== */
        .about-hero__image {
            width: 100%;
            height: 80%;
            border-radius: clamp(20px, 3vw, 32px);
            overflow: hidden;
            aspect-ratio: 4 / 5;
        }

        .about-hero__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .about-hero__container {
                gap: clamp(2.5rem, 5vw, 4rem);
            }

            .about-hero__intro {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .about-hero {
                padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2rem);
            }

            .about-hero__container {
                grid-template-columns: 1fr;
                gap: clamp(3rem, 6vw, 4rem);
            }

            .about-hero__image {
                order: -1;
                max-width: 480px;
                margin: 0 auto;
            }

            .about-hero__content {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .about-hero__credential {
                padding: clamp(0.6875rem, 2vw, 0.875rem) clamp(1rem, 3vw, 1.25rem);
            }

            .about-hero__image {
                aspect-ratio: 3 / 4;
            }
        }

        /* ==================== ACCESSIBILITY ==================== */
        @media (prefers-reduced-motion: reduce) {
            .about-hero__credential {
                transition: none;
            }
        }

















        .experience {
            background-color: #FAF8F5;
            padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3rem);
            width: 100%;
        }

        .experience__container {
            max-width: 1440px;
            margin: 0 auto;
        }

        /* ==================== TOP HEADING ==================== */
        .experience__heading {
            font-size: clamp(2.25rem, 5.5vw,4rem);
            font-weight: 500;
            line-height: 1.15;
            letter-spacing: -0.015em;
            color: #32140C;
            text-align: center;
            margin-bottom: clamp(1.25rem, 2.5vw, 2.5rem);
            font-family: Gayathri;
        }

        /* ==================== MAIN LAYOUT ==================== */
        .experience__main {
            display: grid;
            grid-template-columns: minmax(400px, 560px) 1fr;
            gap: clamp(1.5rem, 3vw, 3rem);
            align-items: start;
        height: fit-content;
        }

        /* ==================== LEFT IMAGE ==================== */
        .experience__image {
            width: 100%;
            border-radius: clamp(20px, 3vw, 32px);
            overflow: hidden;
            aspect-ratio: 3 / 4;
            height: 95%;
        }

        .experience__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ==================== RIGHT EXPERIENCE POINTS ==================== */
        .experience__points {
            display: flex;
            flex-direction: column;
            gap: clamp(1rem, 2vw, 1.25rem);
        }

        .experience-point {
            background-color: #F5EBE8;
            border: 1px solid #E8DADA;
            border-radius: clamp(16px, 2.5vw, 20px);
            padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.5rem, 3.5vw, 2rem);
            transition: background-color 0.25s ease;
        }

        .experience-point:hover {
            background-color: #F0E5E2;
        }

        .experience-point__text {
            font-size: clamp(0.9375rem, 2vw, 1.1625rem);
            line-height: 1.65;
            color: #32140C;
            font-weight: 400;
                        font-family: Figtree;
            font-weight: 500;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .experience__main {
                grid-template-columns: minmax(280px, 420px) 1fr;
                gap: clamp(2.5rem, 5vw, 4rem);
            }
        }

        @media (max-width: 768px) {
            .experience {
                padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2rem);
            }

            .experience__heading {
                margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
                font-family: Gayathri;
            }

            .experience__main {
                grid-template-columns: 1fr;
                gap: clamp(2.5rem, 5vw, 3.5rem);
            }

            .experience__image {
                max-width: 480px;
                margin: 0 auto;
            }
        }

        @media (max-width: 480px) {
            .experience-point {
                padding: clamp(1.125rem, 3.5vw, 1.375rem) clamp(1.25rem, 4vw, 1.5rem);
            }

            .experience__image {
                aspect-ratio: 4 / 5;
            }
        }

        /* ==================== ACCESSIBILITY ==================== */
        @media (prefers-reduced-motion: reduce) {
            .experience-point {
                transition: none;
            }
        }

















        #why-choose {
            background-color: #F9F1EF; /* Soft blush matching Figma */
            padding-top: clamp(1.5rem, 3vw, 2.5rem);
            padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
            padding-left: clamp(0.75rem, 2vw, 1rem);
            padding-right: clamp(.75rem, 2vw, 1rem);
            display: flex;
            justify-content: center;
            width: 100%;
            box-sizing: border-box;
        }

        .bh-container {
            max-width: 1300px;
            width: 100%;
            margin: 0 ;
        }

        /* HEADING STYLES */
        .bh-header {
            text-align: center;
            margin-bottom: clamp(2.5rem, 5vw, 4rem);
        }

        .bh-header h2 {
            color: #381E15; /* Dark brown from design */
            font-size: clamp(2rem, 4.5vw, 3.5rem);
            line-height: 1.2;
            font-weight: 500;
                        font-family: Gayathri;
          
            margin: 0;
        }

        .bh-header h2 span {
            display: block;
            margin-top: 0.2em;
                 font-weight: 500;
                        font-family: Gayathri;
        }

        /* MAIN LAYOUT (GRID) */
        .bh-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(1rem, 2vw, 2rem);
            align-items: center;
        }

        @media (min-width: 900px) {
            .bh-grid {
                grid-template-columns: 0.8fr 1.2fr; /* Image slightly narrower than list */
            }
        }

        /* IMAGE COLUMN */
        .bh-image-wrapper {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
        }

        .bh-image-wrapper img {
            width: 100%;
            height: auto;
            max-height: 500px; /* Prevent over-scaling on large screens */
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(56, 30, 21, 0.1);
            display: block;
        }

        /* REASONS LIST COLUMN */
        .bh-reasons-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: clamp(1rem, 1.5vw, 1.25rem);
        }

        .bh-reason-item {
            background-color: #381E15; /* Dark brown background */
            color: #FFFFFF;
            border-radius: 16px; /* Pill shape */
            padding: clamp(1.2rem, 3vw, 1.5rem) clamp(1.4rem, 5vw, 2rem);
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: background-color 0.3s ease;
        }

        .bh-reason-item:hover {
            background-color: #4A281C; /* Subtle lighten on hover */
        }

        /* CUSTOM CHECKMARK ICON */
        .bh-icon-box {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            background-color: #FFFFFF;
            border-radius: 2px; /* Rounded square check box */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bh-icon-box svg {
            width: 16px;
            height: 16px;
            fill: none;
            stroke: #381E15; /* Dark brown tick */
            stroke-width: 3;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .bh-reason-text {
            font-size: clamp(0.9rem, 1.6vw, 1.15rem);
            font-weight: 400;
            line-height: 1.4;
            letter-spacing: 0.01em;
                 font-weight: 500;
                        font-family: Figtree;
        }

        /* RESPONSIVE ADJUSTMENTS */
        @media (max-width: 768px) {
            .bh-grid {
                grid-template-columns: 1fr;
            }
            
            .bh-image-wrapper {
                order: -1; /* Image first on mobile */
                margin-bottom: 1rem;
            }

            .bh-image-wrapper img {
                max-height: 350px;
            }

            .bh-reason-item {
                border-radius: 12px; /* Slightly less pill-like on very small screens for text wrap */
                padding: 1rem;
            }
        }

        @media (max-width: 480px) {
               #why-choose {  margin-top: 0vh; }
        }







      
 .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;
    }
}