@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;
}


.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;
    }
}







        #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, 4vw, 3rem);
            line-height: 1.2;
            font-weight: 500;
            font-family: Gayathri;
            margin: 0;
        }

        .bh-header h2 span {
            display: block;
            margin-top: 0.2em;
        }

        /* 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: 24px; /* 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: 4px; /* 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.5vw, 1.05rem);
            font-weight: 400;
            line-height: 1.4;
            letter-spacing: 0.01em;
        }

        /* 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;
            }
        }














        .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


.proposal-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
}

.container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Left side smaller, Form wider */
    gap: 4rem;
    align-items: start;
}

/* --- Left Content --- */
.heading-primary {
    font-family: Gayathri;
    font-size: 4.25rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #32140C;
}

.description {
    font-size: 1.25rem;
    max-width: 400px;
    opacity: 0.9;
                font-weight: 500;
            font-family: Figtree;
    line-height: 1.6;
}

/* --- Form Grid --- */
.proposal-form {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 1.5rem;
}

.full-width {
    grid-column: span 2;
}

/* --- Input & Textarea Styles --- */
.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Updated selector to include textarea */
input, select, textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(62, 39, 35, 0.4);
    border-radius: 8px;
    padding: 1rem 1.2rem;
              font-weight: 500;
            font-family:Figtree;
    font-size: 1.25rem;
    color: #32140C;
    outline: none;
    transition: 0.3s ease;
}

/* Specific style for message box */
textarea {
    resize: vertical; /* Allow user to resize height only */
    min-height: 120px;
}

input::placeholder, textarea::placeholder {
    color: #8D7B75;
}

input:focus, select:focus, textarea:focus {
    border-color: #32140C;
    background-color: rgba(255, 255, 255, 0.5);
}

/* Validation Styling */
input.touched:invalid, select.touched:invalid, textarea.touched:invalid {
    border-color: #D32F2F;
}

input.touched:valid, textarea.touched:valid {
    border-color: #388E3C;
}

.error-msg {
    font-size: 0.75rem;
    color: #D32F2F;
    margin-top: 0.25rem;
    opacity: 0;
    transform: translateY(-5px);
    transition: 0.3s ease;
    position: absolute;
    bottom: -1.2rem;
    left: 0;
}

.form-group.error .error-msg {
    opacity: 1;
    transform: translateY(0);
}

/* --- Phone Input (Custom Composite) --- */
.phone-input-wrapper {
    display: flex;
    gap: 0.5rem;
}

.country-select {
    width: 110px;
    padding: 1rem 0.5rem;
    appearance: none;
    cursor: pointer;
    text-align: center;
}

/* --- Button --- */
.btn-primary {
    background-color: #32140C;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: 0.3s ease;
    opacity: 1;
    min-width: 150px;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(62, 39, 35, 0.2);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #8D7B75;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .heading-primary {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .proposal-form {
        grid-template-columns: 1fr;
    }
    
    .full-width {
        grid-column: span 1;
    }
    
    .btn-primary {
        width: 100%;
    }
}



/* Unique Styles for the Hero Section */
#bh-hero-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0 0 0; /* Adds some breathing room top/bottom */
    background-color: transparent; /* Allows parent background to show through */
}

.bh-hero-container {
    position: relative;
    width: 100%;
}

.bh-hero-media {
    display: flex;
    justify-content: center;
    width: 100%;
}

.bh-hero-img {
    /* Exact dimensions requested */
    width: 84vw;
    height: 40vh;
    
    /* Image fitting logic */
    object-fit: cover;
    object-position: center;
    
    /* Aesthetic touches */
    border-radius: 24px; /* Slightly larger radius for a modern feel */
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.08); /* Soft brown shadow matches your theme */
    display: block;
}

/* Optional: Mobile Responsiveness to maintain aspect ratio on small screens */
@media (max-width: 768px) {
    .bh-hero-img {
        width: 92vw; /* Slightly wider on mobile */
        height: 30vh; /* Shorter height on mobile */
    }
}















      
 .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;
    }
}

















.timeline-header {
    text-align: center;
    margin: 100px 0;
    position: relative;
    z-index: 1;
}

.timeline-header h1 {
    font-size: 72px;
    font-weight: 700;
    color: #32140C;
    margin-bottom: 16px;
    font-family: Gayathri;
}

.timeline-header p {
    font-size: 28px;
    color: #32140C;
    max-width: 600px;
    margin: 0 auto;
    font-family: Figtree;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Vertical Line */
.timeline-line {
    position: absolute;
    left: 420px;
    top: 20px;
    width: 3px;
    height: calc(100% - 40px);
    background: rgba(50,20,12,0.1);
    border-radius: 2px;
    z-index: 1;
    overflow: hidden;
}

.timeline-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #32140C;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(102,126,234,0.5);
}

