:root {
  --navy: #0f2f45;
  --navy-2: #164660;
  --teal: #00a98f;
  --teal-dark: #087c71;
  --mint: #e8fff9;
  --amber: #ffb703;
  --orange: #f97316;
  --rose: #ef476f;
  --ink: #17212b;
  --muted: #667085;
  --cream: #fff8ee;
  --soft: #f3fbf8;
  --white: #fff;
  --line: rgba(15, 47, 69, .10);
  --shadow: 0 24px 70px rgba(15, 47, 69, .13);
  --shadow-soft: 0 14px 45px rgba(15, 47, 69, .09);
  --radius: 28px;
  --radius-sm: 16px;
  --transition: all .36s cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Nunito, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, #fffdfa 44%, #f7fffc 100%);
  line-height: 1.5;
  overflow-x: hidden
}

body:before {
  content: "";
  position: fixed;
  inset: -25% -10% auto auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 169, 143, .14), transparent 68%);
  z-index: -2;
  pointer-events: none
}

body:after {
  content: "";
  position: fixed;
  left: -12%;
  bottom: -20%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 183, 3, .12), transparent 70%);
  z-index: -2;
  pointer-events: none
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

.container {
  width: min(1180px, 92%);
  margin: auto
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #ffffff, #e9fff8 52%, #fff2dc);
  display: grid;
  place-items: center;
  gap: 14px;
  transition: .6s
}

.preloader.hide {
  opacity: 0;
  visibility: hidden
}

.seed {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 6px solid rgba(15, 47, 69, .08);
  border-top-color: var(--teal);
  border-right-color: var(--amber);
  border-bottom-color: var(--rose);
  animation: spin 1s linear infinite
}

.preloader span {
  font-weight: 900;
  color: var(--navy)
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.topbar {
  background: linear-gradient(90deg, var(--navy), var(--teal-dark));
  color: #fff;
  font-size: 14px;
  position: relative;
  overflow: hidden
}

.topbar:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: translateX(-100%);
  animation: shine 5s linear infinite
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 9px 0;
  position: relative;
  z-index: 1
}

.top-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap
}

.topbar i {
  margin-right: 7px;
  color: var(--amber)
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 47, 69, .08);
  box-shadow: 0 8px 30px rgba(15, 47, 69, .05);
  transition: var(--transition)
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 45px rgba(15, 47, 69, .12)
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  line-height: 1.05;
  color: var(--navy)
}

/* .brand img {
  width: 230px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(15, 47, 69, .08))
} */

.brand img {
    width: 102px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(15, 47, 69, .08));
    position: absolute;
    top: -38px;
}

.brand span {
  display: none
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0
}

.main-nav a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 28px 12px;
  font-size: 15px;
  font-weight: 800;
  color: #263445;
  transition: var(--transition);
  position: relative
}

.main-nav>ul>li>a:after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 20px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition)
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--teal-dark)
}

.main-nav>ul>li>a:hover:after,
.main-nav>ul>li>a.active:after {
  transform: scaleX(1)
}

.has-dropdown {
  position: relative
}

.dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 280px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(15, 47, 69, .08);
  border-radius: 0 0 24px 24px;
  box-shadow: var(--shadow);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(.98);
  transition: var(--transition)
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1)
}

.dropdown a {
  padding: 12px 14px;
  border-radius: 14px;
  display: block;
  color: #273548
}

.dropdown a:after {
  display: none
}

.dropdown a:hover {
  background: linear-gradient(90deg, var(--mint), #fff6dd);
  color: var(--navy);
  transform: translateX(4px)
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 900;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  letter-spacing: .1px
}

.btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: translateX(-110%);
  transition: .65s
}

.btn:hover:before {
  transform: translateX(110%)
}

.btn:hover {
  transform: translateY(-4px)
}

.btn-sm {
  padding: 11px 19px;
  font-size: 13px
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #fff;
  box-shadow: 0 15px 30px rgba(249, 115, 22, .25)
}

.btn-secondary {
  background: linear-gradient(135deg, var(--teal), #52d6be);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 169, 143, .25)
}

.btn-light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(255, 255, 255, .2)
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, .8);
  color: #fff;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px)
}

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 38px
}

.hamburger span {
  display: block;
  height: 3px;
  background: var(--navy);
  margin: 7px 0;
  border-radius: 8px;
  transition: var(--transition)
}

.hero {
  position: relative;
  overflow: hidden
}

