/* ===== CSS VARIABLES ===== */
    :root {
      --green-deep: #1B4332;
      --green-mid: #2D6A4F;
      --green-light: #40916C;
      --gold: #F4A924;
      --gold-dark: #D4891A;
      --white: #FFFFFF;
      --dark: #1A1A1A;
      --gray-bg: #F7F9FA;
      --gray-text: #6B7280;
      --card-radius: 20px;
      --transition: all 0.35s ease;
      --shadow: 0 8px 40px rgba(27,67,50,0.12);
      --shadow-hover: 0 16px 60px rgba(27,67,50,0.22);
      --glass: rgba(255,255,255,0.10);
      --glass-border: rgba(255,255,255,0.20);
    }

    /* ===== BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--dark);
      background: var(--white);
      overflow-x: hidden;
      max-width: 100%;
      position: relative;
    }
    img { max-width: 100%; }
    h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; }

    /* Scroll Progress Bar */
    #scroll-progress {
      position: fixed; top: 0; left: 0; height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--green-light));
      width: 0%; z-index: 9999; transition: width 0.1s;
    }

    /* Loading Screen */
    #loader {
      position: fixed; inset: 0; background: var(--green-deep);
      display: flex; align-items: center; justify-content: center;
      z-index: 99999; transition: opacity 0.5s ease;
    }
    #loader .loader-inner {
      text-align: center; color: white;
    }
    #loader .loader-logo {
      width: 80px; height: 80px; border-radius: 50%;
      background: var(--gold); display: flex; align-items: center;
      justify-content: center; margin: 0 auto 20px;
      font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 28px;
      color: var(--green-deep); animation: pulse 1.2s ease infinite;
    }
    #loader p { font-family: 'Poppins', sans-serif; font-size: 14px; opacity: 0.7; letter-spacing: 3px; text-transform: uppercase; }
    #loader .loader-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.2); border-radius: 2px; margin: 16px auto 0; overflow: hidden; }
    #loader .loader-fill { height: 100%; width: 0; background: var(--gold); border-radius: 2px; animation: loadfill 1.5s ease forwards; }
    @keyframes loadfill { to { width: 100%; } }
    @keyframes pulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.1);} }

    /* ===== TOP HEADER BAR ===== */
    #top-bar {
      background: var(--green-deep);
      padding: 8px 0;
      font-size: 13px;
      transition: var(--transition);
    }
    #top-bar a { color: rgba(255,255,255,0.8); text-decoration: none; transition: var(--transition); }
    #top-bar a:hover { color: var(--gold); }
    #top-bar .social-links a {
      width: 28px; height: 28px; border-radius: 50%;
      background: rgba(255,255,255,0.1); display: inline-flex;
      align-items: center; justify-content: center; margin-left: 6px;
      font-size: 12px;
    }
    #top-bar .social-links a:hover { background: var(--gold); color: var(--green-deep) !important; }

    /* ===== NAVBAR ===== */
    #mainNav {
      background: rgba(27,67,50,0.76);
      padding: 0;
      position: fixed; width: 100%; z-index: 1000;
      top: 41px;
      transition: all 0.4s ease;
    }
    #mainNav.scrolled {
      top: 0;
      background: rgba(27,67,50,0.97) !important;
      backdrop-filter: blur(20px);
      box-shadow: 0 4px 30px rgba(0,0,0,0.2);
      padding: 0;
    }
    #mainNav .navbar-inner {
      display: flex; align-items: center;
      padding: 0 24px; height: 72px;
      max-width: 1400px; margin: 0 auto;
    }

    /* Logo Circle */
    .nav-logo-wrap {
      position: relative; margin-right: 32px; flex-shrink: 0;
    }
    .nav-logo-circle {
      width: 64px; height: 64px; border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(244,169,36,0.5);
      border: 3px solid rgba(255,255,255,0.3);
      font-family: 'Poppins', sans-serif; font-weight: 800;
      font-size: 18px; color: var(--green-deep);
      text-decoration: none;
      transition: var(--transition);
      position: relative; z-index: 2;
    }
    .nav-logo-circle:hover { transform: scale(1.08); box-shadow: 0 8px 30px rgba(244,169,36,0.7); }
    .nav-logo-text {
      margin-left: 14px; display: flex; flex-direction: column; justify-content: center;
    }
    .nav-logo-text span:first-child {
      font-family: 'Poppins', sans-serif; font-weight: 700;
      font-size: 16px; color: white; line-height: 1.1;
    }
    .nav-logo-text span:last-child {
      font-size: 10px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase;
    }

    /* Nav Links */
    .navbar-nav-center {
      flex: 1; display: flex; justify-content: center; align-items: center; gap: 4px;
    }
    .navbar-nav-center .nav-item > .nav-link {
      color: rgba(255,255,255,0.9) !important;
      font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 13.5px;
      padding: 8px 14px !important; border-radius: 8px;
      transition: var(--transition); white-space: nowrap;
    }
    .navbar-nav-center .nav-item > .nav-link:hover,
    .navbar-nav-center .nav-item > .nav-link.active {
      color: var(--gold) !important; background: rgba(255,255,255,0.08);
    }
    .navbar-nav-center .dropdown-menu {
      background: rgba(27,67,50,0.97); backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
      padding: 8px; min-width: 200px; margin-top: 8px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    .navbar-nav-center .dropdown-item {
      color: rgba(255,255,255,0.85) !important; font-size: 13px;
      font-family: 'Inter', sans-serif; border-radius: 8px; padding: 8px 14px;
      transition: var(--transition);
    }
    .navbar-nav-center .dropdown-item:hover {
      background: rgba(244,169,36,0.15); color: var(--gold) !important;
    }

    /* CTA Button */
    .nav-cta {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--green-deep) !important; font-family: 'Poppins', sans-serif;
      font-weight: 600; font-size: 13px; padding: 10px 22px !important;
      border-radius: 50px; white-space: nowrap;
      box-shadow: 0 4px 20px rgba(244,169,36,0.4);
      transition: var(--transition) !important; margin-left: 12px;
    }
    .nav-cta:hover {
      transform: translateY(-2px); box-shadow: 0 8px 30px rgba(244,169,36,0.6);
      background: linear-gradient(135deg, #ffc93c, var(--gold)) !important;
    }

    /* Hamburger */
    .navbar-toggler-custom {
      display: none; background: none; border: none; cursor: pointer;
      padding: 8px; margin-left: auto;
    }
    .navbar-toggler-custom span {
      display: block; width: 24px; height: 2px; background: white;
      margin: 5px 0; border-radius: 2px; transition: var(--transition);
    }

    /* Mobile Sidebar */
    #mobileSidebar {
      position: fixed; top: 0; left: -100%; width: 300px; max-width: 85vw; height: 100vh;
      background: var(--green-deep); z-index: 10000;
      transition: left 0.35s ease; padding: 24px;
      overflow-y: auto; overflow-x: hidden;
    }
    #mobileSidebar.open { left: 0; }
    #sidebarOverlay {
      position: fixed; inset: 0; background: rgba(0,0,0,0.6);
      z-index: 9999; opacity: 0; pointer-events: none; transition: opacity 0.35s;
    }
    #sidebarOverlay.open { opacity: 1; pointer-events: all; }
    .sidebar-close {
      position: absolute; top: 20px; right: 20px;
      background: rgba(255,255,255,0.1); border: none; color: white;
      width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
      font-size: 16px; display: flex; align-items: center; justify-content: center;
    }
    .sidebar-logo { margin-bottom: 32px; padding-top: 12px; }
    .sidebar-nav a {
      display: flex; align-items: center; gap: 10px;
      color: rgba(255,255,255,0.85); text-decoration: none;
      font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 500;
      padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
      transition: var(--transition);
    }
    .sidebar-nav a:hover { color: var(--gold); padding-left: 8px; }
    .sidebar-nav a i { width: 20px; color: var(--gold); }

    .sidebar-dropdown { border-bottom: 1px solid rgba(255,255,255,0.07); }
    .sidebar-dropdown-toggle {
      width: 100%; background: none; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between;
      color: rgba(255,255,255,0.85); font-family: 'Poppins', sans-serif;
      font-size: 14px; font-weight: 500; padding: 12px 0;
      transition: var(--transition);
    }
    .sidebar-dropdown-toggle:hover { color: var(--gold); }
    .sidebar-dropdown-toggle span { display: flex; align-items: center; gap: 10px; }
    .sidebar-dropdown-toggle i.chevron { font-size: 11px; transition: transform 0.3s ease; color: rgba(255,255,255,0.5); }
    .sidebar-dropdown-toggle i:not(.chevron) { width: 20px; color: var(--gold); }
    .sidebar-dropdown.open .sidebar-dropdown-toggle i.chevron { transform: rotate(180deg); color: var(--gold); }
    .sidebar-dropdown-menu {
      max-height: 0; overflow: hidden;
      transition: max-height 0.35s ease;
    }
    .sidebar-dropdown.open .sidebar-dropdown-menu { max-height: 300px; }
    .sidebar-dropdown-menu a {
      display: block; padding: 10px 0 10px 30px; border-bottom: none;
      color: rgba(255,255,255,0.65); font-size: 13px; font-family: 'Inter', sans-serif;
      font-weight: 400; text-decoration: none; transition: var(--transition);
    }
    .sidebar-dropdown-menu a:hover { color: var(--gold); padding-left: 36px; }
    .sidebar-social { margin-top: 32px; display: flex; gap: 10px; }
    .sidebar-social a {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,0.1); display: flex; align-items: center;
      justify-content: center; color: white; font-size: 14px;
      text-decoration: none; transition: var(--transition);
    }
    .sidebar-social a:hover { background: var(--gold); color: var(--green-deep); }

    @media (max-width: 1100px) {
      .navbar-nav-center { display: none !important; }
      .nav-cta { display: none !important; }
      .navbar-toggler-custom { display: flex !important; flex-direction: column; }
    }

    /* ===== HERO SECTION ===== */
    #hero { height: 100vh; min-height: 640px; background: rgba(27,67,50,0.76); position: static; overflow: hidden; }
    .hero-swiper { width: 100%;  top:-30px; }
    .hero-slide {
      position: relative; width: 100%; height: 100%; 
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
      padding-top: 80px; /* clears fixed top-bar (41px) + navbar (72px) */
      padding-bottom: 60px;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      animation: kenBurns 12s ease infinite alternate;
      transform-origin: center;
    }
    @keyframes kenBurns {
      from { transform: scale(1); }
      to { transform: scale(1.12); }
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(27,67,50,0.88) 0%, rgba(0,0,0,0.55) 100%);
    }
    .hero-content {
      position: relative; z-index: 2; max-width: 85%;
      padding: 0 24px; text-align: left;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(244,169,36,0.18); border: 1px solid rgba(244,169,36,0.4);
      color: var(--gold); padding: 8px 20px; border-radius: 50px;
      font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 600;
      letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px;
    }
    .hero-eyebrow::before {
      content: ''; width: 8px; height: 8px; border-radius: 50%;
      background: var(--gold); animation: blink 1.5s ease infinite;
    }
    @keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0;} }
    .hero-title {
      font-family: 'Poppins', sans-serif; font-weight: 800;
      font-size: clamp(1.9rem, 4.4vw, 3.8rem); color: white; line-height: 1.18;
      margin-bottom: 20px;
    }
    .hero-title span { color: var(--gold); }
    .hero-desc {
      font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,0.85);
      line-height: 1.7; margin-bottom: 36px; max-width: 600px;
    }
    .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-hero-primary {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--green-deep); font-family: 'Poppins', sans-serif;
      font-weight: 700; padding: 14px 32px; border-radius: 50px;
      font-size: 14px; text-decoration: none; display: inline-flex;
      align-items: center; gap: 8px; border: none;
      box-shadow: 0 6px 30px rgba(244,169,36,0.45);
      transition: var(--transition);
    }
    .btn-hero-primary:hover {
      transform: translateY(-3px); box-shadow: 0 12px 40px rgba(244,169,36,0.65);
      color: var(--green-deep);
    }
    .btn-hero-outline {
      background: transparent; color: white;
      font-family: 'Poppins', sans-serif; font-weight: 600;
      padding: 13px 32px; border-radius: 50px; font-size: 14px;
      text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
      border: 2px solid rgba(255,255,255,0.6); transition: var(--transition);
    }
    .btn-hero-outline:hover {
      background: rgba(255,255,255,0.12); color: white;
      border-color: white; transform: translateY(-3px);
    }

    /* Hero Stats Cards */
    .hero-stats {
      position: absolute; bottom: 32px; right: 40px; z-index: 2;
      display: flex; gap: 16px;
    }
    .hero-stat-card {
      background: var(--glass); backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border); border-radius: 16px;
      padding: 18px 24px; text-align: center; color: white;
      animation: float 3s ease-in-out infinite;
    }
    .hero-stat-card:nth-child(2) { animation-delay: 0.5s; }
    .hero-stat-card:nth-child(3) { animation-delay: 1s; }
    @keyframes float {
      0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);}
    }
    .hero-stat-card .num {
      font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 28px;
      color: var(--gold); line-height: 1;
    }
    .hero-stat-card .lbl {
      font-size: 11px; opacity: 0.8; margin-top: 4px; white-space: nowrap;
    }

    /* Swiper Controls */
    .hero-swiper .swiper-pagination-bullet {
      background: white; opacity: 0.5; width: 10px; height: 10px;
    }
    .hero-swiper .swiper-pagination-bullet-active {
      background: var(--gold); opacity: 1; width: 28px; border-radius: 4px;
      transition: width 0.3s;
    }

    /* Scroll Indicator */
    .scroll-indicator {
    	display: none;
      position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
      z-index: 2; text-align: center; color: rgba(255,255,255,0.7);
      font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
      animation: scrollBounce 2s ease infinite;
    }
    .scroll-indicator i { display: block; font-size: 20px; margin-bottom: 6px; }
    @keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(8px);} }

    /* Decorative Shapes */
    .hero-shape {
      position: absolute; z-index: 1; pointer-events: none;
    }
    .hero-shape-1 {
      top: 15%; right: 8%; width: 300px; height: 300px;
      background: rgba(244,169,36,0.06); border-radius: 50%;
      border: 1px solid rgba(244,169,36,0.12);
      animation: rotateSlow 20s linear infinite;
    }
    .hero-shape-2 {
      bottom: 20%; left: 5%; width: 180px; height: 180px;
      background: rgba(255,255,255,0.04); border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.08);
      animation: rotateSlow 15s linear infinite reverse;
    }
    @keyframes rotateSlow { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }

    /* ===== SECTION COMMONS ===== */
    section { padding: 96px 0; }
    .section-eyebrow {
      display: inline-block; font-family: 'Poppins', sans-serif;
      font-size: 12px; font-weight: 600; letter-spacing: 3px;
      text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Poppins', sans-serif; font-weight: 800;
      font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--green-deep);
      line-height: 1.2; margin-bottom: 16px;
    }
    .section-title span { color: var(--gold); }
    .section-divider {
      width: 60px; height: 4px; border-radius: 2px;
      background: linear-gradient(90deg, var(--gold), var(--green-light));
      margin: 16px 0 24px;
    }
    .section-divider.center { margin: 16px auto 24px; }
    .section-lead { font-size: 1.05rem; color: var(--gray-text); line-height: 1.75; max-width: 640px; }

    /* Curved dividers */
    .curve-top {
      position: relative; overflow: hidden;
    }
    .curve-top::before {
      content: ''; position: absolute; top: -1px; left: 0; right: 0;
      height: 80px; background: inherit;
      clip-path: ellipse(55% 100% at 50% 0%);
    }

    /* ===== ABOUT SECTION ===== */
    #about { background: var(--gray-bg); margin-top:-30px; }
    .about-img-collage { position: relative; max-width: 100%; }
    .about-img-main {
      width: 100%; height: 480px; object-fit: cover;
      border-radius: var(--card-radius); box-shadow: var(--shadow);
    }
    .about-img-secondary {
      position: absolute; bottom: -30px; right: -20px;
      width: 220px; height: 200px; object-fit: cover;
      border-radius: var(--card-radius);
      border: 5px solid white; box-shadow: var(--shadow);
    }
    .about-badge {
      position: absolute; top: 20px; left: -20px;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--green-deep); padding: 20px;
      border-radius: var(--card-radius); text-align: center;
      box-shadow: 0 8px 30px rgba(244,169,36,0.4); min-width: 120px;
    }
    .about-badge .years { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 36px; line-height: 1; }
    .about-badge .label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
    .vmw-card {
      background: white; border-radius: 16px; padding: 20px;
      border-left: 4px solid var(--gold); box-shadow: var(--shadow);
      margin-bottom: 16px; transition: var(--transition);
    }
    .vmw-card:hover { transform: translateX(6px); box-shadow: var(--shadow-hover); }
    .vmw-card h5 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px; color: var(--green-deep); margin-bottom: 6px; }
    .vmw-card p { font-size: 13px; color: var(--gray-text); margin: 0; line-height: 1.6; }
    .vmw-card i { color: var(--gold); font-size: 22px; margin-bottom: 10px; }

    /* Counters */
    .counter-box {
      text-align: center; padding: 24px 16px;
      background: white; border-radius: 16px; box-shadow: var(--shadow);
      transition: var(--transition);
    }
    .counter-box:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
    .counter-box .count-num {
      font-family: 'Poppins', sans-serif; font-weight: 800;
      font-size: 2.4rem; color: var(--green-deep); line-height: 1;
    }
    .counter-box .count-num span { color: var(--gold); }
    .counter-box .count-label { font-size: 12px; color: var(--gray-text); margin-top: 6px; text-transform: uppercase; letter-spacing: 1px; }
    .counter-box i { font-size: 28px; color: var(--gold); margin-bottom: 12px; }

    /* Core Values */
    .core-val-card {
      background: white; border-radius: 16px; padding: 24px 20px;
      text-align: center; box-shadow: var(--shadow); transition: var(--transition);
      border-top: 3px solid transparent;
    }
    .core-val-card:hover { transform: translateY(-8px); border-top-color: var(--gold); box-shadow: var(--shadow-hover); }
    .core-val-card .icon-wrap {
      width: 56px; height: 56px; border-radius: 16px;
      background: linear-gradient(135deg, var(--green-deep), var(--green-light));
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px; color: var(--gold); font-size: 22px;
    }
    .core-val-card h6 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px; color: var(--green-deep); margin-bottom: 8px; }
    .core-val-card p { font-size: 12.5px; color: var(--gray-text); margin: 0; line-height: 1.6; }

    /* ===== PROGRAMS SECTION ===== */
    #programs { background: var(--green-deep); position: relative; overflow: hidden; }
    #programs::before {
      content: ''; position: absolute; top: -60px; left: -60px;
      width: 300px; height: 300px; border-radius: 50%;
      background: rgba(244,169,36,0.06); pointer-events: none;
    }
    #programs .section-title { color: white; }
    #programs .section-eyebrow { color: var(--gold); }
    #programs .section-lead { color: rgba(255,255,255,0.7); }
    .prog-card {
      background: var(--glass); backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border); border-radius: var(--card-radius);
      overflow: hidden; transition: var(--transition); height: 100%;
    }
    .prog-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
    .prog-card-img {
      width: 100%; height: 200px; object-fit: cover;
      transition: transform 0.5s ease;
    }
    .prog-card:hover .prog-card-img { transform: scale(1.05); }
    .prog-card-img-wrap { overflow: hidden; position: relative; }
    .prog-card-img-wrap .overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(27,67,50,0.9), transparent);
    }
    .prog-card-body { padding: 24px; }
    .prog-card-icon {
      width: 50px; height: 50px; border-radius: 14px;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      display: flex; align-items: center; justify-content: center;
      color: var(--green-deep); font-size: 22px; margin-bottom: 16px;
    }
    .prog-card h5 {
      font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px;
      color: white; margin-bottom: 10px;
    }
    .prog-card p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.65; margin-bottom: 16px; }
    .btn-prog {
      display: inline-flex; align-items: center; gap: 6px;
      color: var(--gold); font-size: 13px; font-weight: 600;
      text-decoration: none; font-family: 'Poppins', sans-serif;
      transition: var(--transition);
    }
    .btn-prog:hover { color: white; gap: 10px; } 

    .btn-proj {
      display: inline-flex; align-items: center; gap: 6px;
      color: var(--gold); font-size: 13px; font-weight: 600;
      text-decoration: none; font-family: 'Poppins', sans-serif;
      transition: var(--transition);
    }
    .btn-proj:hover { color: var(--green-deep); gap: 10px; }

    /* ===== WHY US SECTION ===== */
    #why-us { background: var(--white); }
    .why-feature {
      display: flex; gap: 20px; align-items: flex-start;
      padding: 28px; background: white; border-radius: var(--card-radius);
      box-shadow: var(--shadow); margin-bottom: 20px; transition: var(--transition);
    }
    .why-feature:hover { transform: translateX(8px); box-shadow: var(--shadow-hover); }
    .why-feature-icon {
      width: 56px; height: 56px; flex-shrink: 0; border-radius: 16px;
      background: linear-gradient(135deg, var(--green-deep), var(--green-light));
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 24px;
    }
    .why-feature-text h5 {
      font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px;
      color: var(--green-deep); margin-bottom: 6px;
    }
    .why-feature-text p { font-size: 13px; color: var(--gray-text); margin: 0; line-height: 1.65; }
    .progress-item { margin-bottom: 20px; }
    .progress-item .label { display: flex; justify-content: space-between; font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; color: var(--green-deep); margin-bottom: 8px; }
    .custom-progress { height: 8px; background: rgba(27,67,50,0.1); border-radius: 50px; overflow: hidden; }
    .custom-progress-bar { height: 100%; border-radius: 50px; background: linear-gradient(90deg, var(--green-light), var(--gold)); width: 0; transition: width 1.5s ease; }

    /* ===== PROJECTS SECTION ===== */
    #projects { background: var(--gray-bg); }
    .project-card {
      background: white; border-radius: var(--card-radius);
      overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); height: 100%;
    }
    .project-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
    .project-card-img-wrap { position: relative; overflow: hidden; }
    .project-card-img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s; }
    .project-card:hover .project-card-img { transform: scale(1.07); }
    .project-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(27,67,50,0.85), transparent 60%);
    }
    .project-card-tag {
      position: absolute; top: 16px; left: 16px;
      background: var(--gold); color: var(--green-deep);
      font-size: 11px; font-weight: 700; padding: 4px 12px;
      border-radius: 50px; font-family: 'Poppins', sans-serif; text-transform: uppercase; letter-spacing: 1px;
    }
    .project-card-body { padding: 24px; }
    .project-card h5 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px; color: var(--green-deep); margin-bottom: 10px; }
    .project-card p { font-size: 13px; color: var(--gray-text); line-height: 1.65; margin-bottom: 16px; }
    .project-meta { display: flex; gap: 16px; font-size: 12px; color: var(--gray-text); }
    .project-meta span { display: flex; align-items: center; gap: 5px; }
    .project-meta i { color: var(--gold); }

    /* ===== GALLERY SECTION ===== */
    #gallery { background: white; }
    .gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
    .gallery-filter-btn {
      padding: 8px 20px; border-radius: 50px; border: 2px solid var(--green-light);
      background: transparent; color: var(--green-deep); font-family: 'Poppins', sans-serif;
      font-size: 13px; font-weight: 500; cursor: pointer; transition: var(--transition);
    }
    .gallery-filter-btn.active, .gallery-filter-btn:hover {
      background: var(--green-deep); color: var(--gold); border-color: var(--green-deep);
    }
    .gallery-grid { columns: 4 200px; gap: 12px; }
    .gallery-item {
      break-inside: avoid; margin-bottom: 12px;
      border-radius: 12px; overflow: hidden; cursor: pointer;
      position: relative;
    }
    .gallery-item img { width: 100%; display: block; transition: transform 0.4s ease; }
    .gallery-item:hover img { transform: scale(1.08); }
    .gallery-item .gallery-overlay {
      position: absolute; inset: 0; background: rgba(27,67,50,0.75);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      color: white; opacity: 0; transition: opacity 0.3s;
      padding: 20px; text-align: center;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-item .gallery-overlay i { font-size: 32px; color: var(--gold); margin-bottom: 8px; }
    .gallery-item .gallery-overlay span { font-size: 13px; font-family: 'Poppins', sans-serif; }

    /* Lightbox */
    #lightbox {
      position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 99998;
      display: none; align-items: center; justify-content: center;
    }
    #lightbox.open { display: flex; }
    #lightbox img { max-width: 90vw; max-height: 80vh; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
    .lightbox-close {
      position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.1);
      border: none; color: white; width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
      font-size: 20px; display: flex; align-items: center; justify-content: center;
    }
    .lightbox-nav {
      position: absolute; background: rgba(255,255,255,0.1); border: none;
      color: white; width: 50px; height: 50px; border-radius: 50%; cursor: pointer;
      font-size: 20px; display: flex; align-items: center; justify-content: center;
      transition: var(--transition);
    }
    .lightbox-nav:hover { background: var(--gold); color: var(--green-deep); }
    .lightbox-nav.prev { left: 20px; }
    .lightbox-nav.next { right: 20px; }
    .lightbox-caption {
      position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
      background: rgba(0,0,0,0.7); color: white; padding: 12px 24px;
      border-radius: 12px; text-align: center;
    }
    .lightbox-caption strong { display: block; font-family: 'Poppins', sans-serif; font-size: 15px; margin-bottom: 4px; }
    .lightbox-caption span { font-size: 13px; opacity: 0.75; }

    /* Video Gallery */
    .video-card {
      border-radius: var(--card-radius); overflow: hidden;
      box-shadow: var(--shadow); transition: var(--transition); background: #111;
    }
    .video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
    .video-card .yt-thumb { position: relative; cursor: pointer; }
    .video-card .yt-thumb img { width: 100%; height: 180px; object-fit: cover; display: block; }
    .video-card .yt-thumb .play-btn {
      position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
      background: rgba(0,0,0,0.35);
    }
    .video-card .yt-thumb .play-btn i {
      width: 56px; height: 56px; border-radius: 50%; background: var(--gold);
      color: var(--green-deep); display: flex; align-items: center; justify-content: center;
      font-size: 22px; transition: var(--transition);
    }
    .video-card .yt-thumb:hover .play-btn i { transform: scale(1.15); }
    .video-card .video-info { padding: 16px; background: white; }
    .video-card .video-info h6 { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13px; color: var(--green-deep); margin: 0; }

    /* ===== PUBLICATIONS SECTION ===== */
    #publications { background: var(--gray-bg); }
    .pub-item {
      display: flex; gap: 20px; align-items: flex-start;
      background: white; border-radius: 16px; padding: 20px;
      box-shadow: var(--shadow); margin-bottom: 16px; transition: var(--transition);
    }
    .pub-item:hover { transform: translateX(6px); box-shadow: var(--shadow-hover); }
    .pub-cover { width: 80px; height: 108px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
    .pub-info h6 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px; color: var(--green-deep); margin-bottom: 6px; }
    .pub-info p { font-size: 13px; color: var(--gray-text); line-height: 1.6; margin-bottom: 12px; }
    .btn-download {
      display: inline-flex; align-items: center; gap: 8px;
      background: linear-gradient(135deg, var(--green-deep), var(--green-light));
      color: white; padding: 8px 18px; border-radius: 50px;
      font-size: 12px; font-weight: 600; font-family: 'Poppins', sans-serif;
      text-decoration: none; transition: var(--transition);
    }
    .btn-download:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,67,50,0.3); color: var(--gold); }

    /* ===== TESTIMONIALS SECTION ===== */
    #testimonials { background: var(--green-deep); position: relative; overflow: hidden; }
    #testimonials::before {
      content: ''; position: absolute; top: -80px; right: -80px;
      width: 400px; height: 400px; border-radius: 50%;
      background: rgba(244,169,36,0.05); pointer-events: none;
    }
    #testimonials .section-title { color: white; }
    #testimonials .section-eyebrow { color: var(--gold); }
    .testi-card {
      background: var(--glass); backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border); border-radius: var(--card-radius);
      padding: 32px; height: 100%; position: relative;
      transition: var(--transition);
    }
    .testi-card:hover { transform: translateY(-8px); }
    .testi-quote {
      position: absolute; top: -16px; right: 24px;
      font-size: 60px; color: var(--gold); opacity: 0.3; font-family: Georgia, serif;
      line-height: 1;
    }
    .testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }
    .testi-text { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: 14px; }
    .testi-avatar {
      width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
      border: 2px solid var(--gold);
    }
    .testi-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px; color: white; }
    .testi-role { font-size: 12px; color: var(--gold); }

    /* ===== PARTNERS SECTION ===== */
    #partners { background: var(--gray-bg); padding: 72px 0; }
    #partners .section-title { font-size: 1.8rem; }
    .partner-logo {
      display: flex; align-items: center; justify-content: center;
      padding: 20px 30px; background: white; border-radius: 16px;
      box-shadow: var(--shadow); transition: var(--transition); height: 90px;
      position: relative;
    }
    .partner-logo:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
    .partner-logo img { max-height: 80px; max-width: 80%; object-fit: contain; filter: grayscale(60%); transition: var(--transition); }
    .partner-logo:hover img { filter: grayscale(0%); }
    .partner-tooltip {
      position: absolute; bottom: -36px; left: 50%; transform: translateX(-50%);
      background: var(--green-deep); color: var(--gold); padding: 4px 12px;
      border-radius: 8px; font-size: 11px; font-weight: 600; white-space: nowrap;
      opacity: 0; transition: opacity 0.3s; pointer-events: none; font-family: 'Poppins', sans-serif;
    }
    .partner-logo:hover .partner-tooltip { opacity: 1; }
    .partners-swiper .swiper-wrapper { align-items: center; }

    /* ===== TEAM SECTION ===== */
    #team { background: white; }
    .team-card {
      background: white; border-radius: var(--card-radius);
      box-shadow: var(--shadow); overflow: hidden; transition: var(--transition);
      text-align: center;
    }
    .team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
    .team-img-wrap { position: relative; overflow: hidden; }
    .team-img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.5s; }
    .team-card:hover .team-img { transform: scale(1.06); }
    .team-overlay {
      position: absolute; inset: 0; background: rgba(27,67,50,0.85);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 12px; opacity: 0; transition: opacity 0.3s;
    }
    .team-card:hover .team-overlay { opacity: 1; }
    .team-social a {
      width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.15);
      color: white; display: inline-flex; align-items: center; justify-content: center;
      font-size: 14px; margin: 0 4px; transition: var(--transition); text-decoration: none;
    }
    .team-social a:hover { background: var(--gold); color: var(--green-deep); }
    .btn-team-bio {
      background: var(--gold); color: var(--green-deep); padding: 8px 20px;
      border-radius: 50px; font-size: 12px; font-weight: 700; cursor: pointer;
      border: none; font-family: 'Poppins', sans-serif; transition: var(--transition);
    }
    .btn-team-bio:hover { background: white; }
    .team-info { padding: 20px; }
    .team-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px; color: var(--green-deep); margin-bottom: 4px; }
    .team-role { font-size: 12px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
    /* Team Modal */
    .team-modal .modal-content { border-radius: var(--card-radius); border: none; overflow: hidden; }
    .team-modal-img { width: 100%; height: 280px; object-fit: cover; }
    .team-modal .modal-header { border-bottom: none; padding: 20px 24px 0; }
    .team-modal .modal-body { padding: 20px 24px 28px; }
    .team-modal .modal-name { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 22px; color: var(--green-deep); margin-bottom: 4px; }
    .team-modal .modal-role { color: var(--gold); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }

    /* ===== CTA SECTION ===== */
    #cta-section {
      background: linear-gradient(135deg, var(--green-deep) 0%, #0d2b1e 100%);
      position: relative; overflow: hidden; padding: 100px 0;
    }
    #cta-section::before {
      content: ''; position: absolute; inset: 0;
      background: url('https://images.unsplash.com/photo-1531482615713-2afd69097998?w=1400') center/cover no-repeat;
      opacity: 0.12;
    }
    .cta-tag {
      background: rgba(244,169,36,0.15); border: 1px solid rgba(244,169,36,0.3);
      color: var(--gold); padding: 8px 20px; border-radius: 50px;
      font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
      display: inline-block; margin-bottom: 20px;
    }
    .cta-title {
      font-family: 'Poppins', sans-serif; font-weight: 800;
      font-size: clamp(2rem, 5vw, 3.5rem); color: white; line-height: 1.2;
      margin-bottom: 20px;
    }
    .cta-title span { color: var(--gold); }
    .cta-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 600px; margin: 0 auto 40px; }
    .btn-cta-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--green-deep); font-family: 'Poppins', sans-serif; font-weight: 700;
      padding: 16px 36px; border-radius: 50px; font-size: 15px;
      border: none; cursor: pointer; text-decoration: none;
      box-shadow: 0 8px 30px rgba(244,169,36,0.5); transition: var(--transition);
      animation: glow 2s ease-in-out infinite;
    }
    @keyframes glow {
      0%,100%{box-shadow: 0 8px 30px rgba(244,169,36,0.5);}
      50%{box-shadow: 0 8px 50px rgba(244,169,36,0.8);}
    }
    .btn-cta-primary:hover { transform: translateY(-4px); color: var(--green-deep); }
    .btn-cta-outline {
      display: inline-flex; align-items: center; gap: 10px;
      background: transparent; color: white;
      font-family: 'Poppins', sans-serif; font-weight: 600;
      padding: 15px 36px; border-radius: 50px; font-size: 15px;
      border: 2px solid rgba(255,255,255,0.5); text-decoration: none;
      transition: var(--transition); margin-left: 16px;
    }
    .btn-cta-outline:hover { background: rgba(255,255,255,0.12); color: white; border-color: white; transform: translateY(-4px); }

    /* ===== BLOG SECTION ===== */
    #blog { background: var(--gray-bg); }
    .blog-card {
      background: white; border-radius: var(--card-radius);
      box-shadow: var(--shadow); overflow: hidden; transition: var(--transition); height: 100%;
    }
    .blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
    .blog-img-wrap { overflow: hidden; }
    .blog-img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s; }
    .blog-card:hover .blog-img { transform: scale(1.06); }
    .blog-body { padding: 24px; }
    .blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
    .blog-cat {
      background: rgba(27,67,50,0.08); color: var(--green-deep);
      padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 600;
      font-family: 'Poppins', sans-serif; text-transform: uppercase; letter-spacing: 1px;
    }
    .blog-date { font-size: 12px; color: var(--gray-text); }
    .blog-card h5 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px; color: var(--green-deep); margin-bottom: 10px; line-height: 1.4; }
    .blog-card p { font-size: 13px; color: var(--gray-text); line-height: 1.65; margin-bottom: 16px; }
    .btn-read-more {
      color: var(--green-deep); font-size: 13px; font-weight: 600;
      font-family: 'Poppins', sans-serif; text-decoration: none;
      display: inline-flex; align-items: center; gap: 6px; transition: var(--transition);
    }
    .btn-read-more:hover { color: var(--gold); gap: 10px; }

    /* ===== BREADCRUMB HERO ===== */
    .breadcrumb-hero {
      background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
      padding: 180px 0 80px; margin-bottom: 0; position: relative; overflow: hidden;
    }
    .breadcrumb-hero::before {
      content: ''; position: absolute; inset: 0;
      background: url('https://images.unsplash.com/photo-1457369804613-52c61a468e7d?w=1600') center/cover;
      opacity: 0.10;
    }
    .breadcrumb-hero .hero-shape-1 { top: -10%; right: 5%; width: 280px; height: 280px; background: rgba(244,169,36,0.07); border-radius: 50%; border: 1px solid rgba(244,169,36,0.14); position: absolute; }
    .breadcrumb-hero h1 { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(2rem,5vw,3rem); color: white; margin-bottom: 14px; position: relative; }
    .breadcrumb-hero .bc { color: rgba(255,255,255,0.7); font-size: 14px; position: relative; }
    .breadcrumb-hero .bc a { color: var(--gold); text-decoration: none; }
    .breadcrumb-hero .bc i { font-size: 10px; margin: 0 8px; opacity: 0.6; }


    /* ===== CONTACT SECTION ===== */
    #contact { background: white; }
    
    .contact-info-card {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 20px; background: var(--gray-bg); border-radius: 16px;
      margin-bottom: 16px; transition: var(--transition);
    }
    .contact-info-card:hover { background: rgba(27,67,50,0.05); }
    .contact-info-icon {
      width: 48px; height: 48px; flex-shrink: 0; border-radius: 14px;
      background: linear-gradient(135deg, var(--green-deep), var(--green-light));
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 20px;
    }
    .contact-info-card h6 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px; color: var(--green-deep); margin-bottom: 4px; }
    .contact-info-card p, .contact-info-card a { font-size: 13px; color: var(--gray-text); margin: 0; text-decoration: none; line-height: 1.6; }
    .contact-info-card a:hover { color: var(--gold); }
    /* Contact Form */
    .contact-form-card { background: var(--gray-bg); border-radius: var(--card-radius); padding: 36px; }
    .form-floating-custom { position: relative; margin-bottom: 20px; }
    .form-floating-custom input, .form-floating-custom textarea, .form-floating-custom select {
      width: 100%; padding: 16px 16px 8px; border: 2px solid #e5e7eb; border-radius: 12px;
      font-size: 14px; font-family: 'Inter', sans-serif; background: white;
      transition: var(--transition); outline: none; appearance: none;
    }
    .form-floating-custom input:focus, .form-floating-custom textarea:focus {
      border-color: var(--green-light); box-shadow: 0 0 0 4px rgba(64,145,108,0.12);
    }
    .form-floating-custom label {
      position: absolute; top: 14px; left: 16px; font-size: 13px; color: var(--gray-text);
      transition: var(--transition); pointer-events: none; background: white; padding: 0 4px;
    }
    .form-floating-custom input:focus ~ label,
    .form-floating-custom input:not(:placeholder-shown) ~ label,
    .form-floating-custom textarea:focus ~ label,
    .form-floating-custom textarea:not(:placeholder-shown) ~ label {
      top: -8px; font-size: 11px; color: var(--green-light); font-weight: 600;
    }
    .form-floating-custom textarea { height: 140px; resize: none; }
    .btn-submit {
      width: 100%; background: linear-gradient(135deg, var(--green-deep), var(--green-light));
      color: white; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px;
      padding: 14px; border-radius: 12px; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center; gap: 10px;
      transition: var(--transition);
    }
    .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(27,67,50,0.35); }
    .map-wrap { border-radius: var(--card-radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 60px; }

    /* ===== FOOTER ===== */
    #footer {
      background: linear-gradient(135deg, #0d2218 0%, var(--green-deep) 60%, #0d2218 100%);
      color: rgba(255,255,255,0.8); padding: 80px 0 0; position: relative; overflow: hidden;
    }
    #footer::before {
      content: ''; position: absolute; top: -60px; right: -60px;
      width: 300px; height: 300px; border-radius: 50%;
      background: rgba(244,169,36,0.05); pointer-events: none;
    }
    .footer-brand h4 { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 22px; color: white; margin-bottom: 12px; }
    .footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 20px; color: rgba(255,255,255,0.65); }
    .footer-social a {
      width: 38px; height: 38px; border-radius: 50%;
      background: rgba(255,255,255,0.08); display: inline-flex;
      align-items: center; justify-content: center; color: rgba(255,255,255,0.7);
      font-size: 15px; margin-right: 8px; text-decoration: none; transition: var(--transition);
    }
    .footer-social a:hover { background: var(--gold); color: var(--green-deep); transform: translateY(-3px); }
    .footer-heading { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px; color: white; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .footer-links li { list-style: none; margin-bottom: 10px; }
    .footer-links a { color: rgba(255,255,255,0.65); font-size: 13px; text-decoration: none; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
    .footer-links a::before { content: '›'; color: var(--gold); font-size: 16px; }
    .footer-links a:hover { color: var(--gold); padding-left: 6px; }
    .footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; font-size: 13px; }
    .footer-contact-item i { color: var(--gold); width: 16px; flex-shrink: 0; margin-top: 2px; }
    .footer-contact-item a { color: rgba(255,255,255,0.65); text-decoration: none; }
    .footer-contact-item a:hover { color: var(--gold); }
    .footer-bottom { margin-top: 60px; border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
    .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); margin: 0; }
    .footer-bottom a { color: var(--gold); text-decoration: none; }

    /* ===== FLOATING WHATSAPP BUTTON (always visible) ===== */
    .whatsapp-float {
      position: fixed; left: 24px; bottom: 24px; z-index: 9500;
      width: 58px; height: 58px; border-radius: 50%;
      background: #25D366; display: flex; align-items: center; justify-content: center;
      color: white; font-size: 28px; text-decoration: none;
      box-shadow: 0 6px 24px rgba(37,211,102,0.5);
      transition: var(--transition);
    }
    .whatsapp-float:hover { background: #128C7E; color: white; transform: scale(1.08); }
    .whatsapp-float-ping {
      position: absolute; inset: 0; border-radius: 50%;
      background: #25D366; opacity: 0.6;
      animation: waPing 2s cubic-bezier(0,0,0.2,1) infinite;
    }
    @keyframes waPing {
      0% { transform: scale(1); opacity: 0.6; }
      100% { transform: scale(1.8); opacity: 0; }
    }
    @media (max-width: 767px) {
      .whatsapp-float { left: 16px; bottom: 72px; width: 52px; height: 52px; font-size: 24px; }
    }

    /* ===== FLOATING BUTTONS ===== */
    .fab-group {
      position: fixed; right: 24px; bottom: 30px; z-index: 9000;
      display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
    }
    .fab-btn {
      width: 52px; height: 52px; border-radius: 50%; display: flex;
      align-items: center; justify-content: center; border: none; cursor: pointer;
      font-size: 20px; color: white; text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,0.25);
      transition: var(--transition); opacity: 0; transform: scale(0);
    }
    .fab-btn.visible { opacity: 1; transform: scale(1); }
    .fab-whatsapp { background: #25D366; }
    .fab-whatsapp:hover { background: #128C7E; transform: scale(1.12); }
    .fab-call { background: var(--green-deep); }
    .fab-call:hover { background: var(--green-light); transform: scale(1.12); }
    .fab-top { background: var(--gold); color: var(--green-deep) !important; }
    .fab-top:hover { background: var(--gold-dark); transform: scale(1.12); }

    /* Mobile Bottom Nav */
    .mobile-bottom-nav {
      display: none; position: fixed; bottom: 0; left: 0; right: 0;
      background: var(--green-deep); z-index: 9001; padding: 10px 0;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    }
    .mobile-bottom-nav a {
      flex: 1; display: flex; flex-direction: column; align-items: center;
      color: rgba(255,255,255,0.65); text-decoration: none; font-size: 11px;
      font-family: 'Poppins', sans-serif; gap: 4px; transition: var(--transition);
    }
    .mobile-bottom-nav a i { font-size: 18px; }
    .mobile-bottom-nav a:hover, .mobile-bottom-nav a.active { color: var(--gold); }
    @media (max-width: 767px) {
      .mobile-bottom-nav { display: flex; }
      .fab-group { display: none; }
      body { padding-bottom: 60px; }
      .hero-stats { display: none; }
      .hero-slide { padding-top: 80px; }
      .gallery-grid { columns: 2 140px; }
      section { padding: 64px 0; }
      .about-img-secondary { display: none; }
      .about-badge { left: 10px; top: 10px; }
      #top-bar { display: none; }
      #mainNav { top: 0; }
    }

    /* Ripple effect */
    .ripple-effect { position: relative; overflow: hidden; }
    .ripple-effect .ripple {
      position: absolute; border-radius: 50%;
      background: rgba(255,255,255,0.3); transform: scale(0);
      animation: rippleAnim 0.6s linear; pointer-events: none;
    }
    @keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

    /* Swiper nav arrows shared */
    .swiper-btn-prev, .swiper-btn-next {
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center;
      color: white; cursor: pointer; transition: var(--transition); flex-shrink: 0;
    }
    .swiper-btn-prev:hover, .swiper-btn-next:hover { background: var(--gold); color: var(--green-deep); }
    .swiper-nav-row { display: flex; align-items: center; gap: 10px; margin-top: 28px; }

    /* Section BG alternating */
    .bg-white-section { background: white; }
    .bg-gray-section { background: var(--gray-bg); }
    .bg-deep-section { background: var(--green-deep); }

    /* Utility */
    .text-gold { color: var(--gold); }
    .text-green-deep { color: var(--green-deep); }
    .fw-800 { font-weight: 800; }

    @media (max-width: 991px) {
      .hero-stats { flex-direction: column; gap: 8px; bottom: 20px; right: 16px; }
      .hero-stat-card { padding: 10px 14px; }
      .hero-stat-card .num { font-size: 18px; }
      .hero-stat-card .lbl { font-size: 10px; }
      .scroll-indicator { display: none; }
      .about-badge { left: 0; }
      .about-img-secondary { right: 0; }
    }
  


 /* ===== BLOG SEARCH / FILTER BAR ===== */
    #blog-toolbar { background: var(--gray-bg); }
    .blog-search-form {
      display: flex; align-items: center; background: white; border-radius: 50px;
      box-shadow: var(--shadow); padding: 6px 6px 6px 24px; border: 2px solid transparent;
      transition: var(--transition);
    }
    .blog-search-form:focus-within { border-color: var(--green-light); box-shadow: 0 0 0 4px rgba(64,145,108,0.12); }
    .blog-search-form input { flex: 1; border: none; outline: none; background: transparent; font-size: 14px; font-family: 'Inter', sans-serif; color: var(--dark); padding: 10px 0; }
    .blog-search-form input::placeholder { color: #9CA3AF; }
    .blog-search-form button {
      background: linear-gradient(135deg, var(--green-deep), var(--green-light)); color: white; border: none;
      width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; cursor: pointer;
      display: flex; align-items: center; justify-content: center; font-size: 15px; transition: var(--transition);
    }
    .blog-search-form button:hover { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--green-deep); transform: scale(1.06); }

    .blog-filters { display: flex; gap: 10px; flex-wrap: wrap; }
    .blog-filter-btn {
      padding: 10px 20px; border-radius: 50px; border: 2px solid #E2E6E4;
      background: white; color: var(--green-deep); font-family: 'Poppins', sans-serif;
      font-size: 12.5px; font-weight: 600; cursor: pointer; transition: var(--transition); white-space: nowrap;
    }
    .blog-filter-btn.active, .blog-filter-btn:hover { background: var(--green-deep); color: var(--gold); border-color: var(--green-deep); }
    .results-count { font-size: 13px; color: var(--gray-text); }
    .results-count strong { color: var(--green-deep); }

    /* ===== BLOG GRID ===== */
    #blog-grid { background: white; }
    .blog-card { background: white; border-radius: var(--card-radius); box-shadow: var(--shadow); overflow: hidden; transition: var(--transition); height: 100%; display: flex; flex-direction: column; }
    .blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
    .blog-img-wrap { overflow: hidden; position: relative; }
    .blog-img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s; display: block; }
    .blog-card:hover .blog-img { transform: scale(1.06); }
    .blog-img-wrap .blog-cat-tag {
      position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--green-deep);
      padding: 5px 14px; border-radius: 50px; font-size: 10.5px; font-weight: 700;
      font-family: 'Poppins', sans-serif; text-transform: uppercase; letter-spacing: 1px;
    }
    .blog-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
    .blog-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; flex-wrap: wrap; }
    .blog-date, .blog-author-tag { font-size: 12px; color: var(--gray-text); display: flex; align-items: center; gap: 5px; }
    .blog-date i, .blog-author-tag i { color: var(--gold); }
    .blog-card h5 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px; color: var(--green-deep); margin-bottom: 10px; line-height: 1.4; }
    .blog-card p { font-size: 13px; color: var(--gray-text); line-height: 1.65; margin-bottom: 16px; flex: 1; }
    .btn-read-more { color: var(--green-deep); font-size: 13px; font-weight: 600; font-family: 'Poppins', sans-serif; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); margin-top: auto; }
    .btn-read-more:hover { color: var(--gold); gap: 10px; }

    .no-results { display: block; text-align: center; padding: 60px 20px; }
    .no-results i { font-size: 48px; color: #D1D5DB; margin-bottom: 16px; }
    .no-results h5 { color: var(--green-deep); margin-bottom: 8px; }
    .no-results p { color: var(--gray-text); font-size: 14px; }

    /* ===== PAGINATION ===== */
    .blog-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 56px; flex-wrap: wrap; }
    .page-btn {
      width: 44px; height: 44px; border-radius: 50%; border: 2px solid #E2E6E4; background: white;
      color: var(--green-deep); font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13.5px;
      display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition);
    }
    .page-btn:hover:not(:disabled) { border-color: var(--green-light); color: var(--green-light); }
    .page-btn.active { background: linear-gradient(135deg, var(--green-deep), var(--green-light)); color: white; border-color: transparent; box-shadow: 0 6px 20px rgba(27,67,50,0.3); }
    .page-btn:disabled { opacity: 0.4; cursor: not-allowed; }
    .page-btn.arrow { background: var(--gray-bg); border-color: transparent; }
    .page-dots { color: var(--gray-text); padding: 0 4px; }

    /* ===== NEWSLETTER STRIP ===== */
    .blog-newsletter {
      background: linear-gradient(135deg, var(--green-deep), var(--green-mid)); border-radius: var(--card-radius);
      padding: 48px; position: relative; overflow: hidden;
    }
    .blog-newsletter::before { content:''; position:absolute; top:-50px; right:-50px; width:220px; height:220px; border-radius:50%; background: rgba(244,169,36,0.08); }
    .blog-newsletter h4 { color: white; font-weight: 800; font-size: 1.5rem; margin-bottom: 8px; position: relative; }
    .blog-newsletter p { color: rgba(255,255,255,0.7); font-size: 13.5px; margin-bottom: 0; position: relative; }
    .newsletter-form { display: flex; gap: 10px; position: relative; }
    .newsletter-form input { flex: 1; border: none; border-radius: 50px; padding: 14px 22px; font-size: 13.5px; outline: none; }
    .newsletter-form button {
      background: var(--gold); color: var(--green-deep); border: none; border-radius: 50px;
      padding: 14px 26px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13.5px;
      cursor: pointer; white-space: nowrap; transition: var(--transition);
    }
    .newsletter-form button:hover { background: var(--gold-dark); transform: translateY(-2px); }
    @media (max-width: 575px) { .newsletter-form { flex-direction: column; } }


    .post-cat-badge { display: inline-block; background: var(--gold); color: var(--green-deep); padding: 6px 16px; border-radius: 50px; font-size: 11px; font-weight: 700; font-family: 'Poppins', sans-serif; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; position: relative; }
    /*.breadcrumb-hero h1 { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(1.8rem,4vw,2.6rem); color: white; line-height: 1.3; margin-bottom: 20px; max-width: 820px; position: relative; }*/
    .post-meta-row { display: flex; flex-wrap: wrap; gap: 22px; position: relative; }
    .post-meta-row span { color: rgba(255,255,255,0.75); font-size: 13.5px; display: flex; align-items: center; gap: 7px; }
    .post-meta-row i { color: var(--gold); }
    .post-meta-row .author-avatar { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }

    /* ===== ARTICLE BODY ===== */
    #article-section { background: white; padding-top: 64px; }
    .post-feature-img { width: 100%; border-radius: var(--card-radius); box-shadow: var(--shadow); margin-bottom: 36px; max-height: 460px; object-fit: cover; }
    .article-body p { font-size: 15.5px; line-height: 1.9; color: #3f4750; margin-bottom: 22px; }
    .article-body h3 { font-size: 1.4rem; font-weight: 700; color: var(--green-deep); margin: 36px 0 16px; }
    .article-body ul { margin: 0 0 22px 0; padding-left: 20px; }
    .article-body li { font-size: 15px; line-height: 1.85; color: #3f4750; margin-bottom: 10px; }
    .article-body li::marker { color: var(--gold); }
    .article-pullquote { border-left: 4px solid var(--gold); background: var(--gray-bg); border-radius: 0 16px 16px 0; padding: 24px 28px; margin: 32px 0; font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--green-deep); font-style: italic; line-height: 1.6; }
    .article-pullquote span { display: block; margin-top: 10px; font-size: 12.5px; font-weight: 500; color: var(--gray-text); font-style: normal; }

    .post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 36px 0; }
    .post-tags a { background: var(--gray-bg); color: var(--green-deep); font-size: 12px; font-weight: 600; font-family: 'Poppins', sans-serif; padding: 7px 16px; border-radius: 50px; text-decoration: none; transition: var(--transition); }
    .post-tags a:hover { background: var(--green-deep); color: var(--gold); }

    .post-share { display: flex; align-items: center; gap: 12px; padding: 24px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; margin-bottom: 40px; }
    .post-share span { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13px; color: var(--green-deep); margin-right: 6px; }
    .post-share a { width: 38px; height: 38px; border-radius: 50%; background: var(--gray-bg); color: var(--green-deep); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 14px; transition: var(--transition); }
    .post-share a:hover { background: var(--green-deep); color: var(--gold); transform: translateY(-3px); }

    .author-box { display: flex; gap: 20px; background: var(--gray-bg); border-radius: var(--card-radius); padding: 28px; align-items: flex-start; }
    .author-box img { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
    .author-box h6 { font-weight: 700; color: var(--green-deep); margin-bottom: 4px; font-size: 15px; }
    .author-box .role { color: var(--gold-dark); font-size: 12px; font-weight: 600; font-family: 'Poppins', sans-serif; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
    .author-box p { font-size: 13px; color: var(--gray-text); line-height: 1.7; margin-bottom: 12px; }
    .author-box .author-social a { color: var(--green-deep); margin-right: 14px; font-size: 14px; }
    .author-box .author-social a:hover { color: var(--gold-dark); }

    /* Prev / Next */
    .post-nav { display: flex; gap: 20px; margin-top: 40px; }
    .post-nav a { flex: 1; background: var(--gray-bg); border-radius: 16px; padding: 20px 22px; text-decoration: none; transition: var(--transition); display: flex; flex-direction: column; }
    .post-nav a:hover { background: var(--green-deep); }
    .post-nav a:hover .nav-label, .post-nav a:hover .nav-title { color: white; }
    .post-nav a:hover .nav-label { color: var(--gold); }
    .post-nav.next a { text-align: right; align-items: flex-end; }
    .nav-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold-dark); margin-bottom: 8px; }
    .nav-title { font-size: 13.5px; font-weight: 600; color: var(--green-deep); line-height: 1.4; }

    /* Comments */
    .comment-form-card { background: var(--gray-bg); border-radius: var(--card-radius); padding: 32px; margin-top: 56px; }
    .form-floating-custom { position: relative; margin-bottom: 20px; }
    .form-floating-custom input, .form-floating-custom textarea { width: 100%; padding: 16px 16px 8px; border: 2px solid #e5e7eb; border-radius: 12px; font-size: 14px; font-family: 'Inter', sans-serif; background: white; transition: var(--transition); outline: none; }
    .form-floating-custom input:focus, .form-floating-custom textarea:focus { border-color: var(--green-light); box-shadow: 0 0 0 4px rgba(64,145,108,0.12); }
    .form-floating-custom label { position: absolute; top: 14px; left: 16px; font-size: 13px; color: var(--gray-text); transition: var(--transition); pointer-events: none; background: white; padding: 0 4px; }
    .form-floating-custom input:focus ~ label, .form-floating-custom input:not(:placeholder-shown) ~ label, .form-floating-custom textarea:focus ~ label, .form-floating-custom textarea:not(:placeholder-shown) ~ label { top: -8px; font-size: 11px; color: var(--green-light); font-weight: 600; }
    .form-floating-custom textarea { height: 120px; resize: none; }
    .btn-submit { background: linear-gradient(135deg, var(--green-deep), var(--green-light)); color: white; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px; padding: 13px 28px; border-radius: 12px; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: var(--transition); }
    .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(27,67,50,0.35); }

    /* ===== SIDEBAR ===== */
    .blog-sidebar { position: sticky; top: 110px; }
    .widget { background: var(--gray-bg); border-radius: var(--card-radius); padding: 26px; margin-bottom: 26px; }
    .widget-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px; color: var(--green-deep); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid rgba(27,67,50,0.08); display: flex; align-items: center; gap: 8px; }
    .widget-title i { color: var(--gold); }

    /* Sidebar Search */
    .sidebar-search-form { display: flex; align-items: center; background: white; border-radius: 50px; padding: 5px 5px 5px 18px; box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
    .sidebar-search-form input { flex: 1; border: none; outline: none; background: transparent; font-size: 13.5px; padding: 10px 0; }
    .sidebar-search-form button { background: linear-gradient(135deg, var(--green-deep), var(--green-light)); color: white; border: none; width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 13px; transition: var(--transition); }
    .sidebar-search-form button:hover { background: var(--gold); color: var(--green-deep); }

    /* Sidebar Recent Posts */
    .sidebar-post { display: flex; gap: 14px; margin-bottom: 18px; text-decoration: none; }
    .sidebar-post:last-child { margin-bottom: 0; }
    .sidebar-post img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
    .sidebar-post .sp-cat { font-size: 10px; font-weight: 700; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.5px; font-family: 'Poppins', sans-serif; }
    .sidebar-post h6 { font-size: 13px; font-weight: 600; color: var(--green-deep); line-height: 1.4; margin: 3px 0; transition: var(--transition); }
    .sidebar-post:hover h6 { color: var(--gold-dark); }
    .sidebar-post .sp-date { font-size: 11px; color: var(--gray-text); }

    /* Sidebar Categories */
    .sidebar-cats { list-style: none; }
    .sidebar-cats li { margin-bottom: 4px; }
    .sidebar-cats a { display: flex; justify-content: space-between; align-items: center; padding: 11px 4px; color: #374151; text-decoration: none; font-size: 13.5px; border-bottom: 1px dashed #e2e6e4; transition: var(--transition); }
    .sidebar-cats li:last-child a { border-bottom: none; }
    .sidebar-cats a:hover { color: var(--green-deep); padding-left: 8px; }
    .sidebar-cats a span.count { background: white; color: var(--gray-text); font-size: 11px; padding: 2px 9px; border-radius: 50px; }

    /* Sidebar Tags */
    .sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .sidebar-tags a { background: white; color: var(--green-deep); font-size: 12px; font-weight: 600; font-family: 'Poppins', sans-serif; padding: 7px 14px; border-radius: 50px; text-decoration: none; transition: var(--transition); }
    .sidebar-tags a:hover { background: var(--green-deep); color: var(--gold); }

    /* Sidebar CTA / Newsletter */
    .widget-cta { background: linear-gradient(135deg, var(--green-deep), var(--green-mid)); border-radius: var(--card-radius); padding: 30px 26px; color: white; position: relative; overflow: hidden; }
    .widget-cta::before { content: ''; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; border-radius: 50%; background: rgba(244,169,36,0.08); }
    .widget-cta i.cta-icon { font-size: 28px; color: var(--gold); margin-bottom: 14px; display: block; position: relative; }
    .widget-cta h6 { font-weight: 700; font-size: 15px; margin-bottom: 8px; position: relative; }
    .widget-cta p { font-size: 12.5px; color: rgba(255,255,255,0.7); margin-bottom: 18px; line-height: 1.6; position: relative; }
    .widget-cta input { width: 100%; border: none; border-radius: 10px; padding: 11px 14px; font-size: 12.5px; margin-bottom: 10px; outline: none; position: relative; }
    .widget-cta button { width: 100%; background: var(--gold); color: var(--green-deep); border: none; border-radius: 10px; padding: 11px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13px; cursor: pointer; transition: var(--transition); position: relative; }
    .widget-cta button:hover { background: white; }

    .widget-contact-item { display: flex; gap: 12px; margin-bottom: 14px; font-size: 13px; align-items: flex-start; }
    .widget-contact-item:last-child { margin-bottom: 0; }
    .widget-contact-item i { color: var(--gold-dark); width: 16px; flex-shrink: 0; margin-top: 3px; }
    .widget-contact-item a, .widget-contact-item span { color: #374151; text-decoration: none; line-height: 1.5; }
    .widget-contact-item a:hover { color: var(--green-deep); }


 /* ===== QUICK FACTS SIDEBAR ===== */
    .facts-card { background: white; border-radius: var(--card-radius); box-shadow: var(--shadow); padding: 32px; position: sticky; top: 110px; }
    .facts-card h6 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green-deep); margin-bottom: 22px; padding-bottom: 14px; border-bottom: 2px solid var(--gray-bg); }
    .fact-row { display: flex; gap: 14px; margin-bottom: 20px; }
    .fact-row:last-of-type { margin-bottom: 0; }
    .fact-icon { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, var(--green-deep), var(--green-light)); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 15px; flex-shrink: 0; }
    .fact-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-text); margin-bottom: 3px; }
    .fact-value { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13.5px; color: var(--dark); line-height: 1.4; }
    .facts-divider { height: 1px; background: var(--gray-bg); margin: 24px 0; }
    .btn-facts-download { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--green-deep); font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 13.5px; padding: 14px; border-radius: 12px; text-decoration: none; transition: var(--transition); box-shadow: 0 6px 24px rgba(244,169,36,0.35); margin-bottom: 12px; }
    .btn-facts-download:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(244,169,36,0.5); color: var(--green-deep); }
    .facts-share { display: flex; gap: 8px; justify-content: center; }
    .facts-share a { width: 36px; height: 36px; border-radius: 50%; background: var(--gray-bg); color: var(--green-deep); display: flex; align-items: center; justify-content: center; font-size: 13px; transition: var(--transition); }
    .facts-share a:hover { background: var(--green-deep); color: var(--gold); }

    /* ===== STATS STRIP ===== */
    #impact-stats { background: var(--green-deep); position: relative; overflow: hidden; padding: 56px 0; }
    #impact-stats::before { content: ''; position: absolute; top: -80px; right: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(244,169,36,0.06); pointer-events: none; }
    .impact-stat { text-align: center; }
    .impact-stat .num { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gold); line-height: 1; }
    .impact-stat .lbl { font-size: 12.5px; color: rgba(255,255,255,0.75); margin-top: 8px; letter-spacing: 0.5px; }
    .impact-divider { width: 1px; background: rgba(255,255,255,0.15); margin: 0 auto; height: 100%; }

    /* ===== ARTICLE BODY ===== */
    .article-body p { font-size: 15px; color: var(--gray-text); line-height: 1.85; margin-bottom: 20px; }
    .article-body h3 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--green-deep); margin: 8px 0 18px; }
    .article-body h3 span { color: var(--gold); }

    /* Methodology timeline */
    .method-step { display: flex; gap: 20px; margin-bottom: 28px; position: relative; }
    .method-step:last-child .method-line { display: none; }
    .method-num-wrap { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
    .method-num { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, var(--green-deep), var(--green-light)); color: var(--gold); font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .method-line { flex: 1; width: 2px; background: var(--gray-bg); margin-top: 8px; }
    .method-text h5 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15.5px; color: var(--green-deep); margin-bottom: 6px; padding-top: 10px; }
    .method-text p { font-size: 13.5px; color: var(--gray-text); line-height: 1.7; margin: 0; }

    /* Results checklist */
    .result-item { display: flex; gap: 16px; background: white; border-radius: 16px; padding: 20px; box-shadow: var(--shadow); margin-bottom: 14px; transition: var(--transition); }
    .result-item:hover { transform: translateX(6px); box-shadow: var(--shadow-hover); }
    .result-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(244,169,36,0.12); color: var(--gold-dark); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
    .result-text h6 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px; color: var(--green-deep); margin-bottom: 4px; }
    .result-text p { font-size: 13px; color: var(--gray-text); margin: 0; line-height: 1.6; }

    /* Gallery strip */
    .pg-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
    .pg-gallery img { width: 100%; height: 160px; object-fit: cover; border-radius: 14px; transition: transform 0.4s; cursor: pointer; }
    .pg-gallery img:hover { transform: scale(1.04); }
    .pg-gallery a:first-child img { grid-row: span 2; }

    /* Quote block */
    .article-quote { background: var(--gray-bg); border-left: 4px solid var(--gold); border-radius: 16px; padding: 28px 32px; margin: 32px 0; }
    .article-quote p { font-family: 'Poppins', sans-serif; font-style: italic; font-size: 16px; color: var(--green-deep); line-height: 1.7; margin-bottom: 12px; }
    .article-quote .quote-author { font-size: 12.5px; color: var(--gray-text); font-weight: 600; font-family: 'Poppins', sans-serif; }
    .article-quote .quote-author span { color: var(--gold-dark); }

    /* Tag pills row */
    .topic-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--gray-bg); }
    .topic-tag { background: var(--gray-bg); color: var(--green-deep); font-size: 12px; font-weight: 600; font-family: 'Poppins', sans-serif; padding: 7px 16px; border-radius: 50px; }

    /* ===== RELATED PROJECTS ===== */
    #related-projects { background: var(--gray-bg); }
    .project-card { background: white; border-radius: var(--card-radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); height: 100%; }
    .project-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
    .project-card-img-wrap { position: relative; overflow: hidden; }
    .project-card-img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s; }
    .project-card:hover .project-card-img { transform: scale(1.07); }
    .project-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,67,50,0.85), transparent 60%); }
    .project-card-tag { position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--green-deep); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 50px; font-family: 'Poppins', sans-serif; text-transform: uppercase; letter-spacing: 1px; }
    .project-card-body { padding: 22px; }
    .project-card h5 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px; color: var(--green-deep); margin-bottom: 10px; }
    .project-card p { font-size: 13px; color: var(--gray-text); line-height: 1.6; margin-bottom: 16px; }
    .project-meta { display: flex; gap: 14px; font-size: 11.5px; color: var(--gray-text); flex-wrap: wrap; }
    .project-meta span { display: flex; align-items: center; gap: 5px; }
    .project-meta i { color: var(--gold); }
    .btn-link-gold { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-dark); font-size: 12.5px; font-weight: 700; text-decoration: none; font-family: 'Poppins', sans-serif; margin-top: 12px; transition: var(--transition); }
    .btn-link-gold:hover { color: var(--green-deep); gap: 10px; }

    /* ===== CTA SECTION ===== */
    #cta-section { background: linear-gradient(135deg, var(--green-deep) 0%, #0d2b1e 100%); position: relative; overflow: hidden; padding: 90px 0; }
    #cta-section::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1531482615713-2afd69097998?w=1400') center/cover no-repeat; opacity: 0.12; }
    .cta-tag { background: rgba(244,169,36,0.15); border: 1px solid rgba(244,169,36,0.3); color: var(--gold); padding: 8px 20px; border-radius: 50px; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; display: inline-block; margin-bottom: 20px; }
    .cta-title { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 4.4vw, 3rem); color: white; line-height: 1.2; margin-bottom: 20px; }
    .cta-title span { color: var(--gold); }
    .cta-sub { font-size: 1.02rem; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 600px; margin: 0 auto 40px; }
    .btn-cta-primary { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--green-deep); font-family: 'Poppins', sans-serif; font-weight: 700; padding: 16px 36px; border-radius: 50px; font-size: 15px; border: none; cursor: pointer; text-decoration: none; box-shadow: 0 8px 30px rgba(244,169,36,0.5); transition: var(--transition); }
    .btn-cta-primary:hover { transform: translateY(-4px); color: var(--green-deep); }
    .btn-cta-outline { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: white; font-family: 'Poppins', sans-serif; font-weight: 600; padding: 15px 36px; border-radius: 50px; font-size: 15px; border: 2px solid rgba(255,255,255,0.5); text-decoration: none; transition: var(--transition); margin-left: 16px; }
    .btn-cta-outline:hover { background: rgba(255,255,255,0.12); color: white; border-color: white; transform: translateY(-4px); }