/* Timeline Items */
.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 250px;
    position: relative;
    gap: 128px;
}

.timeline-item:last-child { margin-bottom: 150px; }

/* Circle Point */
.timeline-point {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: transparent;
  
    position: absolute;
    left: 412px;
    z-index: 2;
 
}

.timeline-point.active {
    background: #32140C;
    transform: scale(1.2);
}

/* Image Container */
.timeline-image {
    width: 360px;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background: rgba(50,20,12,0.05);
    border: 1px solid rgba(50,20,12,0.1);
    transition: all 0.8s cubic-bezier(0.34,1.56,0.64,1);
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.6) contrast(0.8);
    transition: all 0.8s cubic-bezier(0.34,1.56,0.64,1);
}

.timeline-image.active {
    border-color: rgba(102,126,234,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(102,126,234,0.2);
    transform: translateY(-8px);
}

.timeline-image.active img {
    filter: grayscale(0%) brightness(1.05) contrast(1.1);
    transform: scale(1.05);
}

/* Content */
.timeline-content {
    flex: 1;
    opacity: 0.3;
    transform: translateX(-20px);
    transition: all 0.8s cubic-bezier(0.34,1.56,0.64,1);
}

.timeline-content.active {
    opacity: 1;
    transform: translateX(0);
}

.timeline-content h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #32140C;
    font-weight: 700;
    font-family: Gayathri;
}

.timeline-content p {
    font-size: 24px;
    line-height: 1.7;
    color: #32140C;
    max-width: 600px;
    font-family: Figtree;
}

/* Number badge */
.step-number {
    position: absolute;
    left: 390px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgb(250, 237, 233);
    border: 2px solid rgba(50,20,12,0.1);
    color: rgba(50,20,12,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: px;
    font-weight: 700;
    z-index: 3;
    transition: all 0.8s cubic-bezier(0.34,1.56,0.64,1);
}

.step-number.active {
    background-color: #32140C;
    color: white;
    
    
}

/* Responsive */
@media (max-width: 768px) {
    .faq-container { flex-direction: column; }
    #headingdiv h1 { font-size: 2.2rem; }
    #headingdiv p { font-size: 0.95rem; }
    .timeline-item { flex-direction: column; align-items: flex-start; padding-left: 80px; gap: 20px; margin-bottom: 180px; }
    .timeline-image { width: 100%; max-width: 480px; height: 360px; }
    .timeline-content h2 { font-size: 24px; }
    .timeline-content p { font-size: 15px; }
}

/* --- Toggle Switch Container --- */
.process-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0 3rem 0;
}

.toggle-label {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #8D7B75; /* Muted color */
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: #3E2723; /* Active dark brown */
    font-weight: 600;
}

/* --- The Switch Box --- */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

/* Checked State (Active Color) */
input:checked + .slider {
    background-color: #3E2723;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* --- Timeline Visibility Logic --- */
.process-wrapper {
    /* Ensure opacity transition works */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: none; /* Default hidden state handled by JS */
}

.process-wrapper.active {
    display: block !important; /* Force display */
    opacity: 1;
    transform: translateY(0);
}




/* --- Global Variables for Timeline Layout --- */
:root {
    /* Desktop: Line sits 420px from left */
    --tl-split: 420px; 
    /* Desktop: Width of the image */
    --tl-img-width: 360px;
    /* Desktop: Spacing */
    --tl-gap: 50px;
}

/* --- Base Structure --- */
.timeline-header {
    text-align: center;
    margin: 80px 0 60px 0;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.timeline-header h1 {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #32140C;
    margin-bottom: 16px;
    font-family: 'Gayathri', sans-serif;
    line-height: 1.2;
}

.timeline-header p {
    font-size: clamp(0.9rem, 2vw, 1.25rem);
    color: #32140C;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Figtree', sans-serif;
    opacity: 0.9;
    line-height: 1.6;
}

.timeline-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-bottom: 100px;
}

/* --- The Continuous Vertical Line --- */
.timeline-line {
    position: absolute;
    left: var(--tl-split);
    top: 20px;
    width: 3px;
    height: calc(100% - 20px);
    background: rgba(50,20,12,0.1);
    border-radius: 2px;
    z-index: 1;
    transform: translateX(-50%);
    transition: left 0.3s ease;
}

.timeline-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #32140C;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(102,126,234,0.5);
}

/* --- Timeline Items Wrapper --- */
.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 150px;
    position: relative;
    width: 100%;
}

