@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Rajdhani:wght@500;600;700;800&display=swap');

/* ==========================================================================
   DESIGN SYSTEM VARIABLES & THEME SETUP
   ========================================================================== */
:root {
  /* HSL Color System */
  --primary-navy: hsl(222, 47%, 12%);       /* Deep Space/Navy base */
  --primary-navy-light: hsl(220, 45%, 18%);
  --primary-navy-dark: hsl(224, 60%, 8%);
  
  --primary-army: hsl(135, 25%, 14%);       /* Olive/Army base */
  --primary-army-light: hsl(135, 20%, 22%);
  
  --accent-saffron: hsl(24, 100%, 54%);     /* Indian Saffron */
  --accent-saffron-rgb: 254, 106, 21;
  --accent-green: hsl(142, 69%, 40%);       /* Indian Green */
  --accent-green-rgb: 31, 172, 85;
  --accent-gold: hsl(45, 95%, 52%);         /* Honor Gold */
  
  --bg-dark: hsl(224, 50%, 6%);             /* Dark Mode Background */
  --bg-card: rgba(15, 23, 42, 0.45);        /* High-Aesthetic Glassmorphism */
  --bg-card-hover: rgba(22, 30, 54, 0.65);
  
  /* Borders & Glows */
  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow-saffron: rgba(254, 106, 21, 0.25);
  --border-glow-green: rgba(31, 172, 85, 0.25);
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-display: 'Rajdhani', sans-serif;
  
  /* Layout & Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-circle: 50%;
  
  --container-max-width: 1280px;
}

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

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

body {
  font-family: var(--font-primary);
  background-color: var(--bg-dark);
  color: var(--text-light);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-navy-light);
  border: 2px solid var(--bg-dark);
  border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-saffron);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
}

p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  font-size: 0.95rem;
}

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

ul {
  list-style: none;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--border-radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-saffron) 0%, hsl(20, 100%, 45%) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(254, 106, 21, 0.35);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(254, 106, 21, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-saffron);
  color: var(--accent-saffron);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid var(--accent-green);
  box-shadow: 0 4px 15px rgba(31, 172, 85, 0.15);
}

.btn-outline:hover {
  background: var(--accent-green);
  color: #fff;
  box-shadow: 0 8px 25px rgba(31, 172, 85, 0.4);
  transform: translateY(-3px);
}

/* ==========================================================================
   GLOBAL UTILITIES
   ========================================================================== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.section {
  padding: 7rem 0;
  position: relative;
}

.text-center {
  text-align: center;
}

.highlight-saffron {
  color: var(--accent-saffron);
  text-shadow: 0 0 10px rgba(254, 106, 21, 0.2);
}

.highlight-green {
  color: var(--accent-green);
  text-shadow: 0 0 10px rgba(31, 172, 85, 0.2);
}

.highlight-gold {
  color: var(--accent-gold);
}

.section-title-wrapper {
  margin-bottom: 4rem;
}

.section-subtitle {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent-saffron);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.75rem;
  color: #fff;
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-saffron), var(--accent-green));
  border-radius: var(--border-radius-sm);
}

.section-desc {
  max-width: 650px;
  margin: 0.5rem auto 0 auto;
}

/* Patriot Gradient Overlay Backgrounds */
.patriot-bg-gradient {
  background: radial-gradient(circle at 10% 20%, rgba(20, 30, 54, 0.8) 0%, rgba(10, 15, 28, 0.95) 90%),
              radial-gradient(circle at 90% 80%, rgba(31, 172, 85, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(254, 106, 21, 0.03) 0%, transparent 50%);
}

.patriot-bg-army {
  background: radial-gradient(circle at 90% 10%, rgba(26, 38, 28, 0.9) 0%, rgba(8, 12, 9, 0.98) 90%),
              radial-gradient(circle at 10% 80%, rgba(254, 106, 21, 0.03) 0%, transparent 50%);
}

/* Glassmorphism Panel styles */
.glass-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  background: var(--bg-card-hover);
  border-color: rgba(254, 106, 21, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 
              0 0 20px rgba(254, 106, 21, 0.05);
}

/* Animated Badges */
.badge-premium {
  display: inline-flex;
  align-items: center;
  background: rgba(254, 106, 21, 0.1);
  border: 1px solid rgba(254, 106, 21, 0.3);
  color: var(--accent-saffron);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

/* ==========================================================================
   1. NAVIGATION HEADER
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.25rem 0;
  background: rgba(8, 12, 23, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header.scrolled {
  padding: 0.75rem 0;
  background: rgba(8, 12, 23, 0.9);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  border-bottom-color: rgba(254, 106, 21, 0.12);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 45px;
  height: 45px;
  filter: drop-shadow(0 0 8px rgba(254, 106, 21, 0.4));
  transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  background: linear-gradient(to right, #fff 40%, var(--accent-saffron) 70%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-tagline {
  font-size: 0.6rem;
  font-family: var(--font-primary);
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  padding: 0.4rem 0;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-saffron), var(--accent-green));
  border-radius: 50px;
  transition: width var(--transition-smooth) ease;
}

.nav-link:hover {
  color: var(--accent-saffron);
}

.nav-link.active {
  color: #fff;
}

.nav-link:hover::after {
  width: 60%;
}

.nav-link.active::after {
  width: 100%;
}

.header-btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--accent-saffron) 0%, hsl(20, 100%, 45%) 100%);
  border: 1px solid rgba(254, 106, 21, 0.3);
  box-shadow: 0 4px 12px rgba(254, 106, 21, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 106, 21, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: var(--transition-smooth);
  border-radius: 3px;
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem 0;
  overflow: hidden;
  background: radial-gradient(ellipse at bottom, var(--primary-navy-light) 0%, var(--bg-dark) 100%);
}

/* Background animated elements */
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(254, 106, 21, 0.06) 0%, transparent 70%);
  top: -10%;
  right: -10%;
  z-index: 1;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(31, 172, 85, 0.05) 0%, transparent 70%);
  bottom: -15%;
  left: -10%;
  z-index: 1;
  pointer-events: none;
}