.hero .swiper-slide {
  min-height: 580px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative
}

.hero .swiper-slide:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8, 34, 50, .88) 0%, rgba(15, 47, 69, .70) 44%, rgba(0, 169, 143, .22) 100%)
}

.hero .swiper-slide:after {
  content: "";
  position: absolute;
  right: -160px;
  top: 90px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 183, 3, .35), transparent 68%);
  filter: blur(1px);
 
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 1200px
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 13px
}

.eyebrow:before {
  content: "";
  width: 38px;
  height: 3px;
  background: currentColor;
  border-radius: 4px
}

.eyebrow.light {
  color: #fff
}

.hero h1,
.page-hero h1 {
  /*font-family: 'Playfair Display', serif;*/
  font-family: Nunito, Arial, sans-serif;
font-size: clamp(25px, 7vw, 50px);
  line-height: 1.01;
  margin: 0 0 20px;
  letter-spacing: -1.5px;
  font-weight: 700;
}

.hero p {
  font-size: 20px;
  max-width: 660px;
  margin-bottom: 32px;
  color: #edf8f4
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.hero-float {
  position: absolute;
  right: 7%;
  bottom: 72px;
  z-index: 3;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 30px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: center;
  max-width: 350px;
  animation: softFloat 4.5s ease-in-out infinite
}

.hero-float i {
  width: 60px;
  height: 60px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 12px 30px rgba(239, 71, 111, .28)
}

.hero-float strong {
  display: block;
  font-size: 30px;
  color: var(--navy);
  line-height: 1
}

.hero-float span {
  color: #4a5565;
  font-weight: 800
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: .65
}

.swiper-pagination-bullet-active {
  background: var(--amber);
  opacity: 1;
  width: 30px;
  border-radius: 99px
}

.section {
  padding: 50px 0;
  position: relative
}

.section.soft {
  background: linear-gradient(180deg, #f4fffb, #fff8eb)
}

.section-title {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px
}

.section-title span {
  color: var(--teal-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 13px
}

.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 40px);
  line-height: 1.06;
  margin: 9px 0 15px;
  color: var(--navy);
  letter-spacing: -.7px
}

.section-heading1{
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 40px);
  line-height: 1.06;
  margin: 9px 0 15px;
  color: var(--navy);
  letter-spacing: -.7px
}   

.white{
  color: white !important;
}

.section-title p {
  color: var(--muted);
  font-size: 18px
}

.lead {
  font-size: 18px;
  color: #3c4654
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center
}

.image-collage {
  position: relative;
  min-height: 540px
}

.image-collage:before {
  content: "";
  position: absolute;
  left: 7%;
  top: 12%;
  width: 72%;
  height: 70%;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(0, 169, 143, .16), rgba(255, 183, 3, .16));
  transform: rotate(-5deg)
}

.image-collage img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow)
}

.image-collage .img-a {
  width: 90%;
  height: 390px;
  left: 0;
  top: 0
}

.image-collage .img-b {
  width:63%;
  height: 260px;
  right: 0;
  bottom: 18px;
  border: 10px solid #fff
}

.image-collage .badge {
  position: absolute;
  left: 28px;
  bottom: 25px;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  color: #fff;
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
  font-weight: 900
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 26px 0
}

.check-list div {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 12px 14px;
  background: rgba(0, 169, 143, .06);
  border: 1px solid rgba(0, 169, 143, .10);
  border-radius: 16px
}

.check-list i {
  color: var(--teal);
  margin-top: 6px
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.program-card,
.value-card,
.team-card,
.resource-card,
.blog-card,
.story-card,
.report-card,
.partner-card,
.faq-card,
.mission-box,
.text-card,
.process-step,
.feature,
.contact-card {
  background: rgba(255, 255, 255, .90);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--line);
  position: relative
}

.program-card:before,
.value-card:before,
.resource-card:before,
.blog-card:before,
.story-card:before,
.report-card:before,
.team-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--orange));
  opacity: .9
}

.program-card:hover,
.value-card:hover,
.team-card:hover,
.resource-card:hover,
.blog-card:hover,
.story-card:hover,
.report-card:hover,
.partner-card:hover,
.mission-box:hover,
.process-step:hover,
.feature:hover,
.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow)
}

.program-card .thumb {
  height: 236px;
  overflow: hidden
}

.program-card .thumb img,
.resource-card img,
.story-card img,
.blog-card img,
.report-card img,
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s ease
}