.timeline-item:last-child { 
    margin-bottom: 50px; 
}

/* --- 1. The Image (Left Side) --- */
.timeline-image {
    width: var(--tl-img-width);
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background: rgba(50,20,12,0.05);
    border: 1px solid rgba(50,20,12,0.1);
    transition: all 0.6s ease;
    margin-right: calc(var(--tl-split) - var(--tl-img-width) + var(--tl-gap)); 
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.6) contrast(0.8);
    transition: all 0.8s ease;
}

/* Active State for Image */
.timeline-image.active {
    border-color: rgba(102,126,234,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(102,126,234,0.2);
    transform: translateY(-8px);
}

.timeline-image.active img {
    filter: grayscale(0%) brightness(1.05) contrast(1.1);
    transform: scale(1.05);
}

/* --- 2. The Center Elements (Badge & Dot) --- */
.step-number {
    position: absolute;
    left: var(--tl-split);
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgb(250, 237, 233);
    border: 2px solid rgba(50,20,12,0.1);
    color: rgba(50,20,12,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    z-index: 5;
    transition: all 0.5s ease;
}

.step-number.active {
    background-color: #32140C;
    color: white;
    box-shadow: 0 0 0 8px rgba(250, 237, 233, 0.6);
}

.timeline-point {
    position: absolute;
    left: var(--tl-split);
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    z-index: 4;
    opacity: 0;
}

/* --- 3. The Content (Right Side) --- */
.timeline-content {
    flex: 1;
    padding-left: 60px;
    opacity: 0.3;
    transform: translateX(0px);
    transition: all 0.8s ease;
}

.timeline-content.active {
    opacity: 1;
    transform: translateX(0);
}

.timeline-content h2 {
    font-size: clamp(1.25rem, 2.5vw, 2.5rem);
    margin-bottom: 16px;
    color: #32140C;
    font-weight: 700;
    font-family: 'Gayathri', sans-serif;
    line-height: 1.2;
}

.timeline-content p {
    font-size: clamp(0.9rem, 1.5vw, 1.25rem);
    line-height: 1.7;
    color: #32140C;
    max-width: 550px;
    font-family: 'Figtree', sans-serif;
}

/* --- Toggle Switch Styling --- */
.process-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0 4rem 0;
    flex-wrap: wrap;
}

.toggle-label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 500;
    color: #8D7B75;
    transition: color 0.3s ease;
    cursor: pointer;
}

.toggle-label.active {
    color: #3E2723;
    font-weight: 600;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    flex-shrink: 0;
}

