    :root{
      --ew-bg: #050713;
      --ew-bg-soft: #0b0f26;
      --ew-accent: #dbb668;       /* gold accent */
      --ew-accent-soft: rgba(245,185,65,.25);
      --ew-text: #f9fafb;
      --ew-text-muted: #9ca3af;
      --ew-border: rgba(148,163,184,.4);
      --ew-pill-bg: rgba(15,23,42,.9);
        --ew-card-bg:#ffffff;
      --ew-shadow:0 18px 50px rgba(15,23,42,.06);
      --ew-pill-active: #dbb668;
      --ew-pill-active-text: #020617;
    }
    
html,body{
  margin:0;
  padding:0;
  scroll-behavior:smooth;
}

    /* ===== GLOBAL ===== */
    body{
      margin:0;
      font-family: "Poppins", sans-serif;
      background:#ffffff;                 /* ✅ LIGHT site background */
      color:#111827;                      /* dark text */
    }

    /* ================= HEADER / NAVBAR ================= */
.ew-header{
  position: sticky;
  top:0;
  z-index: 1000;
  backdrop-filter: blur(18px);

 background: #ebecee;  /* deep navy */

  border-bottom: 1px solid rgba(148,163,184,.35);
}
    .ew-navbar{
      padding: .65rem 0;
    }

    /* Logo link */
.ew-logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}

/* ✅ Logo image only */
.ew-logo-img{
  height: 80px;      /* adjust based on your logo */
  width: auto;
  display:block;
  object-fit: contain;
}

    /* ===== Desktop Nav Links in ONE LINE ===== */
    .ew-nav-links{
      display:flex !important;           /* force row layout */
      flex-direction: row;
      align-items: center;
      gap: 18px;                         /* space between links */
    }

    .ew-nav-links .nav-link{
      position:relative;
      padding: 0;
      font-size:.9rem;
      font-weight:400;
      color: #000;
      transition: color .18s ease, transform .18s ease;
    }
    .ew-nav-links .nav-link::after{
      content:"";
      position:absolute;
      left: 0;
      right:0;
      bottom: -0.25rem;
      height: 2px;
      border-radius:999px;
      background: linear-gradient(90deg, transparent, var(--ew-accent), transparent);
      transform: scaleX(0);
      transform-origin:center;
      transition: transform .22s ease-out;
    }
    .ew-nav-links .nav-link:hover,
    .ew-nav-links .nav-link:focus{
      color: #111827;
      transform: translateY(-1px);
    }
    .ew-nav-links .nav-link.active{
      color: var(--ew-accent);
      font-weight:500;
    }
    .ew-nav-links .nav-link.active::after{
      transform: scaleX(1);
    }

    /* Utilities: language + location */
    .ew-utilities{
      display:flex;
      align-items:center;
      gap: .75rem;
      margin-left:auto;
    }

    .ew-pill-toggle{
      display:inline-flex;
      background: var(--ew-pill-bg);
      border-radius: 999px;
      padding: 3px;
      border: 1px solid rgba(148,163,184,.4);
    }
    .ew-pill-toggle a{
      border:0;
      background: transparent;
      color: #fff !important;
      font-size: .78rem;
      padding: 4px 10px;
      border-radius: 999px;
      display:flex;
      align-items:center;
      gap:4px;
      cursor:pointer;
      transition: background .18s ease, color .18s ease, box-shadow .18s ease;
      white-space: nowrap;
    }
    .ew-pill-toggle a span.flag{
      font-size: .9rem;
    }
    .ew-pill-toggle a.active{
      background: var(--ew-pill-active);
      color: var(--ew-pill-active-text);
      box-shadow: 0 0 12px rgba(245,185,65,.65);
      font-weight:500;
    }

    /* Mobile menu button */
    .ew-menu-btn{
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,.55);
      padding: 6px 10px;
      background: rgba(15,23,42,.7);
      color: var(--ew-text);
      display:flex;
      align-items:center;
      gap: 6px;
      font-size: .82rem;
    }
    .ew-menu-btn i{
      font-size: 1.1rem;
    }

    /* ================= OFFCANVAS (MOBILE MENU) ================= */
    .ew-offcanvas.offcanvas{
      background: radial-gradient(circle at top, rgba(245,185,65,.18), transparent 55%)
                , #020617;
      color: var(--ew-text);
      border-right: 1px solid var(--ew-border);
      max-width: 280px;
    }
    .ew-offcanvas .offcanvas-header{
      border-bottom: 1px solid rgba(30,64,175,.6);
    }
    .ew-offcanvas .offcanvas-title{
      font-size: .9rem;
      letter-spacing:.16em;
      text-transform: uppercase;
      color: var(--ew-text-muted);
    }
    .ew-offcanvas .btn-close{
      filter: invert(1) grayscale(100%);
      opacity:.75;
    }
    .ew-offcanvas .navbar-nav .nav-link{
      padding: .6rem 0;
      border-bottom: 1px solid rgba(30,64,175,.45);
      font-size: .9rem;
      color: var(--ew-text-muted);
    }
    .ew-offcanvas .navbar-nav .nav-link:last-child{
      border-bottom:0;
    }
    .ew-offcanvas .navbar-nav .nav-link.active{
      color: var(--ew-accent);
      font-weight:500;
    }

    .ew-offcanvas .section-label{
      font-size: .75rem;
      text-transform: uppercase;
      letter-spacing: .22em;
      color: var(--ew-text-muted);
      margin-bottom: .4rem;
    }

    /* Small screen tweaks */
    @media (max-width: 991.98px){
      .ew-navbar{
        padding: .55rem 0;
      }
      .ew-logo-title{
        font-size: .9rem;
      }
      .ew-logo-subtitle{
        font-size: .7rem;
      }
    }
    /* ✅ Hide desktop nav links on tablets & mobiles */
