 :root {
      --navy: #1a3a5c;
      --navy-deep: #0e2440;
      --green: #4caf50;
      --green-dark: #388e3c;
      --green-light: #6dcf4a;
      --gold: #c9a84c;
      --cream: #f8f5ef;
      --text: #1e2d3d;
      --muted: #6b7c93;
      --white: #ffffff;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  max-width: 100vw;
  overflow-x: hidden;
  position: relative; /* Helps contain absolute elements */
}

section {
  max-width: 100%;
  overflow-x: hidden;
}

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    h1, h2, h3, h4 { font-family: 'Fraunces', serif; }

    /* ── NAVBAR ── */
    .navbar {
      background: rgba(14, 36, 64, 0.97);
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      padding: 14px 0;
      /* position: sticky; */
      /* top: 0; */
      z-index: 1030;
      border-bottom: 1px solid rgba(201,168,76,0.2);
      transition: all 0.3s ease;
    }
    .navbar.scrolled {
      padding: 8px 0;
      background: rgba(14, 36, 64, 1);
      box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    }
    .navbar-brand img {
      height: 48px;
      width: 48px;
      border-radius: 50%;
      object-fit: cover;
    }
    .navbar-brand span {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
      max-width: 160px;
      display: inline-block;
    }
    .navbar-brand span small {
      display: block;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.65rem;
      font-weight: 400;
      color: var(--green);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .nav-link {
      color: rgba(255,255,255,0.75) !important;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 8px 14px !important;
      position: relative;
      transition: color 0.25s;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 14px;
      right: 14px;
      height: 2px;
      background: var(--green);
      transform: scaleX(0);
      transition: transform 0.3s ease;
      border-radius: 2px;
    }
    .nav-link:hover,
    .nav-link.active {
      color: #fff !important;
    }
    .nav-link:hover::after,
    .nav-link.active::after {
      transform: scaleX(1);
    }
    .nav-link.active { color: var(--green) !important; }
    .navbar-toggler { border-color: rgba(55, 219, 40, 0.5); }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(55, 219, 40, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* ── HERO ── */
    #home {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--navy-deep);
    }
     /* ===== HERO ===== */
    .hero {
      background: var(--navy-dark);
      min-height: 92vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
  /* position: relative; */
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--navy-deep);
    }
    .hero-grid-overlay {
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}
      background: var(--navy-deep);
    }
    .hero-content { position: relative; z-index: 2; }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(76,175,43,0.15);
      border: 1px solid rgba(76,175,43,0.3);
      color: var(--green-light);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 20px;
      margin-bottom: 1.5rem;
    }
    .hero-eyebrow::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--green);
      border-radius: 50%;
      animation: pulse-dot 2s infinite;
    }
    @keyframes pulse-dot {
      0%,100% { opacity:1; transform:scale(1); }
      50% { opacity:0.6; transform:scale(1.3); }
    }
    .hero h1 {
      font-size: clamp(2.6rem, 5.5vw, 4.2rem);
      font-weight: 700;
      color: white;
      line-height: 1.12;
      margin-bottom: 1.5rem;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--green-light);
    }
    .hero-desc {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.72);
      line-height: 1.7;
      max-width: 520px;
      margin-bottom: 2.5rem;
    }
    .hero-cta-group { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-hero-primary {
      background: var(--green);
      color: white;
      border: none;
      padding: 0.85rem 2rem;
      border-radius: 8px;
      font-size: 0.95rem;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-hero-primary:hover {
      background: var(--green-light);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(76,175,43,0.35);
    }
    .btn-hero-secondary {
      background: transparent;
      color: rgba(255,255,255,0.85);
      border: 1px solid rgba(255,255,255,0.25);
      padding: 0.85rem 2rem;
      border-radius: 8px;
      font-size: 0.95rem;
      font-weight: 500;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .btn-hero-secondary:hover {
      border-color: rgba(255,255,255,0.55);
      color: white;
      background: rgba(255,255,255,0.06);
    }
    .btn-primary-cif {
      background: var(--green);
      color: #fff;
      border: none;
      padding: 14px 32px;
      border-radius: 4px;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s;
    }
    .btn-primary-cif:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(76,175,80,0.4);
      color: #fff;
    }
    .btn-outline-cif {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255,255,255,0.4);
      padding: 13px 32px;
      border-radius: 4px;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s;
    }
    .btn-outline-cif:hover {
      border-color: var(--green);
      color: var(--green);
    }
    .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 3.5rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(255,255,255,0.12);
    }
    .hero-stat-num {
      font-family: 'Fraunces', serif;
      font-size: 2rem;
      font-weight: 700;
      color: white;
      line-height: 1;
    }
    .hero-stat-label {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-top: 4px;
    }
    /* Hero visual side */
    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      overflow: hidden;
    }
    .hero-logo-wrap {
      position: relative;
      overflow: visible;
    }

    @media (max-width: 991px) {
  .hero-logo-wrap {
    overflow: hidden;
  }
  .floating-card {
    display: none; /* or reposition them */
  }
}
    .hero-logo-ring {
      width: 380px; height: 380px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .hero-logo-ring::before {
      content: '';
      position: absolute;
      inset: -20px;
      border-radius: 50%;
      border: 1px dashed rgba(76,175,43,0.25);
      animation: spin-slow 30s linear infinite;
    }
    .hero-logo-ring::after {
      content: '';
      position: absolute;
      inset: -45px;
      border-radius: 50%;
      border: 1px dashed rgba(255,255,255,0.08);
      animation: spin-slow 50s linear infinite reverse;
    }
    @keyframes spin-slow { to { transform: rotate(360deg); } }
    .hero-logo-inner {
      width: 260px; height: 260px;
      border-radius: 50%;
      overflow: hidden;
      background: white;
      padding: 8px;
      box-shadow: 0 20px 80px rgba(0,0,0,0.4);
    }
    .hero-logo-inner img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
    .floating-card {
      position: absolute;
      background: rgba(255,255,255,0.08);
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 12px;
      padding: 14px 18px;
      font-size: 0.8rem;
      color: white;
      white-space: nowrap;
    }
    .floating-card.card-1 { top: 10%; right: -10%; animation: float1 4s ease-in-out infinite; }
    .floating-card.card-2 { bottom: 18%; left: -8%; animation: float2 5s ease-in-out infinite; }
    .floating-card.card-3 { top: 55%; right: -12%; animation: float1 6s ease-in-out infinite 1s; }
    @keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
    @keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }
    .card-icon { color: var(--green-light); margin-right: 6px; }

    /* ===== SECTION SHARED ===== */
    section { padding: 6rem 0; }
    .section-label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 0.75rem;
    }
    .section-title {
      font-size: clamp(1.9rem, 3.5vw, 2.75rem);
      font-weight: 700;
      color: var(--navy-dark);
      line-height: 1.2;
      margin-bottom: 1.25rem;
    }
    .section-desc {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.75;
      max-width: 600px;
    }

    /* ===== MARQUEE STRIP ===== */
    .marquee-strip {
      background: var(--navy);
      padding: 1rem 0;
    
       overflow: hidden;
  width: 100%;
  max-width: 100vw;
    }
    .marquee-track {
      display: flex;
      gap: 3rem;
      animation: marquee 25s linear infinite;
      white-space: nowrap;
    }
    .marquee-item {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }
    .marquee-dot { color: var(--green); font-size: 0.5rem; }
    @keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

    /* ── SECTION COMMON ── */
    .section-label {
      font-size: 0.7rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--green);
      font-weight: 600;
      margin-bottom: 12px;
      display: block;
    }
    .section-title {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--navy);
      line-height: 1.25;
      margin-bottom: 16px;
    }
    .section-title.light { color: #fff; }
    .section-divider {
      width: 48px;
      height: 3px;
      background: var(--green);
      border-radius: 2px;
      margin-bottom: 24px;
    }

    /* ── ABOUT ── */
    #about {
      padding: 100px 0;
      background: var(--cream);
    }
    .about-img {
      border-radius: 10px;
      overflow: hidden;
      position: relative;
    }
    .about-img img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      display: block;
    }
    .about-img-accent {
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 200px;
      height: 200px;
      background: var(--green);
      opacity: 0.12;
      border-radius: 50%;
    }
    .about-text p {
      color: var(--muted);
      line-height: 1.9;
      margin-bottom: 20px;
    }

    /* ── VISION/MISSION ── */
    #vision {
      padding: 100px 0;
      background: var(--navy-deep);
      position: relative;
      overflow: hidden;
    }
    #vision::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      border: 80px solid rgba(76,175,80,0.06);
    }
    .vm-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 40px;
      height: 100%;
      transition: all 0.3s;
    }
    .vm-card:hover {
      background: rgba(255,255,255,0.09);
      border-color: rgba(201,168,76,0.3);
      transform: translateY(-4px);
    }
    .vm-icon {
      width: 52px;
      height: 52px;
      background: rgba(76,175,80,0.15);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 1.4rem;
      color: var(--green);
    }
    .vm-card h4 {
      color: var(--green);
      margin-bottom: 14px;
      font-size: 1.2rem;
    }
    .vm-card p {
      color: rgba(255,255,255,0.68);
      line-height: 1.8;
      font-size: 0.95rem;
    }

    /* ── OBJECTIVES ── */
    #objectives {
      padding: 100px 0;
      background: #fff;
    }
    .obj-card {
      border: 1px solid #e8ecf0;
      border-radius: 10px;
      padding: 32px 28px;
      height: 100%;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .obj-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--green);
      transform: scaleX(0);
      transition: transform 0.3s;
    }
    .obj-card:hover {
      box-shadow: 0 12px 40px rgba(26,58,92,0.1);
      transform: translateY(-4px);
      border-color: transparent;
    }
    .obj-card:hover::before { transform: scaleX(1); }
    .obj-number {
      font-size: 3rem;
      font-family: 'Playfair Display', serif;
      color: lightgreen;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 10px;
    }
    .obj-card h5 {
      color: var(--navy);
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 10px;
    }
    .obj-card p {
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.75;
    }

    /* ── FOCUS AREAS ── */
    #focus {
      padding: 100px 0;
      background: var(--cream);
    }
    .focus-img {
      border-radius: 10px;
      overflow: hidden;
    }
    .focus-img img {
      width: 100%;
      height: 420px;
      object-fit: cover;
    }
    .focus-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 20px 0;
      border-bottom: 1px solid rgba(26,58,92,0.08);
    }
    .focus-item:last-child { border: none; }
    .focus-icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      background: rgba(76,175,80,0.1);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green-dark);
      font-size: 1.1rem;
    }
    .focus-item h6 {
      color: var(--navy);
      font-weight: 600;
      margin-bottom: 4px;
      font-size: 0.95rem;
    }
    .focus-item p {
      color: var(--muted);
      font-size: 0.85rem;
      line-height: 1.6;
      margin: 0;
    }

    /* ── STRATEGIES ── */
    #strategies {
      padding: 100px 0;
      background: var(--navy);
      position: relative;
    }
    .strategy-bg {
      position: absolute;
      inset: 0;
      background-image: url('/images/image4.jpg');
      background-size: cover;
      background-position: center;
      opacity: 0.07;
    }
    .strat-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      transition: all 0.3s;
      height: 100%;
    }
    .strat-card:hover {
      background: rgba(76,175,80,0.12);
      border-color: rgba(76,175,80,0.3);
      transform: translateY(-4px);
    }
    .strat-icon {
      font-size: 2rem;
      color: var(--green);
      margin-bottom: 16px;
    }
    .strat-card h5 {
      color: #fff;
      font-size: 1rem;
      margin-bottom: 10px;
    }
    .strat-card p {
      color: rgba(255,255,255,0.6);
      font-size: 0.85rem;
      line-height: 1.7;
    }

    /* ── GOVERNANCE ── */
    #governance {
      padding: 100px 0;
      background: #fff;
    }
    .gov-card {
      background: var(--cream);
      border-radius: 10px;
      padding: 36px;
      height: 100%;
      border-left: 4px solid var(--green);
    }
    .gov-card h5 {
      color: var(--navy);
      margin-bottom: 14px;
      font-size: 1.05rem;
    }
    .gov-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .gov-card ul li {
      color: var(--muted);
      font-size: 0.88rem;
      padding: 6px 0;
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }
    .gov-card ul li::before {
      content: '→';
      color: var(--green);
      flex-shrink: 0;
      font-weight: 700;
    }
    .governance-img {
      border-radius: 10px;
      overflow: hidden;
    }
    .governance-img img {
      width: 100%;
      height: 360px;
      object-fit: cover;
    }

    /* ── IMPACT ── */
    #impact {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    }
    .impact-stat {
      text-align: center;
      padding: 40px 20px;
    }
    .impact-stat .number {
      font-size: 3.2rem;
      font-family: 'Playfair Display', serif;
      color: var(--green);
      font-weight: 700;
      line-height: 1;
      margin-bottom: 8px;
    }
    .impact-stat h6 {
      color: rgba(255,255,255,0.7);
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 400;
    }
    .impact-divider {
      width: 1px;
      background: rgba(255,255,255,0.1);
      height: 80px;
      margin: auto;
    }

    /* ── CONTACT ── */
    #contact {
      padding: 100px 0;
      background: var(--cream);
    }
    .contact-card {
      background: #fff;
      border-radius: 12px;
      padding: 48px;
      box-shadow: 0 8px 40px rgba(26,58,92,0.08);
    }
    .contact-info-item {
      display: flex;
      gap: 16px;
      align-items: center;
      margin-bottom: 24px;
    }
    .contact-icon {
      width: 48px;
      height: 48px;
      background: rgba(76,175,80,0.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green-dark);
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .contact-info-item h6 {
      color: var(--navy);
      font-weight: 600;
      margin-bottom: 2px;
      font-size: 0.85rem;
    }
    .contact-info-item p {
      color: var(--muted);
      margin: 0;
      font-size: 0.88rem;
    }
    .form-control {
      border: 1.5px solid #e0e6ed;
      border-radius: 6px;
      padding: 12px 16px;
      font-size: 0.9rem;
      transition: border-color 0.25s;
    }
    .form-control:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(76,175,80,0.12);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--navy-deep);
      color: rgba(255,255,255,0.6);
      padding: 60px 0 24px;
    }
    .footer-brand img {
      height: 56px;
      width: 56px;
      border-radius: 50%;
      margin-bottom: 16px;
    }
    .footer-brand p {
      font-size: 0.85rem;
      line-height: 1.8;
      max-width: 280px;
    }
    footer h6 {
      color: #fff;
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 8px; }
    .footer-links a {
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.25s;
    }
    .footer-links a:hover { color: var(--green); }
    .footer-bottom {
      margin-top: 48px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.08);
      font-size: 0.8rem;
      color: rgba(255,255,255,0.35);
    }

    /* ── ANIMATIONS ── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }