

:root {
  --ink: #11115e;
  --void: #0d266d;
  --surface: #111177;
  --card: #1a1a2e;
  --border: rgba(255, 255, 255, 0.07);
  --neon: #6c47ff;
  --neonL: #9b7dff;
  --amber: #ffb347;
  --cyan: #00d9ff;
  --lime: #a3e635;
  --rose: #ff4d6d;
  --white60: #ffffffea;
  --white40: #ffffff8a;
  --white10: #ffffff63;
  --white07: #ffffff59;
  --radius: 16px;
  --radius-sm: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cabinet Grotesk", sans-serif;
  background: var(--ink);
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ══════════════════════════════════════════
   SCROLLBAR
══════════════════════════════════════════ */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--void);
}
::-webkit-scrollbar-thumb {
  background: var(--neon);
  border-radius: 99px;
}

/* ══════════════════════════════════════════
   SELECTION
══════════════════════════════════════════ */
::selection {
  background: rgba(108, 71, 255, 0.35);
  color: #fff;
}

/* ══════════════════════════════════════════
   SECTION SPACING
══════════════════════════════════════════ */
.section-pad {
  padding: 100px 0;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
#navbar {
  background: transparent;
}
#navbar.scrolled {
  background: #1b1b7ae0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

/* Logo */
.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--neon), var(--neonL));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Clash Display", serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 0 20px rgba(108, 71, 255, 0.5);
  transition: box-shadow 0.3s;
}
.logo-mark:hover {
  box-shadow: 0 0 32px rgba(108, 71, 255, 0.8);
}

.logo-name {
  font-family: "Clash Display", "Cabinet Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  line-height: 1;
}
.logo-sub {
  
  font-weight: 400;
  color: var(--white40);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-top: 2px;
}

/* Nav Links */
.nav-link {
  display: inline-block;
  padding: 6px 14px;
  font-size: 16px;
  font-weight: 500;
  color:white;
  border-radius: 8px;
  transition:
    color 0.2s,
    background 0.2s;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: var(--white07);
}

/* Buttons */
.btn-neon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  background: var(--neon);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-neon:hover {
  background: var(--neonL);
  box-shadow: 0 0 24px rgba(108, 71, 255, 0.6);
  transform: translateY(-1px);
}

.btn-neon-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: var(--neon);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
  letter-spacing: 0.01em;
}
.btn-neon-lg:hover {
  background: var(--neonL);
  box-shadow: 0 0 32px rgba(108, 71, 255, 0.6);
  transform: translateY(-2px);
}

.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: transparent;
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
}
.btn-outline-lg:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--white07);
  transform: translateY(-2px);
}

/* Hamburger */
#hamburger {
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  
  background: #19005ed2;


  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
.mobile-menu.open {
  max-height: 600px;
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: var(--white60);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  transition:
    color 0.2s,
    background 0.2s;
}
.mobile-link:hover {
  color: #fff;
  background: var(--white07);
}
 
/* Hamburger animation */
#hamburger.open .ham-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
#hamburger.open .ham-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
#hamburger.open .ham-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero-section {
  background: var(--ink);
}

/* Grid BG */
.hero-bg-grid {
  background-image:
    linear-gradient(45deg, #ffffff6c 2px, transparent 2px),
    linear-gradient(-45deg, #ffffff6c 2px, transparent 2px);

  background-size: 60px 60px;
  opacity: 0.7;
}

/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.orb-purple {
  width: 600px;
  height: 600px;
  top: -150px;
  left: -150px;
  background: rgba(108, 71, 255, 0.18);
}
.orb-cyan {
  width: 400px;
  height: 400px;
  top: 30%;
  right: -100px;
  background: rgba(0, 217, 255, 0.12);
  animation-delay: -4s;
}
.orb-amber {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: 40%;
  background: rgba(255, 179, 71, 0.1);
  animation-delay: -8s;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, 40px) scale(1.08);
  }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(108, 71, 255, 0.12);
  border: 1px solid rgba(108, 71, 255, 0.25);
  border-radius: 99px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--neonL);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--neon);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/* Hero Headline */
.hero-headline {
  font-family: "Clash Display", "Cabinet Grotesk", sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}