@media (max-width: 991.98px){
  .ew-nav-links{
    display: none !important;
  }
  
}
.ew-profile-icon{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #dbb668;
  border: 1px solid rgba(18, 18, 18, 0.22) !important;
  background: rgba(255,255,255,.08)  !important;
  margin-left: 10px;
  transition: transform .15s ease, background .15s ease;
}

.ew-profile-icon i{
  font-size: 20px;
  line-height: 1;
}

.ew-profile-icon:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.14);
  color: #000;
}
    a{text-decoration: none;}














    :root{
  --ewa-primary:#1E3A8A;   /* deep blue */
  --ewa-primary-soft:rgba(30,58,138,.08);
  --ewa-accent:#dbb668;    /* warm accent */
  --ewa-text:#111827;
  --ewa-muted:#6B7280;
  --ewa-border:rgba(15,23,42,.08);
  --ewa-bg:#F5F7FB;
  --ewa-card-bg:#ffffff;
  --ewa-shadow:0 18px 50px rgba(15,23,42,.06);
  --ewa-radius-lg:24px;
  --ewa-radius-md:18px;
}





/* Hide scrollbar but keep scroll working */
body{
  scrollbar-width:none;          /* Firefox */
}
body::-webkit-scrollbar{
  display:none;                  /* Chrome / Edge / Safari */
}

/* ============ ABOUT SHELL ============ */
.about-shell{
  padding-top:90px;
  padding-bottom:80px;
}
@media (max-width: 767.98px){
  .about-shell{
    padding-top:70px;
    padding-bottom:60px;
  }
}

/* ============ UTILITIES ============ */
.eyebrow{
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--ewa-accent);
  margin-bottom:.5rem;
}
.section-title{
  font-size:2.1rem;
  font-weight:700;
  margin-bottom:.4rem;
}
@media (max-width: 767.98px){
  .section-title{
    font-size:1.7rem;
  }
}
.section-subtitle{
  color:var(--ewa-muted);
  max-width:640px;
}

.badge-soft{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.25rem .75rem;
  border-radius:999px;
  font-size:.8rem;
  background:var(--ewa-primary-soft);
  color:var(--ewa-primary);
}

/* ============ HERO ============ */
.about-hero{
  margin-bottom:48px;
}
.ah-left{
  padding-right:20px;
}
.ah-kicker{
  font-size:.9rem;
  font-weight:500;
  color:var(--ewa-muted);
  margin-bottom:.7rem;
}
.ah-title{
  font-size:2.4rem;
  font-weight:700;
  line-height:1.15;
  margin-bottom:.9rem;
}
.ah-sub{
  color:var(--ewa-muted);
  font-size:.98rem;
  max-width:520px;
  margin-bottom:1.2rem;
}
.ah-pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin-bottom:1.3rem;
}
.ah-pill{
  font-size:.8rem;
  padding:.4rem .8rem;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--ewa-border);
  display:inline-flex;
  align-items:center;
  gap:.35rem;
}

.ah-cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  align-items:center;
}
.btn-primary-ew{
  border-radius:999px;
  padding:.55rem 1.4rem;
  font-size:.9rem;
  font-weight:500;
  border:none;
  background:var(--ewa-primary);
  color:#fff;
  display:inline-flex;
  align-items:center;
  gap:.3rem;
  box-shadow:0 16px 40px rgba(30,64,175,.35);
}
.btn-primary-ew:hover{
  background:#1D4ED8;
  color:#fff;
}
.btn-ghost-ew{
  border-radius:999px;
  padding:.5rem 1.3rem;
  font-size:.86rem;
  font-weight:500;
  border:1px solid var(--ewa-border);
  background:rgba(255,255,255,.9);
  color:var(--ewa-text);
  display:inline-flex;
  align-items:center;
  gap:.35rem;
}
.btn-ghost-ew:hover{
  background:#fff;
  border-color:var(--ewa-primary);
  color:var(--ewa-primary);
}

