/* ==========================================================================
   THE SUNRISE ACADEMY KHARAN - OFFICIAL STYLESHEET
   Brand: The Sunrise Academy Kharan (School & Academic Preparation)
   Location: Kharan, Balochistan, Pakistan
   Theme: Deep Midnight Navy, Sunrise Gold & Warm Ivory
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & COLOR PALETTE
   -------------------------------------------------------------------------- */
:root {
  /* Primary Midnight Navy & Slate Shades */
  --navy-darkest: #07111E;
  --navy-dark: #0B192C;
  --navy-main: #132A46;
  --navy-medium: #1E3E62;
  --navy-light: #2A527E;
  --navy-subtle: #EBF1F8;

  /* Secondary Sunrise Warm Gold & Amber */
  --gold-dark: #C97A0A;
  --gold-main: #E58A13;
  --gold-accent: #F5A623;
  --gold-light: #FDEBD0;
  --gold-subtle: #FEF7EC;
  --gold-glow: rgba(245, 166, 35, 0.25);

  /* Backgrounds & Neutrals */
  --bg-page: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-alt: #F1F5F9;
  --bg-warm: #FAF8F5;
  --bg-dark: #0B192C;
  --bg-dark-card: #132A46;

  /* Typography Colors */
  --text-main: #0F172A;
  --text-muted: #52637A;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  --text-on-dark: #E2E8F0;

  /* Borders & Dividers */
  --border-light: #E2E8F0;
  --border-medium: #CBD5E1;
  --border-gold: rgba(245, 166, 35, 0.4);
  --border-dark: rgba(255, 255, 255, 0.12);

  /* Typography Stack */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --max-width: 1200px;
  
  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(11, 25, 44, 0.05);
  --shadow-sm: 0 2px 6px rgba(11, 25, 44, 0.06);
  --shadow-md: 0 8px 20px -3px rgba(11, 25, 44, 0.09);
  --shadow-lg: 0 16px 32px -4px rgba(11, 25, 44, 0.12);
  --shadow-hover: 0 20px 36px -6px rgba(19, 42, 70, 0.18);
  --shadow-gold: 0 8px 24px -2px rgba(229, 138, 19, 0.35);

  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 0;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
}

/* --------------------------------------------------------------------------
   3. LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-padding {
  padding: 5rem 0;
}

.section-padding-sm {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  background: var(--gold-subtle);
  color: var(--gold-dark);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-tag-dark {
  background: rgba(245, 166, 35, 0.12);
  color: var(--gold-accent);
  border-color: rgba(245, 166, 35, 0.3);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

.section-title-dark {
  color: var(--text-white);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-subtitle-dark {
  color: var(--text-on-dark);
  opacity: 0.9;
}

/* Demo Badge / Notice */
.demo-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  background: rgba(245, 166, 35, 0.15);
  color: var(--gold-dark);
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-gold);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   4. BUTTONS & CTAS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  font-family: var(--font-display);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-main) 0%, var(--gold-dark) 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #F39820 0%, #D4800E 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -2px rgba(229, 138, 19, 0.45);
}

.btn-navy {
  background: var(--navy-dark);
  color: var(--text-white);
  border-color: var(--navy-dark);
  box-shadow: var(--shadow-sm);
}

.btn-navy:hover {
  background: var(--navy-main);
  color: var(--gold-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--text-white);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy-dark);
  border-color: var(--navy-medium);
}

.btn-outline-navy:hover {
  background: var(--navy-subtle);
  color: var(--navy-dark);
  border-color: var(--navy-dark);
}

.btn-call {
  background: #0284C7;
  color: #FFFFFF;
}

.btn-call:hover {
  background: #0369A1;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.btn-whatsapp:hover {
  background: #20BA5A;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.btn-facebook {
  background: #1877F2;
  color: #FFFFFF;
}

.btn-facebook:hover {
  background: #1464CA;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   5. NAVBAR & BRAND MARK
   -------------------------------------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 25, 44, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.2);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 10px 25px -5px rgba(7, 17, 30, 0.4);
  background: rgba(7, 17, 30, 0.98);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Tasteful Brand Mark */
