@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(2.25rem, 5.5vw, 4rem);
    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(1.25rem, 2.5vw, 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.25rem);
    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: transform 0.3s ease, opacity 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
           box-sizing: border-box;
    }

    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
                width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    }

    .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;
    }
}


.loop-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: fit-content; /* Takes full viewport height */
    padding:  0;
    background-color: transparent;
}

.loop-wrapper {
    width: 100%;
    overflow: hidden; /* Hides the scrollbar and overflowing images */
    position: relative;
    /* Optional: Add a fade effect on edges */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.loop-track {
    display: flex;
    width: max-content; /* Force track to be as wide as its content */
    gap: 24px; /* Space between images */
    
    /* Animation definition */
    animation-name: infiniteScroll;
    animation-duration: 30s; /* Adjust speed here */
    animation-timing-function: linear; /* Smooth constant speed */
    animation-iteration-count: infinite;
}

/* Pause animation on hover */
.loop-track:hover {
    animation-play-state: paused;
}

.loop-item {
    position: relative;
    width: 400px; /* Base desktop width */
    height: 300px; /* Base desktop height */
    flex-shrink: 0; /* Prevents images from squishing */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.loop-item:hover {
    transform: scale(1.02); /* Subtle zoom on hover */
}

.loop-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers area without distortion */
    display: block;
}

/* ANIMATION KEYFRAMES 
   We move from 0 to -50% because JS doubles the content.
   Moving -50% means we move exactly one full set of images length.
*/
@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 12px)); /* -50% plus half the gap (24px/2) to make it perfect */
    }
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Tablet and Small Laptops */
@media screen and (max-width: 1024px) {
    .loop-item {
        width: 300px;
        height: 220px;
    }
    
    .loop-track {
        gap: 20px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 600px) {
    .loop-section {
        padding: 20px 0;
        min-height: fit-content;
    }

    .loop-item {
        width: 260px;
        height: 180px;
        border-radius: 16px;
    }
    
    .loop-track {
        gap: 16px;
        animation-duration: 20s; /* Faster on mobile looks better */
    }

    /* Adjust calc for mobile gap */
    @keyframes infiniteScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-50% - 8px)); } /* 16px gap / 2 */
    }
}






.promise-section {
  background-color: #32140C;
  padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 3vw, 3rem);
  width: 100%;
}

.promise-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.promise-left {
  display: flex;
  
  align-items: center;
  max-width: 100%;
  justify-content: center;
}

.promise-content {
  max-width: 400px;
  text-align: left;
}

.promise-heading {
  font-size: clamp(2.75rem, 4.5vw, 3.75rem);
  font-weight: 400;
  color: #f5f3f0;
  margin: 0 0 clamp(1.25rem, 2vw, 1.75rem) 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: Gayathri;
}

.promise-subheading {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #d4cdc7;
  line-height: 1.65;
  margin: 0;
      font-weight: 500;
    font-family: Figtree;
}

.promise-right {
  width: 100%;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.promise-card {
  border-radius: 16px;
  padding: clamp(2rem, 3vw, 2.75rem);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.promise-card--a {
  background-color: #F7EEEC;
}

.promise-card--b {
  background-color: #F7F3E3;
}

.promise-card__icon {
  width: 56px;
  height: 56px;
  background-color: #32140C;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
}

.promise-card__icon i {
  font-size: 28px;
  color: #f5f3f0;
}

.promise-card__title {
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);

  color: #2a2220;
  margin: 0 0 clamp(0.5rem, 0.5vw, 0.5rem) 0;
  line-height: 1.3;
      font-weight: 700;
    font-family: Gayathri;
}

.promise-card__description {
  font-size: clamp(0.9rem, 1.15vw, 1.15rem);
  color: #5a4e47;
  line-height: 1.6;
  margin: 0;
      font-weight: 500;
    font-family: Figtree;
}

@media (max-width: 900px) {
  .promise-container {
    grid-template-columns: 1fr;
    gap: clamp(3rem, 5vw, 4rem);
  }

  .promise-content {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .promise-grid {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 1.5rem);
  }

  .promise-content {
    text-align: center;
  }
}














.path-section {
  background-color: #F7EEEC;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  width: 100%;
  margin-top: 8vh;
  margin-bottom: 4vh;
}

.path-container {
  max-width: 1400px;
  margin: 0 auto;
}

.path-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(2rem, 5vw, 6rem);
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.path-header__left {
  flex: 1;
  max-width: 600px;
}

.path-header__right {
  flex: 0 0 auto;
  max-width: 440px;
}

.path-heading {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: #32140C;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: Gayathri;
}

.path-description {
  font-size: clamp(0.9775rem, 1.35vw, 1.0725rem);
  color: #32140C;
  line-height: 1.65;
  margin: 0;
      font-weight: 500;
    font-family: Figtree;
}

.path-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2rem);
}

