/* ================================================================
   SnS Innovate — Corporate Website Stylesheet
   Color Palette (matched from logo):
     Primary Navy:   #3E4A66  (Dark text / logo navy)
     Brand Blue:     #2E59C9  (Logo bar blue)
     Brand Blue Mid: #3A7BEE  (Logo lighter blue)
     Brand Green:    #5BBD2F  (Logo arrow green)
     Green Dark:     #4AA322  (Green hover)
     Sky Blue:       #58B8E8  (Logo ring / accent)
     Light BG:       #F0F7FF  (Tinted white)
     Dark BG:        #1A2540  (Footer / dark sections)
================================================================ */

/* ──────────────────────────────────────────────
   CSS VARIABLES
────────────────────────────────────────────── */
:root {
  --primary:       #3E4A66;
  --navy:          #1A2540;
  --brand-blue:    #2E59C9;
  --brand-blue2:   #3A7BEE;
  --sky:           #58B8E8;
  --green:         #5BBD2F;
  --green-dark:    #4AA322;
  --green-light:   #73D64A;
  --light-bg:      #F0F7FF;
  --white:         #FFFFFF;
  --text-dark:     #1A2540;
  --text-body:     #4A5568;
  --text-light:    #6B7A99;
  --border:        #D8E4F5;
  --shadow-sm:     0 2px 12px rgba(46,89,201,0.09);
  --shadow-md:     0 8px 32px rgba(46,89,201,0.13);
  --shadow-lg:     0 20px 60px rgba(30,40,80,0.18);
  --shadow-green:  0 8px 24px rgba(91,189,47,0.3);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ──────────────────────────────────────────────
   RESET & BASE
────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}
a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; }

/* ──────────────────────────────────────────────
   UTILITIES
────────────────────────────────────────────── */
.section-padding { padding: 100px 0; }

.section-label {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(91, 189, 47, 0.1);
  border: 1px solid rgba(91, 189, 47, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
  margin-top: 14px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 16px;
}

.text-highlight  { color: var(--brand-blue2); }
.text-highlight-green { color: var(--green); }
.text-accent     { color: var(--green); }
.fw-600          { font-weight: 600; }

/* ──────────────────────────────────────────────
   NAVBAR
────────────────────────────────────────────── */
#mainNavbar {
  background: transparent;
  padding: 14px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  z-index: 1050;
}

#mainNavbar.scrolled {
  background: var(--navy);
  padding: 8px 0;
  box-shadow: 0 4px 28px rgba(26, 37, 64, 0.45);
}

/* Navbar logo */
.navbar-logo {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  padding: 3px;
  box-shadow: 0 3px 12px rgba(46,89,201,0.25);
  transition: var(--transition);
}
#mainNavbar.scrolled .navbar-logo { height: 44px; width: 44px; }

.brand-text  { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name  { font-size: 1.05rem; font-weight: 800; color: #fff; letter-spacing: 0.01em; }
.brand-tagline { font-size: 0.62rem; color: rgba(255,255,255,0.6); letter-spacing: 0.07em; }

/* Nav links */
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 28px);
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: #fff !important; }

.btn-nav-contact {
  background: linear-gradient(135deg, var(--green), var(--green-light)) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  padding: 9px 20px !important;
  box-shadow: var(--shadow-green) !important;
}
.btn-nav-contact:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green)) !important;
  transform: translateY(-2px);
}
.btn-nav-contact::after { display: none !important; }