.program-card:hover img,
.resource-card:hover img,
.story-card:hover img,
.blog-card:hover img,
.report-card:hover img,
.team-card:hover img {
  transform: scale(1.08)
}

.program-card .content,
.resource-card .content,
.blog-card .content,
.story-card .content,
.report-card .content {
  padding: 25px
}

.program-card h3,
.resource-card h3,
.blog-card h3,
.story-card h3,
.report-card h3,
.value-card h3,
.mission-box h3,
.feature h3,
.process-step h3 {
  color: var(--navy);
  margin-top: 0
}

.icon-badge,
.feature i {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--mint), #fff4d5);
  color: var(--teal-dark);
  font-size: 25px;
  margin-bottom: 17px;
  box-shadow: inset 0 0 0 1px rgba(0, 169, 143, .12), 0 12px 22px rgba(0, 169, 143, .12)
}

.program-card:nth-child(2n) .icon-badge,
.value-card:nth-child(2n) i {
  background: linear-gradient(135deg, #fff3df, #ffe0ca);
  color: var(--orange)
}

.program-card:nth-child(3n) .icon-badge,
.value-card:nth-child(3n) i {
  background: linear-gradient(135deg, #fff0f5, #ffe5ec);
  color: var(--rose)
}

.link {
  font-weight: 900;
  color: var(--teal-dark);
  display: inline-flex;
  gap: 8px;
  align-items: center
}

.link i {
  transition: var(--transition)
}

.link:hover i {
  transform: translateX(6px)
}

.stats {
  background: radial-gradient(circle at 0 0, rgba(0, 169, 143, .28), transparent 32%), linear-gradient(135deg, var(--navy), #0b2234);
  color: #fff;
  position: relative;
  overflow: hidden
}

.stats:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 183, 3, .18);
  right: -150px;
  top: -160px
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center
}

.stat-item {
  padding: 32px 15px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 26px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
  transition: var(--transition)
}

.stat-item:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, .10)
}

.stat-item i {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  display: grid;
  place-items: center;
  font-size: 28px;
  color: #fff;
  margin: 0 auto 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .2)
}

.stat-item strong {
  display: block;
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
  padding: 10px;
}

.stat-item span {
  font-weight: 400;
  color: #dff8ef
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 235px;
  gap: 18px
}

.gallery-grid .gitem {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate
}

.gallery-grid .gitem.large {
  grid-row: span 2
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .9s
}

.gallery-grid .gitem:hover img {
  transform: scale(1.1)
}

.gallery-grid .gitem:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15, 47, 69, .72));
  z-index: 1;
  opacity: .75
}

.gallery-grid .gitem:after {
  content: attr(data-title);
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: #fff;
  border-radius: 18px;
  padding: 13px 14px;
  font-weight: 900;
  z-index: 2;
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(12px);
  transform: translateY(18px);
  opacity: 0;
  transition: var(--transition)
}

.gallery-grid .gitem:hover:after {
  opacity: 1;
  transform: translateY(0)
}

.split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  border: 1px solid var(--line)
}

.split-cta .visual {
  min-height: 440px;
  background-size: cover;
  background-position: center;
  position: relative
}

.split-cta .visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 169, 143, .10), rgba(255, 183, 3, .18))
}

.split-cta .form-box {
  padding: 50px;
  background: radial-gradient(circle at 95% 0, rgba(255, 183, 3, .18), transparent 40%), linear-gradient(135deg, #102f44, #0b2234);
  color: #fff
}

.form-grid {
  display: grid;
  gap: 15px
}

.input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 16px;
  padding: 15px 17px;
  background: rgba(255, 255, 255, .08);
  color: inherit;
  font-family: inherit;
  outline: none;
  transition: var(--transition)
}

.input:focus,
textarea:focus,
select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(255, 183, 3, .16)
}

textarea {
  min-height: 122px;
  resize: vertical
}

.form-light .input,
.form-light textarea,
.form-light select {
  border-color: #dfeae5;
  background: #fff;
  color: var(--ink)
}

.partners {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap
}

.partner-logo {
  width: 180px;
  height: 177px;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #f4fffb);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  font-weight: 900;
  color: var(--navy);
  transition: var(--transition)
}

.partner-logo:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow)
}

.partner-logo small {
  color: var(--teal-dark)
}

.page-hero {
  min-height: 270px;
  background: linear-gradient(105deg, rgba(15, 47, 69, .84), rgba(0, 169, 143, .45)), var(--hero);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden
}

