/* ============================================
   MABCT - Premium NGO Website CSS
   ============================================ */

:root {
  --royal-blue: #0A4DA2;
  --royal-blue-dark: #073a7a;
  --royal-blue-light: #1a6dd4;
  --trust-green: #3BAA35;
  --trust-green-dark: #2d8629;
  --gold: #D4AF37;
  --gold-light: #e8c84a;
  --white: #ffffff;
  --off-white: #f8faff;
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.25);
  --shadow-blue: rgba(10, 77, 162, 0.25);
  --shadow-green: rgba(59, 170, 53, 0.25);
  --shadow-gold: rgba(212, 175, 55, 0.35);
  --text-dark: #0d1b2a;
  --text-muted: #5a6a7a;
  --gradient-hero: linear-gradient(135deg, #0A4DA2 0%, #073a7a 40%, #0d5c12 100%);
  --gradient-card: linear-gradient(135deg, rgba(10,77,162,0.08) 0%, rgba(59,170,53,0.05) 100%);
  --gradient-gold: linear-gradient(135deg, #D4AF37, #f0d060, #D4AF37);
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ============================================ BASE ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

a { text-decoration: none; transition: var(--transition); }

img {
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius:10px;
}

section { position: relative; overflow: hidden; }

/* ============================================ SCROLLBAR ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f4ff; }
::-webkit-scrollbar-thumb { background: var(--royal-blue); border-radius: 10px; }

/* ============================================ UTILITY ============================================ */
.section-padding { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--royal-blue);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 50px;
}

.text-gold { color: var(--gold) !important; }
.text-green { color: var(--trust-green) !important; }
.text-blue { color: var(--royal-blue) !important; }

.btn-primary-custom {
  background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 8px 24px var(--shadow-blue);
  display: inline-block;
}
.btn-primary-custom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--trust-green), #4dc945);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary-custom span { position: relative; z-index: 1; }
.btn-primary-custom:hover { transform: translateY(-3px); box-shadow: 0 16px 40px var(--shadow-blue); color: var(--white); }
.btn-primary-custom:hover::before { opacity: 1; }

.btn-gold-custom {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--text-dark);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 24px var(--shadow-gold);
  display: inline-block;
}
.btn-gold-custom:hover { transform: translateY(-3px); box-shadow: 0 16px 40px var(--shadow-gold); color: var(--text-dark); }

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  backdrop-filter: blur(8px);
}
.btn-outline-custom:hover { background: var(--white); color: var(--royal-blue); transform: translateY(-3px); }

/* ============================================ NAVBAR ============================================ */
#mainNav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  padding: 8px 0;
  transition: all 0.4s ease;
  background: linear-gradient(180deg, rgba(151, 169, 201, 0.92), rgba(42, 67, 97, 0.62));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
 border-bottom: 1px solid rgb(218 182 61);
}

#mainNav.scrolled {
  background: rgba(94, 153, 224, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(238, 215, 12, 0.15);
  padding: 10px 0;
  box-shadow: 0 8px 32px rgba(10,77,162,0.3);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2px 14px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  isolation: isolate;
}
/*.navbar-brand::before {
  content: '';
  position: absolute;
  inset: -6px -18px;
  z-index: -1;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.2);
}
*/.navbar-brand img {
  height: 68px;
  width: auto;
  object-fit: contain;
  filter: none;
  transform: scale(1.28);
  transform-origin: center center;
  transition: transform 0.3s ease;
}
#mainNav.scrolled .navbar-brand img { height: 68px; }

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.navbar-nav .nav-link:hover {
  color: var(--gold) !important;
  background: rgba(255,255,255,0.08);
}

.btn-nav-partner {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--text-dark) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px var(--shadow-gold);
}
.btn-nav-partner:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--shadow-gold); }

.navbar-toggler {
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  padding: 6px 10px;
}
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2c255%2c255%2c0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* ============================================ HERO SLIDER ============================================ */
#heroSlider { height: 100vh; min-height: 700px; }

