/* ===== SHRADDHA INSTITUTIONS - PREMIUM STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --primary: #C8102E;
  --primary-dark: #a00d24;
  --primary-light: #e63050;
  --navy: #1a237e;
  --navy-dark: #0d1257;
  --navy-light: #283593;
  --accent: #E91E8C;
  --accent2: #00B4D8;
  --gold: #FFB300;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-light: #f0f2f8;
  --gray: #8892a4;
  --dark: #0e1020;
  --text: #1a1e35;
  --text-light: #5a6382;

  --gradient-primary: linear-gradient(135deg, #C8102E 0%, #a00d24 100%);
  --gradient-navy: linear-gradient(135deg, #1a237e 0%, #283593 100%);
  --gradient-hero: linear-gradient(135deg, #0d1257 0%, #1a237e 40%, #C8102E 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  
  --shadow-sm: 0 2px 12px rgba(200,16,46,0.1);
  --shadow-md: 0 8px 32px rgba(26,35,126,0.15);
  --shadow-lg: 0 20px 60px rgba(26,35,126,0.2);
  --shadow-card: 0 10px 40px rgba(26,35,126,0.12);
  --shadow-hover: 0 20px 60px rgba(200,16,46,0.25);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(200,16,46,0.6);
}
.loader-logo img { width: 80px; height: 80px; object-fit: contain; border-radius: 50%; }
.loader-text {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 3px;
  animation: shimmer 1.5s ease-in-out infinite;
}
.loader-bar {
  width: 200px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin-top: 20px;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  display: block;
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
  animation: loading 1.5s ease-in-out infinite;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(13, 18, 87, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  padding: 0 5%;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: contain;
  background: white;
  padding: 3px;
  box-shadow: 0 0 15px rgba(200,16,46,0.4);
  transition: var(--transition);
}
.nav-logo:hover img { transform: scale(1.05); box-shadow: 0 0 25px rgba(200,16,46,0.6); }
.nav-logo-text { line-height: 1.1; }
.nav-logo-text span:first-child {
  display: block;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.nav-logo-text span:last-child {
  display: block;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.3px;
}
.nav-links a:hover, .nav-links a.active {
  color: white;
  background: rgba(200,16,46,0.25);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
}
.nav-cta {
  background: var(--gradient-primary) !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(200,16,46,0.4) !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,16,46,0.5) !important;
  background: rgba(0,0,0,0) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: white;
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.03);
}
.slide.active { opacity: 1; transform: scale(1); }
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.slide-1 .slide-bg { background: linear-gradient(135deg, #0d1257 0%, #1a237e 50%, #C8102E 100%); }
.slide-2 .slide-bg { background: linear-gradient(135deg, #C8102E 0%, #a00d24 40%, #0d1257 100%); }
.slide-3 .slide-bg { background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #C8102E 100%); }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
.slide-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(200,16,46,0.3) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(26,35,126,0.4) 0%, transparent 50%);
}
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 8%;
}
.slide-text { max-width: 700px; }
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.slide-badge i { color: var(--gold); }
.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.slide-title span { color: var(--gold); }
.slide-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 550px;
  line-height: 1.7;
}
.slide-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(200,16,46,0.4);
  letter-spacing: 0.3px;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200,16,46,0.5);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6);
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.3px;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-3px);
}
.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(200,16,46,0.6);
}
.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
}
.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow:hover { background: var(--primary); border-color: var(--primary); transform: scale(1.1); }

/* ===== SECTIONS ===== */
section { padding: 90px 8%; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,16,46,0.08);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(200,16,46,0.15);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--primary); }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }
.divider {
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
  margin: 16px 0;
}
.divider.center { margin: 16px auto; }

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.cards-grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.cards-grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ===== COURSE CARD ===== */
.course-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(26,35,126,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.course-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.course-card:hover::before { transform: scaleX(1); }
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(200,16,46,0.15);
}
.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(200,16,46,0.1), rgba(26,35,126,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}
.course-card:hover .card-icon {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(200,16,46,0.3);
}
.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.card-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}
.card-badge {
  display: inline-block;
  background: rgba(200,16,46,0.08);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  background: #1ebc5a;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--gradient-navy);
  padding: 50px 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255,255,255,0.15);
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--gold); }
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: var(--gradient-navy);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-inner {
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.about-logo-big {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: white;
  padding: 10px;
  margin-bottom: 20px;
  box-shadow: 0 0 40px rgba(200,16,46,0.4);
  object-fit: contain;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(200,16,46,0.5);
  border: 4px solid white;
  color: white;
  text-align: center;
}
.about-badge strong { font-size: 1.4rem; font-weight: 800; line-height: 1; }
.about-badge span { font-size: 0.6rem; font-weight: 600; letter-spacing: 1px; }
.feature-list { list-style: none; margin: 28px 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26,35,126,0.06);
  font-size: 0.9rem;
  color: var(--text-light);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i {
  color: var(--primary);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--gradient-hero); position: relative; overflow: hidden; }
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.testimonials .section-title { color: white; }
.testimonials .section-subtitle { color: rgba(255,255,255,0.7); }
.testimonials .section-tag { background: rgba(255,255,255,0.1); color: var(--gold); border-color: rgba(255,255,255,0.2); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testi-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.testi-stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; }
.testi-text {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-quote {
  font-size: 3rem;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  font-family: 'Playfair Display', serif;
  margin-bottom: -10px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-name { color: white; font-weight: 600; font-size: 0.9rem; }
.testi-role { color: rgba(255,255,255,0.5); font-size: 0.78rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--off-white);
  text-align: center;
}
.cta-box {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: 70px 50px;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-box * { position: relative; z-index: 1; }
.cta-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.cta-box p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6);
  transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; transform: translateY(-3px); }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 70px 8% 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.8; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.social-btn:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-2px); }