.page-hero:after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -160px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(255, 183, 3, .25)
}

.page-hero-card {
  max-width: 800px;
  color: #fff;
  position: relative;
  z-index: 1
}

.page-hero p {
  font-size: 20px;
  color: #edf8f4
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center
}

.text-card {
  padding: 20px 25px;
}

.pill-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px
}

.pill {
  background: linear-gradient(135deg, var(--mint), #fff4d8);
  color: var(--navy);
  border: 1px solid rgba(0, 169, 143, .12);
  border-radius: 999px;
  padding: 9px 15px;
  font-weight: 900;
  font-size: 13px
}

.timeline {
  position: relative;
  display: grid;
  gap: 22px
}

.timeline:before {
  content: "";
  position: absolute;
  left: 25px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(var(--teal), var(--amber))
}

.timeline-item {
  position: relative;
  padding-left: 72px
}

.timeline-dot {
  position: absolute;
  left: 5px;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  border: 8px solid #eefdf8;
  box-shadow: 0 8px 20px rgba(0, 169, 143, .2)
}

.timeline-item h3 {
  margin: 0 0 6px;
  color: var(--navy)
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 19px
}

.value-card {
  padding: 27px;
  text-align: center
}

.value-card i {
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--mint), #fff4d5);
  display: grid;
  place-items: center;
  font-size: 27px;
  color: var(--teal-dark);
  margin: 0 auto 15px
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.mission-box {
  padding: 34px
}

.mission-box:nth-child(2) {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff
}

.mission-box:nth-child(2) h3 {
  color: #fff
}

.mission-box:nth-child(3) {
  background: linear-gradient(135deg, #fff8e8, #fff)
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.team-card {
  text-align: center;
  padding-bottom: 24px
}

.team-card img {
  width: 60%;
  height: 175px;
  object-fit: cover;
   border-radius: 50%;
  display: block;
  margin: 0 auto 20px;
}

.team-card h3 {
  margin: 20px 0 2px;
  color: var(--navy)
}

.team-card span {
  color: var(--teal-dark);
  font-weight: 900
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step
}

.process-step {
  padding: 32px;
  counter-increment: step
}

.process-step:before {
  content: counter(step);
  position: absolute;
  right: 4px;
  top: 18px;
  width: 46px;
  height: 46px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 169, 143, .22)
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px
}

.feature {
  display: flex;
  gap: 17px;
  padding: 22px
}

.feature i {
  margin: 0;
  flex: 0 0 auto
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px
}

.resource-card img,
.story-card img,
.blog-card img,
.report-card img {
  height: 270px;
  object-fit: cover
}

.filter-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 34px
}

.filter-btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  background: #e9fbf6;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
  transition: var(--transition)
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--teal), var(--amber));
  color: #fff;
  transform: translateY(-3px)
}

.masonry {
  columns: 3 280px;
  column-gap: 20px
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative
}

.masonry-item img {
  width: 100%;
  height: auto;
  transition: .8s
}

.masonry-item:hover img {
  transform: scale(1.05)
}

.cta-band {
  padding: 62px 0;
  background: radial-gradient(circle at 10% 0, rgba(255, 183, 3, .25), transparent 36%), linear-gradient(135deg, var(--navy), var(--teal-dark));
  color: #fff;
  position: relative;
  overflow: hidden
}

.cta-band:after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .10)
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 1
}

.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(33px, 5vw, 45px);
  line-height: 1.04;
  margin: 0 0 11px
}

.cta-inner p {
  max-width: 720px;
  color: #e5fff6
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex: 0 0 auto
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px
}

.contact-info {
  display: grid;
  gap: 18px
}

.contact-card {
  padding: 20px
}

.contact-card i {
  width: 54px;
  height: 54px;
  border-radius: 18px;
     background: linear-gradient(135deg, #39f4c3, #fac53e);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 12px
}

.map-box {
  border-radius: 26px;
  overflow: hidden;
  min-height: 350px;
  background: linear-gradient(135deg, #e9fff8, #fff1cc);
  display: grid;
  place-items: center;
  color: var(--navy);
  font-weight: 900;
  border: 1px solid var(--line)
}

.faq-list {
  display: grid;
  gap: 15px;
  max-width: 920px;
  margin: auto
}

.faq-card {
  padding: 24px
}

.faq-card h3 {
  margin: 0 0 8px;
  color: var(--navy)
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 31px;
  z-index: 900;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .36);
  transition: var(--transition)
}

.whatsapp:hover {
  transform: translateY(-5px) scale(1.04)
}

.footer {
  background: linear-gradient(135deg, #0b2234, var(--navy));
  color: #fff;
  position: relative
}

.footer-wave {
  height: 9px;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--orange), var(--rose))
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr 1fr 1.3fr;
  gap: 38px;
  padding: 66px 0
}