.path-card {
  background-color: #f9f5f2;
  border: 1px solid #e8dfd8;
  border-radius: 16px;
  padding: clamp(2rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.path-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.path-card--rose {
  background-color: #ffffff;
  border-color: hsla(13, 61%, 12%, 0.36);
}

.path-card--cream {
  background-color: #F7F3E3;
  border-color: hsla(13, 61%, 12%, 0.36);
}

.path-card__icon {
  width: 60px;
  height: 60px;
  background-color: #32140C;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
}

.path-card__icon i {
  font-size: 30px;
  color: #f5f3f0;
}

.path-card__title {
  font-size: clamp(1.575rem, 1.85vw, 1.75rem);
  font-weight: 500;
  color: #32140C;
  margin: 0 0 clamp(0.5rem, 1vw, 1rem) 0;
  line-height: 1.3;
      font-weight: 700;
    font-family: Gayathri;
}

.path-card__description {
  font-size: clamp(0.975rem, 1.125vw, 1.2rem);
  color: #32140C;
  line-height: 1.65;
  margin: 0 0 clamp(1.5rem, 2vw, 2rem) 0;
  flex-grow: 1;
      font-weight: 500;
    font-family: Figtree;
}

.path-card__button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid #32140C;
  border-radius: 50px;
  background-color: transparent;
  color: #32140C;
  font-size: clamp(0.975rem, 1.125vw, 1.2rem);
    font-weight: 500;
    font-family: Figtree;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.22s ease, color 0.22s ease;
  align-self: flex-start;
}

.path-card__button:hover {
  background-color: #32140C;
  color: #f5f3f0;
}

.path-card__button:focus {
  outline: 2px solid #32140C;
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .path-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .path-card:last-child {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .path-header {
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2rem);
  }

  .path-header__left,
  .path-header__right {
    max-width: 100%;
  }

  .path-cards {
    grid-template-columns: 1fr;
  }

  .path-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }
}




















