/* ── CSS Variables ── */
:root {
  --azure: #0ea5e9;
  --azure-light: #38bdf8;
  --azure-dark: #0284c7;
  --gold: #f59e0b;
  --emerald: #10b981;
  --violet: #8b5cf6;
  --rose: #f43f5e;
  --obsidian: #f3f5f8;
  --carbon: #0d1421;
  --slate: #111827;
  --silver: #39404b;
  --white: #1b0909;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --glow-azure: 0 0 40px rgba(14, 165, 233, 0.3);
  --glow-gold: 0 0 40px rgba(245, 158, 11, 0.3);
  --shadow-card: 0 24px 80px rgba(0, 0, 0, 0.4);
  --border-subtle: 1px solid rgba(255, 255, 255, 0.06);
}

html {
  scroll-behavior: smooth;
}
body {
  background: var(--obsidian);
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  width: 100%;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
select {
  appearance: none;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--obsidian);
}
::-webkit-scrollbar-thumb {
  background: var(--azure);
  border-radius: 99px;
}

/* ── Section Padding ── */
.container {
  padding-inline: 15px;
}
.section-pad {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .section-pad {
    padding: 3rem 0;
  }

}

/* ══════════════════════════════════════
   TYPOGRAPHY HELPERS
══════════════════════════════════════ */
.section-label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--azure);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--azure);
  border-radius: 99px;
}

.section-heading {
  font-family: "Bebas Neue", cursive;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  color: #184269;
  letter-spacing: 0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--azure), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
#navbar {
  background: transparent;
  transition:
    background 0.4s,
    box-shadow 0.4s,
    backdrop-filter 0.4s;
}
#navbar.scrolled {
  background: rgba(6, 11, 20, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.4);
}
.logoname {
  color: #090f1beb;
}
#navbar.scrolled .logoname {
  color: #dee7ffeb;
}
#navbar.scrolled .nav-link {
  color: #dee7ffeb;
}

.nav-link {
  font-family: "Syne", sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: #081727ec;
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  transition:
    color 0.2s,
    background 0.2s;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 1.5px;
  background: var(--azure);
  border-radius: 99px;
  transition:
    left 0.3s,
    right 0.3s;
}
.nav-link:hover {
  color: white;
  background: rgba(14, 165, 233, 0.08);
}
.nav-link:hover::after {
  left: 12px;
  right: 12px;
}

/* Buttons */
.btn-primary {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: white;
  background: var(--azure);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.35);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.btn-primary:hover {
  background: var(--azure-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.5);
}

.btn-primary-lg {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  background: var(--azure);
  padding: 0.85rem 2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 6px 30px rgba(14, 165, 233, 0.4);
  display: inline-flex;
  align-items: center;
}
.btn-primary-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.55);
  background: var(--azure-dark);
}

.btn-ghost-lg {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #0a0a0a;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.85rem 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition:
    background 0.2s,
    transform 0.2s,
    border-color 0.2s;
  display: inline-flex;
  align-items: center;
}
.btn-ghost-lg:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* Mobile Menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #060b149f;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  /* border-bottom: 1px solid #0ea4e91a !important; */
}
.mobile-menu.open {
  max-height: 700px;
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: "Syne", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.75rem 0.875rem;
  border-radius: 0.75rem;
  transition:
    background 0.2s,
    color 0.2s;
}
.mobile-link:hover {
  background: rgba(14, 165, 233, 0.08);
  color: white;
}

/* Hamburger */
#hamburger.open .ham-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#hamburger.open .ham-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
#hamburger.open .ham-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.hero-section {
  background: var(--obsidian);
  position: relative;
}