.footer img {
  width: 100px;
  background: #fff;
  border-radius: 14px;
  padding: 7px;
  margin-bottom: 16px
}

.footer h4 {
  color: #9df3e2;
  margin: 0 0 14px
}

.footer a {
  display: block;
  margin: 8px 0;
  color: #eef7f4;
  transition: var(--transition)
}

.footer a:hover {
  color: var(--amber);
  transform: translateX(4px)
}

.footer p {
  color: #dbe8ef;
  margin-top: 0
}

.social {
  display: flex;
  gap: 9px;
  flex-wrap: wrap
}

.social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  display: grid;
  place-items: center;
  margin: 0
}

.social a:hover {
  background: linear-gradient(135deg, var(--teal), var(--amber));
  color: #fff;
  transform: translateY(-4px)
}

.footer-bottom {
  background: rgba(0, 0, 0, .24);
  padding: 15px 0;
  font-size: 14px
}

.footer-bottom .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap
}

.reveal-up {
  animation: floatUp 1s ease both
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes softFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%)
  }

  50%,
  100% {
    transform: translateX(100%)
  }
}

@media(max-width:1080px) {

  .card-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .value-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .mission-grid,
  .resource-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .process {
    grid-template-columns: repeat(2, 1fr)
  }

  .main-nav {
    position: fixed;
    inset: 120px 0 auto 0;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow);
    max-height: 0;
    /*overflow: auto;*/
overflow-y: auto;
    transition: var(--transition);
    /*border-bottom: 1px solid var(--line)*/
  }

  .main-nav.open {
    max-height: calc(100vh - 120px)
  }

  .main-nav ul {
    display: block;
    padding: 16px
  }

  .main-nav a {
    padding: 13px 8px
  }

  .main-nav>ul>li>a:after {
    display: none
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f2fffb;
    display: none;
    border-radius: 18px;
    margin: 0 0 10px
  }

  .has-dropdown:hover .dropdown {
    display: block
  }

  .has-dropdown.open .dropdown {
    display: block
  }

  .hamburger {
    display: block
  }

  .hero-float {
    display: none
  }
}

@media(max-width:760px) {
  .topbar-inner {
    display: block;
    text-align: center
  }

  .top-links {
    justify-content: center;
    margin-top: 6px
  }

  .brand img {
    width: 180px
  }

  .header-actions .btn {
    display: none
  }

  .hero .swiper-slide {
    min-height: 660px
  }

  .hero h1 {
    font-size: 43px
  }

  .hero p,
  .page-hero p {
    font-size: 17px
  }

  .section {
    padding: 42px 0
  }

  .about-grid,
  .two-col,
  .split-cta,
  .contact-grid,
  .cta-inner {
    grid-template-columns: 1fr;
    display: grid
  }

  .image-collage {
    min-height: auto;
    display: grid;
    gap: 16px
  }

  .image-collage:before {
    display: none
  }

  .image-collage img {
    position: static !important;
    width: 100% !important;
    height: 285px !important
  }

  /*.image-collage .badge {*/
  /*  position: static*/
  /*}*/
    .image-collage .badge {
            text-align: center;
                font-weight: 400;
                    padding: 13px;
                        left: 31px;
    right: 27px;
    bottom: -23px;
    }
  .card-grid,
  .stats-grid,
  .value-grid,
  .mission-grid,
  .team-grid,
  .process,
  .feature-list,
  .resource-grid {
    grid-template-columns: 1fr
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 245px
  }

  .gallery-grid .gitem.large {
    grid-row: span 1
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom .container {
    display: block;
    text-align: center
  }

  .cta-actions {
    width: 100%
  }

  .cta-actions .btn {
    width: 100%
  }

  .page-hero {
    min-height: 360px
  }

  .masonry {
    columns: 1
  }

  .split-cta .visual {
    min-height: 270px
  }

  .feature {
    display: block
  }

  .feature i {
    margin-bottom: 14px
  }

  .section-title {
    text-align: left
  }

  .section-title h2 {
    font-size: 28px;
    letter-spacing: 0px;
  }
}

/* Premium additions for sliders and icon micro-interactions */
.imageSwiper {
  padding: 8px 4px 34px
}

.imageSwiper .swiper-slide {
  height: auto
}

.imageSwiper .gitem {
  height: 300px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, .75);
  position: relative
}