.hero-text-stroke {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.18);
  color: transparent;
}
.hero-text-neon {
  background: linear-gradient(90deg, var(--neon), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text-white {
  color: #fff;
}

.hero-desc {
  margin-top: 20px;
  font-size: 18px;
  color: var(--white60);
  line-height: 1.7;
  max-width: 480px;
}

/* Hero Stats */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.stat-num {
  display: block;
  font-family: "Clash Display", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 18px;
  color: var(--white40);
  margin-top: 3px;
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual-wrap {
  position: relative;
  height: 480px;
}
.hero-card-main {
  width: 90%;

  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
}
.hero-card-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(8, 8, 12, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 18px;
  font-weight: 600;
  color: var(--white60);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-float-card {
  position: absolute;
  background: rgba(19, 19, 31, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  min-width: 190px;
  animation: floatCard 4s ease-in-out infinite alternate;
}
.hero-float-top {
  top: 30px;
  right: -20px;
  animation-delay: -2s;
}
.hero-float-bottom {
  bottom: 50px;
  right: -20px;
}

@keyframes floatCard {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

.float-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.float-sub {
  font-size: 18px;
  color: var(--white40);
}

/* Decorative rings */
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(108, 71, 255, 0.15);
  pointer-events: none;
}
.ring-1 {
  width: 200px;
  height: 200px;
  bottom: -40px;
  left: -40px;
  animation: spinRing 20s linear infinite;
}
.ring-2 {
  width: 120px;
  height: 120px;
  bottom: -10px;
  left: -10px;
  border-color: rgba(0, 217, 255, 0.12);
  animation: spinRing 12s linear infinite reverse;
}
@keyframes spinRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid var(--white40);
  border-radius: 99px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px;
  height: 4px;
  background: var(--neon);
  border-radius: 50%;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.3;
  }
}

/* ══════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════ */
.marquee-band {
  background: var(--void);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  font-family: "Clash Display", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white40);
  text-transform: uppercase;
  animation: marqueeRoll 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  padding: 0 4px;
}
.marquee-band:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeRoll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════
   SECTION LABELS & HEADINGS
══════════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color:#ffffffec;
  padding: 5px 12px;
  border: 1px solid #7a89dfa8;
  
  background: rgba(71, 151, 255, 0.397);
  border-radius: 99px;
}

.section-heading {
  font-family: "Clash Display", "Cabinet Grotesk", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
}

.gradient-text {
  background: linear-gradient(90deg, var(--neon), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Blobs */
.section-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.blob-left {
  background: rgba(108, 71, 255, 0.08);
  top: 0;
  left: -200px;
}
.blob-right {
  background: rgba(0, 217, 255, 0.06);
  top: 0;
  right: -200px;
}

/* ══════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════ */
.about-mosaic {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  height: 480px;
}
.mosaic-main {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.mosaic-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mosaic-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(19, 19, 51, 0.945);
  backdrop-filter: blur(12px);
  border: 1px solid var(--neon);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.badge-icon {
  width: 32px;
  height: 32px;
  background: rgba(108, 71, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neonL);
}

.mosaic-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 150px;
}
.mosaic-sm {
  flex: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.mosaic-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mosaic-accent {
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cyan);
}

/* Pillars */
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.pillar-item:hover {
  border-color: rgba(108, 71, 255, 0.3);
}
.pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.pillar-desc {
  font-size: 16px;
  color: var(--white40);
  line-height: 1.4;
}

/* ══════════════════════════════════════════
   STATS BAND
══════════════════════════════════════════ */
.stats-band {
  background: var(--cyan);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.stat-card:hover {
  border-color: rgba(108, 71, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(108, 71, 255, 0.15);
}
.stat-card-icon {
  width: 46px;
  height: 46px;
  background:white;
  color: var(--cyan);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.stat-card-icon i{
  font-size: 50px;
  width: 96px;
}
.stat-card-num {
  font-family: "Clash Display", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-card-label {
  font-size: 18px;
  color: var(--white40);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════
   ACADEMICS CARDS
══════════════════════════════════════════ */
.acad-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
  overflow: hidden;
}
.acad-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108, 71, 255, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.acad-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.acad-card:hover::before {
  opacity: 1;
}

.acad-card-highlight {
  border-color: #6c47ff59;
  background: linear-gradient(135deg, rgba(108, 71, 255, 0.08), var(--surface));
}

.popular-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--neon);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
}

.acad-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.acad-level {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neonL);
  margin-bottom: 6px;
}
.acad-title {
  font-family: "Clash Display", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.acad-desc {
  font-size: 16px;
  color: var(--white60);
  line-height: 1.6;
  margin-bottom: 16px;
}

.acad-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.acad-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--white60);
}
.acad-features li svg {
  color: var(--neonL);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   PROGRAMS
══════════════════════════════════════════ */
.programs-bg {
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(108, 71, 255, 0.08) 0%,
    transparent 70%
  );
}

.programs-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.prog-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition:
    background 0.25s,
    border-color 0.25s;
  position: relative;
}
.prog-item:hover {
  background: var(--surface);
  border-color: var(--border);
}
.prog-num {
  font-family: "Clash Display", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white40);
  min-width: 20px;
  padding-top: 3px;
}
.prog-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prog-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.prog-desc {
  font-size: 18px;
  color: var(--white40);
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   WHY ZEN-Z
══════════════════════════════════════════ */
.why-card {
  background: var(--cyan);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.why-card:hover {
  border-color: #6c47ff4d;
  transform: translateY(-4px);
}
.why-icon {
  width: 52px;
  height: 52px;
  background: white;
  color: var(--cyan);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-title {
  font-family: "Clash Display", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.why-desc {
  font-size: 16px;
  color: var(--white60);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testi-bg {
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(108, 71, 255, 0.07) 0%,
    transparent 70%
  );
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  transition: border-color 0.25s;
}
.testi-card:hover {
  border-color: #6c47ff4d;
}

.testi-stars {
  color: var(--amber);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testi-quote {
  font-size: 18px;
  color: var(--white60);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testi-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--neon), var(--neonL));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.testi-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.testi-role {
  font-size: 15px;
  color: var(--white40);
}

.testi-pagination {
  text-align: center;
  margin-top: 24px !important;
}
.testi-pagination .swiper-pagination-bullet {
  background: var(--white40);
  opacity: 1;
}
.testi-pagination .swiper-pagination-bullet-active {
  background: var(--neon);
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-bg {
  background: radial-gradient(
    ellipse at 50% 0%,
    #6c47ff17 0%,
    transparent 60%
  );
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cinfo-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s;
}
.cinfo-card:hover {
  border-color: #ffffff1f;
}

.cinfo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cinfo-label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white40);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.cinfo-value {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
}

.contact-quick-links {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white60);
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.15s;
}
.social-btn:hover {
  background: #6c47ff26;
  border-color: #6c47ff4d;
  color: var(--neonL);
  transform: translateY(-2px);
}

/* Form */
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--white60);
  letter-spacing: 0.04em;
}

.form-input {
  background: #ffffff0a;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 18px;
  color: #fff;
  font-family: "Cabinet Grotesk", sans-serif;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
}
.form-input:focus {
  border-color: rgba(108, 71, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(108, 71, 255, 0.12);
}
.form-input option {
  background: var(--void);
  color: #fff;
}
textarea.form-input {
  resize: vertical;
  min-height: 90px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(163, 230, 53, 0.1);
  border: 1px solid rgba(163, 230, 53, 0.25);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--lime);
}
.form-success.hidden {
  display: none;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer-glow {
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(108, 71, 255, 0.08),
    transparent 60%
  );
}

.footer-heading {
  font-family: "Clash Display", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white60);
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  font-size: 15px;
  color: var(--white60);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #fff;
}

/* ══════════════════════════════════════════
   AOS CUSTOM OVERRIDES
══════════════════════════════════════════ */
[data-aos] {
  will-change: transform, opacity;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-visual-wrap {
    height: 380px;
    margin-top: 40px;
  }
  .about-mosaic {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 72px 0;
  }
.dekmanu{
  display: none;
}
  .hero-headline {
    font-size: clamp(44px, 12vw, 70px);
  }
  .hero-visual-wrap {
    height: 320px;
  }
  .hero-float-card {
    display: none;
  }

  .about-mosaic {
    grid-template-columns: 1fr;
    height: auto;
  }
  .mosaic-main {
    height: 260px;
  }
  .mosaic-side {
    display: none;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .campus-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .gal-tall {
    grid-row: span 1;
  }
  .gal-wide {
    grid-column: span 2;
  }

  .hero-stats-row {
    gap: 14px;
  }
  .stat-num {
    font-size: 22px;
  }

  .contact-form-card {
    padding: 24px 20px;
  }

  .hero-float-top,
  .hero-float-bottom {
    display: none;
  }
  .deco-ring {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-card-main {
    width: 100%;
  }
  .campus-gallery {
    grid-template-columns: 1fr;
  }
  .gal-wide {
    grid-column: span 1;
  }
  .gal-tall {
    grid-row: span 1;
  }
  .hero-stats-row {
    gap: 10px;
  }
  .stat-divider {
    height: 28px;
  }
}

/* ══════════════════════════════════════════
   UTILITY
══════════════════════════════════════════ */
.hidden {
  display: none !important;
}