/* Mesh background */
.mesh-bg {
  background:
    radial-gradient(
      ellipse 80% 60% at 0% 0%,
      rgba(14, 165, 233, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at 100% 100%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 40% at 50% 50%,
      rgba(16, 185, 129, 0.04) 0%,
      transparent 70%
    );
}

/* Grid overlay */
.grid-overlay {
  background-image:
    linear-gradient(#0ea4e915 1px, transparent 1px),
    linear-gradient(90deg, #0ea4e911 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(14, 165, 233, 0.15);
  top: -150px;
  left: -100px;
}
.orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(139, 92, 246, 0.12);
  bottom: 0;
  right: 10%;
}
.orb-3 {
  width: 250px;
  height: 250px;
  background: rgba(16, 185, 129, 0.08);
  top: 40%;
  left: 40%;
}

/* Hero headline */
.hero-headline {
  font-family: "Bebas Neue", cursive;
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
}
.hero-gradient-text {
  background: linear-gradient(
    135deg,
    var(--azure) 0%,
    var(--violet) 60%,
    var(--azure-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-outline-text {
  -webkit-text-stroke: 2px rgba(7, 16, 26, 0.918);
  color: transparent;
}

/* Badge */
.hero-badge {
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--azure);
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.25);
  padding: 0.4rem 1rem;
  border-radius: 99px;
  animation: fadeInDown 0.8s ease both 0.3s;
  opacity: 0;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--azure);
  box-shadow: 0 0 8px var(--azure);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.bannerimg {
  width: 1050px;
  position: absolute;
  top: 19%;
  right: 3%;
}
/* Hero Stats */
.hero-stat {
  padding-top: 1.25rem;
  border-top: 1px solid #ffffff14;
}
.stat-num {
  font-family: "Bebas Neue", cursive;
  font-size: 2.5rem;
  line-height: 1;
  color: rgb(39, 64, 94);
  letter-spacing: 0.02em;
}
.stat-label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  color: var(--silver);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* Hero Visual */
.hero-card-main {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card), var(--glow-azure);
  border: 1px solid rgba(14, 165, 233, 0.2);
}
.hero-card-inner {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, #0d1421 0%, #0f172a 100%);
}
.card-bg-image {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1580582932707-520aed937b7b?w=800&q=80")
    center/cover;
  opacity: 0.3;
}
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 11, 20, 0.95) 0%,
    rgba(6, 11, 20, 0.4) 60%,
    transparent 100%
  );
}
.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

/* Float badges */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6, 11, 20, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  animation: floatSlow 6s ease-in-out infinite;
}
.float-badge-1 {
  top: 1.5rem;
  right: 1.5rem;
}
.float-badge-2 {
  bottom: 5rem;
  right: -2rem;
  animation-delay: -3s;
}

/* Accent cards */
.accent-card {
  position: absolute;
  background: rgba(13, 20, 33, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-card);
}
.accent-card-1 {
  bottom: -2rem;
  left: -2rem;
}
.accent-card-2 {
  top: 2rem;
  left: -3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Deco ring */
.deco-ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px dashed rgba(14, 165, 233, 0.15);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* Hero visual container */
.hero-visual {
  min-height: 450px;
}

/* Scroll indicator */
.scroll-indicator {
  z-index: 5;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--azure), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.marquee-item {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--azure);
  padding: 0 1.5rem;
}
.marquee-dot {
  color: rgba(14, 165, 233, 0.4);
  font-size: 0.6rem;
}

/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */

.about-img-main {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: var(--border-subtle);
}
.about-img-main img {
  height: 100%;
}
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(6, 11, 20, 0.8) 100%
  );
}

.about-img-float {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 180px;
  height: 140px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--obsidian);
  box-shadow: var(--shadow-card);
  z-index: 2;
}
.about-img-float img {
  height: 100%;
}

.about-achievement-badge {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background: rgba(6, 11, 20, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  z-index: 2;
  box-shadow: var(--glow-azure);
}

.about-deco-1 {
  position: absolute;
  top: -2rem;
  right: 2rem;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(14, 165, 233, 0.15);
  border-radius: 50%;
  pointer-events: none;
}
.about-deco-2 {
  position: absolute;
  bottom: 4rem;
  left: 4rem;
  width: 40px;
  height: 40px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

/* About feature cards */
.about-feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.about-feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(14, 165, 233, 0.2);
}
.af-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

/* ══════════════════════════════════════
   STATS BAND
══════════════════════════════════════ */
.stats-band {
  position: relative;
}
.stats-band-bg {
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.06) 0%,
    rgba(139, 92, 246, 0.04) 100%
  );
  border-top: 1px solid rgba(14, 165, 233, 0.1);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}
