:root{
  --navy:#0B3D6B;
  --green:#2E8B3A;
  --gold:#CFA93A;
  --text:#0B2332;
  --muted:#5b6775;
}

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

body{
  font-family: Inter, system-ui, -apple-system;
  color:var(--text);
  background:#fff;
  line-height:1.6;
}

/* ================= HEADER ================= */

.site-header{
  background:#fff;
  border-bottom:1px solid #eee;
}


/* ================= HERO ================= */

/* WOW HERO */

.hero-wow{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}

/* animated background */
.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, #2E8B3A30, transparent 40%),
    radial-gradient(circle at 80% 60%, #0B3D6B30, transparent 40%),
    linear-gradient(120deg,#ffffff,#f4f7fb);
  animation:bgMove 12s infinite alternate;
}

/* visual side */
.hero-visual{
  position:relative;
}

.hero-main{
  width:100%;
  max-width:520px;
  filter:drop-shadow(0 30px 60px rgba(0,0,0,.15));
  animation:floatSlow 6s infinite;
}

/* floating cards */
.float-card{
  position:absolute;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(10px);
  padding:14px 18px;
  border-radius:14px;
  box-shadow:0 15px 40px rgba(0,0,0,.12);
  font-size:.85rem;
}

.fc1{
  top:-20px;
  right:20px;
}

.fc2{
  bottom:-10px;
  left:10px;
}

/* copy */
.hero-copy{
  position:relative;
  z-index:2;
}

.hero-copy h1{
  font-size:clamp(44px,5vw,70px);
  font-weight:900;
  line-height:1.05;
}

.hero-copy h1 span{
  color:var(--green);
}

/* animations */

@keyframes bgMove{
  0%{ filter:hue-rotate(0deg);}
  100%{ filter:hue-rotate(15deg);}
}

@keyframes floatSlow{
  0%{ transform:translateY(0);}
  50%{ transform:translateY(-18px);}
  100%{ transform:translateY(0);}
}


/* ================= PILLARS ================= */

#pillars{
  background:#fff;
}

.pillar-card{
  background:white;
  padding:24px;
  border-radius:14px;
  box-shadow:0 12px 28px rgba(0,0,0,.06);
  transition:.25s;
}

.pillar-card:hover{
  transform:translateY(-6px);
}

/* ================= RESOURCES ================= */

.resource-card{
  background:white;
  padding:20px;
  border-radius:14px;
  box-shadow:0 10px 24px rgba(0,0,0,.05);
}

/* ================= FOOTER ================= */

footer{
  padding:40px 0;
  background:#f5f7f8;
}

/* ================= ANIMATIONS ================= */

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ================= MOBILE ================= */

@media(max-width:991px){

  .hero-new{
    min-height:auto;
    padding:90px 0;
  }

  .hero-left-img{
    max-width:300px;
    margin:0 auto 40px;
  }

  .hero-content{
    text-align:center;
  }

  .hero-actions{
    justify-content:center;
  }
}

/* WOW PILLARS */