.hero-section .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: 4.25rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #ffffff 40%, #e2e8f0 70%, var(--accent-saffron) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span {
  display: block;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-saffron);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 5px;
}

/* Image frame showcase */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--border-radius-lg);
  padding: 10px;
  background: linear-gradient(135deg, rgba(254, 106, 21, 0.25), rgba(31, 172, 85, 0.25));
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(8, 12, 23, 0) 60%, rgba(8, 12, 23, 0.9) 100%);
  pointer-events: none;
}

.hero-img {
  width: 100%;
  object-fit: cover;
  border-radius: calc(var(--border-radius-lg) - 8px);
  filter: brightness(0.9) contrast(1.05);
  transition: var(--transition-smooth);
}

.hero-image-frame:hover .hero-img {
  transform: scale(1.03);
}

.hero-decor-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--accent-saffron);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: float 4s ease-in-out infinite;
  z-index: 5;
}

.badge-icon {
  background: rgba(254, 106, 21, 0.15);
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-saffron);
  font-size: 1.25rem;
}

.badge-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.badge-info p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   3. ABOUT SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card-overlap {
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-light);
}

.about-badge-watermark {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(254, 106, 21, 0.08) 0%, transparent 70%);
  z-index: 1;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-feat-item {
  padding: 1.5rem;
}

.about-feat-icon {
  width: 45px;
  height: 45px;
  border-radius: var(--border-radius-sm);
  background: rgba(31, 172, 85, 0.1);
  border: 1px solid rgba(31, 172, 85, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
}

.about-feat-item:hover .about-feat-icon {
  background: var(--accent-green);
  color: #fff;
  transform: translateY(-3px) rotate(5deg);
}

.about-feat-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.about-feat-item p {
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ==========================================================================
   4. TRAINING PROGRAMS (COURSES)
   ========================================================================== */
.programs-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--primary-navy-light) 0%, rgba(31, 172, 85, 0.2) 100%);
  border-color: var(--accent-green);
  color: var(--accent-green);
  box-shadow: 0 4px 15px rgba(31, 172, 85, 0.15);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.25rem;
}

.program-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.program-card-header {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10.5;
  max-height: 280px;
  overflow: hidden;
  border-radius: calc(var(--border-radius-md) - 1px) calc(var(--border-radius-md) - 1px) 0 0;
}

