
    /* ----------------------------------------------------
       1. DESIGN SYSTEM & ROOT VARIABLES
       ---------------------------------------------------- */
    :root {
      --primary-dark: #084b17;
      --primary-dark-rgb: 8, 75, 23;
      --primary-accent: #4A9B5F;
      --primary-accent-rgb: 74, 155, 95;
      --bg-light: #F8FAF8;
      --bg-dark: #111111;
      --bg-dark-card: #1A1A1A;
      --accent-light: #E8F2EC;
      --text-dark: #000000;
      --text-muted: #000000;
      --text-light: #FFFFFF;
      
      --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      
      --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
      --transition-fast: all 0.2s ease;
      
      --shadow-sm: 0 4px 12px rgba(8, 75, 23, 0.03);
      --shadow-md: 0 8px 30px rgba(8, 75, 23, 0.06);
      --shadow-lg: 0 16px 40px rgba(8, 75, 23, 0.1);
      
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-full: 9999px;
    }

    /* ----------------------------------------------------
       2. GENERAL STYLES & RESET
       ---------------------------------------------------- */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* Reset default tap highlight and focus styles */
    a, button, [role="button"], .nav-link, .btn {
      -webkit-tap-highlight-color: transparent;
    }

    a:focus, button:focus, [role="button"]:focus, .nav-link:focus, .btn:focus {
      outline: none;
    }

    a:focus-visible, button:focus-visible, [role="button"]:focus-visible, .nav-link:focus-visible, .btn:focus-visible {
      outline: 2px solid var(--primary-accent);
      outline-offset: 4px;
    }
    
    html, body {
      overflow-x: hidden;
      width: 100%;
      position: relative;
    }

    html {
      scroll-padding-top: 72px; /* Offset for fixed header */
      scroll-behavior: smooth;
      background-color: var(--primary-dark); /* Prevent white flash on page transitions */
    }
    
    body {
      font-family: var(--font-main);
      background-color: var(--bg-light);
      color: var(--text-dark);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
    }

    .container {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 24px;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition-fast);
    }

    button, input, textarea {
      font-family: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* Section Utilities */
    section {
      padding: 30px 0 50px;
      position: relative;
    }

    .section-header-center {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 56px;
    }

    .pill-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background-color: var(--accent-light);
      color: var(--text-dark);
      padding: 6px 14px;
      border-radius: var(--radius-full);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      margin-bottom: 16px;
      text-transform: uppercase;
      border: 1px solid rgba(74, 155, 95, 0.15);
    }

    .section-title {
      font-size: 2.3rem;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.25;
    }
    
    .section-subtitle {
      color: var(--text-muted);
      font-size: 1.05rem;
      margin-top: 12px;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-weight: 500;
      font-size: 0.95rem;
      padding: 12px 28px;
      border-radius: var(--radius-full);
      cursor: pointer;
      transition: var(--transition-smooth);
      border: none;
      outline: none;
    }

    .btn-filled-dark {
      background-color: var(--primary-dark);
      color: var(--text-light);
    }

    .btn-filled-dark:hover {
      background-color: #053811;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(8, 75, 23, 0.15);
    }

    .btn-filled-accent {
      background-color: var(--primary-dark);
      color: var(--text-light);
    }

    .btn-filled-accent:hover {
      background-color: #3b824f;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(74, 155, 95, 0.15);
    }

    .btn-outlined-dark {
      background-color: transparent;
      border: 1.5px solid var(--text-dark);
      color: var(--text-dark);
      padding: 10.5px 26.5px; /* Offset border weight */
    }

    .btn-outlined-dark:hover {
      background-color: var(--text-dark);
      color: var(--text-light);
      transform: translateY(-2px);
    }

    .btn-outlined-white {
      background-color: transparent;
      border: 1.5px solid var(--text-light);
      color: var(--text-light);
      padding: 10.5px 26.5px;
    }

    .btn-outlined-white:hover {
      background-color: var(--text-light);
      color: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
    }

    .btn-filled-white {
      background-color: var(--text-light);
      border: 1.5px solid var(--text-light);
      color: var(--primary-dark);
      padding: 10.5px 26.5px;
    }

    .btn-filled-white:hover {
      background-color: #f3f3f3;
      border-color: #f3f3f3;
      color: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    }

    .divider-line {
      width: 100%;
      height: 1px;
      background-color: rgba(74, 155, 95, 0.15);
      margin: 24px 0;
    }

    /* ----------------------------------------------------
       3. SECTION 1 — NAVIGATION BAR
       ---------------------------------------------------- */
    .header-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 72px;
      z-index: 1000;
      transition: var(--transition-smooth);
      background-color: transparent;
      display: flex;
      align-items: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Header Scrolled State */
    .header-nav.scrolled {
      background-color: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      height: 72px;
      box-shadow: var(--shadow-md);
      border-bottom: 1px solid rgba(8, 75, 23, 0.05);
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }

    /* Logo Styling */
    .logo-block {
      display: flex;
      align-items: center;
    }
    
    .logo-img {
      height: 48px;
      width: auto;
      transition: var(--transition-smooth);
      filter: brightness(0) invert(1);
    }

    .header-nav.scrolled .logo-img {
      filter: none;
    }

    /* Central Nav Links */
    .nav-links {
      display: flex;
      gap: 32px;
      align-items: center;
      margin-left: auto;
      margin-right: 40px;
    }

    .nav-link {
      font-size: 0.95rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.75);
      position: relative;
      padding: 8px 0;
      transition: var(--transition-fast);
    }

    .nav-link:hover {
      color: var(--text-light);
    }

    .header-nav.scrolled .nav-link {
      color: rgba(0, 0, 0, 0.6);
    }

    .header-nav.scrolled .nav-link:hover {
      color: var(--text-dark);
      opacity: 1;
    }
    
    /* Right Action Buttons */
    .nav-actions {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .nav-actions .btn {
      padding: 8px 20px;
      font-size: 0.85rem;
      min-width: 125px;
    }

    .btn-donate-nav {
      background-color: var(--text-light);
      color: var(--primary-dark);
    }

    .btn-donate-nav:hover {
      background-color: var(--accent-light);
      transform: translateY(-1px);
    }

    .header-nav.scrolled .btn-donate-nav {
      background-color: var(--primary-dark);
      color: var(--text-light);
    }

    .header-nav.scrolled .btn-donate-nav:hover {
      background-color: #122C1E;
    }

    .btn-gift-nav {
      background-color: transparent;
      border: 1.5px solid rgba(255, 255, 255, 0.7);
      color: var(--text-light);
      padding: 6.5px 18.5px;
    }

    .btn-gift-nav:hover {
      background-color: rgba(255, 255, 255, 0.1);
      border-color: var(--text-light);
      transform: translateY(-1px);
    }

    .header-nav.scrolled .btn-gift-nav {
      border-color: var(--text-dark);
      color: var(--text-dark);
    }

    .header-nav.scrolled .btn-gift-nav:hover {
      background-color: var(--text-dark);
      color: var(--text-light);
    }

    /* Mobile Hamburger Menu */
    .hamburger-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-light);
      font-size: 1.8rem;
      transition: var(--transition-fast);
      z-index: 1001;
    }

    .header-nav.scrolled .hamburger-btn {
      color: var(--text-dark);
    }

    /* Mobile Navigation Drawer */
    .mobile-nav-drawer {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background-color: var(--primary-dark);
      box-shadow: -4px 0 30px rgba(0, 0, 0, 0.25);
      padding: 90px 24px 40px;
      display: flex;
      flex-direction: column;
      gap: 32px;
      z-index: 1002; /* sit on top of header */
      transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .mobile-nav-drawer.active {
      right: 0;
    }

    .drawer-close-btn {
      position: absolute;
      top: 20px;
      right: 24px;
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.8rem;
      cursor: pointer;
      z-index: 10;
      transition: var(--transition-fast);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4px;
    }

    .drawer-close-btn:hover {
      color: #ffffff;
      transform: scale(1.1);
    }

    .mobile-links {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .mobile-link {
      font-size: 1.1rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.8);
      padding: 8px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      transition: var(--transition-smooth);
    }

    .mobile-link:hover {
      color: #ffffff;
      padding-left: 4px; /* subtle slide-in hover effect */
    }

    .mobile-link.active {
      color: #ffffff;
      font-weight: 600;
      border-bottom-color: #ffffff;
    }

    .mobile-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: auto;
    }

    .mobile-nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      z-index: 1001; /* sit on top of header, but below drawer */
      opacity: 0;
      visibility: hidden;
      transition: var(--transition-smooth);
    }

    .mobile-nav-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    /* ----------------------------------------------------
       4. SECTION 2 — HERO SECTION
       ---------------------------------------------------- */
    .hero-section {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding: 0;
      background-color: #0b150f;
    }

    /* Full-bleed background canopy photo */
    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    /* Dark Overlay */
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.65) 100%
      ); */

      background: linear-gradient(
        to bottom,
        rgba(8, 75, 23, 0.3) 0%,
        rgba(8, 75, 23, 0.45) 100%
      );

      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      text-align: center;
      color: var(--text-light);
      max-width: 820px;
      padding: 0 24px;
      margin-top: 40px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: var(--text-light);
      padding: 8px 18px;
      border-radius: var(--radius-full);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.5px;
      margin-bottom: 24px;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    }

    .hero-title {
      font-size: 2.8rem;
      font-weight: 600;
      line-height: 1.2;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }

    .hero-desc {
      font-size: 1.15rem;
      color: rgba(255, 255, 255, 0.85);
      max-width: 640px;
      margin: 0 auto 36px;
      font-weight: 400;
    }

    .hero-ctas {
      display: flex;
      gap: 16px;
      justify-content: center;
    }

    .hero-ctas .btn {
      padding: 14px 32px;
      font-size: 1rem;
    }

    /* Scroll Down Indicator */
    .scroll-down-chevron {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      color: rgba(255, 255, 255, 0.75);
      font-size: 2.2rem;
      cursor: pointer;
      animation: bounce 2s infinite;
      transition: color 0.2s ease;
    }

    .scroll-down-chevron:hover {
      color: var(--text-light);
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
      }
      40% {
        transform: translate(-50%, -10px);
      }
      60% {
        transform: translate(-50%, -5px);
      }
    }

    /* ----------------------------------------------------
       5. SECTION 3 — ABOUT US
       ---------------------------------------------------- */
    .about-section {
      background-color: #F4F6F4;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr; /* Equal 50/50 columns */
      gap: 64px;
      align-items: center;
    }

    /* Asymmetric Photo Collage Grid */
    .about-collage {
      position: relative;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 16px;
      width: 100%;
    }

    .collage-img {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: var(--transition-smooth);
    }

    .collage-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition-smooth);
    }

    .collage-img:hover img {
      transform: scale(1.04);
    }

    .collage-tall {
      grid-row: span 2;
      height: 100%; /* Auto-stretch to fit */
    }

    .collage-square {
      aspect-ratio: 1 / 1; /* 1by1 aspect ratio */
      height: auto;
    }

    /* Floating Impact Badge */
    .about-floating-badge {
      position: absolute;
      bottom: -16px;
      left: -16px;
      background-color: #ffffff;
      padding: 16px 24px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg);
      border-left: 4px solid var(--primary-accent);
      z-index: 10;
      animation: float 4s ease-in-out infinite;
    }

    .badge-text {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-dark);
      white-space: nowrap;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    /* Content Area */
    .about-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .about-intro-text {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-top: 20px;
      margin-bottom: 24px;
    }

    /* Mission / Vision Rows */
    .row-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      width: 100%;
      margin-bottom: 32px;
    }

    .row-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .row-icon-circle {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background-color: var(--accent-light);
      border: 1px solid rgba(74, 155, 95, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .row-icon-circle i {
      font-size: 1.25rem;
      color: var(--primary-accent);
    }

    .row-title {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 4px;
    }

    .row-desc {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* ----------------------------------------------------
       5. SECTION 5 — OUR IMPACT (JOURNEY IN NUMBERS)
       ---------------------------------------------------- */
    .impact-section {
      position: relative;
      background-color: #0b150f;
      color: var(--text-light);
      overflow: hidden;
    }

    .impact-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .impact-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(8, 75, 23, 0.88); /* Forest green overlay */
      z-index: 2;
    }

    .impact-content {
      position: relative;
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .impact-section-title {
      color: var(--text-light);
    }

    .impact-subtitle {
      color: rgba(255, 255, 255, 0.8);
    }

    /* Stat Cards Row */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      width: 100%;
      margin-bottom: 48px;
    }

    .stat-card {
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-lg);
      padding: 32px 20px;
      text-align: center;
      transition: var(--transition-smooth);
    }

    .stat-card:hover {
      transform: translateY(-8px);
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.2);
      box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    }

    .stat-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background-color: rgba(74, 155, 95, 0.15);
      border: 1px solid rgba(74, 155, 95, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: var(--text-light);
      font-size: 1.4rem;
    }

    .stat-number {
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--text-light);
      line-height: 1.1;
      margin-bottom: 8px;
    }

    /* Leaf Divider Line */
    .stat-divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 12px 0 16px;
    }
    
    .stat-divider span {
      flex: 1;
      height: 1px;
      background-color: rgba(255, 255, 255, 0.2);
    }

    .stat-divider i {
      color: var(--text-light);
      font-size: 0.95rem;
    }

    .stat-label {
      font-size: 0.85rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: rgba(255, 255, 255, 0.7);
    }

    /* ----------------------------------------------------
       4. SECTION 4 — RECOGNITION & DIGNITARIES
       ---------------------------------------------------- */
    .recognition-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    .recognition-card {
      background-color: #ffffff;
      border: 1px solid #e2e8e2;
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition-smooth);
      display: flex;
      flex-direction: column;
      box-shadow: var(--shadow-sm);
      padding: 12px;
    }

    .recognition-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary-accent);
    }

    .recognition-img-wrapper {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      aspect-ratio: 16 / 9;
      width: 100%;
    }

    .recognition-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition-smooth);
    }

    .recognition-card:hover .recognition-img {
      transform: scale(1.05);
    }

    .recognition-info {
      padding: 12px 4px 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      flex-grow: 1;
    }

    .recognition-name {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--primary-dark);
      line-height: 1.4;
      margin-bottom: 8px;
      flex-grow: 1;
    }

    .recognition-line {
      display: block;
      width: 24px;
      height: 3px;
      background-color: var(--primary-accent);
      border-radius: 2px;
      transition: var(--transition-smooth);
    }

    .recognition-card:hover .recognition-line {
      width: 48px;
    }

    @media (max-width: 1024px) {
      .recognition-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
    }

    @media (max-width: 576px) {
      .recognition-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      .stats-row {
        grid-template-columns: 1fr;
      }
      .work-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ----------------------------------------------------
       6. SECTION 6 — AREAS OF WORK
       ---------------------------------------------------- */
    .work-section {
      background-color: #ffffff;
    }

    .work-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .work-card {
      border: 1px solid #e1eadc;
      border-radius: 24px;
      padding: 56px 20px 24px 20px;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      background-color: #f8fbf5;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      overflow: visible; /* Allow icon to overflow top edge */
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
      margin-top: 40px; /* Space for top overlapping circle */
    }

    .work-card:hover {
      border-color: rgba(74, 155, 95, 0.35);
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(8, 75, 23, 0.06);
    }

    .work-icon-wrap {
      position: absolute;
      top: -40px; /* Centered on top border (half inside, half outside) */
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background-color: #ffffff;
      border: 2px solid #e1eadc;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-dark);
      font-size: 1.85rem;
      box-shadow: 0 4px 12px rgba(8, 75, 23, 0.05);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      z-index: 10;
    }

    .work-card:hover .work-icon-wrap {
      background-color: var(--primary-dark);
      border-color: var(--primary-dark);
      color: var(--text-light);
      transform: translateX(-50%) scale(1.1) rotate(10deg);
      box-shadow: 0 8px 20px rgba(8, 75, 23, 0.25);
    }

    .work-title {
      font-family: var(--font-heading);
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
    }

    .work-desc {
      font-size: 0.9rem;
      color: var(--text-dark);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .work-badge {
      margin-top: auto;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      border: 1px solid var(--text-dark);
      border-radius: 100px;
      background-color: #ffffff;
      color: var(--text-dark);
      font-size: 0.85rem;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .work-card:hover .work-badge {
      border-color: var(--text-dark);
      background-color: rgba(0, 0, 0, 0.05);
      color: var(--text-dark);
    }

    /* ----------------------------------------------------
       7. SECTION 7 — FEATURED PROJECTS
       ---------------------------------------------------- */
    .projects-section {
      background-color: #ffffff;
    }

    /* Asymmetric Masonry Grid layout */
    .project-grid {
      display: grid;
      grid-template-columns: 1fr 1.15fr 1.15fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 20px;
      height: 520px;
      margin-bottom: 48px;
    }

    .project-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      cursor: pointer;
      transition: var(--transition-smooth);
    }

    .project-card:hover {
      transform: scale(1.02);
      box-shadow: var(--shadow-lg);
      z-index: 5;
    }

    /* Specific Grid Placements */
    .project-card-pos-0,
    .project-card-delhi,
    .project-card-delhi-ncr {
      grid-row: 1 / 3;
      grid-column: 1 / 2;
    }

    .project-card-pos-1,
    .project-card-haryana {
      grid-row: 1 / 2;
      grid-column: 2 / 3;
    }

    .project-card-pos-2,
    .project-card-uttarakhand {
      grid-row: 2 / 3;
      grid-column: 2 / 3;
    }

    .project-card-pos-3,
    .project-card-odisha {
      grid-row: 1 / 2;
      grid-column: 3 / 4;
    }

    .project-card-pos-4,
    .project-card-pune-eco {
      grid-row: 2 / 3;
      grid-column: 3 / 4;
    }

    .project-card-pos-5,
    .project-card-pune-corp {
      grid-row: 1 / 3;
      grid-column: 4 / 5;
    }

    /* Background image with zoom transition */
    .project-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
      z-index: 1;
    }

    .project-card:hover .project-img {
      transform: scale(1.08);
    }

    /* Overlay for readability */
    .project-card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 50%,
        rgba(8, 75, 23, 0.45) 100%
      );
      z-index: 2;
      pointer-events: none;
    }

    /* Frosted Glass label bottom */
    .project-label {
      position: absolute;
      bottom: 16px;
      left: 16px;
      right: 16px;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(12px) saturate(180%);
      -webkit-backdrop-filter: blur(12px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: var(--radius-md);
      padding: 14px 18px;
      z-index: 3;
      transition: var(--transition-smooth);
    }

    .project-card:hover .project-label {
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
      transform: translateY(-2px);
    }

    .project-title {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.3;
    }

    /* Underline Accent for Titles */
    .underline-accent {
      position: relative;
      display: inline-block;
    }

    .underline-accent::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: var(--primary-accent);
      border-radius: 2px;
    }

    .projects-footer {
      text-align: center;
    }

     /* ----------------------------------------------------
        8. SECTION 8 — LATEST BLOG POSTS
        ---------------------------------------------------- */
     .blog-section {
       background-color: #ffffff;
     }

     .blog-grid {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 30px;
       margin-bottom: 48px;
     }

     .blog-card {
       background-color: #ffffff;
       border: 1px solid #e2e8e2;
       border-radius: var(--radius-lg);
       overflow: hidden;
       display: flex;
       flex-direction: column;
       transition: var(--transition-smooth);
     }

     .blog-card:hover, .blog-card:focus-within {
       transform: translateY(-6px);
       box-shadow: var(--shadow-lg);
       border-color: rgba(74, 155, 95, 0.3);
       outline: none;
     }

     .blog-img-wrapper {
       width: 100%;
       aspect-ratio: 400 / 220;
       overflow: hidden;
       position: relative;
     }

     .blog-card-img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
     }

     .blog-card:hover .blog-card-img {
       transform: scale(1.05);
     }

     .blog-card-content {
       padding: 24px;
       display: flex;
       flex-direction: column;
       flex-grow: 1;
     }

     .blog-card-header {
       display: flex;
       justify-content: space-between;
       align-items: center;
       margin-bottom: 16px;
     }

     .blog-tag {
       font-size: 0.75rem;
       font-weight: 600;
       padding: 4px 10px;
       border-radius: var(--radius-full);
       text-transform: uppercase;
       letter-spacing: 0.5px;
       background-color: var(--accent-light);
       color: var(--primary-dark);
       border: 1px solid rgba(8, 75, 23, 0.08);
     }

     .blog-meta {
       font-size: 0.8rem;
       color: #666666;
     }

     .blog-card-title {
       font-size: 1.25rem;
       font-weight: 600;
       color: var(--text-dark);
       line-height: 1.4;
       margin-bottom: 12px;
       transition: var(--transition-fast);
     }

     .blog-card:hover .blog-card-title {
       color: var(--primary-accent);
     }

     .blog-card-excerpt {
       font-size: 0.9rem;
       color: #555555;
       line-height: 1.5;
       margin-bottom: 24px;
       flex-grow: 1;
     }

     .blog-card-footer {
       display: flex;
       justify-content: space-between;
       align-items: center;
       border-top: 1px solid #f0f4f0;
       padding-top: 16px;
       margin-top: auto;
     }

     .blog-author {
       display: flex;
       align-items: center;
       gap: 8px;
     }

     .blog-author-avatar {
       width: 22px;
       height: 22px;
       border-radius: 50%;
       object-fit: cover;
       background-color: #e2e8e2;
       border: 1px solid #d0d8d0;
     }

     .blog-author-name {
       font-size: 0.85rem;
       font-weight: 500;
       color: #444444;
     }

     .blog-read-link {
       display: inline-flex;
       align-items: center;
       gap: 4px;
       font-size: 0.85rem;
       font-weight: 600;
       color: var(--primary-accent);
       transition: var(--transition-smooth);
     }

     .blog-read-link i {
       font-size: 0.9rem;
       transition: transform 0.3s ease;
     }

     .blog-card:hover .blog-read-link i {
       transform: translate(2px, -2px);
     }

     .blog-footer {
       text-align: center;
       margin-top: 16px;
     }

     .btn-blog-view-all {
       border-radius: var(--radius-full);
     }

      /* ----------------------------------------------------
         9. SECTION 9 — FAQ
         ---------------------------------------------------- */
    .faq-section {
      background-color: #ffffff;
    }

    .faq-container {
      max-width: 720px;
      margin: 0 auto;
    }

    /* Accordion wrapper */
    .faq-accordion {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .faq-item {
      border: 1px solid #E2E8E2;
      border-radius: 16px;
      overflow: hidden;
      background-color: #F8FAF8;
      transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .faq-item:hover {
      border-color: rgba(74, 155, 95, 0.25);
      box-shadow: 0 4px 15px rgba(8, 75, 23, 0.02);
      background-color: #fafdfa;
    }

    .faq-item.open {
      border-color: var(--primary-accent);
      box-shadow: 0 10px 30px rgba(8, 75, 23, 0.05);
      background-color: #ffffff;
    }

    /* Header toggle */
    .faq-header {
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      user-select: none;
    }

    .faq-question {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text-dark);
      padding-right: 16px;
      line-height: 1.4;
    }

    .faq-icon-box {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background-color: rgba(74, 155, 95, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-dark);
      transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
      flex-shrink: 0;
    }

    .faq-icon-box i {
      font-size: 1.1rem;
      font-weight: 600;
    }

    .faq-item:hover .faq-icon-box {
      background-color: rgba(74, 155, 95, 0.12);
    }

    /* [+] rotates to [×] when open */
    .faq-item.open .faq-icon-box {
      transform: rotate(45deg);
      background-color: var(--primary-accent);
      color: #ffffff;
    }

    /* Expandable Body Panel */
    .faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1), padding 0.3s ease;
      padding: 0 24px;
    }

    .faq-answer {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.6;
      border-top: 1px solid rgba(74, 155, 95, 0.1);
      padding-top: 16px;
      padding-bottom: 20px;
    }

    /* ----------------------------------------------------
       10. SECTION 10 — GET IN TOUCH
       ---------------------------------------------------- */
    .contact-section {
      background-color: var(--primary-dark);
      color: var(--text-light);
    }

    /* Top Banner Strip */
    .contact-banner {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: var(--radius-lg);
      padding: 24px 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 72px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    }

    .contact-banner-text {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--text-light);
    }

    .contact-banner-actions {
      display: flex;
      gap: 16px;
    }

    .contact-banner-actions .btn {
      padding: 10px 24px;
      font-size: 0.9rem;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 64px;
    }

    /* Form Fields Styling */
    .contact-form-title {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 24px;
      color: var(--text-light);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .input-control {
      width: 100%;
      background: rgba(255, 255, 255, 0.05);
      border: 1.5px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--radius-md);
      padding: 14px 18px;
      color: var(--text-light);
      font-size: 0.95rem;
      outline: none;
      transition: var(--transition-smooth);
    }

    .input-control::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    .input-control:focus {
      border-color: var(--primary-accent);
      background: rgba(255, 255, 255, 0.08);
      box-shadow: 0 0 0 4px rgba(74, 155, 95, 0.15);
    }

    textarea.input-control {
      resize: vertical;
      min-height: 120px;
    }

    .btn-submit-form {
      width: 100%;
      padding: 14px;
      font-weight: 600;
    }

    /* Inline Success Banner */
    .success-banner {
      display: flex;
      align-items: center;
      gap: 12px;
      background-color: var(--accent-light);
      border: 1px solid rgba(74, 155, 95, 0.3);
      border-radius: var(--radius-md);
      padding: 16px 20px;
      margin-top: 20px;
      color: var(--text-dark);
      font-size: 0.95rem;
      font-weight: 500;
      opacity: 0;
      transform: translateY(10px);
      height: 0;
      overflow: hidden;
      padding: 0;
      margin: 0;
      transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .success-banner.visible {
      opacity: 1;
      transform: translateY(0);
      height: auto;
      padding: 16px 20px;
      margin-top: 20px;
    }

    .success-banner i {
      font-size: 1.3rem;
      color: var(--text-dark);
    }

    /* Find Us Column info */
    .info-list {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-bottom: 32px;
    }

    .info-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .info-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-light);
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .info-title {
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 4px;
    }

    .info-value {
      font-size: 1rem;
      color: var(--text-light);
      line-height: 1.4;
    }

    .info-value a:hover {
      color: var(--primary-accent);
    }

    /* Embedded Google Map with green tones filter styling */
    .map-embed-wrapper {
      width: 100%;
      height: 250px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .map-embed-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* ----------------------------------------------------
       11. SECTION 11 — FOOTER
       ---------------------------------------------------- */
    .footer {
      background-color: var(--bg-dark);
      color: rgba(255, 255, 255, 0.7);
      padding: 80px 0 32px;
      font-size: 0.9rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
      gap: 40px;
      margin-bottom: 56px;
    }

    .footer-logo-col {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
    }

    .footer-logo-img {
      height: 48px;
      width: auto;
      filter: brightness(0) invert(1);
    }

    .footer-logo-tagline {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.4;
    }

    /* Social Icons list */
    .social-list {
      display: flex;
      gap: 10px;
      margin-top: 12px;
    }

    .social-link {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background-color: rgba(255, 255, 255, 0.03);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.7);
      transition: var(--transition-smooth);
    }

    .social-link:hover {
      color: var(--text-light);
      background-color: var(--primary-accent);
      border-color: var(--primary-accent);
      transform: translateY(-2px);
    }

    .social-link i {
      font-size: 1.1rem;
    }

    /* Columns titles */
    .footer-title {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-light);
      margin-bottom: 20px;
      letter-spacing: 0.5px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-link-item {
      transition: var(--transition-fast);
      cursor: pointer;
    }

    .footer-link-item:hover {
      color: var(--text-light);
    }

    /* Make a Difference Column */
    .footer-cta-desc {
      font-size: 0.85rem;
      margin-bottom: 16px;
      line-height: 1.5;
    }

    .footer-cta-actions {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-cta-actions .btn {
      width: 100%;
      padding: 10px 16px;
      font-size: 0.85rem;
    }

    .btn-footer-outlined {
      border: 1.5px solid rgba(255, 255, 255, 0.25);
      color: rgba(255,255,255,0.85);
    }

    .btn-footer-outlined:hover {
      border-color: var(--text-light);
      background-color: var(--text-light);
      color: var(--text-dark);
    }

    /* Bottom Copyright strip */
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.5);
    }

    .footer-bottom-links {
      display: flex;
      gap: 24px;
    }

    .footer-bottom-link:hover {
      color: var(--text-light);
    }

    /* ----------------------------------------------------
       12. RESPONSIVE MEDIA QUERIES
       ---------------------------------------------------- */
    
    /* Responsive Breakpoint: 1024px Desktop/Tablet transition */
    @media (max-width: 1024px) {
      .about-grid {
        gap: 40px;
      }

      .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
      }

      .footer-col-cta {
        grid-column: span 3;
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 24px;
        align-items: center;
        border-top: 1px solid rgba(255,255,255,0.08);
        padding-top: 24px;
        margin-top: 12px;
      }

      .footer-cta-actions {
        flex-direction: row;
      }
      
      .footer-cta-actions .btn {
        width: auto;
        flex: 1;
      }
    }

    /* Responsive Breakpoint: 768px Tablet */
    @media (max-width: 768px) {
      .blog-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }

      .blog-card:nth-child(3) {
        grid-column: span 2;
        flex-direction: row;
      }

      .blog-card:nth-child(3) .blog-img-wrapper {
        width: 45%;
        aspect-ratio: auto;
      }

      .blog-card:nth-child(3) .blog-card-content {
        width: 55%;
      }

      section {
        padding: 40px 0 60px;
      }

      .section-title {
        font-size: 1.95rem;
      }

      /* Navigation hamburger trigger */
      .nav-links, .nav-actions {
        display: none;
      }

      .hamburger-btn {
        display: block;
      }

      .hero-section {
        height: auto;
        min-height: 80vh;
        padding: 110px 0 70px 0;
      }

      .hero-content {
        margin-top: 0;
      }

      .hero-title {
        font-size: 2.2rem;
      }

      .hero-desc {
        font-size: 1rem;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .about-collage {
        order: 1; /* Show image collage first */
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
      }

      .about-content {
        order: 2; /* Show text content second */
        align-items: center;
        text-align: center;
      }

      .row-item {
        text-align: left;
      }

      .about-floating-badge {
        bottom: -10px;
        left: -10px;
        padding: 12px 18px;
      }

      .stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
      }

      .work-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
      }

      .contact-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 24px;
      }

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
      }

      .footer-col-cta {
        grid-column: span 3;
      }

      .project-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 16px;
      }

      .project-card-pos-0,
      .project-card-pos-1,
      .project-card-pos-2,
      .project-card-pos-3,
      .project-card-pos-4,
      .project-card-pos-5,
      .project-card-delhi,
      .project-card-delhi-ncr,
      .project-card-haryana,
      .project-card-uttarakhand,
      .project-card-odisha,
      .project-card-pune-eco,
      .project-card-pune-corp {
        grid-row: auto;
        grid-column: auto;
      }

      .project-card.tall,
      .project-card.stacked {
        height: 280px;
      }
    }

    /* Responsive Breakpoint: 480px Mobile */
    @media (max-width: 480px) {
      section {
        padding: 30px 0 50px;
      }

      .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .blog-card:nth-child(3) {
        grid-column: span 1;
        flex-direction: column;
      }

      .blog-card:nth-child(3) .blog-img-wrapper {
        width: 100%;
        aspect-ratio: 400 / 220;
      }

      .blog-card:nth-child(3) .blog-card-content {
        width: 100%;
      }

      .section-title {
        font-size: 1.7rem;
      }

      .hero-title {
        font-size: 1.8rem;
      }

      .hero-ctas {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
      }

      .hero-ctas .btn {
        width: 100%;
      }

      .about-collage {
        grid-template-columns: 1fr;
      }

      .collage-tall {
        height: 280px;
      }

      .collage-square {
        display: none; /* Hide supplementary collage photos on tiny screens for speed/layout */
      }

      .about-floating-badge {
        bottom: 8px;
        left: 8px;
      }

      .stats-row {
        grid-template-columns: 1fr;
      }

      .work-grid {
        grid-template-columns: 1fr;
      }

      .project-grid {
        grid-template-columns: 1fr;
      }

      .project-card.tall, .project-card.stacked {
        height: 260px;
      }

      .form-row {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-col-cta {
        grid-column: span 1;
        grid-template-columns: 1fr;
      }

      .footer-cta-actions {
        flex-direction: column;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }

      .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
      }
    }
  

    @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    /* ----------------------------------------------------
       13. ANIMATIONS & REVEAL SYSTEM
       ---------------------------------------------------- */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    /* Hero Page-Load Transitions */
    .hero-bg {
      opacity: 0;
      animation: fadeIn 1.2s ease-out forwards;
    }

    .hero-content .hero-title {
      opacity: 0;
      animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
    }

    .hero-content .hero-desc {
      opacity: 0;
      animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    }

    .hero-ctas {
      opacity: 0;
      animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
    }

    /* Scroll Reveal Base Rules */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
      transition-delay: var(--delay, 0ms);
      will-change: opacity, transform;
    }

    .reveal.reveal-left {
      transform: translateX(-30px);
    }

    .reveal.reveal-right {
      transform: translateX(30px);
    }

    .reveal.reveal-scale {
      transform: scale(0.95);
    }

    .reveal.revealed {
      opacity: 1;
      transform: translate(0, 0) scale(1);
    }

    /* Smooth scale-up for hover buttons */
    .btn:hover {
      transform: translateY(-3px) scale(1.02);
    }

    /* Breadcrumb Trail Styles */
    .breadcrumb-trail {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 14px;
      font-size: 0.9rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.6);
    }

    .breadcrumb-trail a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: var(--transition-smooth);
    }

    .breadcrumb-trail a:hover {
      color: var(--primary-accent);
      text-decoration: underline;
    }

    .breadcrumb-trail i {
      font-size: 0.75rem;
      opacity: 0.7;
    }

    .breadcrumb-trail span {
      color: rgba(255, 255, 255, 0.95);
    }

    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 48px;
      height: 48px;
      background-color: var(--primary-accent);
      color: var(--text-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(8, 75, 23, 0.25);
      border: 1.5px solid rgba(255, 255, 255, 0.15);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background-color 0.3s;
      z-index: 999;
    }

    .back-to-top.active {
      opacity: 1;
      visibility: visible;
    }

    .back-to-top:hover {
      background-color: var(--primary-dark);
      transform: translateY(-5px);
      color: var(--primary-accent);
      border-color: var(--primary-accent);
    }