.pillars-wow{
  padding:100px 0;
  background:
    radial-gradient(circle at 10% 10%, #2E8B3A10, transparent 40%),
    radial-gradient(circle at 90% 90%, #0B3D6B10, transparent 40%),
    #fff;
}

.pillar-wow-card{
  position:relative;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(8px);
  border-radius:22px;
  padding:40px 26px;
  text-align:center;
  height:100%;
  box-shadow:0 30px 60px rgba(0,0,0,.08);
  transition:.4s ease;
  overflow:hidden;
}

/* glow effect */
.pillar-wow-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top, #2E8B3A20, transparent 60%);
  opacity:0;
  transition:.4s;
}

.pillar-wow-card:hover:before{
  opacity:1;
}

.pillar-wow-card:hover{
  transform:translateY(-12px) scale(1.02);
  box-shadow:0 40px 80px rgba(0,0,0,.15);
}

/* image */
.pillar-wow-card img{
  width:130px;
  margin-bottom:24px;
  filter:drop-shadow(0 10px 20px rgba(0,0,0,.2));
  transition:.4s;
}

.pillar-wow-card:hover img{
  transform:scale(1.1) rotate(3deg);
}

/* text */
.pillar-wow-card h5{
  font-weight:800;
  color:var(--navy);
}

.pillar-wow-card p{
  color:#5b6775;
  font-size:.95rem;
}

/* ABOUT SNAPSHOT */

.about-snapshot{
  padding:120px 0;
  background:
    radial-gradient(circle at 10% 10%, #2E8B3A08, transparent 40%),
    radial-gradient(circle at 90% 90%, #0B3D6B08, transparent 40%),
    #f9fbfd;
}

.about-snapshot h2{
  font-size:clamp(34px,4vw,52px);
  font-weight:900;
  color:var(--navy);
  margin:12px 0 18px;
  line-height:1.1;
}

.about-snapshot h2 span{
  color:var(--green);
}

.about-snapshot p{
  color:#5b6775;
  font-size:1rem;
  line-height:1.7;
  margin-bottom:14px;
  max-width:620px;
}

/* image */
.about-snap-img{
  width:100%;
  max-width:420px;
  filter:drop-shadow(0 30px 60px rgba(0,0,0,.15));
  animation:floatSlow 6s infinite;
}
.about-img-wrap{
  position:relative;
  padding:40px;
  border-radius:26px;
  background:rgba(255,255,255,.7);
  backdrop-filter:blur(14px);
  box-shadow:0 40px 80px rgba(0,0,0,.15);
}

/* glow */
.about-img-wrap:before{
  content:"";
  position:absolute;
  inset:-20px;
  background:
    radial-gradient(circle, #2E8B3A40, transparent 60%);
  z-index:-1;
  filter:blur(30px);
}

.about-img-wrap{
  transition:.5s ease;
}

.about-img-wrap:hover{
  transform:translateY(-12px) scale(1.02);
}

.about-snap-img{
  width:100%;
  max-width:380px;
  filter:
    drop-shadow(0 25px 60px rgba(0,0,0,.25));
}

.about-img-wrap:after{
  content:"";
  position:absolute;
  inset:0;
  background:url("https://grainy-gradients.vercel.app/noise.svg");
  opacity:.08;
  pointer-events:none;
}

/* mobile */
@media(max-width:991px){

  .about-snapshot{
    padding:80px 0;
  }

  .about-snapshot{
    text-align:center;
  }

  .about-snapshot p{
    margin-left:auto;
    margin-right:auto;
  }
}

/* CONTENT HUB */

.content-hub{
  padding:100px 0;
  background:#fff;
}

.hub-header{
  text-align:center;
  margin-bottom:30px;
}

.hub-header h2{
  font-weight:900;
  color:var(--navy);
}

.hub-header p{
  color:#5b6775;
}

/* tabs */

.hub-tabs{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-bottom:30px;
}

.hub-tab{
  background:#f1f4f7;
  border:none;
  padding:8px 18px;
  border-radius:50px;
  font-size:.85rem;
  cursor:pointer;
}

.hub-tab.active{
  background:var(--navy);
  color:#fff;
}

/* scroll area */

.hub-scroll{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:280px;
  gap:24px;
  overflow-x:auto;
  padding-bottom:20px;
  scroll-snap-type:x mandatory;
}

.hub-scroll::-webkit-scrollbar{
  height:8px;
}
.hub-scroll::-webkit-scrollbar-thumb{
  background:#ccc;
  border-radius:10px;
}

/* cards */

.hub-card{
  scroll-snap-align:start;
  background:white;
  border-radius:18px;
  padding:22px;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
  transition:.3s;
}

.hub-card:hover{
  transform:translateY(-8px);
}

/* badge */

.badge{
  display:inline-block;
  background:var(--green);
  color:white;
  padding:4px 10px;
  border-radius:30px;
  font-size:.65rem;
  margin-bottom:10px;
}

.badge.blog{
  background:#6f42c1;
}

.badge.news{
  background:#0d6efd;
}
/* thumbnail */

.hub-thumb{
  width:100%;
  height:150px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:14px;
}

/* lift effect */

.hub-card:hover .hub-thumb{
  transform:scale(1.05);
  transition:.4s ease;
}

/* PARTNERS */

.partners-wow{
  padding:100px 0;
  background:
    radial-gradient(circle at 10% 10%, #2E8B3A08, transparent 40%),
    radial-gradient(circle at 90% 90%, #0B3D6B08, transparent 40%),
    #fff;
}

.partners-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:40px;
  align-items:center;
}

.partner-card{
  background:white;
  padding:26px;
  border-radius:16px;
  display:flex;
  justify-content:center;
  align-items:center;
  height:110px;
  box-shadow:0 20px 40px rgba(0,0,0,.06);
  transition:.35s ease;
}

.partner-card img{
  max-width:120px;
  max-height:80px;
  filter:grayscale(100%);
  opacity:.7;
  transition:.35s;
}

/* hover effect */

.partner-card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 60px rgba(0,0,0,.12);
}

.partner-card:hover img{
  filter:none;
  opacity:1;
}

/* FOOTER WOW */

.footer-wow{
  background:#0B3D6B; /* solid background */
  color:white;
  padding:80px 0 30px;
}

.footer-logo{
  height:80px;
  margin-bottom:16px;
}

.footer-text{
  color:#cfd8e3;
  font-size:.9rem;
  max-width:320px;
}

/* titles */

.footer-title{
  font-weight:700;
  margin-bottom:14px;
  letter-spacing:.5px;
}

/* links */

.footer-links{
  list-style:none;
  padding:0;
}

.footer-links li{
  margin-bottom:10px;
}

.footer-links a{
  color:#cfd8e3;
  text-decoration:none;
  transition:.3s;
}

.footer-links a:hover{
  color:white;
}

/* social */

.footer-social{
  display:flex;
  gap:14px;
}

.footer-social a{
  width:42px;
  height:42px;
  background:rgba(255,255,255,.12);
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  color:white;
  font-size:1.1rem;
  transition:.3s;
}

.footer-social a:hover{
  background:var(--green);
  transform:translateY(-4px);
}

/* divider */

.footer-divider{
  border-color:rgba(255,255,255,.15);
  margin:40px 0 20px;
}

.footer-copy{
  color:#cfd8e3;
}

/* mobile */

@media(max-width:768px){

  .footer-wow{
    text-align:center;
  }

  .footer-text{
    margin:0 auto;
  }

  .footer-social{
    justify-content:center;
  }
}
.about-hero{
  padding:120px 0;
  background:radial-gradient(circle,#0B3D6B,#021A2E);
  color:white;
}

.about-story h2 span{
  color:var(--green);
}

.about-img{
  width:80%;
  filter:drop-shadow(0 30px 60px rgba(0,0,0,.3));
}

.timeline{
  display:flex;
  gap:40px;
  overflow-x:auto;
}

.value-card{
  padding:40px;
  border-radius:20px;
  background:white;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
  transition:.3s;
}

.value-card:hover{
  transform:translateY(-10px);
}

.cta-section{
  padding:100px 0;
  background:linear-gradient(90deg,var(--navy),#000);
  color:white;
}
.about-hero-wow{
  position:relative;
  height:90vh;
  display:flex;
  align-items:center;
  background:#061b2e;
  overflow:hidden;
}

/* BASE BG */
.about-hero-bg-base{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at left,#0B3D6B,#041423);
  z-index:1;
}

/* IMAGE GLOW */
.about-hero-image-glow{
  position:absolute;
  right:5%;
  bottom:15%;
  width:520px;
  height:520px;
  background:
    radial-gradient(circle,
      rgba(46,139,58,.45),
      rgba(46,139,58,.15),
      transparent 70%);
  filter:blur(60px);
  z-index:2;
}

/* FLOATING IMAGE */
.about-hero-float{
  position:absolute;
  right:6%;
  bottom:0;
  height:85%;
  z-index:3;
  animation:floatHero 6s ease-in-out infinite;
  filter:
    drop-shadow(0 30px 60px rgba(0,0,0,.45));
}

/* CONTENT */
.about-hero-wow .container{
  position:relative;
  z-index:4;
  color:white;
}

.about-hero-text h1{
  font-size:clamp(44px,5vw,72px);
  font-weight:800;
  line-height:1.05;
}

.about-hero-text h1 span{
  color:var(--green);
}

.about-hero-text p{
  max-width:520px;
  color:#cfd8e6;
  margin-top:16px;
}

/* STATS */
.hero-stats{
  display:flex;
  gap:32px;
  margin-top:28px;
}

.hero-stats h4{
  font-size:2rem;
}

.hero-stats span{
  font-size:.8rem;
  opacity:.8;
}

/* BADGE */
.badge-hero{
  background:rgba(255,255,255,.12);
  padding:6px 16px;
  border-radius:50px;
  font-size:.7rem;
  letter-spacing:1px;
  display:inline-block;
  margin-bottom:16px;
}

/* FLOAT ANIMATION */
@keyframes floatHero{
  0%{ transform:translateY(0);}
  50%{ transform:translateY(-18px);}
  100%{ transform:translateY(0);}
}

/* MOBILE */
@media(max-width:991px){
  .about-hero-float{
    opacity:.35;
    right:-15%;
  }
}

/* GOAL */

.goal-card{
  background:white;
  padding:50px;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
  max-width:900px;
  margin:auto;
}

/* OUTCOMES */

.outcome-tabs{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.tab-btn{
  padding:16px 20px;
  border:none;
  background:#f3f6f9;
  border-radius:14px;
  font-weight:600;
  text-align:left;
  cursor:pointer;
  transition:.3s;
  display:flex;
  align-items:center;
  gap:12px;
}

.tab-btn span{
  width:34px;
  height:34px;
  background:var(--navy);
  color:white;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.8rem;
}

.tab-btn.active{
  background:var(--navy);
  color:white;
}

.tab-btn.active span{
  background:var(--green);
}

/* CONTENT */

.tab-content{
  display:none;
  background:white;
  padding:40px;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
  animation:fadeUp .5s ease;
}

.tab-content.active{
  display:block;
}

.tab-content ul{
  padding-left:18px;
}

.tab-content li{
  margin-bottom:12px;
  color:#44546a;
}
/* PILLAR HERO */

.pillar-hero{
  padding:120px 0;
  background:
    radial-gradient(circle at left,#0B3D6B,#041423);
  color:white;
}

.pillar-hero h1{
  font-size:clamp(42px,5vw,70px);
  font-weight:800;
}

.pillar-hero h1 span{
  color:var(--green);
}

.pillar-hero-img{
  width:340px;
  animation:floatHero 6s ease-in-out infinite;
}

/* INTRO */

.pillar-intro p{
  font-size:1.05rem;
  line-height:1.8;
  color:#44546a;
}

/* ACTIVITIES */

.activity-card{
  background:white;
  padding:35px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
  transition:.3s;
}

.activity-card:hover{
  transform:translateY(-10px);
}

.activity-card img{
  height:60px;
  margin-bottom:20px;
}

/* OUTPUTS */

.output-card{
  background:#f8fafc;
  padding:30px;
  border-radius:18px;
  text-align:center;
  border:1px solid #e5e9ef;
}

/* CTA */

.pillar-cta{
  padding:120px 0;
  background:linear-gradient(90deg,var(--navy),#021a2e);
  color:white;
}
/* APPLE STYLE HERO */

.apple-hero-edr{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  background:#020c16;
  color:white;
  overflow:hidden;
}

.apple-hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 30% 40%,#0B3D6B 0%,transparent 50%),
    radial-gradient(circle at 80% 20%,#2E8B3A20 0%,transparent 45%),
    linear-gradient(180deg,#020c16,#041a2d);
  z-index:0;
}

/* TEXT */

.apple-eyebrow{
  letter-spacing:3px;
  font-size:.75rem;
  color:#7ddc9a;
  font-weight:600;
}

.apple-title{
  font-size:clamp(80px,10vw,160px);
  font-weight:900;
  line-height:.9;
  margin:10px 0;
}

.apple-subtitle{
  font-size:clamp(60px,8vw,120px);
  font-weight:900;
  line-height:.9;
  margin-bottom:20px;
}

.apple-subtitle span{
  color:var(--green);
}

.apple-desc{
  max-width:480px;
  font-size:1.05rem;
  color:#cbd5e1;
}

/* BUTTONS */

.apple-actions{
  margin-top:30px;
  display:flex;
  gap:16px;
}

/* VISUAL */

.apple-visual-wrap{
  position: relative;
  display:flex;
  justify-content:flex-end;
}

.apple-visual{
  width:560px; /* BIGGER */
  max-width:100%;
  transform:translateX(40px); /* push towards edge */
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.35));
  animation: floatHero 6s ease-in-out infinite;
}

/* FLOAT */

/* Floating effect */
@keyframes floatHero{
  0%{ transform:translateX(40px) translateY(0);}
  50%{ transform:translateX(40px) translateY(-18px);}
  100%{ transform:translateX(40px) translateY(0);}
}

/* MOBILE */

@media(max-width:991px){
  .apple-hero-edr{
    text-align:center;
    padding:100px 20px;
  }

  .apple-visual{
    width:280px;
    margin-top:40px;
  }

  .apple-actions{
    justify-content:center;
  }
}

/* WOW INTRO SECTION */

.wow-section{
  padding:120px 0;
  background:
    radial-gradient(circle at top,#0b3d6b12,transparent 60%),
    linear-gradient(180deg,#ffffff,#f6f9fb);
  position:relative;
}

.eyebrow-alt{
  letter-spacing:3px;
  font-size:.75rem;
  color:var(--green);
  font-weight:700;
}

.section-title-lg{
  font-size:clamp(36px,4vw,56px);
  font-weight:800;
  margin-top:10px;
  color:var(--navy);
}

.section-title-lg span{
  color:var(--green);
}

/* Animated divider */
.divider-animated{
  width:80px;
  height:4px;
  background:linear-gradient(90deg,var(--green),var(--gold));
  margin:20px auto 30px;
  border-radius:4px;
  animation: pulseBar 2s infinite;
}

@keyframes pulseBar{
  0%{opacity:.4}
  50%{opacity:1}
  100%{opacity:.4}
}

.lead-text{
  max-width:760px;
  margin:0 auto;
  font-size:1.1rem;
  color:#556070;
}

/* Feature cards */

.highlight-card{
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(10px);
  padding:30px 24px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
  transition:.4s ease;
}

.highlight-card i{
  font-size:2rem;
  color:var(--green);
  margin-bottom:10px;
  display:inline-block;
}

.highlight-card h6{
  font-weight:700;
  margin:12px 0 6px;
}

.highlight-card:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 30px 70px rgba(0,0,0,.15);
}
/* IMPACT SECTION */

.impact-section{
  padding:120px 0;
  background:
    radial-gradient(circle at top,#0b3d6b10,transparent 60%),
    linear-gradient(180deg,#fff,#f6f9fb);
}

/* Header */

.section-header h2{
  font-weight:800;
  font-size:clamp(32px,4vw,48px);
  color:var(--navy);
}

.section-header .subtext{
  color:#5b6775;
  max-width:520px;
  margin:0 auto;
}

/* Cards */

.impact-card{
  background:rgba(255,255,255,.9);
  padding:36px 26px;
  border-radius:22px;
  text-align:center;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
  transition:.4s ease;
  position:relative;
  overflow:hidden;
}

.impact-card i{
  font-size:2.2rem;
  margin-bottom:12px;
  display:inline-block;
}

.impact-card h5{
  font-weight:700;
  margin:10px 0;
}

/* Glow variants */

.glow-blue{ border-top:4px solid #0B3D6B;}
.glow-green{ border-top:4px solid #2E8B3A;}
.glow-gold{ border-top:4px solid #CFA93A;}
.glow-navy{ border-top:4px solid #102C44;}

.glass{
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(14px);
}

/* Hover magic */

.impact-card:hover{
  transform:translateY(-12px) scale(1.03);
  box-shadow:0 40px 90px rgba(0,0,0,.15);
}

.impact-card:hover i{
  transform:scale(1.15);
}

/* HOW IT WORKS – APPLE STYLE */

.apple-flow-section{
  padding:120px 0;
  background:#f8fafc;
}

.flow-accordion{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.flow-item{
  background:white;
  padding:22px 26px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  cursor:pointer;
  transition:.3s;
  border-left:4px solid transparent;
}

.flow-item:hover{
  transform:translateX(4px);
}

.flow-item.active{
  border-left:4px solid var(--green);
  box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.flow-header{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:8px;
}

.flow-header span{
  font-weight:700;
  color:var(--green);
}

.flow-header h5{
  margin:0;
  font-weight:700;
}

.flow-item p{
  margin:0;
  color:#5b6775;
  font-size:.95rem;
}

/* RIGHT VISUAL */

.flow-visual-wrap{
  position:relative;
}

.flow-visual{
  max-width:520px;
  width:100%;
  animation:fadeUp .6s ease;
  filter:drop-shadow(0 30px 80px rgba(0,0,0,.25));
}

/* Mobile */

@media(max-width:991px){
  .flow-visual{
    margin-top:40px;
  }
}

/* HEADER UPGRADE */

.site-header{
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,.05);
  padding:6px 0;
  transition:.3s;
}

.brand-logo{
  height:60px;
}

.brand-text strong{
  font-size:1rem;
  letter-spacing:.3px;
}

.brand-text small{
  font-size:.75rem;
  color:#6b7280;
}

/* NAV LINKS */

.navbar .nav-link{
  font-weight:500;
  color:#0B2332;
  padding:10px 14px;
  position:relative;
}

.navbar .nav-link:hover{
  color:var(--green);
}

/* underline animation */
.navbar .nav-link:after{
  content:"";
  position:absolute;
  bottom:4px;
  left:50%;
  width:0;
  height:2px;
  background:var(--green);
  transition:.3s;
  transform:translateX(-50%);
}

.navbar .nav-link:hover:after{
  width:60%;
}

/* CTA */

.nav-cta{
  border-radius:30px;
  padding:10px 22px;
  font-weight:600;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* DROPDOWN */

.dropdown-menu{
  border-radius:14px;
  border:none;
  box-shadow:0 20px 50px rgba(0,0,0,.15);
  padding:10px;
}

.dropdown-item{
  padding:10px 14px;
  border-radius:10px;
  font-weight:500;
}

.dropdown-item:hover{
  background:#f0fdf4;
  color:var(--green);
}

/* dropdown animation */

.dropdown-animate{
  animation:dropdownFade .25s ease;
}

@keyframes dropdownFade{
  from{
    opacity:0;
    transform:translateY(10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* RESOURCES PAGE */

.page-hero{
  padding:120px 0 80px;
  background:linear-gradient(180deg,#f8fafc,#ffffff);
}

.hero-title{
  font-size:clamp(36px,5vw,56px);
  font-weight:800;
  color:var(--navy);
}

.hero-sub{
  max-width:620px;
  margin:12px auto 0;
  color:#5b6775;
}

/* FILTER */
.resources-filter{
  padding:30px 0;
  border-bottom:1px solid #eee;
}

/* GRID */

.resource-card-2{
  background:white;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,.06);
  transition:.3s;
}

.resource-card-2:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.resource-thumb{
  width:100%;
  height:180px;
  object-fit:cover;
}

.resource-body{
  padding:18px;
}

.tag{
  display:inline-block;
  background:#0B3D6B10;
  color:var(--navy);
  font-size:.7rem;
  padding:4px 10px;
  border-radius:20px;
  margin-bottom:8px;
}

.tag.green{
  background:#2E8B3A20;
  color:var(--green);
}

.resource-body h6{
  font-weight:700;
  margin:6px 0;
}

.resource-actions{
  margin-top:12px;
  display:flex;
  gap:10px;
}

.pagination-wrap button{
  min-width:90px;
}

.pillar-link{
  text-decoration:none;
  color:inherit;
  display:block;
}

.pillar-link:hover{
  text-decoration:none;
}
.filter-btn{
  border:1px solid #ddd;
  padding:8px 18px;
  border-radius:30px;
  background:white;
  margin:4px;
  transition:.2s;
}
.filter-btn.active,
.filter-btn:hover{
  background:#0B3D6B;
  color:white;
}

.blog-card{
  background:white;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  padding:18px;
}

.blog-card img{
  width:100%;
  border-radius:12px;
  margin-bottom:12px;
}

.blog-tag{
  display:inline-block;
  background:#0B3D6B;
  color:white;
  padding:4px 12px;
  border-radius:20px;
  font-size:.75rem;
  margin-bottom:8px;
}

.blog-tag.green{background:#2E8B3A;}
.blog-tag.gold{background:#CFA93A;}

.read-more{
  color:#0B3D6B;
  font-weight:600;
}

.announce-card{
  background:white;
  padding:24px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}
/* CONTACT SECTION FIX */

.contact-section{
  background:linear-gradient(135deg,#031a33,#0b3d6b);
  padding:80px 0;
}

.contact-details{
  background:#ffffff;
  padding:40px;
  border-radius:18px;
  box-shadow:0 20px 40px rgba(0,0,0,.15);
  color:#0b1f33; /* FORCE DARK TEXT */
}

.contact-details h5{
  font-weight:700;
  margin-bottom:20px;
  color:#031a33;
}

.contact-details p{
  color:#0b1f33;
  font-size:15px;
  line-height:1.6;
}

.contact-details strong{
  color:#031a33;
}

.contact-details i{
  color:#0B5ED7;
  margin-right:8px;
  font-size:18px;
}
/* FORM UX */

.contact-form .form-group{
  position:relative;
  margin-bottom:18px;
}

.contact-form .form-group i{
  position:absolute;
  left:16px;
  top:50%;
  transform:translateY(-50%);
  color:#0B5ED7;
  font-size:18px;
}

.contact-form .textarea-group i{
  top:20px;
  transform:none;
}

.contact-form .form-control{
  padding:14px 14px 14px 48px;
  border-radius:12px;
  border:1px solid #e1e5eb;
  transition:.3s;
}

.contact-form .form-control:focus{
  border-color:#0B5ED7;
  box-shadow:0 0 0 3px rgba(11,94,215,.15);
}
/* ===============================
   TEAM PAGE
================================ */

.team-hero{
  background:linear-gradient(135deg,#071a2d,#0a2f4a);
  color:#fff;
  padding:120px 0 80px;
}

.team-hero h1{
  font-size:3rem;
  font-weight:800;
}

/* SECTION */

.team-section{
  padding:80px 0;
  background:#fff;
}

/* ===============================
   TEAM CARD
================================ */

.team-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:.4s;
  height:100%;
}

.team-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

/* IMAGE (RECTANGLE STYLE) */

.team-photo{
  width:100%;
  height:300px;
  object-fit:cover;
}

/* CONTENT */

.team-info{
  padding:22px;
  text-align:left;
}

.team-info h5{
  font-weight:700;
  margin-bottom:4px;
}

.role{
  color:#1e7ae4;
  font-size:.9rem;
  margin-bottom:16px;
  font-weight:600;
}

/* ===============================
   ACTION BUTTONS
================================ */

.team-actions{
  display:flex;
  gap:12px;
}

.linkedin-btn{
  width:42px;
  height:42px;
  border-radius:8px;
  background:#0a66c2;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  transition:.3s;
}

.linkedin-btn:hover{
  background:#004182;
  color:#fff;
}

.bio-btn{
  border:none;
  background:#eef4ff;
  color:#003366;
  padding:8px 16px;
  border-radius:8px;
  font-weight:600;
  transition:.3s;
}

.bio-btn:hover{
  background:#003366;
  color:#fff;
}

/* ===============================
   MODAL
================================ */

.team-modal{
  padding:40px;
  border-radius:20px;
}

.modal-role{
  color:#1e7ae4;
  font-weight:600;
  margin-bottom:10px;
}

/* ===============================
   ANIMATION (FIXED)
================================ */

.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:1s ease;
}

.reveal.active{
  opacity:1;                /* ✅ now visible */
  transform:translateY(0);
}

/* ===============================
   MOBILE
================================ */

@media(max-width:768px){
  .team-photo{
    height:260px;
  }
}