/* =========================================
   BUILD SECTION (Base Styles)
   ========================================= */
 .build-section {
            background-color: #F7EEEC;
            padding: clamp(3rem, 8vw, 8rem) 0;
            width: 100%;
            max-width: 100vw;
            position: relative;
            overflow: hidden;
        }

        .build-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 clamp(1rem, 4vw, 3rem);
            width: 100%;
        }

        /* ==================== HEADER ==================== */
        .build-header {
            text-align: center;
            max-width: 900px;
            margin: 0 auto clamp(2.5rem, 5vw, 4rem) auto;
        }

        .build-heading {
            font-family: 'Gayathri', 'Segoe UI', system-ui, sans-serif;
            font-size: clamp(1.85rem, 4.85vw, 3.5rem);
            font-weight: 400;
            color: #32140C;
            margin: 0 0 clamp(0.5rem, 1vw, 1rem) 0;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .build-description {
            font-size: clamp(1.05rem, 1.7vw, 1.25rem);
            color: #32140C;
            line-height: 1.65;
            margin: 0;
                font-weight: 500;
    font-family: Figtree;
        }

        /* ==================== CONTENT GRID ==================== */
        .build-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(2rem, 4vw, 4rem);
            align-items: center;
            width: 100%;
        }

        /* ==================== IMAGE ==================== */
        .build-image {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 3;
            border-radius: clamp(16px, 2vw, 24px);
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(42, 34, 32, 0.12);
            background-color: #e8dcd8;
        }

        .build-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .build-image:hover img {
            transform: scale(1.05);
        }

        /* ==================== BENEFITS ==================== */
        .build-benefits {
            width: 100%;
        }

        .build-benefits__list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: clamp(0.875rem, 2vw, 1.5rem);
        }

        .build-benefit {
            background-color: #32140C;
            border-radius: clamp(16px, 2vw, 24px);
            padding: clamp(1rem, 1.8vw, 1.5rem) clamp(1.25rem, 2.5vw, 2rem);
            display: flex;
            align-items: center;
            gap: clamp(0.875rem, 1.5vw, 1.25rem);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: default;
        }

        .build-benefit:hover {
            background-color: #32140C;
            transform: translateY(16px);
            box-shadow: 0 8px 24px rgba(50, 20, 12, 0.2);
        }

        .build-benefit__icon {
            width: clamp(24px, 2.5vw, 28px);
            height: clamp(24px, 2.5vw, 28px);
            min-width: clamp(24px, 2.5vw, 28px);
            background-color: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .build-benefit__icon i {
            font-size: clamp(16px, 1.8vw, 18px);
            color: #f5f3f0;
            line-height: 1;
        }

        .build-benefit__text {
            font-size: clamp(0.85rem, 1.2vw, 1.2rem);
            font-weight: 500;
    font-family: Figtree;
            color: #f5f3f0;
            line-height: 1.4;
            word-wrap: break-word;
        }

        /* ==================== TABLET & MOBILE ==================== */
        
        /* Tablet Portrait (≤900px) */
        @media (max-width: 900px) {
            .build-section {
                padding: clamp(2.5rem, 6vw, 4rem) 0;
            }

            .build-content {
                grid-template-columns: 1fr;
                gap: clamp(2rem, 5vw, 3rem);
            }

            .build-image {
                order: -1;
                max-height: 450px;
            }

            .build-header {
                margin-bottom: clamp(2rem, 4vw, 3rem);
            }
                      .build-benefit__text {
                font-size: 0.875rem;
                margin-top: 0.38vh;
            }
        }

        /* Mobile (≤640px) */
        @media (max-width: 640px) {
            .build-section {
                padding: clamp(2rem, 5vw, 3rem) 0;
            }

            .build-container {
                padding: 0 1rem;
            }

            .build-header {
                text-align: left;
            }

            .build-heading {
                margin-bottom: 1rem;
            }

            .build-image {
                max-height: 320px;
                border-radius: 16px;
            }

            .build-benefit {
                align-items: flex-start;
                padding: 1.125rem 1rem;
            }

            .build-benefit__icon {
                margin-top: 2px;
            }

                      .build-benefit__text {
                font-size: 0.875rem;
                margin-top: 0.74vh;
            }
        }

        /* Small Mobile (≤480px) */
        @media (max-width: 480px) {
            .build-heading {
                font-size: 1.75rem;
                line-height: 1.15;
            }

            .build-description {
                font-size: 0.9375rem;
            }

            .build-image {
                max-height: 280px;
                border-radius: 14px;
            }

            .build-benefit {
                padding: 1rem 0.875rem;
                gap: 0.75rem;
            }

            .build-benefit__text {
                font-size: 0.875rem;
                margin-top: 0.74vh;
            }
        }

        /* Extra Small (≤375px) */
        @media (max-width: 375px) {
            .build-container {
                padding: 0 0.875rem;
            }

            .build-heading {
                font-size: 1.5rem;
            }

            .build-description {
                font-size: 0.875rem;
            }

            .build-image {
                max-height: 240px;
                border-radius: 12px;
            }

            .build-benefit {
                padding: 0.875rem 0.75rem;
                gap: 0.625rem;
            }

            .build-benefit__icon {
                width: 22px;
                height: 22px;
                min-width: 22px;
            }

            .build-benefit__icon i {
                font-size: 14px;
            }

            .build-benefit__text {
                font-size: 0.8125rem;
                line-height: 1.35;
            }
        }



        /* Touch devices */
        @media (hover: none) and (pointer: coarse) {
            .build-benefit:hover {
                transform: none;
                background-color: #32140C;
                box-shadow: none;
            }

            .build-benefit:active {
                transform: scale(0.98);
            }

            .build-image:hover img {
                transform: none;
            }
        }

        .build-benefit:focus-visible {
            outline: 3px solid #ff6b6b;
            outline-offset: 3px;
            border-radius: clamp(16px, 2vw, 24px);
        }















.faq-container {
  width: min(92vw, 1400px);
  border: 1px solid #ffffff;
  border-radius: 28px;
  padding: clamp(40px, 6vw, 60px);
  background-color: #32140C;
  backdrop-filter: blur(10px);

  /* PERFECT CENTERING */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(8vh, 12vh, 16vh);
}


/* =========================================
   WRAPPER GRID
========================================= */
.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* LEFT COLUMN (Sticky Heading) */
.faq-left {
  position: sticky;
  top: clamp(60px, 12vh, 100px);
}

.faq-heading {
  font-size: clamp(2.5rem, 5.75vw, 3.5rem);
              font-weight: 700;
    font-family: Gayathri;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 20ch;
  color:#ffffff;
}


/* =========================================
   RIGHT COLUMN
========================================= */
.faq-right {
  display: flex;
  flex-direction: column;
}


/* =========================================
   FAQ ITEMS
========================================= */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(20px, 3vw, 28px) 0;
  transition: border-color 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

/* FAQ Question Row */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 3vw, 30px);
  cursor: pointer;
  user-select: none;
}