.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy-medium) 0%, var(--navy-dark) 100%);
  border: 1.5px solid var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  box-shadow: 0 2px 10px rgba(245, 166, 35, 0.25);
  flex-shrink: 0;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.brand-title span {
  color: var(--gold-accent);
}

.brand-location {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Desktop Navigation Links */
.desktop-nav-links {
  display: none;
  align-items: center;
  gap: 0.4rem;
}

@media (min-width: 1040px) {
  .desktop-nav-links {
    display: flex;
  }
}

.nav-link {
  padding: 0.5rem 0.75rem;
  color: var(--text-on-dark);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-xs);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-accent);
  background: rgba(255, 255, 255, 0.06);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Three Dot / Menu Button */
.menu-toggle-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold-accent);
  transition: var(--transition);
}

.menu-toggle-btn:hover {
  background: rgba(245, 166, 35, 0.15);
  border-color: var(--gold-accent);
}

/* Dropdown Menu Modal / Drawer */
.nav-dropdown {
  position: absolute;
  top: 100%;
  right: 1.25rem;
  width: 310px;
  max-width: calc(100vw - 2.5rem);
  background: var(--navy-darkest);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  padding: 1.25rem;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 1001;
  animation: dropdownFade 0.2s ease-out forwards;
}

.nav-dropdown.active {
  display: flex;
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  color: var(--text-on-dark);
  font-size: 0.925rem;
  font-weight: 600;
  border-radius: var(--radius-xs);
  transition: var(--transition);
}

.nav-dropdown-item svg {
  color: var(--gold-accent);
}

.nav-dropdown-item:hover, .nav-dropdown-item.active {
  background: rgba(245, 166, 35, 0.12);
  color: var(--gold-accent);
}

.nav-dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0.5rem 0;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, #07111E 0%, #0B192C 45%, #132A46 100%);
  color: var(--text-white);
  padding: 4.5rem 0 5.5rem 0;
  overflow: hidden;
  border-bottom: 3px solid var(--gold-main);
}

.hero::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.18) 0%, rgba(245, 166, 35, 0) 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, rgba(7, 17, 30, 0.5), transparent);
  pointer-events: none;
}

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

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 1rem;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--gold-accent);
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
}

.hero-badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-accent);
  box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.7);
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(245, 166, 35, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(245, 166, 35, 0);
  }
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.15rem;
  }
}

.hero-title span {
  color: var(--gold-accent);
  background: linear-gradient(135deg, #FFD56B 0%, var(--gold-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-on-dark);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

/* Hero Media & Card Presentation */
.hero-visual-card {
  position: relative;
  background: var(--navy-darkest);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px -8px rgba(0, 0, 0, 0.5);
}

.hero-image-frame {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-image-frame {
    height: 320px;
  }
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy-darkest) 0%, transparent 60%);
}

.hero-card-content {
  padding: 1.5rem;
  background: var(--navy-darkest);
}

.hero-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.hero-hl-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-on-dark);
}

.hero-hl-item svg {
  color: var(--gold-accent);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   7. SCHOOL-FIRST POSITIONING ("Education That Builds the Future")
   -------------------------------------------------------------------------- */
.school-positioning {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border-light);
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-main);
  box-shadow: var(--shadow-md);
}

.pillar-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.pillar-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.6rem;
}

.pillar-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   8. MISSION & VISION SECTION (Elegant Midnight Navy & Gold)
   -------------------------------------------------------------------------- */