/* ──────────────────────────────────────────────
   HERO SECTION
────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0D1A36 0%, #1A2540 35%, #243460 65%, #1F4BA0 100%);
  overflow: hidden;
}

/* Animated diagonal stripe overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(46, 89, 201, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(91, 189, 47, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(88, 184, 232, 0.08) 0%, transparent 45%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: particleDrift 30s linear infinite;
}
@keyframes particleDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 56px 56px; }
}

/* Diagonal green accent line */
.hero-section::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 520px;
  height: 520px;
  border: 2px solid rgba(91, 189, 47, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

/* Hero logo */
.hero-logo-top { display: inline-block; }
.hero-logo-img {
  height: 100px;
  width: 100px;
  object-fit: contain;
  background: rgba(255,255,255,0.96);
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 8px 32px rgba(46,89,201,0.35), 0 0 0 6px rgba(91,189,47,0.15);
  animation: logoPulse 4s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(46,89,201,0.35), 0 0 0 6px rgba(91,189,47,0.15); }
  50%       { box-shadow: 0 12px 40px rgba(46,89,201,0.45), 0 0 0 10px rgba(91,189,47,0.08); }
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(91, 189, 47, 0.12);
  border: 1px solid rgba(91, 189, 47, 0.35);
  color: var(--green-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: 50px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
}

.hero-highlight       { color: var(--sky); font-style: italic; }
.hero-highlight-green { color: var(--green-light); font-style: italic; }

.hero-subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  line-height: 1.85;
}

/* CTA buttons */
.btn-hero-primary {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff !important;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  border: none;
  box-shadow: var(--shadow-green);
  transition: var(--transition);
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(91,189,47,0.4); }

.btn-hero-outline {
  background: transparent;
  color: #fff !important;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  border: 2px solid rgba(88,184,232,0.5);
  transition: var(--transition);
}
.btn-hero-outline:hover {
  background: rgba(88,184,232,0.12);
  border-color: var(--sky);
  transform: translateY(-3px);
}

/* Hero stats */
.hero-stats { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; }
.stat-item  { text-align: center; }
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-light);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.13); margin-top: 6px; }

/* Hero visual card */
.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 360px;
  width: 100%;
  animation: heroCardFloat 6s ease-in-out infinite;
}
@keyframes heroCardFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.hero-card-inner { color: #fff; }
.hero-card-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: var(--shadow-green);
}
.hero-card h4 { color: #fff; font-size: 1.15rem; margin-bottom: 10px; }
.hero-card p  { color: rgba(255,255,255,0.62); font-size: 0.88rem; }
.hero-card-services { display: flex; flex-wrap: wrap; gap: 8px; }
.service-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.8);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}
.service-pill:hover { background: rgba(91,189,47,0.18); border-color: var(--green); }

/* Scroll indicator */
.scroll-down-indicator {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%      { transform: translateX(-50%) translateY(7px); opacity: 1; }
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--green);
  border-radius: 2px;
  animation: wheelScroll 1.5s ease-in-out infinite;
}
@keyframes wheelScroll {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* ──────────────────────────────────────────────
   SECTION DIVIDER
────────────────────────────────────────────── */
.section-divider {
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--sky), var(--green));
  opacity: 0.25;
}

/* ──────────────────────────────────────────────
   ABOUT SECTION
────────────────────────────────────────────── */
.about-visual { position: relative; padding: 20px 20px 50px; }