/* Question Text */
.faq-question-text {
  font-size: clamp(1.05rem, 1.75vw, 1.25rem);
             font-weight: 500;
    font-family: Figtree;
  color: #fff;
  flex: 1;
  line-height: 1.4;
}


/* =========================================
   ICON (+) WITH CLEAN ANIMATION
========================================= */
.faq-icon {
  width: clamp(28px, 5vw, 32px);
  height: clamp(28px, 5vw, 32px);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

/* Perfect alignment of + sign */
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
}

/* Make + become – on open */
.faq-item.active .faq-icon::after {
  transform: scaleY(0);
}

.faq-item.active .faq-icon {
  background-color: rgba(255, 255, 255, 0.15);
}


/* =========================================
   FAQ ANSWER (Accordion)
========================================= */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-text {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
              font-weight: 500;
    font-family: Figtree;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-top: 18px;
}


/* =========================================
   RESPONSIVE BREAKPOINTS
========================================= */

/* Tablets + Small Laptops */
@media (max-width: 1024px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: clamp(30px, 5vw, 50px);
  }

  .faq-left {
    position: relative;
    top: 0;
  }

  .faq-heading {
    font-size: clamp(2rem, 5vw, 2.6rem);
  }

  .faq-container {
    width: min(94vw, 1400px);
    padding: clamp(40px, 5vw, 60px);
    margin-left: auto;
    margin-right: auto;
  }
}


