@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;600;700;800;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0D3B3E;
  color: #ffffff;
  overflow-x: hidden;
}

/* ===== SECTION 1: PAGE HERO ===== */
.about-hero {
  position: relative;
  background: #0D3B3E;
  padding: 120px 40px 100px;
  text-align: center;
  overflow: hidden;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(255, 210, 90, 0.12), transparent);
  pointer-events: none;
}

.about-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.about-hero__h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #FFD25A;
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.about-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #FFF2B0;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero__badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.about-hero__badge {
  display: inline-block;
  background: rgba(255, 210, 90, 0.12);
  border: 1.5px solid #FFD25A;
  color: #FFD25A;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 50px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.about-hero__badge:hover {
  background: rgba(255, 210, 90, 0.22);
  transform: translateY(-2px);
}

/* Decorative floating dots */
.about-hero__dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  background: #FFD25A;
  pointer-events: none;
}

.about-hero__dot--1 { width: 320px; height: 320px; top: -80px; left: -100px; }
.about-hero__dot--2 { width: 200px; height: 200px; bottom: 20px; right: -60px; }
.about-hero__dot--3 { width: 120px; height: 120px; top: 60px; right: 15%; }

/* ===== SECTION 2: OUR STORY ===== */
.about-story {
  background: #1A5055;
  padding: 100px 40px;
}

.about-story__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story__left h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #FFD25A;
  margin-bottom: 32px;
  position: relative;
}

.about-story__left h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #FFD25A;
  border-radius: 2px;
  margin-top: 14px;
}

.about-story__para {
  font-size: 1.02rem;
  color: #ffffff;
  line-height: 1.85;
  margin-bottom: 20px;
  opacity: 0.92;
}

.about-story__right {
  background: #0D3B3E;
  border-radius: 20px;
  padding: 50px 40px;
  border: 1px solid rgba(255, 210, 90, 0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-story__stat {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 210, 90, 0.12);
  text-align: center;
  transition: transform 0.2s ease;
}

.about-story__stat:last-child {
  border-bottom: none;
}

.about-story__stat:hover {
  transform: scale(1.02);
}

.about-story__stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #FFD25A;
  line-height: 1;
  margin-bottom: 8px;
}

.about-story__stat-label {
  font-size: 0.9rem;
  color: #FFF2B0;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== SECTION 3: OUR MISSION ===== */
.about-mission {
  background: linear-gradient(135deg, #FFD25A 0%, #E6B23A 100%);
  padding: 100px 40px;
  text-align: center;
}

.about-mission__inner {
  max-width: 860px;
  margin: 0 auto;
}

.about-mission__inner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0D3B3E;
  margin-bottom: 36px;
  position: relative;
  display: inline-block;
}

.about-mission__inner h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: #0D3B3E;
  border-radius: 2px;
  margin: 12px auto 0;
}

.about-mission__statement {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-weight: 700;
  font-style: italic;
  color: #0D3B3E;
  line-height: 1.65;
  margin-bottom: 30px;
}

.about-mission__support {
  font-size: 1rem;
  color: #0D3B3E;
  opacity: 0.8;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

/* ===== SECTION 4: CORE VALUES ===== */
.about-values {
  background: #0D3B3E;
  padding: 100px 40px;
}

.about-values__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-values__header {
  text-align: center;
  margin-bottom: 64px;
}

.about-values__header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #FFD25A;
  margin-bottom: 16px;
}

.about-values__header p {
  font-size: 1.05rem;
  color: #FFF2B0;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.about-values__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-values__card {
  background: #1A5055;
  border-radius: 18px;
  padding: 44px 36px;
  text-align: center;
  border: 1px solid rgba(255, 210, 90, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.about-values__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  border-color: rgba(255, 210, 90, 0.35);
}

.about-values__icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 210, 90, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: background 0.3s ease;
}

.about-values__card:hover .about-values__icon {
  background: rgba(255, 210, 90, 0.2);
}

.about-values__icon svg {
  width: 30px;
  height: 30px;
  color: #FFD25A;
  fill: none;
  stroke: #FFD25A;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-values__card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFD25A;
  margin-bottom: 16px;
}

.about-values__card p {
  font-size: 0.97rem;
  color: #ffffff;
  line-height: 1.75;
  opacity: 0.9;
}

/* ===== SECTION 5: WHAT SETS US APART ===== */
.about-apart {
  background: #1A5055;
  padding: 100px 40px;
}

.about-apart__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-apart__header {
  margin-bottom: 60px;
}

.about-apart__header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #FFD25A;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
}

.about-apart__header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #FFD25A;
  border-radius: 2px;
  margin-top: 14px;
}

.about-apart__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.about-apart__item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 32px;
  background: rgba(13, 59, 62, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(255, 210, 90, 0.1);
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.about-apart__item:hover {
  border-color: rgba(255, 210, 90, 0.3);
  transform: translateY(-4px);
  background: rgba(13, 59, 62, 0.8);
}

.about-apart__item-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(255, 210, 90, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-apart__item-icon svg {
  width: 26px;
  height: 26px;
  stroke: #FFD25A;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-apart__item-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFF2B0;
  margin-bottom: 10px;
}

.about-apart__item-content p {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.7;
  opacity: 0.88;
}

/* ===== SECTION 6: WHO WE SERVE ===== */
.about-serve {
  background: #0D3B3E;
  padding: 100px 40px;
  text-align: center;
}

.about-serve__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.about-serve__inner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #FFD25A;
  margin-bottom: 48px;
  position: relative;
  display: inline-block;
}

.about-serve__inner h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #FFD25A;
  border-radius: 2px;
  margin: 14px auto 0;
}