.imageSwiper .gitem:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 47, 69, .50));
  z-index: 1;
  opacity: .55
}

.imageSwiper .gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .9s
}

.imageSwiper .gitem:hover img {
  transform: scale(1.08)
}

.program-card:hover .icon-badge,
.value-card:hover i,
.feature:hover i,
.contact-card:hover i {
  animation: iconPop .65s ease both
}

@keyframes iconPop {
  0% {
    transform: scale(1)
  }

  45% {
    transform: scale(1.13) rotate(-4deg)
  }

  100% {
    transform: scale(1)
  }
}

.section:nth-of-type(even):before {
  content: "";
  position: absolute;
  left: -70px;
  top: 50px;
  width: 170px;
  height: 170px;
  border-radius: 48px;
  background: linear-gradient(135deg, rgba(0, 169, 143, .09), rgba(255, 183, 3, .11));
  transform: rotate(18deg);
  pointer-events: none
}

.section:nth-of-type(odd):after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: 50px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 71, 111, .09), transparent 68%);
  pointer-events: none
}

@media(max-width:760px) {
  .imageSwiper .gitem {
    height: 250px
  }

  .section:nth-of-type(even):before,
  .section:nth-of-type(odd):after {
    display: none
  }
}


/* Added home page enhancement sections */
.offer-section {
  background: linear-gradient(180deg, #fff 0, #f8fffc 100%)
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.offer-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(11, 34, 52, .08);
  box-shadow: var(--shadow-soft);
  padding: 26px 22px 205px;
  min-height: 390px;
  transition: var(--transition)
}

.offer-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0, rgba(0, 169, 143, .12), transparent 38%);
  opacity: 0;
  transition: var(--transition)
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 68px rgba(11, 34, 52, .16)
}

.offer-card:hover:before {
  opacity: 1
}

.offer-card img {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  width: calc(100% - 32px);
  height: 165px;
  object-fit: cover;
  border-radius: 24px;
  transition: .8s
}

.offer-card:hover img {
  transform: scale(1.035)
}

.offer-icon {
  width: 66px;
  height: 66px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  color: #fff;
  font-size: 26px;
  box-shadow: 0 14px 32px rgba(0, 169, 143, .22);
  margin-bottom: 18px
}

.offer-card h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 22px
}

.offer-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text)
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center
}

.why-media {
  position: relative;
  min-height: 530px
}

.why-media img {
  width: 82%;
  height: 500px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow);
  border: 8px solid #fff
}

.why-media:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 28px;
  width: 54%;
  height: 280px;
  background: url('https://images.unsplash.com/photo-1529390079861-591de354faf5?auto=format&fit=crop&w=900&q=80') center/cover;
  border-radius: 34px;
  border: 8px solid #fff;
  box-shadow: var(--shadow);
  animation: softFloat 4s ease-in-out infinite
}

.why-card {
  position: absolute;
  left: 34px;
  bottom: 0;
  z-index: 2;
  width: 290px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .75)
}

.why-card i {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), var(--rose));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 12px
}

.why-card strong,
.why-card span {
  display: block
}

.why-card strong {
  color: var(--navy);
  font-size: 20px
}

.why-card span {
  color: var(--muted)
}

.why-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px
}

.why-points>div {
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(11, 34, 52, .08);
  box-shadow: var(--shadow-soft);
  transition: var(--transition)
}

.why-points>div:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.why-points i {
  width: 48px;
  height: 48px;
  border-radius: 17px;
  background: #e9fff8;
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 11px
}

.why-points h3 {
  margin: 0 0 6px;
  color: var(--navy)
}

.why-points p {
  margin: 0;
  color: var(--muted)
}

.process-home {
  background: radial-gradient(circle at 50% 0, rgba(255, 183, 3, .17), transparent 42%), #fff
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative
}

.process-timeline:before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 54px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--orange));
  opacity: .45
}

.process-box {
  position: relative;
  z-index: 1;
  padding: 30px 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(11, 34, 52, .08);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  overflow: hidden
}

.process-box:after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0, 169, 143, .08)
}