.ah-right{
  position:relative;
}
.ah-card{
  background:var(--ewa-card-bg);
  border-radius:var(--ewa-radius-lg);
  box-shadow:var(--ewa-shadow);
  padding:20px 20px 18px;
  position:relative;
  overflow:hidden;
}
.ah-badge-top{
  position:absolute;
  top:16px;
  right:18px;
  background:rgba(234,179,8,.1);
  color:#854d0e;
  font-size:.7rem;
  padding:.25rem .7rem;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  gap:.25rem;
}
.ah-stats{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  margin-top:8px;
  margin-bottom:10px;
}
.ah-stat{
  flex:1 1 120px;
}
.ah-stat-label{
  font-size:.78rem;
  color:var(--ewa-muted);
  margin-bottom:.25rem;
}
.ah-stat-value{
  font-weight:600;
  font-size:1.05rem;
}
.ah-mini-list{
  margin:0;
  padding-left:18px;
  font-size:.82rem;
  color:var(--ewa-muted);
}
.ah-strip{
  margin-top:10px;
  padding-top:8px;
  border-top:1px dashed var(--ewa-border);
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  align-items:center;
  justify-content:space-between;
}
.ah-strip span{
  font-size:.8rem;
  color:var(--ewa-muted);
}

/* ============ MISSION / VISION ============ */
.mv-row{
  margin-bottom:48px;
}
.mv-card{
  background:var(--ewa-card-bg);
  border-radius:var(--ewa-radius-md);
  padding:20px 20px 18px;
  box-shadow:var(--ewa-shadow);
  border:1px solid rgba(255,255,255,.6);
  position:relative;
  overflow:hidden;
}
.mv-icon{
  width:40px;
  height:40px;
  border-radius:999px;
  background:var(--ewa-primary-soft);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:.6rem;
  font-size:1.2rem;
  color:var(--ewa-primary);
}
.mv-title{
  font-size:1.1rem;
  font-weight:600;
  margin-bottom:.3rem;
}
.mv-text{
  font-size:.9rem;
  color:var(--ewa-muted);
  margin-bottom:.4rem;
}
.mv-pill{
  font-size:.78rem;
  color:var(--ewa-primary);
  background:rgba(37,99,235,.06);
  display:inline-flex;
  align-items:center;
  gap:.3rem;
  border-radius:999px;
  padding:.25rem .7rem;
}

/* ============ BENEFITS GRID ============ */
.benefits-sec{
  margin-bottom:40px;
}
.benefit-card{
  background:var(--ewa-card-bg);
  border-radius:var(--ewa-radius-md);
  padding:18px 18px 16px;
  box-shadow:var(--ewa-shadow);
  height:100%;
  border:1px solid var(--ewa-border);
  display:flex;
  flex-direction:column;
  gap:.35rem;
}
.benefit-icon{
  width:36px;
  height:36px;
  border-radius:999px;
  background:var(--ewa-primary-soft);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
  color:var(--ewa-primary);
  margin-bottom:.3rem;
}
.benefit-title{
  font-size:.98rem;
  font-weight:600;
  margin-bottom:.1rem;
}
.benefit-text{
  font-size:.86rem;
  color:var(--ewa-muted);
  flex:1;
}
.benefit-tag{
  font-size:.74rem;
  color:var(--ewa-accent);
  font-weight:500;
}

/* ============ HOW IT WORKS ============ */
.hiw-sec{
  margin-bottom:46px;
}
.hiw-step{
  position:relative;
  padding:18px 18px 14px;
  border-radius:var(--ewa-radius-md);
  background:#fff;
  box-shadow:var(--ewa-shadow);
  border:1px dashed var(--ewa-border);
  height:100%;
}
.hiw-step-number{
  width:30px;
  height:30px;
  border-radius:999px;
  background:var(--ewa-primary);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.88rem;
  font-weight:600;
  margin-bottom:.5rem;
}
.hiw-title{
  font-size:.95rem;
  font-weight:600;
  margin-bottom:.12rem;
}
.hiw-text{
  font-size:.84rem;
  color:var(--ewa-muted);
  margin-bottom:.2rem;
}
.hiw-meta{
  font-size:.78rem;
  color:var(--ewa-muted);
}