.about-serve__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 44px;
}

.about-serve__tag {
  background: #1A5055;
  color: #FFD25A;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 210, 90, 0.2);
  transition: background 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
  cursor: default;
}

.about-serve__tag:hover {
  background: rgba(26, 80, 85, 0.8);
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(255, 210, 90, 0.5);
}

.about-serve__subtext {
  font-size: 1rem;
  color: #FFF2B0;
  font-style: italic;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* ===== SECTION 7: CTA ===== */
.about-cta {
  background: #FFD25A;
  padding: 100px 40px;
  text-align: center;
}

.about-cta__inner {
  max-width: 760px;
  margin: 0 auto;
}

.about-cta__inner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0D3B3E;
  margin-bottom: 22px;
  line-height: 1.2;
}

.about-cta__body {
  font-size: 1.05rem;
  color: #0D3B3E;
  line-height: 1.75;
  margin-bottom: 44px;
  opacity: 0.85;
}

.about-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.about-cta__btn-primary {
  display: inline-block;
  background: #0D3B3E;
  color: #FFD25A;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #0D3B3E;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.about-cta__btn-primary:hover {
  background: #061f21;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(13, 59, 62, 0.35);
}

.about-cta__btn-secondary {
  display: inline-block;
  background: transparent;
  color: #0D3B3E;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #0D3B3E;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.about-cta__btn-secondary:hover {
  background: rgba(13, 59, 62, 0.1);
  transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes about-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.about-animate.about-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Counter animation */
.about-story__stat-number[data-count] {
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-values__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .about-story__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-apart__grid {
    grid-template-columns: 1fr;
  }

  .about-values__cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .about-hero {
    padding: 80px 24px 80px;
  }

  .about-story {
    padding: 70px 24px;
  }

  .about-mission {
    padding: 70px 24px;
  }

  .about-values {
    padding: 70px 24px;
  }

  .about-apart {
    padding: 70px 24px;
  }

  .about-serve {
    padding: 70px 24px;
  }

  .about-cta {
    padding: 70px 24px;
  }
}

@media (max-width: 560px) {
  .about-hero__badges {
    flex-direction: column;
    align-items: center;
  }

  .about-story__right {
    padding: 36px 28px;
  }

  .about-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-cta__btn-primary,
  .about-cta__btn-secondary {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .about-apart__item {
    flex-direction: column;
    gap: 16px;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');#footer{background:#0d1b2a;color:#ffffff;font-family:'Poppins',sans-serif;padding:60px 0 0 0;width:100%;box-sizing:border-box;}#footer *{box-sizing:border-box;}#footer .footer-container{max-width:1200px;margin:0 auto;padding:0 24px;}#footer .footer-top{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:40px;padding-bottom:48px;}#footer .footer-brand{}#footer .footer-logo{font-size:1.4rem;font-weight:700;color:#ffffff;letter-spacing:-0.5px;margin-bottom:12px;display:block;}#footer .footer-logo span{color:#4f9cf9;}#footer .footer-tagline{font-size:0.875rem;color:#a0aec0;line-height:1.7;margin:0 0 24px 0;max-width:260px;}#footer .footer-social{display:flex;gap:12px;margin-top:8px;}#footer .footer-social a{display:flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,0.08);color:#ffffff;text-decoration:none;transition:background 0.3s ease,transform 0.2s ease;font-size:0.85rem;}#footer .footer-social a:hover{background:#4f9cf9;transform:translateY(-2px);}#footer .footer-col-title{font-size:0.8rem;font-weight:600;text-transform:uppercase;letter-spacing:1.5px;color:#4f9cf9;margin-bottom:20px;}#footer .footer-links{list-style:none;margin:0;padding:0;}#footer .footer-links li{margin-bottom:10px;}#footer .footer-links a{color:#a0aec0;text-decoration:none;font-size:0.875rem;font-weight:400;transition:color 0.25s ease,padding-left 0.25s ease;display:inline-block;}#footer .footer-links a:hover{color:#ffffff;padding-left:6px;}#footer .footer-divider{border:none;border-top:1px solid rgba(255,255,255,0.08);margin:0;}#footer .footer-bottom{display:flex;align-items:center;justify-content:space-between;padding:22px 24px;max-width:1200px;margin:0 auto;flex-wrap:wrap;gap:12px;}#footer .footer-copy{font-size:0.8rem;color:#718096;margin:0;}#footer .footer-copy a{color:#4f9cf9;text-decoration:none;}#footer .footer-copy a:hover{text-decoration:underline;}#footer .footer-legal{display:flex;gap:20px;flex-wrap:wrap;}#footer .footer-legal a{font-size:0.8rem;color:#718096;text-decoration:none;transition:color 0.25s ease;}#footer .footer-legal a:hover{color:#ffffff;}@media(max-width:900px){#footer .footer-top{grid-template-columns:1fr 1fr;gap:32px;}}@media(max-width:580px){#footer .footer-top{grid-template-columns:1fr;gap:28px;}#footer .footer-bottom{flex-direction:column;align-items:flex-start;text-align:left;}#footer .footer-legal{gap:14px;}}