.stat-band-item {
  text-align: center;
  opacity: 0;
  animation-delay: var(--delay, 0s);
}
.stat-band-num {
  font-family: "Bebas Neue", cursive;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--azure), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
}
.stat-band-label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--silver);
  margin-top: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4b4b4b;
}

/* ══════════════════════════════════════
   CLASS / ACADEMICS CARDS
══════════════════════════════════════ */
.class-card {
  position: relative;
  background: rgba(13, 20, 33, 0.8);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  overflow: hidden;
  opacity: 0;
  animation-delay: var(--delay, 0s);
}
.class-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent, var(--azure)),
    transparent
  );
}
.class-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.12);
}

.class-card-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.06;
  pointer-events: none;
  transition: opacity 0.3s;
}
.class-card:hover .class-card-accent {
  opacity: 0.12;
}

.class-icon {
  width: 52px;
  height: 52px;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition:
    background 0.3s,
    color 0.3s;
}
.class-level {
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.class-title {
  font-family: "Syne", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.625rem;
}
.class-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  color: white;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}
.class-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.class-age {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  color: var(--silver);
  font-weight: 500;
}
.class-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: "Syne", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--azure);
  transition: gap 0.2s;
}
.class-link:hover {
  gap: 0.5rem;
}

/* Highlight card */
.class-card-highlight {
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.1) 0%,
    rgba(139, 92, 246, 0.08) 100%
  );
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation-delay: var(--delay, 0s);
}
.class-card-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 0% 0%,
    rgba(14, 165, 233, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* ══════════════════════════════════════
   PROGRAMS SECTION
══════════════════════════════════════ */
.programs-bg-deco {
  background:
    radial-gradient(
      ellipse 60% 50% at 80% 50%,
      rgba(139, 92, 246, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 40% at 10% 80%,
      rgba(14, 165, 233, 0.06) 0%,
      transparent 60%
    );
}

.programs-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.prog-item {
  display: grid;
  grid-template-columns: 3rem 52px 1fr 2rem;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(13, 20, 33, 0.5);
  transition: background 0.2s;
  cursor: pointer;
  opacity: 0;
  animation-delay: var(--delay, 0s);
}
.prog-item:last-child {
  border-bottom: none;
}
.prog-item:hover {
  background: rgba(14, 165, 233, 0.05);
}

.prog-num {
  font-family: "Bebas Neue", cursive;
  font-size: 1.7rem;
  color: #ffffff4b;
  line-height: 1;
  letter-spacing: 0.1em;
}
.prog-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prog-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  margin-bottom: 0.25rem;
}
.prog-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: #bebebe;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.prog-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.prog-tag {
  font-family: "DM Sans", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--azure);
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  padding: 0.15rem 0.6rem;
  border-radius: 99px;
}
.prog-arrow {
  color: rgba(255, 255, 255, 0.2);
  transition:
    color 0.2s,
    transform 0.2s;
}
.prog-item:hover .prog-arrow {
  color: var(--azure);
  transform: translateX(3px) translateY(-3px);
}

@media (max-width: 640px) {
  .prog-item {
    grid-template-columns: 52px 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }
  .prog-num {
    display: none;
  }
  .prog-arrow {
    display: none;
  }
}

/* ══════════════════════════════════════
   GALLERY
══════════════════════════════════════ */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 1rem;
}
.gal-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gal-item img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gal-item:hover img {
  transform: scale(1.08);
}
.gal-tall {
  grid-row: span 2;
}
.gal-wide {
  grid-column: span 2;
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 11, 20, 0.85) 0%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gal-item:hover .gal-overlay {
  opacity: 1;
}
.gal-overlay span {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gal-tall,
  .gal-wide {
    grid-row: span 1;
    grid-column: span 1;
  }
  .gal-item {
    height: 180px;
  }
}
@media (max-width: 480px) {
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }
  .gal-item {
    height: 200px;
  }
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testi-bg-deco {
  background:
    radial-gradient(
      ellipse 50% 60% at 20% 50%,
      rgba(14, 165, 233, 0.05) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 40% at 80% 20%,
      rgba(139, 92, 246, 0.05) 0%,
      transparent 60%
    );
}

