:root {
  --brand-red: #e63946;
  --brand-gold: #f5c443;
  --brand-green: #2bb673;
  --brand-dark: #0f172a;
  --brand-mid: #1f2937;
  --brand-light: #f8fafc;
  --text: #0b1220;
  --muted: #6b7280;
  --card: #ffffff;
  --ring: rgba(229, 62, 62, 0.35);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Noto Sans",
    "Apple Color Emoji",
    "Segoe UI Emoji";
    font-family: 'Noto Sans Devanagari', system-ui, sans-serif;
  color: var(--text);
  background: var(--brand-light);
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.name {
  color: #000;
}
.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}
.section {
  padding: 35px 0;
}
.section-title {
  font-size: clamp(22px, 2.4vw, 34px);
  margin: 0 0 14px;
  font-weight: 750;
}
.section-sub {
  color: var(--muted);
  margin: 0 0 20px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.2s ease;
  cursor: pointer;
  color: #000;
}
.btn.primary {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 8px 18px rgba(230, 57, 70, 0.25);
}
.btn.primary:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}
.btn.ghost {
  border-color: #e5e7eb;
  background: #fff;
}

/* -/* ---------------- Header ---------------- */
.site-header {
  width: 100%;
  height: 90px;
  background: linear-gradient(to right, #ddd, #6f84ff);
  border-bottom: 1px solid #eef0f4;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ---------------- Navbar ---------------- */
/* ---------------- Navbar ---------------- */
.navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between; /* left brand, right nav */
  padding: 0 24px;
}

/* ---------------- Brand / Logo ---------------- */
/* Brand container */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #000;
}

/* Logo image */
.brand img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  padding: 4px;               /* white ring */
}

/* Brand name */
.brand .name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}


/* Navbar links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  position: relative; /* Needed for underline effect */
  color: black;
  text-decoration: none;
  font-weight: 900;
  padding-bottom: 4px;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  color: #000;
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #ffd700; /* underline color */
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffd700;
}

/* ---------------- Mobile menu ---------------- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1100;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  background-color: #fff;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: 0.3s ease;
}

.nav-toggle span {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle span::before {
  content: '';
  top: -8px;
  position: absolute;
}

.nav-toggle span::after {
  content: '';
  top: 8px;
  position: absolute;
}

/* Mobile menu styles */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 95px;
    left: 14px;
    right: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    text-align: center;
  }

  .nav-links a {
    color: #000;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #b62121;
  }

  .nav-links a::after {
    background-color: #b62121;
  }

.nav-toggle {
  display: block;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
}

/* Footer Base */
.site-footer {
  background: linear-gradient(135deg, #ddd, #002a89);
  color: #020711;
  margin-top: 40px;
  font-family: 'Poppins', sans-serif;
}

.footer-inner {
  padding: 48px 24px;
  max-width: 1200px;
  margin: auto;
}

/* Footer Top Grid */
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 24px;
}

/* Brand Section */
.footer-brand-section {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-brand img {
  width: 88px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid #3b82f6;
  padding: 4px;
  transition: transform 0.3s;
}

.footer-brand img:hover {
  transform: scale(1.1);
}

.academy-location {
  color: #000000;
  font-weight: 400;
  font-size: 14px;
}

.footer-description {
  margin-top: 12px;
  color: #000000;
  line-height: 1.6;
  max-width: 480px;
}

/* Footer Links & Contact */
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-links strong, .footer-contact strong {
  font-size: 16px;
  margin-bottom: 12px;
  color: #000000;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-list a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-list a:hover {
  color: #3b82f6;
}


/* Footer Bottom */
.footer-btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: #000000;
}

/* Social Icons */
.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: #1b2437;
  color: #dce3f1;
  transition: all 0.3s;
}
.socials a {
    color: #555;
    transition: color 0.3s ease;
}

/* Facebook */
.socials a[href*="facebook"]:hover {
    color: #1877f2;
}

/* Instagram */
.socials a[href*="instagram"]:hover {
    color: #e1306c;
}

/* YouTube */
.socials a[href*="youtube"]:hover {
    color: #ff0000;
}

.socials a:hover {
  background: #3b82f6;
  color: #ffffff;
  transform: scale(1.1);
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-btm {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .socials {
    justify-content: center;
  }
}


/* Cards and grids */
.grid {
  display: grid;
  gap: 20px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
/* Outer wrapper centers the grid */
.stats-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Grid should NOT take full width */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 260px); /* fixed card width */
  gap: 16px;
  margin: 22px auto;   /* 👈 actual centering */
}

/* Individual cards */
.stat-card {
  background: var(--card);
  border: 1px solid #2761d6;
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
  

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.badge {
  display: inline-block;
  background: #fff5db;
  color: #7a4b00;
  border: 1px solid #ffe7a8;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700;
  font-size: 12px;
}
.stat {
  display: flex;
  gap: 10px;
  box-shadow: #0741be;

}
.stat .num {
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 900;
}

/* Forms */
.input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  outline: 0;
}
.input:focus,
textarea:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 4px var(--ring);
}

/* Hero */
.hero {
  padding: 76px 0 24px;
  background: linear-gradient(135deg, #fff 0%, #fff6f6 48%, #fff 100%);
  min-height: 100vh;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: stretch;
  min-height: calc(100vh - 100px);
}
.hero h1 {
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.08;
  margin: 0 0 10px;
}
.hero p {
  color: var(--brand-mid);
}
.hero-art {
  position: relative;
  height: 100%;
}
.hero-card {
  position: absolute;
  right: 6%;
  bottom: 8%;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
}
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero {
    padding: 56px 0 8px;
    min-height: auto;
  }
  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 12px;
  }
  .brand img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  padding: 4px;               /* white ring */
}
}