.hero-slide {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 118px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

/* Animated mesh gradient */
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(59,170,53,0.2) 0%, transparent 50%),
              radial-gradient(ellipse at 60% 80%, rgba(10,77,162,0.3) 0%, transparent 50%);
  animation: meshMove 8s ease-in-out infinite alternate;
}
@keyframes meshMove {
  0% { opacity: 0.6; transform: scale(1) rotate(0deg); }
  100% { opacity: 1; transform: scale(1.05) rotate(2deg); }
}

/* Floating bubbles */
.bubbles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
.bubble {
  position: absolute;
  bottom: -100px;
  border-radius: 50%;
  opacity: 0.12;
  animation: floatBubble linear infinite;
  background: radial-gradient(circle, rgba(255,255,255,0.8), transparent);
  border: 1px solid rgba(255,255,255,0.3);
}
@keyframes floatBubble {
  0% { transform: translateY(0) scale(1); opacity: 0.12; }
  50% { opacity: 0.2; }
  100% { transform: translateY(-110vh) scale(0.5); opacity: 0; }
}

/* Hero content */
.hero-content { position: relative; z-index: 10; }

.hero-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px var(--shadow-gold);
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-size: clamp(1.85rem, 4.2vw, 3.05rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.16;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-title .highlight { color: var(--gold); }

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin-bottom: 36px;
  animation: fadeInUp 0.9s ease 0.4s both;
  line-height: 1.8;
}

.hero-buttons { animation: fadeInUp 0.9s ease 0.6s both; gap: 16px; display: flex; flex-wrap: wrap; }

/* 3D Hero illustration card */
.hero-visual {
  position: relative;
  z-index: 10;
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0px) rotate3d(1, 0, 0, 0deg); }
  50% { transform: translateY(-18px) rotate3d(1, 0, 0, 3deg); }
}

.hero-3d-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.hero-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.hero-icon-item {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 20px 12px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.hero-icon-item:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px) scale(1.05); }
.hero-icon-item i { font-size: 1.8rem; color: var(--gold); margin-bottom: 8px; display: block; }
.hero-icon-item span { font-size: 0.72rem; color: rgba(255,255,255,0.9); font-weight: 600; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  margin-top: 8px;
}
.hero-stat-item { text-align: center; }
.hero-stat-num { font-size: 1.5rem; font-weight: 800; color: var(--gold); display: block; }
.hero-stat-label { font-size: 0.68rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 1px; }

/* Swiper hero custom */
.hero-swiper .swiper-pagination-bullet {
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.5);
  opacity: 1;
  transition: var(--transition);
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 30px;
  border-radius: 5px;
}
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  transition: var(--transition);
}
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover { background: var(--gold); }
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after { font-size: 1rem; font-weight: 900; }

/* ============================================ ABOUT ============================================ */
/* ====================================================
   These root variables likely already exist site-wide
   (same family as the --royal-blue / --gold ones used
   in your Contact section). Remove this block if so —
   keep it only if these specific names aren't defined yet.
   ==================================================== */
:root{
  --royal-blue:#1b3a6b;
  --royal-blue-dark:#0f2347;
  --gold:#d4af37;
  --gold-light:#e9cc6c;
  --white:#ffffff;
  --text-dark:#16213a;
  --text-muted:#5b6678;
  --trust-green:#28a745;
  --gradient-gold: linear-gradient(135deg, var(--gold), var(--gold-light));
  --shadow-gold: rgba(212,175,55,0.35);
}

body{ font-family:'Segoe UI', Arial, sans-serif; }
.section-padding{ padding:90px 0; }
.container{ max-width:1180px; }