/* ============ CTA STRIP ============ */
.about-cta{
  margin-top:30px;
  border-radius:var(--ewa-radius-lg);
  background:linear-gradient(135deg,#1E3A8A,#312E81);
  color:#E5E7EB;
  padding:20px 22px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  box-shadow:0 24px 60px rgba(15,23,42,.45);
}
.about-cta-title{
  font-size:1.15rem;
  font-weight:600;
  margin-bottom:.1rem;
}
.about-cta-sub{
  font-size:.86rem;
  opacity:.9;
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.in-view{
  opacity:1;
  transform:translateY(0);
}
.reveal[data-reveal-delay="1"]{
  transition-delay:.1s;
}
.reveal[data-reveal-delay="2"]{
  transition-delay:.2s;
}
.reveal[data-reveal-delay="3"]{
  transition-delay:.3s;
}
.reveal[data-reveal-delay="4"]{
  transition-delay:.4s;
}















    /* ================= FOOTER ================= */
.ew-footer{
    background: #135788;
  color:var(--ew-text);
  border-top:1px solid rgba(148,163,184,.35);
  margin-top:0;
}

.ew-footer-top{
  padding:70px 0 58px;  /* was 40px 0 26px */
   background: #135788;
}


.ew-footer-bottom{
  border-top:1px solid rgba(15,23,42,0.85);
  padding:18px 0;       /* was 12px 0 */
  background:#034371;
}

/* Logo in footer */
/* Footer Logo Image */
.ew-footer-logo-img {
  height: 105px;          /* Adjust size as needed */
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(245,185,65,0.3)); /* soft gold glow - matches your brand */
}
.ew-footer-logo-title{
  font-weight:600;
  font-size:.9rem;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.ew-footer-logo-subtitle{
  font-size:.7rem;
  text-transform:uppercase;
  color:var(--ew-text-muted);
  letter-spacing:.12em;
}
.ew-footer-copy{
  font-size:.82rem;
  color:#fff;
}

/* Heading */
.ew-footer-heading{
  font-size:.86rem;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:#fff;
  margin-bottom:.5rem;
}

/* Contact blocks */
.ew-footer-contact-block{
  font-size:.83rem;
}
.ew-footer-contact-label{
  font-size:.8rem;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:#e5e7eb;
  margin-bottom:2px;
}
.ew-footer-contact-label .flag{
  margin-right:4px;
}
.ew-footer-contact-line{
  display:flex;
  align-items:center;
  gap:6px;
  color:#fff;
}
.ew-footer-contact-line i{
  font-size:.85rem;
  color:#fff;
}
.ew-footer-contact-line a{
  color:#fff;
  text-decoration:none;
}
.ew-footer-contact-line a:hover{
  color:var(--ew-accent);
  text-decoration:underline;
}

/* Quick links */
.ew-footer-links li{
  margin-bottom:4px;
}
.ew-footer-links a{
  font-size:.85rem;
  color:#fff;
  text-decoration:none;
  position:relative;
  padding-bottom:1px;
}
.ew-footer-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:1px;
  background:var(--ew-accent);
  transition:width .18s ease-out;
}
.ew-footer-links a:hover{
  color:var(--ew-accent);
}
.ew-footer-links a:hover::after{
  width:100%;
}

/* Newsletter */
.ew-footer-newsletter .input-group{
  background:rgba(15,23,42,.85);
  border-radius:999px;
  border:1px solid rgba(148,163,184,.45);
  overflow:hidden;
}
.ew-footer-input{
  background:transparent;
  border:none;
  color:var(--ew-text);
  font-size:.85rem;
}
.ew-footer-input::placeholder{
  color:#6b7280;
}
.ew-footer-input:focus{
  box-shadow:none;
}
.ew-footer-btn{
  border:none;
  border-radius:999px;
  background:linear-gradient(135deg,#fbbf24,#f59e0b);
  color:#111827;
  font-size:.85rem;
  font-weight:500;
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:7px 14px;
}
.ew-footer-btn i{
  font-size:1rem;
}
.ew-footer-btn:hover{
  filter:brightness(1.03);
  color:#020617;
}

/* Social */
.ew-footer-social-label{
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:#fff;
}
.ew-footer-social{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  color: #fff;
}
.ew-footer-social a{
  width:32px;
  height:32px;
  border-radius:999px;
  border:1px solid #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--ew-text-muted);
  font-size:1rem;
  text-decoration:none;
  transition:
    background .18s ease,
    color .18s ease,
    transform .18s ease,
    box-shadow .18s ease;
}
.ew-footer-social a:hover{
  background:var(--ew-accent);
  color:#020617;
  transform:translateY(-2px);
  box-shadow:0 0 16px rgba(245,185,65,.6);
}

/* Responsive */
@media (max-width: 767.98px){
  .ew-footer-top{
    padding:32px 0 22px;
  }
  .ew-footer-bottom{
    text-align:center;
  }
}