/* Mobile Phones */
@media (max-width: 640px) {
  .faq-container {
    width: min(92vw, 1400px);
    border-radius: 20px;
    padding: clamp(28px, 6vw, 40px);
    
    /* EXPLICIT centering for mobile */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: clamp(8vh, 12vh, 16vh);
  }

  .faq-wrapper {
    gap: 28px;
  }

  .faq-item {
    padding: clamp(16px, 4vw, 20px) 0;
  }

  .faq-question-text {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .faq-icon {
    width: clamp(24px, 6vw, 28px);
    height: clamp(24px, 6vw, 28px);
  }

  .faq-icon::before {
    width: 12px;
  }

  .faq-icon::after {
    height: 12px;
  }
}

/* Extra Small Phones */
@media (max-width: 480px) {
  .faq-container {
    width: min(90vw, 1400px);
    padding: clamp(24px, 6vw, 32px);
    border-radius: 16px;
  }

  .faq-question-text {
    font-size: clamp(0.9375rem, 4.5vw, 1.125rem);
  }

  .faq-answer-text {
    font-size: clamp(0.875rem, 4vw, 1rem);
  }
}



.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%;
    }
}






.filters {
            background-color: #FAF8F5;
            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: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
            font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.25s ease;
            border: 1.5px solid #E0DDD8;
            background-color: transparent;
            color: #6B6560;
            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 {
            background-color: #FAF8F5;
            padding: clamp(1rem, 3vw, 3rem) clamp(1.5rem, 4vw, 3rem);
            width: 100%;
        }

        .overview__container {
            max-width: 1440px;
            margin: 0 auto;
        }

        /* ==================== TOP CONTENT ==================== */
        .overview__header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .overview__heading {
            font-size: clamp(2.25rem, 5vw, 3.75rem);
            font-weight: 500;
            line-height: 1.15;
            letter-spacing: -0.015em;
            color: #32140C;
            margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
            font-family: Gayathri;
        }

        .overview__subheading {
            font-size: clamp(1rem, 2vw, 1.125rem);
            line-height: 1.65;
            color: #32140C;
            max-width: 620px;
            font-weight: 400;
            font-family: Gayathri;
        }

        /* ==================== CARDS CONTAINER ==================== */
        .overview__cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: clamp(1.25rem, 2.5vw, 2rem);
        }

        /* ==================== CARD ==================== */
        .overview-card {
            background-color: #F5EBE8;
            border: 1px solid #D9C8C3;
            border-radius: clamp(20px, 3vw, 28px);
            padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.75rem, 4vw, 2.25rem);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .overview-card:nth-child(2) {
            background-color: #F7F3E3;
            border-color: #E3DCC8;
        }

        .overview-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(26, 22, 20, 0.06);
        }

        /* ==================== CARD ICON ==================== */
        .overview-card__icon-wrapper {
            width: clamp(68px, 11vw, 84px);
            height: clamp(68px, 11vw, 84px);
            background-color: #2B1F18;
            border-radius: clamp(14px, 2.5vw, 18px);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: clamp(1.75rem, 3.5vw, 2.25rem);
        }

        .overview-card__icon {
            font-size: clamp(2rem, 4.5vw, 2.75rem);
            color: #FAF8F5;
        }

        /* ==================== CARD TEXT ==================== */
        .overview-card__title {
            font-size: clamp(1.375rem, 3vw, 1.875rem);
            font-weight: 500;
            line-height: 1.25;
            color: #32140C;
            margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
            letter-spacing: -0.01em;
        }

        .overview-card__description {
            font-size: clamp(0.9375rem, 1.9vw, 1.0625rem);
            line-height: 1.65;
            color: #32140C;
            margin-bottom: clamp(1.75rem, 3.5vw, 2.25rem);
            max-width: 340px;
            font-weight: 400;
        }

        /* ==================== CARD LINK ==================== */
        .overview-card__link {
            padding: clamp(0.75rem, 1.8vw, 0.9375rem) clamp(1.75rem, 3.5vw, 2.25rem);
            border: 1px solid #32140C;
            border-radius: 50px;
            text-decoration: none;
            color: #32140C;
            font-size: clamp(0.9375rem, 1.7vw, 1.0625rem);
            font-weight: 400;
            background-color: transparent;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
            margin-top: auto;
        }

        .overview-card__link:hover {
            background-color: #32140C;
            color: #FAF8F5;
        }

        .overview-card__link:focus-visible {
            outline: 2px solid #32140C;
            outline-offset: 3px;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .overview__cards {
                gap: clamp(1.25rem, 3vw, 1.75rem);
            }

            .overview-card {
                padding: clamp(2.25rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2rem);
            }
        }

        @media (max-width: 768px) {
            .overview {
                padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2rem);
            }

            .overview__header {
                margin-bottom: clamp(2.75rem, 6vw, 4rem);
            }

            .overview__cards {
                grid-template-columns: 1fr;
                gap: clamp(1.25rem, 4vw, 1.75rem);
            }

            .overview-card {
                padding: clamp(2.25rem, 6vw, 2.75rem) clamp(1.75rem, 5vw, 2.25rem);
            }

            .overview-card__description {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .overview-card {
                padding: clamp(2rem, 6vw, 2.25rem) clamp(1.5rem, 5vw, 1.75rem);
            }
        }

        /* ==================== ACCESSIBILITY ==================== */
        @media (prefers-reduced-motion: reduce) {
            .overview-card {
                transition: none;
            }

            .overview-card:hover {
                transform: none;
            }

            .overview-card__link {
                transition: none;
            }
        }
























        .assessments {
            background-color: #F9F4E8;
            padding: clamp(4rem, 8vw, 7rem) 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, 3vw, 3rem);
            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.9375rem, 1.8vw, 1.0625rem);
            line-height: 1.65;
            color: #32140C;
            max-width: 520px;
            flex: 1 1 auto;
        }

        /* ==================== 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(1rem, 2vw, 1.1875rem);
            font-weight: 400;
            color: #32140C;
            cursor: pointer;
            transition: all 0.25s ease;
            text-align: left;
            width: 100%;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
        }

        .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: #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;
            gap: clamp(1.5rem, 3vw, 2.25rem);
            min-height: 520px;
        }

        .assessments__content-text {
            font-size: clamp(0.9375rem, 1.9vw, 1.0625rem);
            line-height: 1.65;
            color: #32140C;
            max-width: 640px;
        }

        .assessments__content-image {
            flex: 1;
            border-radius: clamp(16px, 2.5vw, 20px);
            overflow: hidden;
            min-height: 360px;
            max-height: 440px;
        }

        .assessments__content-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .assessments__main {
                grid-template-columns: minmax(280px, 380px) 1fr;
                gap: clamp(1.75rem, 3vw, 3rem);
            }

            .assessments__content {
                min-height: 480px;
            }

            .assessments__content-image {
                min-height: 320px;
                max-height: 400px;
            }
        }

        @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: 440px;
            }

            .assessments__content-image {
                min-height: 280px;
                max-height: 360px;
            }
        }

        @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: 400px;
            }

            .assessments__content-image {
                min-height: 240px;
            }
        }

        /* ==================== 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(2.5rem, 5vw, 3.5rem);
        }

        .training__heading {
            font-size: clamp(2.25rem, 5vw, 3.75rem);
            font-weight: 500;
            line-height: 1.15;
            letter-spacing: -0.015em;
            color: #32140C;
            margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
            font-family: Gayathri;
        }

        .training__description {
            font-size: clamp(0.9375rem, 1.9vw, 1.0625rem);
            line-height: 1.65;
            color: #32140C;
            max-width: 820px;
        }

        /* ==================== FILTER BUTTONS ==================== */
        .training__filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: clamp(0.75rem, 1.5vw, 1rem);
            margin-bottom: clamp(2.5rem, 5vw, 3.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.7vw, 1rem);
            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(1rem, 2vw, 1.1875rem);
            line-height: 1.65;
            color: #32140C;
            text-align: center;
            max-width: 820px;
            margin: 0 auto;
        }

        /* ==================== IMAGE + POINTS LAYOUT ==================== */
        .training__main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(2rem, 4vw, 4rem);
            align-items: start;
        }

        /* ==================== 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.5vw, 1.5rem);
            flex-shrink: 0;
        }

        .training-point__text {
            font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
            line-height: 1.5;
            font-weight: 400;
        }

        /* ==================== 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 {
            background-color: #F9F4E8;
            padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3rem);
            width: 100%;
        }

        .workplace__container {
            max-width: 1440px;
            margin: 0 auto;
        }

        /* ==================== TOP ROW ==================== */
        .workplace__top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
        }

        .workplace__heading {
            font-size: clamp(2.25rem, 5vw, 3.75rem);
            font-weight: 500;
            line-height: 1.15;
            letter-spacing: -0.015em;
            color: #32140C;
            font-family: Gayathri;
        }

        /* ==================== NAVIGATION BUTTONS ==================== */
        .workplace__nav {
            display: flex;
            gap: clamp(0.75rem, 1.5vw, 1rem);
        }

        .workplace__nav-btn {
            width: clamp(48px, 8vw, 56px);
            height: clamp(48px, 8vw, 56px);
            border: 1.5px solid #32140C;
            border-radius: 50%;
            background-color: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .workplace__nav-btn i {
            font-size: clamp(1.25rem, 2.5vw, 1.5rem);
            color: #32140C;
        }

        .workplace__nav-btn:hover:not(:disabled) {
            background-color: rgba(90, 78, 71, 0.1);
        }

        .workplace__nav-btn:focus-visible {
            outline: 2px solid #32140C;
            outline-offset: 2px;
        }

        .workplace__nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
            pointer-events: none;
        }

        /* ==================== HERO IMAGE ==================== */
        .workplace__hero {
            width: 100%;
            height: clamp(280px, 40vh, 420px);
            border-radius: clamp(20px, 3vw, 28px);
            overflow: hidden;
            margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
            position: relative;
        }

        .workplace__hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: opacity 0.4s ease;
        }

        /* ==================== LOWER CONTENT ==================== */
        .workplace__content {
            display: grid;
            grid-template-columns: minmax(320px, 520px) 1fr;
            gap: clamp(2rem, 4vw, 4rem);
            align-items: start;
        }

        /* ==================== LEFT COLUMN - FEATURE PANEL ==================== */
        .workplace__feature {
            display: flex;
            flex-direction: column;
            gap: clamp(1.5rem, 3vw, 2rem);
        }

        .workplace__panel {
            background-color: #32140C;
            border-radius: clamp(20px, 3vw, 28px);
            padding: clamp(2rem, 4vw, 3rem);
            display: flex;
            flex-direction: row;
            gap: clamp(1.25rem, 2.5vw, 1.75rem);
        }

        .workplace__panel-icon-wrapper {
            width: clamp(56px, 10vw, 72px);
            height: clamp(56px, 10vw, 72px);
            background-color: #F5F0E3;
            border-radius: clamp(12px, 2.5vw, 16px);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .workplace__panel-icon {
            font-size: clamp(1.75rem, 3.5vw, 2.25rem);
            color: #3D3228;
        }

        .workplace__panel-title {
            font-size: clamp(1.375rem, 3vw, 1.875rem);
            font-weight: 500;
            line-height: 1.25;
            color: #FAF8F5;
            letter-spacing: -0.01em;
        }

        .workplace__description {
            font-size: clamp(0.9375rem, 1.9vw, 1.0625rem);
            line-height: 1.65;
            color: #32140C;
        }

        /* ==================== RIGHT COLUMN - POINTS LIST ==================== */
        .workplace__points {
            display: flex;
            flex-direction: column;
            gap: clamp(0.875rem, 2vw, 1.125rem);
        }

        .workplace-point {
            background-color: #FFFEFA;
            border: 1px solid #E8E0CF;
            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);
        }

        .workplace-point__icon {
            font-size: clamp(1.25rem, 2.5vw, 1.5rem);
            color: #32140C;
            flex-shrink: 0;
        }

        .workplace-point__text {
            font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
            line-height: 1.5;
            color: #32140C;
            font-weight: 400;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .workplace__content {
                grid-template-columns: minmax(280px, 460px) 1fr;
                gap: clamp(1.75rem, 3vw, 3rem);
            }
        }

        @media (max-width: 768px) {
            .workplace {
                padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2rem);
            }

            .workplace__top {
                margin-bottom: clamp(2rem, 4vw, 3rem);
            }

            .workplace__hero {
                margin-bottom: clamp(2rem, 4vw, 3rem);
                height: clamp(240px, 35vh, 360px);
            }

            .workplace__content {
                grid-template-columns: 1fr;
                gap: clamp(2rem, 4vw, 2.5rem);
            }
        }

        @media (max-width: 480px) {
            .workplace__top {
                flex-wrap: wrap;
                gap: clamp(1rem, 3vw, 1.5rem);
            }

            .workplace__heading {
                flex: 1 1 100%;
                font-family: Gayathri;
            }

            .workplace__nav {
                margin-left: auto;
            }

            .workplace__panel {
                padding: clamp(1.75rem, 5vw, 2rem);
            }

            .workplace-point {
                padding: clamp(1rem, 3vw, 1.125rem) clamp(1rem, 3vw, 1.25rem);
            }
        }

        /* ==================== ACCESSIBILITY ==================== */
        @media (prefers-reduced-motion: reduce) {
            .workplace__nav-btn,
            .workplace__hero-img {
                transition: none;
            }
        }

        /* ==================== FADE TRANSITION ==================== */
        .workplace__hero-img.fade-out {
            opacity: 0;
        }













        .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.25rem, 5vw, 3.75rem);
            font-weight: 500;
            line-height: 1.15;
            letter-spacing: -0.015em;
            color: #FAF8F5;
            margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
            font-family: Gayathri;
        }

        .access-to-work__intro {
            font-size: clamp(0.9375rem, 1.9vw, 1.0625rem);
            line-height: 1.65;
            color: #E8E0CF;
            max-width: 820px;
            margin-bottom: clamp(1rem, 2vw, 1.25rem);
        }

        .access-to-work__intro-secondary {
            font-size: clamp(0.9375rem, 1.9vw, 1.0625rem);
            line-height: 1.65;
            color: #FAF8F5;
            max-width: 820px;
        }

        /* ==================== PRIMARY IMAGE ==================== */
        .access-to-work__image {
            width: 100%;
            height: clamp(240px, 32vh, 380px);
            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, 1.9vw, 1.0625rem);
            line-height: 1.6;
            color: #32140C;
            font-weight: 400;
        }

        /* ==================== SUPPORTING DESCRIPTION ==================== */
        .access-to-work__description {
            font-size: clamp(0.9375rem, 1.9vw, 1.0625rem);
            line-height: 1.65;
            color: #E8E0CF;
            text-align: center;
            max-width: 820px;
            margin-bottom: clamp(2rem, 4vw, 3rem);
        }

        /* ==================== 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, 1.9vw, 1.125rem);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.25s ease;
            cursor: pointer;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
        }

        .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;
            }
        }






















        .about-hero {
            background-color: #FAF8F5;
       
            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, 6vw, 5rem);
            font-weight: 500;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: #32140C;
            font-family: Gayathri;
        }

        .about-hero__intro {
            font-size: clamp(1rem, 2vw, 1.1875rem);
            line-height: 1.6;
            color: #32140C;
            max-width: 540px;
        }

        /* ==================== 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.7vw, 0.9375rem);
            line-height: 1.5;
            color: #32140C;
            font-weight: 400;
        }

        /* ==================== 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, 5vw, 3.75rem);
            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: 64vh;
        }

        /* ==================== 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, 1.9vw, 1.0625rem);
            line-height: 1.65;
            color: #32140C;
            font-weight: 400;
        }

        /* ==================== 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, 4vw, 3rem);
            line-height: 1.2;
            font-weight: 500;
            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;
}




/* 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;
    }
}