/* ---- demo-only stand-ins for your global classes ---- */
.section-badge{ display:inline-block; background:rgba(27,58,107,0.08); color:var(--royal-blue); font-size:.78rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; padding:6px 18px; border-radius:30px; margin-bottom:14px; }
.section-title{ font-size:2.2rem; font-weight:800; color:var(--text-dark); margin-bottom:18px; line-height:1.25; }
.section-divider{ width:60px; height:3px; background:var(--gold); border-radius:3px; margin-bottom:22px; }
.btn-primary-custom{
  background:var(--royal-blue); color:#fff; font-weight:600; font-size:.92rem;
  padding:13px 26px; border-radius:12px; display:inline-flex; align-items:center;
  text-decoration:none; transition:transform .2s ease, box-shadow .2s ease;
}
.btn-primary-custom:hover{ transform:translateY(-2px); box-shadow:0 10px 22px rgba(27,58,107,0.3); color:#fff; }
.btn-gold-custom{
  background:transparent; color:var(--royal-blue); font-weight:600; font-size:.92rem;
  padding:13px 26px; border-radius:12px; border:1.5px solid var(--gold);
  display:inline-flex; align-items:center; text-decoration:none;
  transition:transform .2s ease, background .2s ease, color .2s ease;
}
.btn-gold-custom:hover{ background:var(--gold); color:var(--royal-blue-dark); transform:translateY(-2px); }
/* ------------------------------------------------------ */

#about{ background:var(--white); }

/* ===== Image side ===== */
.about-image-wrapper{
  position:relative;
  perspective:1200px;
  height:100%;
}
.about-image-3d{
  position:relative;
  height:100%;
  min-height:420px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, var(--royal-blue), var(--royal-blue-dark));
  border-radius:28px;
  padding:48px 32px;
  text-align:center;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(15,35,71,0.25);
  transform:rotateY(-8deg) rotateX(4deg);
  transition:transform .5s ease;
}
.about-image-3d::before{
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:5px;
  background:linear-gradient(90deg, var(--gold), var(--royal-blue-dark));
}
.about-image-3d::after{
  content:'';
  position:absolute;
  bottom:-70px; right:-50px;
  width:220px; height:220px;
  border-radius:50%;
  background:rgba(255,255,255,0.05);
}
.about-image-wrapper::before{
  content:'';
  position:absolute;
  top:-18px; left:-18px;
  width:90px; height:90px;
  border:3px solid var(--gold);
  border-radius:50%;
  opacity:.5;
  z-index:0;
}
.about-image-wrapper:hover .about-image-3d{ transform:rotateY(0deg) rotateX(0deg) scale(1.02); }

.about-logo-display{
  width:100%;
  max-width:340px;
  height:auto;
  max-height:65%;
  object-fit:contain;
  filter:drop-shadow(0 8px 24px rgba(255,255,255,0.25));
  position:relative;
  z-index:1;
}
.about-image-3d > p{ position:relative; z-index:1; }

.about-badge-float{
  position:absolute;
  bottom:-20px;
  right:-20px;
  background:var(--gradient-gold);
  color:var(--text-dark);
  padding:16px 24px;
  border-radius:16px;
  font-weight:700;
  font-size:0.9rem;
  box-shadow:0 8px 24px var(--shadow-gold);
  text-align:center;
  line-height:1.4;
  z-index:2;
  animation:floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-8px); }
}

/* ===== Features list (now actually used) ===== */
.about-features-list{ list-style:none; padding:0; margin:6px 0 28px; }
.about-features-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:14px;
  font-size:0.95rem;
  color:var(--text-dark);
}
.about-features-list li i{
  width:24px; height:24px;
  background:linear-gradient(135deg, var(--trust-green), #5dce56);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.7rem;
  flex-shrink:0;
  margin-top:2px;
}

@media (max-width: 991px){
  .about-image-3d{ transform:none; min-height:340px; }
  .about-image-wrapper:hover .about-image-3d{ transform:scale(1.01); }
  .about-image-wrapper{ margin-bottom:30px; height:auto; }
}
/* ============================================ SKILL PROGRAM CARDS ============================================ */
#skill-program { background: linear-gradient(135deg, #f0f4ff 0%, #e8f5e9 100%); }

.skill-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(10,77,162,0.08), 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid rgba(10,77,162,0.06);
  transform-style: preserve-3d;
  height: 100%;
}
.skill-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.skill-card:hover {
  transform: translateY(-12px) rotateX(5deg);
  box-shadow: 0 32px 64px rgba(10,77,162,0.18), 0 8px 32px rgba(10,77,162,0.1);
}
.skill-card:hover::before { transform: scaleX(1); }