.process-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow)
}

.process-box span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px
}

.process-box i {
  position: absolute;
  right: 24px;
  top: 29px;
  font-size: 35px;
  color: rgba(0, 169, 143, .22)
}

.process-box h3 {
  margin: 0 0 8px;
  color: var(--navy)
}

.process-box p {
  margin: 0;
  color: var(--muted)
}

.testimonialSwiper {
  padding: 8px 6px 46px
}

.testimonial-card {
  min-height: 330px;
  padding: 32px;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(11, 34, 52, .08);
  transition: var(--transition);
  position: relative;
  overflow: hidden
}

.testimonial-card:before {
  content: "";
  position: absolute;
  right: -65px;
  top: -65px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255, 183, 3, .13)
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow)
}

.testimonial-card .quote {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  color: #fff;
  font-size: 24px;
  margin-bottom: 18px
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--navy);
  margin: 0 0 25px;
  position: relative;
  z-index: 1
}

.person {
  display: flex;
  align-items: center;
  gap: 14px
}

.person img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #e9fff8
}

.person strong,
.person span {
  display: block
}

.person strong {
  color: var(--navy)
}

.person span {
  color: var(--muted);
  font-size: 14px
}

.testimonial-pagination {
  text-align: center
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: .35
}

.testimonial-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 999px;
  background: var(--teal);
  opacity: 1
}

.faq-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start
}

.faq-accordion {
  display: grid;
  gap: 15px
}

.faq-item {
  border-radius: 24px;
  background: #fff;
  border: 1px solid #0f2f45c0;
  box-shadow: var(--shadow-soft);
  overflow: hidden
}

.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 22px 24px;
  color: var(--navy);
  font-weight: 700;
  font-size: 18px;
  cursor: pointer
}

.faq-item button i {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #e9fff8;
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  transition: var(--transition);
  flex: 0 0 auto
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted)
}

.faq-item.active .faq-answer {
  max-height: 180px
}

.faq-item.active button i {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--teal), var(--amber));
  color: #fff
}

@media(max-width:1080px) {

  .offer-grid,
  .process-timeline {
    grid-template-columns: repeat(2, 1fr)
  }

  .why-grid,
  .faq-wrap {
    grid-template-columns: 1fr
  }

  .process-timeline:before {
    display: none
  }

  .why-media {
    max-width: 720px;
    margin: auto;
    width: 100%
  }
}

@media(max-width:760px) {

  .offer-grid,
  .why-points,
  .process-timeline {
    grid-template-columns: 1fr
  }

  .offer-card {
    padding-bottom: 195px
  }

  .why-media {
    min-height: auto;
    display: grid;
    gap: 16px
  }

  .why-media img {
    width: 100%;
    height: 330px
  }

  .why-media:after {
    position: static;
    width: 100%;
    height: 250px;
    border-radius: 28px
  }

  .why-card {
    position: static;
    width: auto
  }

  .testimonial-card {
    min-height: auto;
    padding: 26px
  }

  .faq-item button {
    font-size: 16px;
    padding: 20px
  }

  .faq-answer p {
    padding: 0 20px 20px
  }
}



/* 1. Global Box-Sizing & Viewport Fix */
html, body {
    overflow-x: hidden !important;
    max-width: 100%;
    width: 100%;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.story-swiper-pagination{
  display: flex;
  justify-content: center;
}
.content p{
  min-height: 70px;
}

/* 2. Floating Card Mobile Fix */
@media (max-width: 768px) {
    .about-floating-card {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 15px;
        max-width: 100%;
    }
    .section-heading1
 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(27px, 5vw, 40px);
    line-height: 1.36;
    margin: 9px 0 15px;
    color: var(--navy);
    letter-spacing: 0px;
}
.section-heading1
 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(27px, 5vw, 40px);
    line-height: 1.36;
    margin: 9px 0 15px;
    color: var(--navy);
    letter-spacing: 0px;
}
.hero h1, .page-hero h1 {
    /*font-family: 'Playfair Display', serif;*/
    font-size: clamp(27px, 7vw, 45px);
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: 0.5px;
}
.topbar{
  display: none;
}
    .hero .swiper-slide {
        min-height: 500px;
    }



}

/* 3. Animation Overflow Safety Wrapper */
/* Add this class to the sections containing your reveal animations */
.overflow-safe-section {
    overflow-x: hidden;
    width: 100%;
}

