body {
    font-family: 'Nunito', sans-serif ;
    
}

.small-Heading{
     font-family: 'Caveat Variable', cursive;
     font-size: 16px;
     color: green;
  
     font-weight: 600;
    
}


/* header css code */
.nav-link{
    color: #008000;
    font-size: 14px;
    font-weight: 700;
}
.nav-link:hover{
    color: #062263;
}
.nav-link.active{
    color:#062263 !important;
    font-weight: 700;
}
 .hdr{
    background-color:#ffff;
     box-shadow: 0 3px 12px #00000014 !important;
 }
.logo{
    width: 140px;
}
@media (max-width:425px) {
    .logo{
        width: 100px; 
    }
}
/* header css code end */

.hero {
  min-height: auto;
  background: var(--bg);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 40px;
  padding-bottom: 60px;
}

/* BG elements */
.bg-circle-1 {
  position: absolute; top: -180px; right: -180px;
  width: 580px; height: 580px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,125,50,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.bg-circle-2 {
  position: absolute; bottom: -160px; left: -140px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(6,34,99,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(6,34,99,0.055) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  pointer-events: none;
}
.bg-watermark {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(6,34,99,0.045);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  white-space: nowrap; pointer-events: none; user-select: none;
  letter-spacing: -4px;
}

/* ══════════════════════════════
   LEFT CONTENT
══════════════════════════════ */
.hero-left { padding-right: 32px; }

/* Eyebrow pill */
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--green-pale);
  border: 1.5px solid rgba(46,125,50,0.25);
  border-radius: 100px; padding: 6px 16px;
  margin-bottom: 18px;
  animation: fadeUp 0.6s ease both;
}
.pill-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.eyebrow-pill span { font-size: 12px; font-weight: 600; color: var(--green); }

/* Headline */
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700; color: var(--navy);
  line-height: 1.05; margin-bottom: 0;
}
.ht-1 {
  display: block;
  font-size: clamp(34px, 4.8vw, 62px);
  animation: fadeUp 0.6s 0.08s ease both;
}
.ht-2 {
  display: block;
  font-size: clamp(34px, 4.8vw, 62px);
  animation: fadeUp 0.6s 0.15s ease both;
}
.ht-2 .green-word {
  color: var(--green);
  position: relative; display: inline-block;
}
.ht-2 .green-word::after {
  content: '';
  position: absolute; bottom: 4px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green2));
  border-radius: 3px;
  animation: slideIn 0.5s 0.85s ease both;
  transform-origin: left;
}
@keyframes slideIn { from{transform:scaleX(0)} to{transform:scaleX(1)} }
.ht-3 {
  display: block;
  font-size: clamp(28px, 4vw, 54px);
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 2px rgba(6,34,99,0.15);
  margin-top: -4px;
  animation: fadeUp 0.6s 0.22s ease both;
}

/* Description */
.hero-desc {
  font-size: 15px; color: var(--muted);
  line-height: 1.75; max-width: 450px;
  margin: 18px 0 24px; font-weight: 300;
  animation: fadeUp 0.6s 0.30s ease both;
}
.hero-desc b { color: var(--navy); font-weight: 600; }

/* Buttons */
.hero-btns {
  display: flex; align-items: center;
  gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.38s ease both;
}
.btn-main {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--navy); color: #fff;
  font-size: 14px; font-weight: 600; letter-spacing: 0.2px;
  padding: 14px 30px; border-radius: 100px; text-decoration: none;
  box-shadow: 0 12px 34px rgba(6,34,99,0.26);
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(6,34,99,0.36); color: #fff; }
.btn-main svg { width: 17px; height: 17px; }

.btn-sec {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white); color: var(--navy);
  font-size: 14px; font-weight: 600;
  padding: 14px 26px; border-radius: 100px; text-decoration: none;
  border: 1.5px solid rgba(6,34,99,0.14);
  box-shadow: 0 4px 16px rgba(6,34,99,0.07);
  transition: all 0.25s;
}
.btn-sec:hover { border-color: var(--green); color: var(--green); }
.btn-sec svg { width: 16px; height: 16px; }

/* Stats */
.hero-stats {
  display: flex; align-items: stretch;
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid rgba(6,34,99,0.08);
  animation: fadeUp 0.6s 0.46s ease both;
  gap: 0;
}
.hstat { flex: 1; text-align: center; }
.hstat:not(:last-child) { border-right: 1px solid rgba(6,34,99,0.08); }
.hstat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700; color: var(--navy); line-height: 1;
}
.hstat-n sup { font-size: 15px; color: var(--green); }
.hstat-l {
  font-size: 10px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-top: 5px; font-weight: 500;
}