.switch input { 
    opacity: 0; 
    width: 0; 
    height: 0; 
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider { 
    background-color: #3E2723; 
}

input:checked + .slider:before { 
    transform: translateX(26px); 
}

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */

/* --- Large Desktop (1400px+) --- */
@media (min-width: 1400px) {
    :root {
        --tl-split: 450px;
        --tl-img-width: 380px;
    }
}

/* --- Medium Desktop (1200px to 1400px) --- */
@media (max-width: 1400px) {
    :root {
        --tl-split: 420px;
        --tl-img-width: 360px;
    }
}

/* --- Small Desktop/Laptop (1024px to 1200px) --- */
@media (max-width: 1200px) {
    :root {
        --tl-split: 360px;
        --tl-img-width: 300px;
    }
    
    .timeline-image { 
        height: 400px; 
    }
    
    .timeline-item {
        margin-bottom: 120px;
    }
}

/* --- Tablet Landscape (900px to 1024px) --- */
@media (max-width: 1024px) {
    :root {
        --tl-split: 320px;
        --tl-img-width: 280px;
    }

    .timeline-container {
        padding: 0 20px 60px 20px;
    }

    .timeline-image { 
        height: 360px; 
    }
    
    .timeline-content {
        padding-left: 50px;
    }
    
    .timeline-item {
        margin-bottom: 100px;
    }
}

/* --- Tablet Portrait (768px to 900px) - LAYOUT SWITCH --- */
@media (max-width: 900px) {
    :root {
        --tl-split: 40px;
    }

    .timeline-container {
        padding: 0 16px 50px 16px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 90px;
        gap: 24px;
    }

    .timeline-image {
        width: calc(100% - 60px);
        max-width: 500px;
        height: 300px;
        margin-right: 0;
        margin-left: 60px;
    }

    .timeline-content {
        padding-left: 60px;
        padding-right: 0;
        width: 100%;
    }

    .step-number {
        top: 0;
        transform: translate(-50%, 0);
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .timeline-header {
        margin: 60px 0 40px 0;
    }
}

/* --- Mobile Large (600px to 768px) --- */
@media (max-width: 768px) {
    :root {
        --tl-split: 35px;
    }

    #timeline-section {
        margin-bottom: 18vh;
    }

    .timeline-container {
        padding: 0 12px 40px 12px;
    }

    .timeline-item {
        margin-bottom: 70px;
        gap: 20px;
    }

    .timeline-image {
        height: 260px;
        margin-left: 50px;
        width: calc(100% - 50px);
        border-radius: 16px;
    }

    .timeline-content {
        padding-left: 50px;
    }

    .step-number {
        width: 46px;
        height: 46px;
        font-size: 19px;
        margin-left: -0.8rem;
    }
    
    .timeline-header {
        margin: 50px 0 30px 0;
    }
    
    .timeline-header h1 {
        margin-bottom: 10px;
    }
    
    .process-toggle-container {
        gap: 1rem;
        margin: 1.5rem 0 3rem 0;
    }
}

/* --- Mobile Medium (480px to 600px) --- */
@media (max-width: 600px) {
    :root {
        --tl-split: 30px;
    }

    .timeline-item {
        margin-bottom: 60px;
    }

    .timeline-image {
        height: 240px;
        margin-left: 0px;
        width: calc(100% - 45px);
        border-radius: 14px;
    }

    .timeline-content {
        padding-left: 0px;
    }

    .step-number {
        width: 42px;
        height: 42px;
        font-size: 17px;
        margin-left: -0.7rem;
    }
}

/* --- Mobile Small (400px to 480px) --- */
@media (max-width: 480px) {
    :root {
        --tl-split: 28px;
    }

    .timeline-container {
        padding: 0 10px 30px 10px;
    }

    .timeline-item {
        margin-bottom: 55px;
        gap: 16px;
    }

    .timeline-image {
        height: 220px;
        margin-left: 0px;
        width: calc(100% - 42px);
        border-radius: 12px;
    }

    .timeline-content {
        padding-left: 0px;
    }

    .step-number {
        width: 40px;
        height: 54px;
        font-size: 16px;
        border-width: 1.5px;
    }
    
    .timeline-header {
        margin: 40px 0 24px 0;
        padding: 0 10px;
    }
    
    .process-toggle-container {
        gap: 0.8rem;
        margin: 1.25rem 0 2.5rem 0;
    }
    
    .switch {
        width: 52px;
        height: 30px;
    }
    
    .slider:before {
        height: 22px;
        width: 22px;
    }
    
    input:checked + .slider:before { 
        transform: translateX(22px); 
    }
}

/* --- Mobile Extra Small (320px to 400px) --- */
@media (max-width: 400px) {
    :root {
        --tl-split: 25px;
    }

    .timeline-container {
        padding: 0 8px 25px 8px;
    }

    .timeline-item {
        margin-bottom: 50px;
        gap: 14px;
    }

    .timeline-image {
        height: 200px;
        margin-left: 0px;
        width: calc(100% - 38px);
        border-radius: 10px;
    }

    .timeline-content {
        padding-left: 0px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
        border-width: 1.5px;
        margin-left: -0.55rem;
    }
    
    .step-number.active {
        box-shadow: 0 0 0 6px rgba(250, 237, 233, 0.6);
    }
    
    .timeline-header {
        margin: 35px 0 20px 0;
        padding: 0 8px;
    }
    .process-toggle-container {
        gap: 0.6rem;
        margin: 1rem 0 2rem 0;
    }
    
    .switch {
        width: 48px;
        height: 28px;
    }
    
    .slider:before {
        height: 20px;
        width: 20px;
        left: 4px;
        bottom: 4px;
    }
    
    input:checked + .slider:before { 
        transform: translateX(20px); 
    }
}

/* --- Mobile Tiny (320px and below) --- */
@media (max-width: 320px) {
    :root {
        --tl-split: 22px;
    }

    .timeline-container {
        padding: 0 6px 20px 6px;
    }

    .timeline-item {
        margin-bottom: 45px;
        gap: 12px;
    }

    .timeline-image {
        height: 180px;
        margin-left:0px;
        width: calc(100% - 34px);
        border-radius: 8px;
    }

    .timeline-content {
        padding-left: 0px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 13px;
        border-width: 1px;
        margin-left: -0.4rem;
    }
    
    .timeline-header {
        margin: 30px 0 18px 0;
    }
    
    .process-toggle-container {
        gap: 0.5rem;
        margin: 0.8rem 0 1.5rem 0;
        flex-direction: column;
    }
    
    .switch {
        width: 44px;
        height: 26px;
    }
    
    .slider:before {
        height: 18px;
        width: 18px;
    }
    
    input:checked + .slider:before { 
        transform: translateX(18px); 
    }
}