.text-card-title{
   font-family: 'Playfair Display', serif;
font-size: clamp(25px, 7vw, 35px);
  line-height: 1.11;
  letter-spacing: 0.4px;
  color: var(--navy);
}

@media (max-width: 767px) {
  .process-box {
    text-align: center;
    margin: 0 auto;
  }
 
  .process-box i,
  .process-box span {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
  }
  .split-cta .form-box {
    padding: 20px;}
    .cta-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 5vw, 45px);
    line-height: 1.34;
    margin: 0 0 11px;
        letter-spacing: 0px;
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
}
.btn {
   font-weight: 500; 
       padding: 8px 15px;
           font-size: 14px;
    
}
.hamburger {
   
    background: transparent;
    border: 0;
    width: 34px;
    height: 35px;
}

 .text-card img{
        height: 240px !important; 
   }
}




@media (min-width: 1200px) {
    .h3, h3 {
        font-size: 1.35rem;
    }
}

/* MOBILE MENU */
@media (max-width:1080px){

  .main-nav{
    position: fixed;
    inset: 120px 0 auto 0;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .main-nav.open{
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .main-nav ul{
    display: block;
    padding: 20px;
  }

  .main-nav ul li{
    margin-bottom: 10px;
  }

  .main-nav ul li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 10px;
  }

  /* DROPDOWN */
  .dropdown{
    display: none;
    background: #f5faf7;
    border-radius: 14px;
    margin-top: 10px;
    padding: 10px;
  }

  .mobile-dropdown.active .dropdown{
    display: block;
  }

  .dropdown a{
    padding: 12px 14px;
    border-radius: 10px;
  }

  .dropdown a:hover{
    background: #eaf4ec;
  }

  .hamburger{
    display: block;
  }

}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1200px;
    }
}

@media (max-width:1080px){

  .main-nav{
    position: fixed;
    inset: 120px 0 auto 0;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
  }

  .main-nav.open{
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .dropdown{
    display: none;
  }

  .has-dropdown.open .dropdown{
    display: block;
  }

  
}

/* DONATION SECTION */
.donation-section{
  background:#fff;
}

.donation-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:50px;
  align-items:center;
}

.bank-details{
  margin-top:30px;
  display:grid;
  gap:18px;
}

.detail-item{
  background:#fff;
  border:1px solid #e7e7e7;
  border-radius:18px;
  padding:5px 22px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.detail-item span{
  display:block;
  font-size:13px;
  color:#ff7a00;
  font-weight:700;
  margin-bottom:6px;
  text-transform:uppercase;
  letter-spacing:1px;
}

.detail-item strong{
  font-size:14px;
  color:#0d2b45;
  word-break:break-word;
}

.qr-card{
  background:#fff;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 15px 50px rgba(0,0,0,0.08);
  border:1px solid #ededed;
}

.qr-card img{
  width:100%;
  display:block;
  padding:25px;
  background:#fafafa;
}

.upi-box{
  padding:30px;
  text-align:center;
}

.upi-box h3{
  margin-bottom:10px;
  color:#0d2b45;
}

.upi-box p{
  margin-bottom:20px;
}

.upi-box .btn{
  width:100%;
  justify-content:center;
}

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

  .donation-grid{
    grid-template-columns:1fr;
  }

  .qr-card{
    order:-1;
  }

}






.patner-logo1{
    
  border-radius: 100px;
    box-shadow: var(--shadow);
    height: 184px;
    /* width: 100%; */
    object-fit: contain;
    position: absolute;
    top: 12%;
    right: -45%;
    background: white;  
    
}

.page-hero::after{
    content: "";
    position: absolute;
    right: -41px;
    bottom: -135px;
    width: 508px;
    height: 589px;
    border-radius: 50%;
    background: rgba(255, 183, 3, 0.25);
}


@media (max-width:768px){

  .feature{
    text-align: center;
  }

  .feature i{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 18px;
  }
  
   .partner-card{
    text-align: center;
  }

  .partner-card .icon-badge{
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.brand img {
    width: 102px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(15, 47, 69, .08));
    position: absolute;
    top: -2px;
    border-radius: 7px;
}
    .brand img {
        width: 76px;
    }
    .patner-logo1 {
    border-radius: 100px;
    box-shadow: var(--shadow);
    height: 100px;
    /* width: 100%; */
    object-fit: contain;
    position: absolute;
    top: -30%;
    right: -2%;
    background: white;
}

}