/* ══════════════════════════════
   RIGHT VISUAL
══════════════════════════════ */
.hero-right {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  animation: fadeRight 0.8s 0.2s ease both;
}
@keyframes fadeRight { from{opacity:0;transform:translateX(36px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeUp    { from{opacity:0;transform:translateY(24px)}  to{opacity:1;transform:translateY(0)} }

/* Main photo frame */
.photo-wrap {
  position: relative;
  width: 100%; max-width: 360px;
  margin: 0 auto;
}

/* Decorative layers behind */
.deco-back-1 {
  position: absolute;
  inset: 0; top: 18px; right: -18px;
  border-radius: 200px 200px 28px 28px;
  background: var(--green-pale);
  border: 2px solid rgba(46,125,50,0.18);
  transform: rotate(3deg);
  z-index: 0;
}
.deco-back-2 {
  position: absolute;
  inset: 0; top: 9px; right: -9px;
  border-radius: 200px 200px 28px 28px;
  border: 1.5px dashed rgba(46,125,50,0.22);
  transform: rotate(1.5deg);
  z-index: 0;
}

/* Frame itself */
.photo-frame {
  position: relative; z-index: 2;
  width: 100%;
  aspect-ratio: 5/6;
  border-radius: 200px 200px 28px 28px;
  overflow: hidden;
  box-shadow:
    0 30px 70px rgba(6,34,99,0.16),
    0 0 0 6px #fff,
    0 0 0 8px rgba(6,34,99,0.07);
  background: linear-gradient(160deg, var(--navy) 0%, #0f4a3a 55%, #1a6b52 100%);
}

/* ── Replace SVG with your <img> ── */
.photo-frame img,
.photo-frame .photo-svg {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* Gradient overlay */
.photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(6,34,99,0.82) 100%);
  z-index: 1;
}

/* Bottom text inside photo */
.photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 26px 24px; z-index: 2; text-align: center;
}
.cap-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; font-style: italic;
  color: #fff; line-height: 1.3; margin-bottom: 14px;
}
.cap-quote span { color: #81C784; }
.cap-pills { display: flex; justify-content: center; flex-wrap: wrap; gap: 7px; }
.cpill {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px; padding: 5px 13px;
  font-size: 10.5px; color: #fff; font-weight: 500;
  display: flex; align-items: center; gap: 5px;
}
.cpill-dot { width: 5px; height: 5px; border-radius: 50%; background: #81C784; flex-shrink: 0; }

/* Top tag */
.frame-tag {
  position: absolute;
  top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 7px 22px; border-radius: 100px;
  white-space: nowrap; z-index: 5;
  box-shadow: 0 6px 18px rgba(6,34,99,0.28);
}

/* Floating info cards */
.fcard {
  position: absolute; z-index: 10;
  background: #fff; border-radius: 16px;
  padding: 13px 16px;
  display: flex; align-items: center; gap: 11px;
  box-shadow: 0 10px 38px rgba(6,34,99,0.13);
  border: 1px solid rgba(6,34,99,0.06);
  animation: floatY 4s ease-in-out infinite;
}
.fcard-1 { left: -68px; top: 26%; animation-delay: 0s; }
.fcard-2 { right: -60px; top: 50%; animation-delay: 1.8s; }
.fcard-3 { left: -52px; bottom: 18%; animation-delay: 1s; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
.fcard-ico {
  width: 40px; height: 40px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fcard-ico.g { background: var(--green-pale); }
.fcard-ico.n { background: var(--navy-pale); }
.fcard-ico svg { width: 20px; height: 20px; }
.fcard-title { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 2px; }
.fcard-sub   { font-size: 10.5px; color: var(--muted); }

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 10; animation: fadeUp 0.6s 1s ease both;
}
.scroll-hint p { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); opacity: 0.5; }
.scroll-mouse { width: 22px; height: 34px; border: 2px solid rgba(6,34,99,0.18); border-radius: 11px; display: flex; justify-content: center; padding-top: 5px; }
.scroll-wheel { width: 4px; height: 7px; border-radius: 2px; background: var(--green); animation: scrollAnim 1.8s ease-in-out infinite; }
@keyframes scrollAnim { 0%{transform:translateY(0);opacity:1} 75%{transform:translateY(11px);opacity:0} 100%{opacity:0} }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media(max-width:1199px) {
  .fcard-1 { left: -40px; }
  .fcard-2 { right: -35px; }
  .fcard-3 { left: -30px; }
}
@media(max-width:991px) {
  .hero { padding-top: 80px; padding-bottom: 60px; min-height: auto; }
  .hero-left { padding-right: 0; text-align: center; }
  .eyebrow-pill { display: inline-flex; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { max-width: 420px; margin-left: auto; margin-right: auto; }
  .hero-right { margin-top: 60px; }
  .photo-wrap { max-width: 340px; }
  .fcard { display: none; }
  .deco-back-1, .deco-back-2 { display: none; }
  .scroll-hint { display: none; }
  .ht-3 { display: none; }
}
@media(max-width:575px) {
  .hero-stats { flex-wrap: wrap; }
  .hstat { width: 50%; padding: 10px 0; border-right: none !important; border-bottom: 1px solid rgba(6,34,99,0.08); }
  .hstat:nth-child(odd) { border-right: 1px solid rgba(6,34,99,0.08) !important; }
  .hstat:nth-child(3), .hstat:nth-child(4) { border-bottom: none; }
  .photo-wrap { max-width: 280px; }
  .btn-main, .btn-sec { font-size: 13px; padding: 13px 22px; }
}

/* hero banner open css */


/* hero banner closed css */

/* Banner section */
.banner-section {

  width: 100%;
  height: 500px;
  /* overflow: hidden; */
  position: relative;
}

.owl-carousel .item {
  position: relative;
  width: 100%;
  height: 500px;
}

.owl-carousel .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(11, 31, 56, 0.95) 0%,
    rgba(11, 31, 56, 0.88) 15%,
    rgba(11, 31, 56, 0.75) 30%,
    rgba(11, 31, 56, 0.60) 45%,
    rgba(11, 31, 56, 0.40) 60%,
    rgba(11, 31, 56, 0.20) 75%,
    rgba(11, 31, 56, 0.05) 90%,
    transparent 100%
  );
  z-index: 1;
}

.banner-heading{
position: absolute;
z-index: 2;
color: white;
top: 50%;
left: 8%;
}

.owl-carousel .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.owl-prev span{
   position: absolute;
   top: 30%;
   float: left;
   color: rgb(167 165 158);
   font-size: 100px;
    left: 10px;
}
.owl-next span{
   position: absolute;
   top: 30%;
   float: right;
   color: rgb(167 165 158);
   font-size: 100px;
    right: 10px;
}


/* Section-2*/



/* Home about section css open */

 .about-section {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
  }

  .about-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6,34,99,0.08) 0%, transparent 70%);
    top: -100px; right: -100px;
    pointer-events: none;
  }
  .about-section::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46,125,50,0.07) 0%, transparent 70%);
    bottom: -50px; left: -80px;
    pointer-events: none;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: color-mix(in srgb, var(--navy) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--navy) 25%, transparent);
    border-radius: 40px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease both;
  }
  .eyebrow span.dot {
    width: 6px; height: 6px;
    background: var(--navy);
    border-radius: 50%;
    display: inline-block;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-text { animation: fadeUp 0.7s ease 0.1s both; }

  .about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.12;
    color: var(--navy);
    margin-bottom: 24px;
  }
  .about-text h2 em {
    font-style: normal;
    color: var(--green);
    position: relative;
  }
  .about-text h2 em::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; right: 0;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
    opacity: 0.35;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--navy2);
    margin-bottom: 36px;
    font-weight: 300;
  }

  .programmes {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }

  .prog-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    border-radius: 16px;
    padding: 20px 24px;
    border: 1px solid color-mix(in srgb, var(--navy) 10%, transparent);
    box-shadow: 0 2px 20px color-mix(in srgb, var(--navy) 5%, transparent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeUp 0.6s ease both;
  }
  .prog-card:nth-child(1) { animation-delay: 0.3s; }
  .prog-card:nth-child(2) { animation-delay: 0.4s; }
  .prog-card:nth-child(3) { animation-delay: 0.5s; }

  .prog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px color-mix(in srgb, var(--navy) 12%, transparent);
  }

  .prog-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .prog-icon.navy  { background: color-mix(in srgb, var(--navy)  12%, transparent); }
  .prog-icon.green { background: color-mix(in srgb, var(--green)  12%, transparent); }
  .prog-icon.green2{ background: color-mix(in srgb, var(--green2) 15%, transparent); }

  .prog-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
    letter-spacing: 0.01em;
  }
  .prog-info p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--navy2);
    margin: 0;
  }

  .cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeUp 0.6s ease 0.6s both;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px color-mix(in srgb, var(--navy) 30%, transparent);
  }
  .btn-primary:hover {
    background: var(--navy2);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px color-mix(in srgb, var(--navy) 40%, transparent);
  }
  .btn-primary svg { transition: transform 0.3s ease; }
  .btn-primary:hover svg { transform: translateX(4px); }

  .btn-secondary {
    font-size: 14px;
    font-weight: 500;
    color: var(--green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
  }
  .btn-secondary:hover { gap: 10px; }

  .about-visual {
    position: relative;
    height: 540px;
    animation: fadeUp 0.8s ease 0.2s both;
  }

  .img-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px color-mix(in srgb, var(--navy) 15%, transparent);
  }

  .img-card.card-main { width: 320px; height: 360px; top: 0; left: 20px; }
  .img-card.card-main .img-placeholder {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, var(--green) 100%);
  }
  .img-card.card-secondary { width: 220px; height: 240px; bottom: 0; right: 0; z-index: 2; }
  .img-card.card-secondary .img-placeholder {
    background: linear-gradient(135deg, var(--green) 0%, var(--green2) 100%);
  }
  .img-card.card-accent { width: 160px; height: 160px; top: 80px; right: 30px; }
  .img-card.card-accent .img-placeholder {
    background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 100%);
  }

  .img-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    opacity: 0.5;
  }

  .stat-pill {
    position: absolute;
    background: var(--white);
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: 0 8px 32px color-mix(in srgb, var(--navy) 12%, transparent);
    z-index: 10;
    animation: float 4s ease-in-out infinite;
  }
  .stat-pill .num {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
  }
  .stat-pill .label {
    font-size: 11px;
    font-weight: 500;
    color: var(--navy2);
    margin-top: 2px;
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .stat-pill.s1 { top: 260px; left: 0; animation-delay: 0s; }
  .stat-pill.s2 { top: 40px; right: 10px; animation-delay: 1.5s; }

  .deco-ring {
    position: absolute;
    width: 120px; height: 120px;
    border-radius: 50%;
    border: 2px dashed color-mix(in srgb, var(--navy) 25%, transparent);
    bottom: 60px; left: 260px;
    animation: spin 20s linear infinite;
    z-index: 0;
  }

  .stats-bar {
    margin-top: 80px;
    background: var(--navy);
    border-radius: 24px;
    padding: 48px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    overflow: hidden;
    animation: fadeUp 0.7s ease 0.5s both;
  }

  .stat-item { text-align: center; position: relative; }
  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 50%; transform: translateY(-50%);
    height: 50px; width: 1px;
    background: color-mix(in srgb, var(--white) 10%, transparent);
  }
  .stat-item .big-num {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--green2);
    line-height: 1;
    margin-bottom: 8px;
  }
  .stat-item .stat-label {
    font-size: 13px;
    font-weight: 400;
    color: color-mix(in srgb, var(--white) 60%, transparent);
    letter-spacing: 0.05em;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
  }
  @keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }

  @media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-visual { height: 380px; }
    .img-card.card-main { width: 240px; height: 280px; }
    .img-card.card-secondary { width: 180px; height: 200px; }
    .img-card.card-accent { width: 130px; height: 130px; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 30px; padding: 36px 30px; }
    .stat-item:nth-child(2)::after { display: none; }
  }
  @media (max-width: 600px) {
    .container { padding: 0 20px; }
    .stats-bar { grid-template-columns: 1fr 1fr; }
    .stat-item::after { display: none !important; }
  }