.footer-heading {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-links a i { font-size: 0.7rem; color: var(--primary); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact li i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--primary); text-decoration: none; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  animation: float 3s ease-in-out infinite;
}
.whatsapp-float a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float a:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 40px rgba(37,211,102,0.5);
}
.whatsapp-float i { font-size: 1.3rem; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 160px 8% 80px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(200,16,46,0.3) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  background: white;
  border-radius: var(--radius-xl);
  padding: 50px;
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(26,35,126,0.1);
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(200,16,46,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===== MAP ===== */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-card);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ===== LOCATION CARDS ===== */
.location-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(26,35,126,0.06);
  transition: var(--transition);
  text-align: center;
}
.location-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.location-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(200,16,46,0.3);
}

/* ===== PROGRAM SECTION TABS ===== */
.prog-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.prog-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid rgba(26,35,126,0.1);
  background: white;
  color: var(--text-light);
}
.prog-tab.active, .prog-tab:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(200,16,46,0.3);
}

/* ===== TRAINING CARD ===== */
.training-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.training-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.training-card-header {
  background: var(--gradient-navy);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}
.training-card-header::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.training-card-header i {
  font-size: 2.5rem;
  color: rgba(255,255,255,0.9);
  position: relative;
  z-index: 1;
}
.training-card-header h3 {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}
.training-card-body { padding: 28px; flex: 1; }
.training-card-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.training-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.training-tag {
  background: rgba(200,16,46,0.07);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* ===== VISION MISSION ===== */
.vm-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border-top: 5px solid var(--primary);
  transition: var(--transition);
}
.vm-card.navy { border-top-color: var(--navy); }
.vm-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.vm-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  box-shadow: 0 6px 20px rgba(200,16,46,0.3);
}
.vm-icon.navy { background: var(--gradient-navy); box-shadow: 0 6px 20px rgba(26,35,126,0.3); }
.vm-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.vm-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; }

/* ===== ANIMATIONS ===== */
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes shimmer { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
@keyframes loading { 0% { width: 0; } 100% { width: 100%; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.scale-in { opacity: 0; transform: scale(0.9); transition: opacity 0.7s ease, transform 0.7s ease; }
.visible { opacity: 1 !important; transform: none !important; }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* ===== SPECIAL SECTION BACKGROUNDS ===== */
.bg-light { background: var(--off-white) !important; }
.bg-white { background: white !important; }
.bg-navy { background: var(--gradient-navy) !important; }
.bg-pattern {
  background: var(--off-white);
  background-image: radial-gradient(circle at 1px 1px, rgba(26,35,126,0.05) 1px, transparent 0);
  background-size: 30px 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  section { padding: 70px 6%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 80px; left: 0; right: 0; background: rgba(13,18,87,0.98); backdrop-filter: blur(20px); padding: 20px; gap: 4px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 20px; border-radius: 10px; }
  .hamburger { display: flex; }
  section { padding: 60px 5%; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-grid { grid-template-columns: 1fr; }
  .stat-item:not(:last-child)::after { display: none; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .cta-box { padding: 50px 28px; }
  .slider-arrows { padding: 0 10px; }
  .slider-arrow { width: 40px; height: 40px; font-size: 0.9rem; }
  .whatsapp-float a span { display: none; }
  .whatsapp-float a { padding: 14px; border-radius: 50%; }
}
@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .slide-title { font-size: 1.8rem; }
  .slide-btns { flex-direction: column; }
  .slide-content { padding: 0 6%; }
  .cards-grid { grid-template-columns: 1fr; }
}