.testi-card {
  background: #1b2a46cc;
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.testi-card:hover {
  border-color: rgba(14, 165, 233, 0.2);
  box-shadow: var(--glow-azure);
}

.testi-quote-mark {
  font-family: "Bebas Neue", cursive;
  font-size: 5rem;
  line-height: 0.6;
  color: rgb(14, 164, 233);
  letter-spacing: 0;
}

.testi-text {
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  color: #ffffffec;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testi-footer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1.25rem;
  border-top: 1px solid #ffffff56;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", cursive;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testi-name {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
}
.testi-role {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  color: #a0a0a0;
}
.testi-stars {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.testi-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}
.testi-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  cursor: pointer;
  transition:
    background 0.2s,
    width 0.3s;
}
.testi-pagination .swiper-pagination-bullet-active {
  background: var(--azure);
  width: 28px;
}

/* ══════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════ */
.contact-bg {
  background: radial-gradient(
    ellipse 60% 50% at 50% 100%,
    rgba(14, 165, 233, 0.06) 0%,
    transparent 60%
  );
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.contact-info-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(14, 165, 233, 0.15);
}

.cic-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cic-label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 0.25rem;
}

.cic-value {
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  color: #0e262bd8;
  line-height: 1.6;
}

/* Form */
.contact-form-card {
  background: rgba(13, 20, 33, 0.8);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 0.8rem 1rem;
  color: white;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
  outline: none;
}
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.form-input:focus {
  border-color: var(--azure);
  background: rgba(14, 165, 233, 0.05);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}
.form-input option {
  background: var(--carbon);
  color: white;
}
textarea.form-input {
  resize: vertical;
  min-height: 90px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--emerald);
}
.form-success.hidden {
  display: none;
}

/* ══════════════════════════════════════
   SOCIAL BUTTONS
══════════════════════════════════════ */
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.04);
  border: var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s,
    border-color 0.2s;
}
.social-btn:hover {
  background: rgba(14, 165, 233, 0.15);
  color: var(--azure);
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer-deco {
  background: radial-gradient(
    ellipse 50% 60% at 0% 0%,
    rgba(14, 165, 233, 0.04) 0%,
    transparent 50%
  );
}
.footer-heading {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
}
.footer-link {
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  color: #ffffffa2;
  display: block;
  padding: 0.3rem 0;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.footer-link:hover {
  color: var(--azure);
  padding-left: 0.25rem;
}

/* ══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  will-change: transform, opacity;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  will-change: transform, opacity;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ══════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-24px) rotate(3deg);
  }
}
@keyframes floatMed {
  0%,
  100% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(12px);
  }
}
@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: clamp(4rem, 10vw, 7rem);
  }
  
  .about-achievement-badge {
    left: 0;
  }
  .about-img-float {
    right: 0;
  }
}

@media (max-width: 768px) {
  .section-heading {
    font-size: clamp(2.5rem, 9vw, 4rem);
  }
  .hero-headline {
    font-size: clamp(3.5rem, 14vw, 6rem);
  }

  .about-img-float {
    display: none;
  }
  .about-achievement-badge {
    left: 0.5rem;
    top: 0.5rem;
  }
  .contact-form-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-pad {
    padding: 3rem 0;
  }
  .hero-badge {
    font-size: 0.7rem;
  }
  .btn-primary-lg,
  .btn-ghost-lg {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }
  .class-card,
  .class-card-highlight {
    padding: 1.25rem;
  }
}

@media (max-width: 768px) {
  .bannerimg {
    width: 380px;
    top: 70% !important;
    right: 1%;
    opacity: 0.3;
  }
}