/* Home about section css closed */


/* about page banner open */

 .page-banner {
    position: relative;
    background: var(--navy);
    padding: 90px 0 100px;
    overflow: hidden;
    text-align: center;
  }

  .page-banner .bg-text {
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: clamp(100px, 18vw, 200px);
    font-weight: 900;
    color: var(--white);
    opacity: 0.03;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: 0.05em;
  }

  .page-banner .circle-1 {
    position: absolute;
    width: 350px; height: 350px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--white) 8%, transparent);
    top: -100px; left: -80px;
  }
  .page-banner .circle-2 {
    position: absolute;
    width: 250px; height: 250px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--white) 6%, transparent);
    bottom: -80px; right: -60px;
  }
  .page-banner .circle-3 {
    position: absolute;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--green) 15%, transparent);
    top: 30px; right: 120px;
  }
  .page-banner .circle-4 {
    position: absolute;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--green2) 20%, transparent);
    bottom: 40px; left: 140px;
  }

  .page-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--green2), var(--green));
  }

  .page-banner::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 55px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
  }

  .banner-content {
    position: relative;
    z-index: 2;
  }

  .banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: color-mix(in srgb, var(--green) 20%, transparent);
    border: 1px solid color-mix(in srgb, var(--green2) 40%, transparent);
    border-radius: 40px;
    padding: 5px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green2);
    margin-bottom: 20px;
    animation: fadeUp 0.5s ease both;
  }
  .banner-tag .dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--green2);
  }

  .banner-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
    animation: fadeUp 0.6s ease 0.1s both;
  }
  .banner-content h1 span { color: var(--green2); }

  .banner-tagline {
    font-size: 16px;
    font-weight: 300;
    color: color-mix(in srgb, var(--white) 65%, transparent);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeUp 0.6s ease 0.2s both;
  }

  .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: color-mix(in srgb, var(--white) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--white) 12%, transparent);
    border-radius: 50px;
    padding: 8px 20px;
    animation: fadeUp 0.6s ease 0.3s both;
  }
  .breadcrumb a {
    font-size: 13px;
    color: color-mix(in srgb, var(--white) 60%, transparent);
    text-decoration: none;
    transition: color 0.2s;
  }
  .breadcrumb a:hover { color: var(--white); }
  .breadcrumb .sep { font-size: 13px; color: var(--green2); }
  .breadcrumb .current { font-size: 13px; font-weight: 600; color: var(--white); }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 600px) {
    .page-banner { padding: 70px 20px 100px; }
    .banner-tagline { font-size: 14px; }
  }