/* Search + Filters bar (overlapping header) */
    .rc-toolbar { position: relative; z-index: 3; background: white; border-radius: var(--card-radius); box-shadow: var(--shadow-hover); padding: 28px 32px; margin-top: -56px; margin-bottom: 56px; }
    .rc-search { position: relative; }
    .rc-search input { width: 100%; border: 2px solid var(--gray-bg); background: var(--gray-bg); border-radius: 14px; padding: 14px 20px 14px 48px; font-size: 14px; font-family: 'Inter', sans-serif; color: var(--dark); transition: var(--transition); }
    .rc-search input:focus { outline: none; border-color: var(--green-light); background: white; box-shadow: 0 0 0 4px rgba(64,145,108,0.12); }
    .rc-search i { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--gray-text); font-size: 15px; }
    .rc-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
    .rc-filter-btn { padding: 9px 20px; border-radius: 50px; border: 2px solid var(--gray-bg); background: var(--gray-bg); color: var(--green-deep); font-family: 'Poppins', sans-serif; font-size: 12.5px; font-weight: 600; cursor: pointer; transition: var(--transition); white-space: nowrap; }
    .rc-filter-btn.active, .rc-filter-btn:hover { background: var(--green-deep); color: var(--gold); border-color: var(--green-deep); }
    .rc-filter-btn .count { opacity: 0.6; font-weight: 500; margin-left: 4px; }

    /* Featured Resource */
    #featured-resource { background: var(--white); padding-top: 0; }
    .featured-card { display: flex; background: linear-gradient(135deg, var(--green-deep) 0%, #0d2b1e 100%); border-radius: var(--card-radius); overflow: hidden; box-shadow: var(--shadow-hover); position: relative; }
    .featured-card::before { content: ''; position: absolute; top: -100px; right: -100px; width: 320px; height: 320px; border-radius: 50%; background: rgba(244,169,36,0.07); }
    .featured-img-wrap { width: 38%; flex-shrink: 0; position: relative; }
    .featured-img-wrap img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
    .featured-badge { position: absolute; top: 20px; left: 20px; background: var(--gold); color: var(--green-deep); font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; padding: 7px 16px; border-radius: 50px; }
    .featured-body { padding: 44px 48px; position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; justify-content: center; }
    .featured-type { color: var(--gold); font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
    .featured-body h3 { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(1.3rem, 2.6vw, 1.8rem); color: white; line-height: 1.3; margin-bottom: 14px; }
    .featured-body p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 24px; max-width: 540px; }
    .featured-meta { display: flex; gap: 20px; margin-bottom: 26px; flex-wrap: wrap; }
    .featured-meta span { font-size: 12px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 6px; }
    .featured-meta i { color: var(--gold); }
    .btn-featured { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--green-deep); font-family: 'Poppins', sans-serif; font-weight: 700; padding: 14px 30px; border-radius: 50px; font-size: 13.5px; text-decoration: none; width: fit-content; box-shadow: 0 8px 28px rgba(244,169,36,0.4); transition: var(--transition); }
    .btn-featured:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(244,169,36,0.6); color: var(--green-deep); }

    /* Resource Grid */
    #resource-grid { background: var(--gray-bg); }
    .res-card { background: white; border-radius: var(--card-radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); height: 100%; display: flex; flex-direction: column; }
    .res-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
    .res-cover-wrap { position: relative; height: 170px; overflow: hidden; flex-shrink: 0; }
    .res-cover-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .res-card:hover .res-cover-wrap img { transform: scale(1.07); }
    .res-type-tag { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--green-deep); font-size: 10.5px; font-weight: 700; padding: 4px 12px; border-radius: 50px; font-family: 'Poppins', sans-serif; text-transform: uppercase; letter-spacing: 0.6px; }
    .res-format { position: absolute; top: 14px; right: 14px; background: rgba(13,34,24,0.7); color: white; font-size: 10.5px; font-weight: 600; padding: 4px 10px; border-radius: 6px; font-family: 'Poppins', sans-serif; }
    .res-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
    .res-date { font-size: 11.5px; color: var(--gray-text); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
    .res-date i { color: var(--gold); }
    .res-body h5 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14.5px; color: var(--green-deep); margin-bottom: 10px; line-height: 1.4; }
    .res-body p { font-size: 12.5px; color: var(--gray-text); line-height: 1.65; margin-bottom: 18px; flex: 1; }
    .res-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--gray-bg); }
    .res-size { font-size: 11px; color: var(--gray-text); }
    .btn-res-download { display: inline-flex; align-items: center; gap: 7px; color: var(--gold-dark); font-size: 12.5px; font-weight: 700; text-decoration: none; font-family: 'Poppins', sans-serif; transition: var(--transition); }
    .btn-res-download:hover { color: var(--green-deep); gap: 11px; }
    .res-card.is-hidden { display: none; }

    .rc-load-more { display: flex; justify-content: center; margin-top: 48px; }
    .btn-load-more { display: inline-flex; align-items: center; gap: 10px; background: white; border: 2px solid var(--green-deep); color: var(--green-deep); font-family: 'Poppins', sans-serif; font-weight: 600; padding: 14px 36px; border-radius: 50px; font-size: 13.5px; cursor: pointer; transition: var(--transition); }
    .btn-load-more:hover { background: var(--green-deep); color: var(--gold); }
    .rc-empty { text-align: center; padding: 60px 20px; display: block; }
    .rc-empty i { font-size: 40px; color: var(--gray-bg); margin-bottom: 16px; }
    .rc-empty p { color: var(--gray-text); font-size: 14px; }

    /* Newsletter CTA */
    #rc-newsletter { background: linear-gradient(135deg, var(--green-deep) 0%, #0d2b1e 100%); position: relative; overflow: hidden; }
    #rc-newsletter::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1532012197267-da84d127e765?w=1400') center/cover no-repeat; opacity: 0.08; }
    .nl-tag { background: rgba(244,169,36,0.15); border: 1px solid rgba(244,169,36,0.3); color: var(--gold); padding: 8px 20px; border-radius: 50px; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; display: inline-block; margin-bottom: 20px; }
    .nl-title { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(1.7rem, 3.6vw, 2.6rem); color: white; line-height: 1.25; margin-bottom: 16px; }
    .nl-title span { color: var(--gold); }
    .nl-sub { font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.7; max-width: 520px; margin-bottom: 32px; }
    .nl-form { display: flex; gap: 12px; max-width: 460px; flex-wrap: wrap; }
    .nl-form input { flex: 1; min-width: 200px; padding: 15px 22px; border-radius: 50px; border: none; font-size: 14px; font-family: 'Inter', sans-serif; }
    .nl-form input:focus { outline: none; box-shadow: 0 0 0 4px rgba(244,169,36,0.3); }
    .btn-nl-submit { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--green-deep); font-family: 'Poppins', sans-serif; font-weight: 700; padding: 15px 30px; border-radius: 50px; border: none; font-size: 13.5px; cursor: pointer; transition: var(--transition); white-space: nowrap; }
    .btn-nl-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(244,169,36,0.5); }
    .nl-stats { display: flex; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
    .nl-stats div { text-align: left; }
    .nl-stats .n { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.8rem; color: var(--gold); }
    .nl-stats .l { font-size: 11.5px; color: rgba(255,255,255,0.6); }