.mission-vision-section {
  background: linear-gradient(180deg, #07111E 0%, #0B192C 100%);
  color: var(--text-white);
  position: relative;
  border-top: 1px solid rgba(245, 166, 35, 0.2);
  border-bottom: 1px solid rgba(245, 166, 35, 0.2);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 840px) {
  .mv-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mv-card {
  background: rgba(19, 42, 70, 0.5);
  border: 1.5px solid rgba(245, 166, 35, 0.35);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.mv-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.mv-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.mv-text {
  font-size: 1.05rem;
  color: var(--text-on-dark);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   9. SCHOOL PROGRAMS SECTION (Early Years, Primary, Middle, Secondary)
   -------------------------------------------------------------------------- */
.school-programs-section {
  background: var(--bg-page);
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .programs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.program-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-xs);
}

.program-card:hover {
  transform: translateY(-5px);
  border-color: var(--navy-medium);
  box-shadow: var(--shadow-lg);
}

.program-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.program-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--navy-subtle);
  color: var(--navy-main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}

.program-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.program-focus-list {
  border-top: 1px dashed var(--border-light);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.program-focus-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: var(--text-main);
  font-weight: 600;
}

.program-focus-item svg {
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   10. ACADEMY / ACADEMIC PREPARATION CLASSES (9th & 10th, Science, Board Prep)
   -------------------------------------------------------------------------- */
.academy-classes-section {
  background: #F4F7FB;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.academy-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-main) 100%);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  color: var(--text-white);
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .academy-banner {
    grid-template-columns: 1.5fr 1fr;
  }
}

.academy-banner-title {
  font-size: 1.85rem;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.academy-banner-title span {
  color: var(--gold-accent);
}

.academy-banner-desc {
  font-size: 1.05rem;
  color: var(--text-on-dark);
  line-height: 1.6;
}

.academy-badges-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.academy-badge-tag {
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-accent);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.subjects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .subjects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .subjects-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.subject-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.subject-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-main);
  box-shadow: var(--shadow-md);
}

.subject-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.subject-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.subject-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.subject-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.subject-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  background: var(--navy-subtle);
  color: var(--navy-main);
  border-radius: var(--radius-xs);
}

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

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: var(--bg-warm);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy-medium);
  box-shadow: var(--shadow-sm);
}

.why-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.why-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   12. ANNOUNCEMENTS & EVENTS (Notice Board & Demo Events)
   -------------------------------------------------------------------------- */
.updates-section {
  background: var(--bg-page);
  border-top: 1px solid var(--border-light);
}

.updates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 840px) {
  .updates-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.updates-box, .events-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-xs);
}

.box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid var(--navy-subtle);
}

.box-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.news-list, .events-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.news-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.3rem;
}

.news-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.event-card-item {
  background: var(--bg-warm);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

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

.event-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.event-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   13. ADMISSIONS CALLOUT SECTION
   -------------------------------------------------------------------------- */
.admissions-callout {
  background: linear-gradient(135deg, var(--navy-darkest) 0%, var(--navy-main) 100%);
  color: var(--text-white);
  border-top: 3px solid var(--gold-accent);
  position: relative;
  overflow: hidden;
}

.admissions-callout::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.admissions-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.admissions-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.admissions-title span {
  color: var(--gold-accent);
}

.admissions-text {
  font-size: 1.125rem;
  color: var(--text-on-dark);
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.admissions-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   14. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-section {
  background: var(--bg-card);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-warm);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--gold-main);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy-dark);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy-subtle);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--gold-accent);
  color: #FFFFFF;
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-content p {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   15. FACULTY DIRECTORY (teachers.html & Component)
   -------------------------------------------------------------------------- */
.faculty-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 600px) {
  .faculty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .faculty-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.faculty-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.faculty-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-main);
  box-shadow: var(--shadow-md);
}

.faculty-image-box {
  width: 100%;
  height: 250px;
  background: var(--navy-subtle);
  position: relative;
  overflow: hidden;
}

.faculty-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.faculty-card:hover .faculty-image-box img {
  transform: scale(1.05);
}

.faculty-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.faculty-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.25rem;
}

.faculty-role {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.faculty-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--navy-subtle);
  color: var(--navy-main);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-xs);
  margin-bottom: 0.85rem;
}

.faculty-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   16. STUDENT DIRECTORY (students.html)
   -------------------------------------------------------------------------- */
.student-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--navy-dark);
  color: #FFFFFF;
  border-color: var(--navy-dark);
}

.students-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 600px) {
  .students-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .students-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.student-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.student-card:hover {
  transform: translateY(-5px);
  border-color: var(--navy-medium);
  box-shadow: var(--shadow-md);
}

.student-image-wrapper {
  width: 100%;
  height: 250px;
  background: #EBF1F8;
  position: relative;
  overflow: hidden;
}

.student-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.student-card:hover .student-image-wrapper img {
  transform: scale(1.05);
}

.student-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.student-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.25rem;
}

.student-grade {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-medium);
  margin-bottom: 0.6rem;
}