/* about page banner closed */

/* what we do css start */
  
.section-wrapper {
      background: #062263;
      padding: 70px 20px 80px;
      position: relative;
    }

    .section-wrapper::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 6px;
      background: linear-gradient(90deg, #2e7d32, #062263, #2e7d32);
    }

    .section-inner {
      max-width: 1140px;
      margin: 0 auto;
    }

    .section-badge {
      display: inline-block;
      background: #2e7d32;
      color: #fff;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 18px;
      border-radius: 30px;
      margin-bottom: 14px;
    }

    .section-title {
      font-size: 2.2rem;
      font-weight: 900;
      color: #fff;
      text-align: center;
      margin-bottom: 12px;
    }

    .title-divider {
      width: 60px;
      height: 4px;
      background: #2e7d32;
      border-radius: 2px;
      margin: 0 auto 16px;
    }

    .section-subtitle {
      font-size: 1rem;
      color: rgba(255,255,255,0.75);
      text-align: center;
      max-width: 580px;
      margin: 0 auto 50px;
      line-height: 1.7;
    }

    .card-wrap {
      background: #fff;
      border-radius: 18px;
      padding: 36px 24px 28px;
      text-align: center;
      box-shadow: 0 8px 30px rgba(0,0,0,0.15);
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card-wrap:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 45px rgba(6,34,99,0.3);
    }

    .card-wrap::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 5px;
      border-radius: 18px 18px 0 0;
    }
    .card-wrap::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 5px;
      border-radius: 0 0 18px 18px;
    }

    /* .card-1::before { background: #2e7d32; }
    .card-1::after  { background: #062263; }
    .card-2::before { background: #062263; }
    .card-2::after  { background: #2e7d32; }
    .card-3::before { background: #2e7d32; }
    .card-3::after  { background: #062263; }
    .card-4::before { background: #062263; }
    .card-4::after  { background: #2e7d32; } */

    .icon-circle {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 22px;
      font-size: 2.4rem;
      position: relative;
    }

    .card-1 .icon-circle,
    .card-3 .icon-circle { background: #e8f5e9; color: #2e7d32; }
    .card-2 .icon-circle,
    .card-4 .icon-circle { background: #e8ecf7; color: #062263; }

    .icon-circle::after {
      content: '';
      position: absolute;
      inset: -5px;
      border-radius: 50%;
      border: 2px dashed;
      opacity: 0.3;
    }
    .card-1 .icon-circle::after,
    .card-3 .icon-circle::after { border-color: #2e7d32; }
    .card-2 .icon-circle::after,
    .card-4 .icon-circle::after { border-color: #062263; }

    .card-title-text {
      font-size: 1.05rem;
      font-weight: 800;
      color: #062263;
      margin-bottom: 10px;
    }

    .card-underline {
      width: 36px;
      height: 3px;
      border-radius: 2px;
      margin: 0 auto 14px;
    }
    .card-1 .card-underline,
    .card-3 .card-underline { background: #2e7d32; }
    .card-2 .card-underline,
    .card-4 .card-underline { background: #062263; }

    .card-para {
      font-size: 0.88rem;
      color: #666;
      line-height: 1.65;
      margin-bottom: 0;
    }

    @media (max-width: 767px) {
      .section-title { font-size: 1.6rem; }
      .icon-circle { width: 72px; height: 72px; font-size: 1.9rem; }
      .card-wrap { padding: 28px 16px 22px; }
      .card-para { font-size: 0.82rem; }
    }

/* what we do css closed */



/* our mission css open */

  /* ══════════════ SECTION ══════════════ */
  .mission-section {
    padding: 90px 0 100px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }

  /* Decorative background circles */
  .mission-section::before {
    content: '';
    position: absolute; top: -160px; right: -160px;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(46,125,50,0.07) 0%, transparent 65%);
    border-radius: 50%; pointer-events: none;
  }
  .mission-section::after {
    content: '';
    position: absolute; bottom: -140px; left: -120px;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(6,34,99,0.05) 0%, transparent 65%);
    border-radius: 50%; pointer-events: none;
  }

  /* grid dots pattern */
  .dot-grid {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(6,34,99,0.05) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    pointer-events: none;
  }

  /* ══════════════ LEFT: BIG VISUAL BLOCK ══════════════ */
  .mission-visual {
    position: relative;
    height: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Large circle */
  .circle-main {
    width: 360px; height: 360px;
    border-radius: 50%;
    background: linear-gradient(140deg, rgba(6,34,99,0.06) 0%, rgba(46,125,50,0.08) 100%);
    border: 2px solid rgba(6,34,99,0.10);
    position: relative;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  /* Rotating dashed ring */
  .circle-ring {
    position: absolute; inset: -18px;
    border-radius: 50%;
    border: 2px dashed rgba(46,125,50,0.30);
    animation: spin 18s linear infinite;
  }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* Inner content */
  .circle-inner {
    text-align: center;
    padding: 20px;
    position: relative; z-index: 1;
  }
  .circle-icon {
    width: 90px; height: 90px;
    border-radius: 50%;
    background: rgba(46,125,50,0.12);
    border: 2px solid rgba(46,125,50,0.30);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
  }
  .circle-icon svg { width: 46px; height: 46px; }

  .circle-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--navy);
    line-height: 1.65;
    max-width: 240px;
    margin: 0 auto;
    opacity: 0.85;
  }
  .circle-quote::before { content: '\201C'; color: var(--green); font-size: 28px; line-height: 0; vertical-align: -10px; margin-right: 4px; }
  .circle-quote::after  { content: '\201D'; color: var(--green); font-size: 28px; line-height: 0; vertical-align: -10px; margin-left: 4px; }

  /* Floating badges around circle */
  .float-badge {
    position: absolute;
    background: var(--white);
    border: 1px solid rgba(6,34,99,0.12);
    border-radius: 14px;
    padding: 12px 18px;
    display: flex; align-items: center; gap: 10px;
    color: var(--navy);
    font-size: 12px; font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 8px 30px rgba(6,34,99,0.10);
  }
  .float-badge .bdot {
    width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  }
  .fb1 { top: 30px;  left: -10px; }
  .fb2 { top: 50%;   right: -20px; transform: translateY(-50%); }
  .fb3 { bottom: 40px; left: 10px; }

  /* years badge — centered bottom */
  .years-badge {
    position: absolute;
    bottom: -18px; left: 50%; transform: translateX(-50%);
    background: var(--green);
    border-radius: 50px;
    padding: 10px 24px;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 10px 30px rgba(46,125,50,0.4);
  }
  .years-badge .yn {
    font-size: 24px; font-weight: 800; color: #fff; line-height: 1;
  }
  .years-badge .yl {
    font-size: 11px; color: rgba(255,255,255,0.8);
    text-transform: uppercase; letter-spacing: 1.2px; line-height: 1.3;
  }

  /* ══════════════ RIGHT: CONTENT ══════════════ */
  .mission-content { padding-left: 20px; }

  .mission-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--green); margin-bottom: 16px;
  }
  .mission-eyebrow .ebar {
    display: block; width: 28px; height: 2px;
    background: var(--green); border-radius: 2px;
  }

  .mission-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.18;
    margin-bottom: 20px;
  }
  .mission-title em {
    font-style: italic;
    color: var(--green);
  }

  .mission-desc {
    font-size: 15px;
    color: #4a5f6a;
    line-height: 1.85;
    margin-bottom: 36px;
    font-weight: 400;
  }

  /* ── Mission pillars ── */
  .pillar-list { list-style: none; padding: 0; margin: 0 0 36px; }
  .pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(6,34,99,0.07);
    transition: background 0.2s;
  }
  .pillar-item:first-child { border-top: 1px solid rgba(6,34,99,0.07); }

  .pillar-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
  }
  .pillar-icon.g { background: rgba(46,125,50,0.10); border: 1px solid rgba(46,125,50,0.25); }
  .pillar-icon.n { background: rgba(6,34,99,0.07); border: 1px solid rgba(6,34,99,0.15); }
  .pillar-icon svg { width: 22px; height: 22px; }

  .pillar-text .pt { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
  .pillar-text .pd { font-size: 12.5px; color: #6a7a8a; line-height: 1.6; }

  /* ── CTA Button ── */
  .mission-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--navy);
    color: #fff;
    font-size: 13px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 14px 30px;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 10px 30px rgba(6,34,99,0.25);
  }
  .mission-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(6,34,99,0.35);
    color: #fff;
  }
  .mission-cta svg { width: 16px; height: 16px; }

  .mission-cta-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--green);
    font-size: 13px; font-weight: 600;
    text-decoration: none;
    margin-left: 22px;
    transition: color 0.2s;
  }
  .mission-cta-secondary:hover { color: var(--navy); }

  /* ══════════════ ANIMATIONS ══════════════ */
  @keyframes fadeLeft {
    from { opacity:0; transform: translateX(-30px); }
    to   { opacity:1; transform: translateX(0); }
  }
  @keyframes fadeRight {
    from { opacity:0; transform: translateX(30px); }
    to   { opacity:1; transform: translateX(0); }
  }
  @keyframes fadeUp {
    from { opacity:0; transform: translateY(24px); }
    to   { opacity:1; transform: translateY(0); }
  }

  .afl { animation: fadeLeft  0.7s ease both; }
  .afr { animation: fadeRight 0.7s ease both; }
  .afu { animation: fadeUp    0.65s ease both; }
  .d1{animation-delay:.08s} .d2{animation-delay:.16s}
  .d3{animation-delay:.24s} .d4{animation-delay:.32s}
  .d5{animation-delay:.40s} .d6{animation-delay:.48s}

  /* ══════════════ RESPONSIVE ══════════════ */
  @media(max-width:991px){
    .mission-visual { min-height: 360px; margin-bottom: 60px; }
    .circle-main { width: 290px; height: 290px; }
    .mission-content { padding-left: 0; }
    .fb2 { right: -10px; }
  }
  @media(max-width:575px){
    .circle-main { width: 240px; height: 240px; }
    .float-badge { font-size: 11px; padding: 9px 13px; }
    .fb1 { top: 10px; left: 0; }
    .fb2 { right: 0; }
    .fb3 { bottom: 20px; left: 0; }
  }