.about-main-box {
  background: linear-gradient(145deg, var(--navy) 0%, #243460 60%, #1F4BA0 100%);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(88,184,232,0.12);
}
.about-main-box::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(91,189,47,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.about-main-box::after {
  content: '';
  position: absolute;
  bottom: -30px; left: -30px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(88,184,232,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.about-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
  position: relative; z-index: 1;
}
.aig-item {
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.aig-primary { background: rgba(91,189,47,0.18); color: var(--green-light); }
.aig-light   { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.55); }

.about-motto-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  line-height: 1.75;
  margin: 0;
  border-left: 3px solid var(--green);
  padding-left: 16px;
  position: relative; z-index: 1;
}
.about-motto-text strong { color: var(--green-light); }

.about-floating-badge {
  position: absolute;
  bottom: 10px; right: 10px;
  transform: translateY(50%);
  background: #fff;
  border-radius: 50px;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  border: 2px solid var(--border);
}
.about-floating-badge i { color: var(--green); font-size: 1.1rem; }

.pillar-card {
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}
.pillar-card:hover {
  border-color: var(--brand-blue2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.pillar-card > i { font-size: 1.4rem; color: var(--brand-blue); flex-shrink: 0; margin-top: 2px; }
.pillar-card h6 { font-size: 0.9rem; margin-bottom: 4px; color: var(--navy); }
.pillar-card p  { font-size: 0.8rem; color: var(--text-light); margin: 0; }

/* ──────────────────────────────────────────────
   SERVICES SECTION
────────────────────────────────────────────── */
.services-section { background: var(--light-bg); }

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), var(--green));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
  width: 62px; height: 62px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.service-color-1 { background: rgba(46,89,201,0.1);  color: var(--brand-blue); }
.service-color-2 { background: rgba(91,189,47,0.12); color: var(--green-dark); }
.service-color-3 { background: rgba(58,123,238,0.1); color: var(--brand-blue2); }
.service-color-4 { background: rgba(88,184,232,0.12); color: #2A9FD4; }
.service-color-5 { background: rgba(99,102,241,0.1); color: #6366F1; }
.service-color-6 { background: rgba(91,189,47,0.12); color: var(--green-dark); }

.service-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-desc  { font-size: 0.86rem; color: var(--text-light); line-height: 1.7; margin-bottom: 18px; }

.service-list { list-style: none; padding: 0; margin: 0; }
.service-list li {
  font-size: 0.82rem;
  color: var(--text-body);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px dashed var(--border);
}
.service-list li:last-child { border-bottom: none; }
.service-list li i { color: var(--green); font-size: 0.9rem; flex-shrink: 0; }

.service-card-featured {
  background: linear-gradient(145deg, var(--navy) 0%, #243460 100%);
  border-color: transparent;
}
.service-card-featured .service-title,
.service-card-featured .service-desc,
.service-card-featured .service-list li { color: rgba(255,255,255,0.88); }
.service-card-featured .service-list li { border-color: rgba(255,255,255,0.1); }
.service-card-featured .service-list li i { color: var(--green-light); }

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  color: var(--green-light);
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(91,189,47,0.4);
  padding-bottom: 2px;
  transition: var(--transition);
}
.btn-learn-more:hover { color: #fff; border-color: #fff; }

/* ──────────────────────────────────────────────
   NGO SECTION
────────────────────────────────────────────── */
.ngo-features { display: flex; flex-direction: column; gap: 14px; }

.ngo-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 15px 20px;
  transition: var(--transition);
}
.ngo-feature-item:hover {
  border-color: var(--green);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
  background: rgba(91,189,47,0.04);
}

.ngo-feature-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.ngo-feature-item h6 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.ngo-feature-item p  { font-size: 0.78rem; color: var(--text-light); margin: 0; }

.ngo-visual-wrap {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ngo-center-badge {
  width: 170px; height: 170px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue2));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.2rem;
  gap: 8px;
  box-shadow: 0 20px 60px rgba(46,89,201,0.38);
  z-index: 2;
  position: relative;
  border: 4px solid rgba(91,189,47,0.3);
}
.ngo-center-badge span { font-size: 0.8rem; font-weight: 700; text-align: center; line-height: 1.3; }

.ngo-visual-card {
  position: absolute;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  max-width: 248px;
}
.ngo-visual-card i { font-size: 1.4rem; color: var(--green); flex-shrink: 0; }
.ngo-visual-card strong { font-size: 0.82rem; color: var(--navy); display: block; }
.ngo-visual-card span  { font-size: 0.72rem; color: var(--text-light); }
.ngo-card-top    { top: 20px; left: 0; }
.ngo-card-bottom { bottom: 20px; right: 0; }

.ngo-decorative-circle {
  position: absolute; border-radius: 50%; border: 2px dashed; opacity: 0.1;
}
.ngo-circle-1 {
  width: 310px; height: 310px; border-color: var(--brand-blue2);
  animation: rotateSlow 30s linear infinite;
}
.ngo-circle-2 {
  width: 210px; height: 210px; border-color: var(--green);
  animation: rotateSlow 20s linear infinite reverse;
}
@keyframes rotateSlow { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* ──────────────────────────────────────────────
   WHY CHOOSE US
────────────────────────────────────────────── */
.why-us-section { background: var(--light-bg); }

.why-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--brand-blue2));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.why-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 76px; height: 76px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: #fff;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(46,89,201,0.3);
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: var(--shadow-green);
}
.why-card h5 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p  { font-size: 0.86rem; color: var(--text-body); line-height: 1.75; margin: 0; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #243460 50%, #1F4BA0 100%);
  border-radius: var(--radius-lg);
  padding: 50px 56px;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(91,189,47,0.15);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(91,189,47,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 100px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(88,184,232,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h3 { color: #fff; font-size: 1.6rem; margin-bottom: 10px; position: relative; z-index: 1; }
.cta-banner p  { color: rgba(255,255,255,0.72); margin: 0; position: relative; z-index: 1; }

.btn-cta {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff !important;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  border: none;
  box-shadow: var(--shadow-green);
  transition: var(--transition);
  white-space: nowrap;
  position: relative; z-index: 1;
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(91,189,47,0.4); }

/* ──────────────────────────────────────────────
   CONTACT SECTION
────────────────────────────────────────────── */
.contact-info-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info-heading::before {
  content: '';
  display: inline-block;
  width: 4px; height: 18px;
  background: linear-gradient(180deg, var(--brand-blue), var(--green));
  border-radius: 2px;
}

.contact-info-wrap {
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-form-wrap {
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail-item:last-of-type { border-bottom: none; }

.contact-detail-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-item strong {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  display: block;
  margin-bottom: 3px;
}
.contact-detail-item p, .contact-detail-item a {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin: 0;
}
.contact-detail-item a:hover { color: var(--brand-blue); }

.contact-social { display: flex; align-items: center; margin-top: 18px; }
.contact-social .fw-600 { font-size: 0.85rem; color: var(--text-dark); }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-right: 8px;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--brand-blue);
  color: #fff;
  border-color: var(--brand-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.contact-input {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
}
.contact-input:focus {
  border-color: var(--brand-blue2);
  box-shadow: 0 0 0 4px rgba(58,123,238,0.1);
  outline: none;
  background: var(--white);
}
.contact-input::placeholder { color: var(--text-light); }

.btn-contact-submit {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue2));
  color: #fff !important;
  font-weight: 700;
  padding: 13px;
  border-radius: 10px;
  font-size: 0.95rem;
  border: none;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.btn-contact-submit:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}
.map-header {
  background: linear-gradient(135deg, var(--navy), var(--brand-blue));
  color: #fff;
  padding: 16px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.map-header i { color: var(--green-light); margin-right: 8px; }
.map-container iframe { display: block; }

/* ──────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────── */
.site-footer { background: var(--navy); }
.footer-top  { padding: 80px 0 60px; }

/* Footer logo image */
.footer-logo-img {
  height: 64px;
  width: 64px;
  object-fit: contain;
  background: rgba(255,255,255,0.94);
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 4px 16px rgba(46,89,201,0.3);
  flex-shrink: 0;
}

.footer-brand-name { font-size: 1rem; font-weight: 800; color: #fff; }
.footer-brand-tag  { font-size: 0.63rem; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; }
.footer-about {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  margin-top: 6px;
}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.footer-links a::before {
  content: '›';
  font-size: 1rem;
  color: var(--green);
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--sky); padding-left: 6px; }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-item i { color: var(--green); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom p { margin: 0; font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ──────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .section-padding { padding: 70px 0; }
  .cta-banner { padding: 36px 32px; }
  .ngo-visual-wrap { min-height: 320px; }
  .hero-logo-img { height: 80px; width: 80px; }
}

@media (max-width: 767.98px) {
  .section-padding { padding: 56px 0; }
  .hero-title { font-size: 1.9rem; }
  .about-main-box { padding: 32px 22px; }
  .cta-banner { padding: 28px 24px; }
  .cta-banner h3 { font-size: 1.2rem; }
  .service-card { padding: 26px 20px; }
  .contact-info-wrap, .contact-form-wrap { padding: 22px; }
  .footer-top { padding: 52px 0 36px; }
  .hero-logo-img { height: 72px; width: 72px; }
}

@media (max-width: 575.98px) {
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; text-align: center; justify-content: center; }
}