.program-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: var(--transition-smooth);
  filter: brightness(0.85);
}

/* Category-specific horizontal focus alignments for composite hero image */
.program-card[data-category="army"] .program-card-img {
  object-position: 21% 25%;
}

.program-card[data-category="navy"] .program-card-img {
  object-position: 50% 25%;
}

.program-card[data-category="airforce"] .program-card-img {
  object-position: 79% 25%;
}

.program-card:hover .program-card-img {
  transform: scale(1.05) rotate(1deg);
  filter: brightness(0.95);
}

.program-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--border-radius-sm);
  text-transform: uppercase;
}

.program-card-body {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.program-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.program-card-body p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.program-features-list {
  margin-bottom: 2rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
}

.program-feat-li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.6rem;
}

.program-feat-li svg {
  color: var(--accent-saffron);
  flex-shrink: 0;
}

.program-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
  margin-top: auto;
}

.program-duration {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.program-action-btn {
  background: transparent;
  border: none;
  color: var(--accent-saffron);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.program-action-btn:hover {
  color: #fff;
  transform: translateX(3px);
}

/* ==========================================================================
   5. DUAL-PILLAR COACHING DETAILS (Physical & Written)
   ========================================================================== */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

.pillar-content h3 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: #fff;
}

.pillar-bullet-list {
  margin: 2rem 0;
}

.pillar-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.pillar-bullet-num {
  font-family: var(--font-display);
  background: rgba(254, 106, 21, 0.1);
  border: 1px solid rgba(254, 106, 21, 0.25);
  color: var(--accent-saffron);
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.pillar-bullet-text h4 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.pillar-bullet-text p {
  font-size: 0.85rem;
}

.pillar-visual {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-light);
  height: 480px;
}

.pillar-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(8, 12, 23, 0.9) 20%, rgba(8, 12, 23, 0) 70%);
}

.pillar-stat-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  justify-content: space-between;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(8px);
  padding: 1.25rem;
  border-radius: var(--border-radius-md);
}

.pillar-stat-box {
  text-align: center;
  flex: 1;
}

.pillar-stat-box:not(:last-child) {
  border-right: 1px solid var(--border-light);
}

.pillar-stat-box span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  display: block;
}

.pillar-stat-box p {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* ==========================================================================
   6. SSB INTERVIEW PREPARATION
   ========================================================================== */
.ssb-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.ssb-timeline-step {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem;
}

.ssb-step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-circle);
  background: linear-gradient(135deg, var(--primary-navy-light) 0%, var(--bg-dark) 100%);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
  position: relative;
  z-index: 2;
}

.ssb-timeline-step::after {
  content: '';
  position: absolute;
  top: 50px;
  left: calc(50% + 30px);
  width: calc(100% - 60px);
  height: 2px;
  background: linear-gradient(90deg, var(--border-light), transparent);
  z-index: 1;
}

.ssb-timeline-step:last-child::after {
  display: none;
}

.ssb-timeline-step:hover .ssb-step-num {
  border-color: var(--accent-saffron);
  color: var(--accent-saffron);
  box-shadow: 0 0 20px rgba(254, 106, 21, 0.4);
  transform: scale(1.1);
}

.ssb-timeline-step.active .ssb-step-num {
  border-color: var(--accent-green);
  color: var(--accent-green);
  box-shadow: 0 0 20px rgba(31, 172, 85, 0.4);
}

.ssb-timeline-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.ssb-timeline-step p {
  font-size: 0.8rem;
  line-height: 1.5;
}

/* ==========================================================================
   7. FACILITIES
   ========================================================================== */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.25rem;
}

.facility-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.facility-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-sm);
  background: rgba(254, 106, 21, 0.08);
  border: 1px solid rgba(254, 106, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-saffron);
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
  transition: var(--transition-smooth);
}

.facility-card:hover .facility-icon-wrapper {
  background: var(--accent-saffron);
  color: #fff;
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 8px 20px rgba(254, 106, 21, 0.3);
}

.facility-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.facility-card p {
  font-size: 0.88rem;
}

/* ==========================================================================
   8. WHY CHOOSE AFPT & COUNTERS
   ========================================================================== */
.why-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-bullet-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
}