/* our mission css closed */






/* impact design css open  */


 /* ══════════════ SECTION ══════════════ */
   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy:  #062263;
    --navy2: #0d3494;
    --green: #2E7D32;
    --green2:#43A047;
    --cream: #f2f6f3;
    --white: #ffffff;
  }

  .impact-section {
    padding: 80px 0 90px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .impact-section::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(6,34,99,0.06) 0%, transparent 65%);
    border-radius: 50%; pointer-events: none;
  }
  .impact-section::after {
    content: '';
    position: absolute; bottom: -100px; left: -80px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(46,125,50,0.07) 0%, transparent 65%);
    border-radius: 50%; pointer-events: none;
  }

  /* ══════════════ HEADING ══════════════ */
  .impact-eyebrow {
    font-size: 12px; font-weight: 600;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--green); margin-bottom: 10px;
  }
  .impact-title {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700; color: var(--navy);
    line-height: 1.2; margin-bottom: 10px;
  }
  .impact-title .you {
    font-style: italic; font-weight: 800; color: var(--green);
    background: linear-gradient(120deg, rgba(46,125,50,0.12) 0%, rgba(46,125,50,0.12) 100%);
    padding: 0 4px; border-radius: 4px;
  }
  .impact-year {
    display: inline-block;
    background: var(--navy); color: #fff;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1px; padding: 3px 12px;
    border-radius: 100px; margin-left: 8px;
    vertical-align: middle; position: relative; top: -4px;
  }
  .title-bar {
    width: 48px; height: 4px;
    background: linear-gradient(90deg, var(--green), var(--navy));
    border-radius: 3px; margin-top: 14px;
  }
  .impact-desc {
    font-size: 14px; color: #607060;
    line-height: 1.85; font-weight: 400;
  }

  /* ══════════════ STAT CARD — UNIFORM ══════════════ */
  .stat-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px 22px 24px;
    border: 1.5px solid rgba(6,34,99,0.08);
    position: relative; overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 200px;
  }
  /* bottom accent bar */
  .stat-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--green));
    border-radius: 0 0 20px 20px;
  }
  .stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(6,34,99,0.12);
  }

  /* top area: icon + number side by side */
  .stat-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    width: 100%;
  }

  /* icon bubble */
  .stat-icon {
    width: 60px; height: 60px;
    border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .stat-icon.ni { background: radial-gradient(circle, rgba(6,34,99,0.13) 0%, rgba(6,34,99,0.04) 100%); }
  .stat-icon.gi { background: radial-gradient(circle, rgba(46,125,50,0.16) 0%, rgba(46,125,50,0.04) 100%); }
  .stat-icon.oi { background: radial-gradient(circle, rgba(201,135,43,0.16) 0%, rgba(201,135,43,0.04) 100%); }
  .stat-icon svg { width: 30px; height: 30px; }

  .stat-num-wrap { flex: 1; }
  .stat-num {
    font-size: 34px; font-weight: 800;
    color: var(--navy); line-height: 1;
    letter-spacing: -1px;
  }
  .stat-num .acc { color: var(--green); }

  .stat-lbl {
    font-size: 13px; font-weight: 600;
    color: var(--navy); margin-bottom: 6px;
    line-height: 1.35;
  }
  .stat-desc {
    font-size: 12px; color: #7a8a7a;
    line-height: 1.65; font-weight: 400;
    flex: 1;
  }

  /* ══════════════ NAVY (dark) VARIANT ══════════════ */
  .stat-card.dark {
    background: linear-gradient(140deg, var(--navy) 0%, var(--navy2) 100%);
    border-color: transparent;
  }
  .stat-card.dark::after {
    background: linear-gradient(90deg, var(--green2), #81C784);
  }
  .stat-card.dark .stat-icon {
    background: rgba(255,255,255,0.12);
    border: 1.5px dashed rgba(255,255,255,0.25);
  }
  .stat-card.dark .stat-num  { color: #ffffff; }
  .stat-card.dark .stat-num .acc { color: #81C784; }
  .stat-card.dark .stat-lbl  { color: rgba(255,255,255,0.88); }
  .stat-card.dark .stat-desc { color: rgba(255,255,255,0.58); }
  .stat-card.dark:hover { box-shadow: 0 20px 50px rgba(6,34,99,0.28); }

  /* ══════════════ ANIMATIONS ══════════════ */
  @keyframes fadeUp {
    from { opacity:0; transform:translateY(26px); }
    to   { opacity:1; transform:translateY(0); }
  }
  .au { animation: fadeUp 0.6s ease both; }
  .d0{animation-delay:0s}   .d1{animation-delay:.08s}
  .d2{animation-delay:.16s} .d3{animation-delay:.24s}
  .d4{animation-delay:.32s} .d5{animation-delay:.40s}

  /* ══════════════ RESPONSIVE ══════════════ */
  @media(max-width:767px){
    .stat-num { font-size:28px; }
    .stat-icon{ width:50px; height:50px; }
    .stat-icon svg{ width:24px; height:24px; }
  }


/* impact design css closed  */



/* footer open css */

 /* ── FOOTER MAIN ── */
  .site-footer { background: var(--navy); color: var(--white); padding: 70px 0 0; position: relative; overflow: hidden; }

  /* subtle bg glow */
  .site-footer::before {
    content: ''; position: absolute;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(46,125,50,0.1) 0%, transparent 70%);
    top: -100px; right: -80px; pointer-events: none;
  }

  /* ── LOGO & ABOUT COL ── */
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 900; color: var(--white);
    text-decoration: none; display: inline-block; margin-bottom: 16px;
  }
  .footer-logo span { color: var(--green2); }

  .footer-about {
    font-size: 13.5px; font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.8; margin-bottom: 24px;
  }

  /* social icons */
  .social-links { display: flex; gap: 10px; flex-wrap: wrap; }
  .social-links a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); font-size: 15px;
    text-decoration: none;
    transition: background .3s, color .3s, transform .2s;
  }
  .social-links a:hover { background: var(--green); color: var(--white); transform: translateY(-2px); border-color: var(--green); }

  /* ── FOOTER HEADINGS ── */
  .footer-heading {
    font-size: 15px; font-weight: 600; color: var(--white);
    margin-bottom: 20px; position: relative; padding-bottom: 12px;
  }
  .footer-heading::after {
    content: ''; position: absolute;
    bottom: 0; left: 0;
    width: 32px; height: 2px;
    background: var(--green2); border-radius: 2px;
  }

  /* ── LINKS ── */
  .footer-links { list-style: none; padding: 0; margin: 0; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a {
    font-size: 13.5px; font-weight: 300;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: color .2s, gap .2s;
  }
  .footer-links a i { font-size: 11px; color: var(--green2); transition: transform .2s; }
  .footer-links a:hover { color: var(--white); gap: 12px; }
  .footer-links a:hover i { transform: translateX(2px); }

  /* ── CONTACT LIST ── */
  .contact-list { list-style: none; padding: 0; margin: 0; }
  .contact-list li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 16px;
  }
  .contact-list .c-icon {
    width: 34px; height: 34px; border-radius: 10px;
    background: rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; color: var(--green2); flex-shrink: 0;
  }
  .contact-list .c-text { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.6; }
  .contact-list .c-text a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color .2s; }
  .contact-list .c-text a:hover { color: var(--white); }

  /* ── DIVIDER ── */
  .footer-divider { border-color: rgba(255,255,255,0.08); margin: 0; }

  /* ── COPYRIGHT BAR ── */
  .footer-bottom {
    padding: 18px 0;
    font-size: 13px; font-weight: 300;
    color: rgba(255,255,255,0.45);
  }
  .footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color .2s; }
  .footer-bottom a:hover { color: var(--white); }
  .footer-bottom .sep { margin: 0 8px; opacity: .4; }

  .donate-btn {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--green); color: var(--white);
    font-size: 13px; font-weight: 600;
    padding: 10px 22px; border-radius: 50px;
    text-decoration: none;
    transition: background .3s, transform .2s;
    white-space: nowrap;
  }
  .donate-btn:hover { background: var(--green2); color: var(--white); transform: translateY(-1px); }