.skill-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  position: relative;
  transition: var(--transition);
}
.skill-card:hover .skill-card-icon { transform: rotateY(180deg) scale(1.1); }

.skill-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--royal-blue);
  margin-bottom: 10px;
}
.skill-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* Icon color variants */
.icon-blue { background: linear-gradient(135deg, rgba(10,77,162,0.12), rgba(10,77,162,0.06)); color: var(--royal-blue); }
.icon-green { background: linear-gradient(135deg, rgba(59,170,53,0.12), rgba(59,170,53,0.06)); color: var(--trust-green); }
.icon-gold { background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.1)); color: #b8941f; }

/* ============================================ VISION MISSION ============================================ */
#vision-mission { background: linear-gradient(135deg, #0A4DA2 0%, #073a7a 50%, #0d5c12 100%); }

.vm-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 48px 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}
.vm-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 32px 80px rgba(0,0,0,0.3); }

.vm-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.vm-icon {
  width: 80px; height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
}
.vm-icon-blue { background: linear-gradient(135deg, var(--royal-blue-light), var(--royal-blue)); color: var(--white); }
.vm-icon-green { background: linear-gradient(135deg, #5dce56, var(--trust-green)); color: var(--white); }

.vm-card h3 { color: var(--gold); font-size: 1.8rem; margin-bottom: 20px; }
.vm-card p { color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.8; }
.vm-card ul { list-style: none; padding: 0; }
.vm-card ul li {
  color: rgba(255,255,255,0.85);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}
.vm-card ul li:last-child { border-bottom: none; }
.vm-card ul li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ============================================ KEY OBJECTIVES ============================================ */

/* ============================================ TRAINING PROGRAMS ============================================ */
#training { background: linear-gradient(180deg, #f8faff 0%, #f0f4ff 100%); }

.training-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(10,77,162,0.1);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(10,77,162,0.08);
}
.training-card:hover { transform: translateY(-10px); box-shadow: 0 24px 60px rgba(10,77,162,0.18); }

.training-header {
  padding: 32px 28px 24px;
  position: relative;
  overflow: hidden;
}
.training-header::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  pointer-events: none;
}

.training-header-blue { background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light)); }
.training-header-green { background: linear-gradient(135deg, var(--trust-green), #4dc945); }
.training-header-gold { background: linear-gradient(135deg, #b8941f, var(--gold)); }
.training-header-dark { background: linear-gradient(135deg, #1a2a4a, #2d4a7a); }

.training-header i { font-size: 2.4rem; color: rgba(255,255,255,0.9); margin-bottom: 12px; display: block; }
.training-header h4 { color: var(--white); font-size: 1.2rem; margin: 0; }

.training-body { padding: 24px 28px; }
.training-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(10,77,162,0.06);
  font-size: 0.88rem;
  color: var(--text-dark);
}
.training-item:last-child { border-bottom: none; }
.training-item i { color: var(--trust-green); font-size: 0.8rem; flex-shrink: 0; }

/* ============================================ WHY PARTNER ============================================ */
#why-partner { background: var(--white); }

.partner-feature-card {
  background: linear-gradient(135deg, #f8faff, #fff);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10,77,162,0.08);
  transition: var(--transition);
  height: 100%;
  box-shadow: 0 4px 20px rgba(10,77,162,0.06);
}
.partner-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--royal-blue), var(--trust-green));
  transition: height 0.5s ease;
  border-radius: 0 0 4px 4px;
}
.partner-feature-card:hover::before { height: 100%; }
.partner-feature-card:hover { transform: translateX(8px); box-shadow: 0 16px 48px rgba(10,77,162,0.12); }

.pf-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.partner-feature-card h5 { font-size: 1.05rem; color: var(--royal-blue); margin-bottom: 12px; }
.partner-feature-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ============================================ WHO CAN PARTNER ============================================ */
#who-partner { background: linear-gradient(135deg, #f0f4ff 0%, #e8f5e9 100%); }

.who-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(10,77,162,0.06);
  border: 2px solid transparent;
  height: 100%;
  cursor: default;
}
.who-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--royal-blue);
  box-shadow: 0 20px 48px rgba(10,77,162,0.14);
}
.who-card i { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.who-card h6 { font-size: 0.9rem; font-weight: 700; color: var(--royal-blue); }

/* ============================================ IMPACT AREAS ============================================ */
#impact { background: linear-gradient(135deg, #0A4DA2 0%, #073a7a 60%, #114d0d 100%); }

.impact-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  height: 100%;
}
.impact-card:hover {
  transform: translateY(-10px) scale(1.04);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}