.why-bullet-icon {
  background: rgba(31, 172, 85, 0.1);
  border: 1px solid rgba(31, 172, 85, 0.2);
  color: var(--accent-green);
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.why-bullet-card:hover .why-bullet-icon {
  background: var(--accent-green);
  color: #fff;
}

.why-bullet-text h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.why-bullet-text p {
  font-size: 0.85rem;
}

/* Animated Counters Block */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.counter-card {
  padding: 2.5rem;
  text-align: center;
}

.counter-card-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-saffron);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.counter-card-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.counter-card-desc {
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* ==========================================================================
   9. TRAINERS & MENTORS
   ========================================================================== */
.mentors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.mentor-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 3rem 2rem 2.5rem 2rem;
}

.mentor-avatar-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 2rem auto;
}

.mentor-avatar-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border-radius: var(--border-radius-circle);
  background: linear-gradient(135deg, var(--accent-saffron) 0%, var(--accent-green) 100%);
  animation: rotateGlow 6s linear infinite;
  z-index: 1;
}

.mentor-avatar {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-circle);
  border: 4px solid var(--bg-dark);
  object-fit: cover;
  background-color: var(--primary-navy-light);
  z-index: 2;
  transition: var(--transition-smooth);
}

.mentor-card:hover .mentor-avatar {
  transform: scale(1.05);
}

.mentor-crest {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--bg-dark);
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.mentor-card h3 {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.mentor-rank {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-saffron);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.mentor-desc {
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ==========================================================================
   10. SUCCESS STORIES / TESTIMONIALS
   ========================================================================== */
.testimonials-slider-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 1.5rem;
  box-sizing: border-box;
}

.testimonial-card {
  padding: 3.5rem;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 2rem;
  left: 3.5rem;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
}

.test-text {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.test-author-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-circle);
  border: 2px solid var(--accent-green);
  object-fit: cover;
}

.author-details h4 {
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.1;
}

.author-details p {
  font-size: 0.75rem;
  color: var(--accent-saffron);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 2px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-arrow {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-circle);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.slider-arrow:hover {
  background: var(--accent-saffron);
  border-color: var(--accent-saffron);
  transform: scale(1.05);
}

/* ==========================================================================
   11. GALLERY SECTION
   ========================================================================== */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-filter-btn:hover {
  background: rgba(254, 106, 21, 0.05);
  border-color: rgba(254, 106, 21, 0.4);
  color: var(--accent-saffron);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(254, 106, 21, 0.15);
}

.gallery-filter-btn.active {
  background: linear-gradient(135deg, var(--accent-saffron) 0%, hsl(20, 100%, 45%) 100%);
  border-color: var(--accent-saffron);
  color: #fff;
  box-shadow: 0 4px 15px rgba(254, 106, 21, 0.4);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  filter: brightness(0.8);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(8, 12, 23, 0.9) 10%, rgba(8, 12, 23, 0.2) 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-saffron);
  margin-bottom: 0.35rem;
}

.gallery-title {
  font-size: 1.15rem;
  color: #fff;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 6, 12, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-light);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--accent-saffron);
}

/* ==========================================================================
   12. FAQ SECTION
   ========================================================================== */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.faq-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-header h3 {
  font-size: 1.15rem;
  text-transform: none;
  font-family: var(--font-primary);
  letter-spacing: normal;
  color: #fff;
}