/* footer css closed */


/* section-7  */

.carousel-2 .owl-prev span{
   position: absolute;
   top: 27%;
   float: left;
   color: green;
   font-size: 50px;
    /* left: 10px; */
}
.carousel-2 .owl-next span{
   position: absolute;
   top: 27%;
   float: right;
   color: green;
   font-size: 50px;
   /* right: 10px; */

}



/*Card div css */

/* Section background (optional) */
.bg-sec-7{
    background: #f7faf8;
}



.viewpdf{
    color: green;
}

.viewpdf:hover{
    color: #04287D;
    transition: all 0.3s ease;
} 


/* Jis element pe flex / flex:1 laga hota hai,
uski size baad me decide hoti hai.
Jispe flex nahi laga hota, wo pehle apni natural size le leta hai. */
.card.main-div{
    width: 100%;
    display: flex;
    height: 400px;
    flex-direction: column;
    overflow: hidden;
    background-color: transparent!important;
}
.card.main-div img{
width: 100%;
flex: 1;   /* grow-1 shrink-1 basis-0 */
object-fit: contain;

}
.card-body{
    flex: 0;
    padding-top: 24px;
}
.bg-7-image{
   
    background-position: center;
    background-size: cover;
}


/* Contact page css */
.contact-banner{
width: 100%;
height: 350px;
position: relative;
z-index: 1;
}
.contact-banner img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(11, 31, 56, 0.95) 0%,
    rgba(11, 31, 56, 0.88) 15%,
    rgba(11, 31, 56, 0.75) 30%,
    rgba(11, 31, 56, 0.60) 45%,
    rgba(11, 31, 56, 0.40) 60%,
    rgba(11, 31, 56, 0.20) 75%,
    rgba(11, 31, 56, 0.05) 90%,
    transparent 100%
  );
  z-index: 2;
}