.impact-card i { font-size: 2.4rem; color: var(--gold); margin-bottom: 16px; display: block; animation: pulse-icon 2s ease-in-out infinite; }
@keyframes pulse-icon { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.impact-card h5 { color: var(--white); font-size: 0.95rem; margin: 0; }

/* ============================================ PARTNER BENEFITS ============================================ */
#benefits { background: var(--white); }

.benefit-card {
  background: linear-gradient(135deg, #f8faff, #fff);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid rgba(10,77,162,0.08);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(10,77,162,0.05);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(10,77,162,0.12); border-color: rgba(10,77,162,0.2); }

.benefit-num {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}
.benefit-content h5 { font-size: 1rem; color: var(--royal-blue); margin-bottom: 8px; }
.benefit-content p { font-size: 0.87rem; color: var(--text-muted); margin: 0; }

/* ============================================ STATS SECTION ============================================ */
#stats { background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-dark)); padding: 80px 0; }

.stat-box {
  text-align: center;
  padding: 24px;
}
.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* ============================================ CTA SECTION ============================================ */

/* ============================================ CONTACT ============================================ */
/* ====================================================
   These root variables likely already exist site-wide.
   Remove this block if --royal-blue / --gold are already
   defined in your global stylesheet.
   ==================================================== */
:root{
  --royal-blue:#1b3a6b;
  --royal-blue-dark:#0f2347;
  --gold:#d4af37;
  --gold-light:#e9cc6c;
}

body{ font-family:'Segoe UI', Arial, sans-serif; background:#f4f4f4; }
.section-padding{ padding:90px 0; }
.container{ max-width:1180px; }

/* ---- demo-only stand-ins for your global heading classes ---- */
.section-badge{ display:inline-block; background:rgba(27,58,107,0.08); color:var(--royal-blue); font-size:.78rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; padding:6px 18px; border-radius:30px; margin-bottom:14px; }
.section-title{ font-size:2.3rem; font-weight:800; color:#16213a; margin-bottom:14px; }
.section-divider.center{ width:60px; height:3px; background:var(--gold); margin:0 auto 20px; border-radius:3px; }
.section-subtitle{ max-width:560px; margin:0 auto; color:#5b6678; font-size:1.02rem; line-height:1.7; }
/* --------------------------------------------------------------- */

#contact{ background-color:#e3e3e3; }

/* ===== Info card (left) ===== */
.contact-info-card{
  background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-dark));
  border-radius: 24px;
  padding: 48px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.contact-info-card::after{
  content:'';
  position:absolute;
  bottom:-60px; right:-60px;
  width:250px; height:250px;
  border-radius:50%;
  background:rgba(255,255,255,0.05);
}
.contact-info-card h3{ color:var(--gold); font-size:1.5rem; margin-bottom:28px; display:flex; align-items:center; position:relative; z-index:1; }
.contact-item{
  display:flex;
  align-items:flex-start;
  gap:16px;
  margin-bottom:24px;
  color:rgba(255,255,255,0.85);
  font-size:0.92rem;
  position:relative; z-index:1;
}
.contact-item i{
  width:40px; height:40px;
  background:rgba(255,255,255,0.12);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold);
  font-size:1rem;
  flex-shrink:0;
  transition:transform .25s ease, background .25s ease;
}
.contact-item:hover i{ background:var(--gold); color:var(--royal-blue-dark); transform:translateY(-2px); }

.social-icons{ display:flex; gap:12px; position:relative; z-index:1; }
.social-icon{
  width:38px; height:38px;
  border-radius:50%;
  background:rgba(255,255,255,0.12);
  color:var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-size:.85rem;
  transition:all .25s ease;
}
.social-icon:hover{
  background:var(--gold);
  color:var(--royal-blue-dark);
  transform:translateY(-3px);
}

/* ===== Contact image (right) ===== */
.contact-image-card{
  position:relative;
  height:100%;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(15,35,71,0.12);
}
.contact-image-card::before{
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:5px;
  background:linear-gradient(90deg, var(--gold), var(--royal-blue));
  z-index:2;
}
.contect-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  min-height:340px;
  transition:transform .5s ease;
}
.contact-image-card:hover .contect-img{ transform:scale(1.04); }
.contact-image-card .img-caption{
  position:absolute;
  left:0; right:0; bottom:0;
  padding:24px 28px;
  background:linear-gradient(180deg, rgba(15,35,71,0) 0%, rgba(15,35,71,0.85) 100%);
  color:#fff;
  z-index:1;
}
.contact-image-card .img-caption h4{ color:var(--gold); font-size:1.15rem; margin-bottom:4px; }
.contact-image-card .img-caption p{ font-size:.88rem; color:rgba(255,255,255,0.85); margin:0; }

/* keyboard focus visibility */
.social-icon:focus-visible{
  outline:3px solid var(--gold);
  outline-offset:2px;
}

/* ===== Map / location strip ===== */
.map-card{
  border-radius:20px;
  overflow:hidden;
  position:relative;
  box-shadow:0 16px 36px rgba(15,35,71,0.1);
  height:320px;
}
.map-card iframe{ width:100%; height:100%; border:0; display:block; filter:grayscale(8%); }
.map-badge{
  position:absolute;
  top:18px; left:18px;
  background:#fff;
  padding:10px 18px;
  border-radius:12px;
  font-size:.85rem;
  font-weight:600;
  color:var(--royal-blue);
  display:flex; align-items:center; gap:8px;
  box-shadow:0 8px 20px rgba(0,0,0,0.12);
}
.map-badge i{ color:var(--gold); }

@media (max-width: 991px){
  .contact-info-card{ padding:36px 26px; }
  .contect-img{ min-height:280px; }
}

/* ============================================ FOOTER ============================================ */
#footer { background: linear-gradient(135deg, #0a1628, #0d1f3c, #071810); color: rgba(255,255,255,0.8); padding: 5px 0 0; }

.footer-brand img { height: 64px; margin-bottom: 20px; }
.footer-about { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.65); }

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(212,175,55,0.25);
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before { content: '›'; color: var(--gold); font-size: 1.1rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.newsletter-form input {
  flex: 1;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--white);
  font-size: 0.85rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form button {
  background: var(--gradient-gold);
  color: var(--text-dark);
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-form button:hover { transform: scale(1.05); }

.social-icons { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
}
.social-icon:hover { background: var(--gradient-gold); color: var(--text-dark); border-color: transparent; transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 60px;
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom span { color: var(--gold); }

/* ============================================ ANIMATIONS ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

/* Blob animated background */
.blob-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

/* Divider */
.section-divider {
  width: 60px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
  margin: 16px 0 24px;
}
.section-divider.center { margin: 16px auto 24px; }

/* Keep AOS-marked content visible if the animation script/CDN fails. */
body:not(.aos-enabled) [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition-property: none !important;
}


.contect-img{
  border-radius: 10px;
}