.student-goal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--gold-subtle);
  color: var(--gold-dark);
  border: 1px solid var(--border-gold);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-xs);
  margin-bottom: 0.85rem;
}

.student-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   17. RESULTS & MARKSHEET SYSTEM (results.html)
   -------------------------------------------------------------------------- */
.results-search-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.search-controls-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .search-controls-grid {
    grid-template-columns: 1.5fr 1fr auto;
  }
}

.input-group {
  position: relative;
}

.input-group input, .input-group select {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.65rem;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background: #FFFFFF;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
}

.input-group input:focus, .input-group select:focus {
  border-color: var(--gold-main);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.input-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.podium-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 700px) {
  .podium-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.podium-card {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.podium-card.gold {
  border-color: var(--gold-main);
  background: linear-gradient(180deg, #FFFDF8 0%, #FFFFFF 100%);
  box-shadow: var(--shadow-gold);
}

.podium-card.silver {
  border-color: #94A3B8;
}

.podium-card.bronze {
  border-color: #D97706;
}

.podium-medal {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.podium-rank-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.podium-card.gold .podium-rank-tag {
  background: var(--gold-subtle);
  color: var(--gold-dark);
}

.podium-card.silver .podium-rank-tag {
  background: #F1F5F9;
  color: #475569;
}

.podium-card.bronze .podium-rank-tag {
  background: #FEF3C7;
  color: #92400E;
}

.podium-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.25rem;
}

.podium-score {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.podium-score span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Results Data Table */
.results-table-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
}

.results-table-responsive {
  width: 100%;
  overflow-x: auto;
}

.results-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.925rem;
}

.results-table th {
  background: var(--navy-dark);
  color: #FFFFFF;
  padding: 1rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.results-table td {
  padding: 0.95rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-main);
}

.results-table tbody tr:hover {
  background: var(--navy-subtle);
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.825rem;
}

.rank-1 {
  background: var(--gold-accent);
  color: #FFFFFF;
}

.rank-2 {
  background: #94A3B8;
  color: #FFFFFF;
}

.rank-3 {
  background: #D97706;
  color: #FFFFFF;
}

.rank-other {
  background: var(--bg-alt);
  color: var(--text-muted);
}

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-pass {
  background: #DCFCE7;
  color: #166534;
}

/* --------------------------------------------------------------------------
   18. SUBPAGE HEADER / BREADCRUMB
   -------------------------------------------------------------------------- */
.subpage-hero {
  background: linear-gradient(135deg, var(--navy-darkest) 0%, var(--navy-main) 100%);
  color: var(--text-white);
  padding: 4rem 0;
  border-bottom: 3px solid var(--gold-accent);
  text-align: center;
}

.subpage-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.subpage-breadcrumb a {
  color: var(--text-on-dark);
}

.subpage-breadcrumb a:hover {
  color: var(--gold-accent);
}

.subpage-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.subpage-desc {
  font-size: 1.05rem;
  color: var(--text-on-dark);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: var(--navy-darkest);
  color: var(--text-on-dark);
  padding: 4.5rem 0 2rem 0;
  border-top: 3px solid var(--gold-main);
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.footer-brand-title span {
  color: var(--gold-accent);
}

.footer-brand-loc {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-brand-desc {
  font-size: 0.925rem;
  color: var(--text-on-dark);
  line-height: 1.65;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-accent);
}

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

.footer-link {
  color: var(--text-on-dark);
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-link:hover {
  color: var(--gold-accent);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.925rem;
}

.footer-contact-icon {
  color: var(--gold-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   20. ENQUIRY MODAL / DIALOG
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 17, 30, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  animation: modalFadeIn 0.2s ease-out;
}

.modal-backdrop.active {
  display: flex;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-box {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--border-light);
  color: var(--navy-dark);
}

.modal-header {
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.25rem;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.4rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background: #FFFFFF;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-main);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.toast-msg {
  position: fixed;
  top: 90px;
  right: 1.5rem;
  background: var(--navy-darkest);
  color: #FFFFFF;
  border: 1px solid var(--gold-accent);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  display: none;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  animation: slideInToast 0.3s ease-out;
}

.toast-msg.show {
  display: flex;
}

@keyframes slideInToast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