/* about section css open*/

.card .icon{
font-size: 3rem;

}

.abtcrd .card{
    background-color: #052A81;
    color:white;
}

 
.abtcrd .card:hover{
    background-color: #008000;
    color:white;
}

.bi-droplet::before {
    content: "\f30d";
    background: #0080008f;
    padding: 10px;
    border-radius: 50px;
}

/* about section css closed*/







  /* contact us code */

/* SECTION TITLES */
  .sec-title { font-family: 'Playfair Display', serif; font-weight: 900; color: var(--navy); }
  .sec-title span { color: var(--green); }
  .sec-sub { font-size: 15px; font-weight: 300; color: var(--navy2); }

  .eyebrow-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(46,125,50,0.1); border: 1px solid rgba(46,125,50,0.3);
    border-radius: 40px; padding: 4px 14px;
    font-size: 11px; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: var(--green);
  }

  /* INFO CARDS */
  .info-card {
    background: var(--white);
    border-radius: 20px;
    border: 2px solid rgba(6,34,99,0.08);
    padding: 30px 24px;
    height: 100%;
    transition: transform .3s, box-shadow .3s;
    text-align: center;
  }
  .info-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(6,34,99,0.1); }

  .info-icon {
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin: 0 auto 16px;
  }
  .info-icon.navy  { background: rgba(6,34,99,0.1);  color: var(--navy); }
  .info-icon.green { background: rgba(46,125,50,0.1); color: var(--green); }
  .info-icon.navy2 { background: rgba(13,52,148,0.1); color: var(--navy2); }

  .info-card h5 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
  .info-card p, .info-card a {
    font-size: 13.5px; font-weight: 300; color: var(--navy2);
    line-height: 1.7; text-decoration: none;
  }
  .info-card a:hover { color: var(--green); }

  /* CONTACT FORM */
  .form-card {
    background: var(--white);
    border-radius: 24px;
    border: 2px solid rgba(6,34,99,0.08);
    padding: 40px;
    box-shadow: 0 4px 30px rgba(6,34,99,0.06);
  }

  .form-label { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }

  .form-control, .form-select {
    border: 1.5px solid rgba(6,34,99,0.15);
    border-radius: 10px;
    padding: 11px 16px;
    font-size: 14px; font-weight: 300;
    color: var(--navy);
    background: var(--cream);
    transition: border-color .3s, box-shadow .3s;
  }
  .form-control:focus, .form-select:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(6,34,99,0.08);
    background: var(--white);
  }
  .form-control::placeholder { color: rgba(6,34,99,0.35); }
  textarea.form-control { resize: none; }

  .btn-submit {
    background: var(--navy); color: var(--white);
    border: none; border-radius: 50px;
    padding: 13px 36px; font-size: 14px; font-weight: 600;
    transition: background .3s, transform .2s;
    box-shadow: 0 4px 20px rgba(6,34,99,0.25);
  }
  .btn-submit:hover { background: var(--navy2); transform: translateY(-2px); color: var(--white); }

  /* MAP */
  .map-wrap { border-radius: 20px; overflow: hidden; border: 2px solid rgba(6,34,99,0.08); }
  .map-wrap iframe { display: block; width: 100%; height: 320px; border: none; }

  /* SOCIAL */
  .social-card {
    background: var(--navy);
    border-radius: 20px;
    padding: 36px 30px;
    text-align: center;
  }
  .social-card h5 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
  .social-card p { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,0.6); margin-bottom: 24px; }

  .social-icons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
  .social-icons a {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); font-size: 18px;
    text-decoration: none;
    transition: background .3s, color .3s, transform .2s;
  }
  .social-icons a:hover { background: var(--green); color: var(--white); transform: translateY(-3px); border-color: var(--green); }
   /* contact us code  closed*/

 

   /* centers code css start */




.fund-card{
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 18px rgba(0,0,0,0.08);
    transition:0.3s;
    background:#fff;
}

.fund-card:hover{
    transform:translateY(-5px);
}

.fund-img{
    height:190px;
    object-fit:cover;
    width:100%;
}

.author{
    font-size:14px;
    color:#666;
}

.amount{
    font-weight:700;
    font-size:18px;
}

.progress{
    height:6px;
    border-radius:10px;
}
.progress-bar{
    background-color: #04076D;
}
.meta{
    font-size:13px;
    color:#777;
}

.btn-share{
    border:1px solid #d0d5dd;
    color:#04076D;
}

.btn-donate{
    background:#2e7d32;
    color:#fff;
}

.btn-donate:hover{
    background: #04076D;
    color:#fff;
}
 
   /* centers code css closed */