.faq-icon-toggle {
  color: var(--accent-saffron);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-body-content {
  padding: 0 2rem 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-body-content p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.active .faq-icon-toggle {
  transform: rotate(180deg);
  color: var(--accent-green);
}

.faq-item.active {
  border-color: rgba(31, 172, 85, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   13. CONTACT & LOCATION SECTION
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

.contact-card-form {
  padding: 3rem;
}

.contact-card-form h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-card-form p {
  margin-bottom: 2rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  width: 100%;
  background: rgba(8, 12, 23, 0.5);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  padding: 0.85rem 1.25rem;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-saffron);
  box-shadow: 0 0 15px rgba(254, 106, 21, 0.15);
}

textarea.form-control {
  resize: vertical;
}

/* Info & Location Column */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-bullet-card {
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.info-bullet-icon {
  background: rgba(254, 106, 21, 0.08);
  border: 1px solid rgba(254, 106, 21, 0.2);
  color: var(--accent-saffron);
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-bullet-text h4 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.info-bullet-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Map frame */
.map-frame-wrapper {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  height: 280px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.map-frame-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) contrast(1.2) brightness(0.9);
}

/* ==========================================================================
   14. FOOTER
   ========================================================================== */
.footer {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--primary-navy-dark) 100%);
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 2.5rem 0;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-about-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-about-col p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-circle {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  width: 42px;
  height: 42px;
  border-radius: var(--border-radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition-smooth);
}

.social-circle:hover {
  background: var(--accent-saffron);
  border-color: var(--accent-saffron);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(254, 106, 21, 0.4);
}

.footer-title {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1.75rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--accent-saffron);
  border-radius: var(--border-radius-sm);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link-item a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link-item a:hover {
  color: var(--accent-saffron);
  transform: translateX(5px);
}

.footer-news-col p {
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}

.footer-form-group {
  display: flex;
  position: relative;
}

.footer-form-group .form-control {
  padding-right: 4.5rem;
  background: rgba(8, 12, 23, 0.6);
}

.footer-form-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  background: var(--accent-saffron);
  border: none;
  border-radius: var(--border-radius-sm);
  color: #fff;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.footer-form-btn:hover {
  background: var(--accent-green);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* ==========================================================================
   15. DETAILS / INQUIRY MODAL (INTERACTIVE POPUP)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 6, 12, 0.9);
  backdrop-filter: blur(10px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-container {
  max-width: 650px;
  width: 100%;
  position: relative;
  animation: slideUpModal 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.modal-header-banner {
  height: 120px;
  background: linear-gradient(135deg, var(--primary-navy-light) 0%, var(--primary-army) 100%);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  padding: 2rem;
  position: relative;
}

.modal-header-banner h2 {
  font-size: 1.8rem;
  color: #fff;
  z-index: 2;
}

.modal-header-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(254, 106, 21, 0.1), rgba(31, 172, 85, 0.1));
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-light);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--accent-saffron);
  border-color: var(--accent-saffron);
}

.modal-content-body {
  padding: 2.5rem;
}

.modal-info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.modal-info-item h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.25rem;
}

.modal-info-item p {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
}

.modal-inquiry-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  padding: 1.5rem;
}

.modal-inquiry-box h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 1rem;
}

/* Toast/Success messages */
.toast-msg {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--accent-green);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 5000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-msg.active {
  transform: translateY(0);
}

/* ==========================================================================
   16. KEYFRAMES & ANIMATIONS
   ========================================================================== */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes slideUpModal {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Scroll Animation Hooks (CSS integration with Intersection Observer) */
.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-left {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-right {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-active {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

/* ==========================================================================
   17. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
  html {
    font-size: 15px;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .about-grid, .why-layout, .pillar-grid, .contact-layout {
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 992px) {
  .section {
    padding: 5rem 0;
  }
  .header {
    padding: 1rem 0;
  }
  .hamburger {
    display: block;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(8, 12, 23, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 2.5rem;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-light);
    align-items: center;
    z-index: 999;
  }
  .nav-menu.active {
    left: 0;
  }
  .header-btn {
    display: none;
  }
  .hero-section {
    padding: 7rem 0 3rem 0;
  }
  .hero-section .container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }
  .about-grid, .why-layout, .pillar-grid, .contact-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .about-visual, .pillar-visual {
    order: -1;
  }
  .pillar-visual {
    height: 380px;
  }
  .ssb-timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 500px;
    margin: 3rem auto 0 auto;
  }
  .ssb-timeline-step {
    padding: 0;
    display: flex;
    text-align: left;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .ssb-step-num {
    margin: 0;
    flex-shrink: 0;
  }
  .ssb-timeline-step::after {
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% - 40px);
    background: linear-gradient(180deg, var(--border-light), transparent);
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  .container {
    padding: 0 1.25rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-around;
  }
  .hero-decor-badge {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .programs-grid, .facilities-grid {
    grid-template-columns: 1fr;
  }
  .counters-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-card-form {
    padding: 2rem 1.25rem;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .modal-container {
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal-info-list {
    grid-template-columns: 1fr;
  }
}
