:root {
  --bg1: #bfcbf0;
  --bg2: #dce5ff;
  --navy-900: #061b2f;
  --navy-800: #0a2a45;
  --navy-700: #0e3a5c;
  --cyan-500: #19c5ff;
  --cyan-300: #6fe3ff;
  --text-dark: #1f2344;
  --white: #ffffff;
  --radius: 22px;
  --gradient-primary: linear-gradient(135deg,
      var(--navy-800),
      var(--navy-700),
      var(--cyan-500));

  --gradient-soft: radial-gradient(circle,
      rgba(25, 197, 255, 0.15),
      transparent 70%);
}

.partition {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: -3%;
  margin-bottom: 40px;
  margin-left: 5%;
  width: 90%;
}

.partition .partition-line {
  flex-grow: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-500) 0%, rgba(25, 197, 255, 0.1) 100%);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan-500);
  white-space: nowrap;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: "Outfit", sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 76px;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  backdrop-filter: blur(14px);
  z-index: 100;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 76px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  height: 76px;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  opacity: 0.9;
  padding: 12px 0;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  background: none;
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-cta:hover {
  opacity: 1;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy-700);
  transition: all 0.3s ease;
  border-radius: 1px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
  background: var(--cyan-500);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(8px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
  background: var(--cyan-500);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8%;
  min-height: 80vh;
  position: relative;
  background-color: #042244;

  overflow: hidden;
}

.hero-content {
  margin: 0 auto;
  padding: 24px;
  text-align: center;
  color: white;
  max-width: 720px;
  z-index: 1;
}

/* CANVAS PARTICLES */
canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}


.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius);
  background: rgba(204, 200, 200, 0.05);
  border-left: 4px solid var(--cyan-500);
  font-size: 11px;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: #030d17;
}

h1 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 22px;
}

h1 span {
  background: linear-gradient(90deg, var(--cyan-500), var(--cyan-300));
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(229, 227, 227, 0.7);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  z-index: 1;
}

/* INNER GLOW CTAs */
.btn-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  z-index: 1;
}

.btn-primary,
.btn-secondary {
  padding: 12px 32px;
  font-size: 14px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  position: relative;
  text-decoration: none;


}

.btn-primary {
  background: #0b9cdf;
  color: #ecf2f5;
  border: 2px solid rgba(199, 213, 218, 0.3);
  box-shadow: inset 0 0 15px rgba(25, 197, 255, 0.2);
}

.btn-primary:hover {
  box-shadow: inset 0 0 25px rgba(142, 165, 172, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(83, 154, 187, 0.182);
  color: white;
  border: 3px solid rgba(72, 137, 160, 0.1);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
  background: rgba(115, 175, 199, 0.08);
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.1);
}

.hero-image {
  position: absolute;
  right: 10%;
  bottom: 0;
  width: 600px;
  z-index: 3;
  perspective: 800px;
}

.hero-image img {
  width: 100%;
  transition: transform .15s ease, filter .3s ease;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .45));
}

/* WHY CHOOSE US */
.why-hex-strong {
  padding: 50px 20px;
  background: linear-gradient(135deg, #f6f8f9 0%, #eceff1 100%);
  scroll-margin-top: 150px;
}

.why-hex-container {
  max-width: 1300px;
  margin: 0 auto;
}

.why-hex-header {
  text-align: center;
  margin-bottom: 20px;
}

.why-hex-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gradient-primary);
}

.why-hex-header h2 span {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 40%, var(--cyan-500) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hex-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hex-card {
  width: 200px;
  height: 220px;
  background: var(--white);
  border: 1px solid var(--bg2);
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease;
}

.hex-card:hover {
  transform: translateY(-6px);
}

.hex-inner {
  height: 100%;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hex-icon {
  font-size: 28px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--navy-800), var(--cyan-500));
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hex-inner h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.hex-inner p {
  font-size: 0.85rem;
  color: #6b7280;
}


/* float */
@keyframes float {

  0%,
  100% {
    transform: translateX(-40px) translateY(40px);
  }

  50% {
    transform: translateX(-40px) translateY(18px);
  }
}

/* SECTION */
section {
  padding: 60px 40px;
  background: linear-gradient(180deg, #fff, var(--bg));
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--navy-900);
}

.section-header h2 span {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 40%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 5%;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

/* CARD */
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 32px 36px;
  border: 1px solid #cfd6e8;
  box-shadow: 0 14px 36px rgba(15, 23, 42, .06);
  transition: all 0.4s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
}

.card.lite {
  border: 2px solid #a0d5e7;
  background: linear-gradient(180deg, #ffffff, #f7f8ff);
}

.card.elite {
  border: 2px solid #a6a0e7;
  background: linear-gradient(180deg, #ffffff, #faf7ff);
}

/* CARD HEADER */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  margin-bottom: 18px;
  background: #cdd4db;
}

.lite .badge {
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-300));
  color: var(--white);
}

.elite .badge {
  background: linear-gradient(135deg, var(--navy-700));
  color: var(--white);
}

.card h3 {
  font-size: 1.65rem;
  margin: 0 0 8px;
}

.price {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 26px;
}

.price span {
  font-size: .95rem;
  color: var(--muted);
  font-weight: 400;
}

/* FLOW */
.flow {
  position: relative;
}

.flow::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #dbe1ff;
}

.step {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--cyan-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  color: var(--navy-700);
  background: #fff;
  flex-shrink: 0;
}

.elite .num {
  border-color: var(--cyan-300);
  color: var(--navy-700);
}

.text h4 {
  font-size: 1rem;
  margin: 0 0 4px;
}

.text p {
  font-size: .9rem;
  line-height: 1.45;
  color: var(--muted);
  margin: 0;
}

/* BONUS */
.bonus {
  background: #f6f4ff;
  border: 1px dashed var(--navy-800);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 22px;
  text-align: center;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy-800);
}

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

.witty-separator {
  text-align: center;
  margin: 30px auto 40px;
  max-width: 600px;
}

.witty-separator h2 {
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
}

.witty-separator p {
  color: var(--text-sub);
  font-style: italic;
  font-size: 1rem;
}

.simple-compare {
  max-width: 1000px;
  margin: 0 auto 60px;
  font-family: 'Outfit', sans-serif;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 20px;
}

.plan-box {
  background: white;
  border: 2px solid #adafb0;
  border-radius: 28px;
  padding: 35px;
  position: relative;
  transition: all 0.3s ease;
}

.plan-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.plan-box.featured {
  border: 2px solid var(--cyan-300);
  background: linear-gradient(to bottom right, #ffffff, #f9f9ff);
}

.plan-box h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--text-main);
}

.plan-box .price-tag {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 10px 0;
  color: var(--navy-700);
}

.plan-box .duration {
  color: var(--text-sub);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 25px;
  display: block;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 12px 0;
  font-size: 0.95rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px dashed #f1f5f9;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li.off {
  color: #8e9195;
  opacity: 5;
}

.icon-check {
  color: #10b981;
  font-weight: bold;
}

.icon-cross {
  color: #f87171;
  font-weight: bold;
  opacity: 1;
}

.best-value-label {
  position: absolute;
  top: -12px;
  right: 30px;
  background: var(--cyan-500);
  color: white;
  padding: 4px 15px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
}

.explore-courses-section {
  background: linear-gradient(155deg, #f4f7ff 45%, #ffffff 45%);
  padding: 40px 20px;
}

.explore-card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 34px 36px;
  border: 1px solid #e6eaf4;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
  transition: all 0.4s ease;
  text-align: center;
  cursor: pointer;
}

.explore-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
}

.explore-courses-header h2 {
  margin-bottom: 25px;
  font-size: 35px;
  color: var(--navy-800);
}

.explore-courses-header p {
  margin-bottom: 25px;
  line-height: 1.7;
}

.explore-courses-header .tagline {
  font-weight: 600;
  color: var(--cyan-500);
}

.explore-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  border-radius: 40px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 40px 100px rgba(99, 102, 241, 0.08);
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-15px) scale(1.1);
  }
}

/* THE BUTTON */
.btn-courses {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #acced9;
  color: rgb(31, 49, 113);
  padding: 20px 48px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.25);
  transition: all 0.4s ease;
}

.btn-courses:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 25px 50px rgba(99, 102, 241, 0.35);
}

@media (max-width: 1000px) {
  .explore-container {
    flex-direction: column;
  }

  .explore-sidebar,
  .explore-content {
    width: 100%;
    padding: 60px 40px;
  }
}

.classroom-section {
  padding: 80px 20px;
  background-color: #f1f2f4;
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.classroom-header {
  text-align: center;
  margin-bottom: 50px;
}

.classroom-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--navy-800);
}

/* SLIDER SYSTEM */
.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.video-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}

.video-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  width: 200%;

}

.video-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.1);
  display: flex;
  flex-direction: column;
}

.video-preview {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
}

.play-btn {
  width: 45px;
  height: 45px;
  background: var(--navy-700);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--primary-light);
  transition: 0.3s;
}

.play-btn:hover {
  transform: scale(1.1);
  background: var(--primary-light);
}

.video-meta h4 {
  margin: 0 0 5px 0;
  font-size: 1.15rem;
  color: var(--cyan-500);
}

/* DETAILS SECTION UNDER VIDEO */
.video-details {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed var(--bg2);
}

.detail-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy-800);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 5px;
}

.video-details p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* NAVIGATION ARROWS */
.arrow {
  background: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  color: var(--navy-800);
  font-weight: bold;
  font-size: 1.2rem;
  transition: 0.3s;
  flex-shrink: 0;
}

.arrow:hover {
  background: var(--navy-700);
  color: var(--white);
}

.faq-section {
  padding: 100px 20px;
  background: var(--white);
  font-family: 'Outfit', sans-serif;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: -5%;
}

/* LEFT SIDEBAR */
.faq-sidebar {
  flex: 1;
  min-width: 280px;
}

.illustration-box {
  background: linear-gradient(135deg, var(--bg1) 0%, var(--bg2) 100%);
  border-radius: 30px;
  padding: 50px 30px;
  text-align: center;
  border: 1px solid rgba(99, 102, 241, 0.1);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.05);
}

.q-icon-circle {
  width: 80px;
  height: 80px;
  background: transparent;
  border: 4px solid var(--navy-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy-800);
}

.illustration-box h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy-800);
  margin-bottom: 15px;
}

.illustration-box p {
  font-size: 0.95rem;
  color: var(--navy-700);
  line-height: 1.5;
  font-weight: 500;
}

/* RIGHT ACCORDION */
.faq-content {
  flex: 2.5;
}

.faq-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 40px;
  letter-spacing: -1px;
}

.faq-item {
  background: #f4f7ff;
  border-radius: 18px;
  margin-bottom: 12px;
  transition: 0.3s all ease;
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--cyan-500);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.answer-inner {
  padding: 0 30px 25px 30px;
  color: #556080;
  line-height: 1.6;
}

/* ACTIVE STATES */
.faq-item.active {
  background: var(--white);
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.1);
  transform: scale(1.02);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--navy-700);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
    text-align: center;
  }

  .faq-question {
    padding: 20px;
  }
}

.interaction-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg1) 100%);
  font-family: 'Outfit', sans-serif;
}

.interaction-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

/* BULLETIN BOARD */
.bulletin-board {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid rgba(99, 102, 241, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.bulletin-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.live-dot {
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

.news-item {
  padding: 15px 0;
  border-bottom: 1px solid var(--bg1);
}

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

.news-tag {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--navy-700);
  text-transform: uppercase;
  background: var(--bg1);
  padding: 4px 10px;
  border-radius: 50px;
}

.news-item h4 {
  margin: 10px 0 5px 0;
  font-size: 1rem;
  color: var(--navy-900);
}

.news-item p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}

/* ENROLLMENT FORM */
.enroll-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 45px;
  box-shadow: 0 30px 60px rgba(99, 102, 241, 0.1);
  border: 1px solid var(--cyan-300);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--navy-800);
}

.form-input,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-family: inherit;
  font-size: 0.95rem;
  transition: 0.3s;
  box-sizing: border-box;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.selection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--navy-700);
  color: white;
  border: none;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .interaction-container {
    grid-template-columns: 1fr;
  }
}

.gallery-section {
  padding: 80px 20px;
  background: var(--white);
  font-family: 'Outfit', sans-serif;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}


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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--bg1);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}


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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 45, 169, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.overlay-text {
  color: white;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .overlay-text {
  transform: translateY(0);
}

.overlay-text h4 {
  margin: 0;
  font-size: 1.1rem;
}

.overlay-text p {
  margin: 5px 0 0;
  font-size: 0.85rem;
  opacity: 0.9;
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

:root {
  --navy-900: #061b2f;
  --navy-800: #0a2a45;
  --navy-700: #0e3a5c;
  --cyan-500: #19c5ff;
  --cyan-300: #6fe3ff;
  --footer-gradient: linear-gradient(180deg, var(--navy-900) 0%, #030d17 100%);
}

footer {
  padding: 80px 8% 40px;
  background: var(--footer-gradient);
  color: #e2e8f0;
  font-family: 'Outfit', sans-serif;
  border-top: 1px solid rgba(25, 197, 255, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}

.footer-column h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.footer-column h3 span {
  color: var(--cyan-500);
}

.footer-description {
  line-height: 1.7;
  font-size: 0.95rem;
  color: #94a3b8;
  max-width: 360px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--cyan-500);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a svg {
  width: 20px;
  height: 20px;
}

.social-links a:hover {
  background: var(--cyan-500);
  color: var(--navy-900);
  border-color: var(--cyan-500);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(25, 197, 255, 0.2);
}

.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #64748b;
}

@media (max-width: 768px) {
  footer {
    padding: 40px 20px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }

  .footer-description {
    max-width: none;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .social-links {
margin-top: 24px;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .mini-form {
    flex-direction: column;
    gap: 12px;
  }

  .mini-form input,
  .mini-form button {
    width: 100%;
  }
}

.mini-form {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.mini-form input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #e2e8f0;
  font-family: inherit;
}

.mini-form input::placeholder {
  color: #64748b;
}

.mini-form button {
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  background: var(--cyan-500);
  color: var(--navy-900);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mini-form button:hover {
  background: var(--cyan-300);
}

html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media screen and (max-width: 768px) {
   
    .hero {
        display: flex !important;
        flex-direction: column !important;
        padding: 100px 20px 40px !important;
        height: auto !important;
        min-height: 100vh !important;
        text-align: center !important;
    }

    .hero-content {
        max-width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        position: relative;
        z-index: 10; 
    }

    h1 {
        font-size: clamp(28px, 8vw, 42px) !important;
        line-height: 1.2 !important;
    }

    
    .hero-image {
        position: relative !important; 
        right: auto !important;
        bottom: auto !important;
        margin: 60px auto 0 !important; 
        width: 100% !important;
        max-width: 80vw !important; 
        display: block !important;
        order: 2 !important; 
    }

    .hero-image img {
        width: 100% !important;
        height: auto !important;
        transform: none !important; 
    }

   
    .navbar {
        padding: 0 20px !important;
    }

    .logo {
        font-size: 1rem !important;
        white-space: nowrap !important;
    }

   
    .hamburger {
        display: flex !important;
    }

    .nav-links {
        position: fixed !important;
        top: 76px !important;
        left: 0 !important;
        width: 100% !important;
        height: calc(100vh - 76px) !important;
        background: white !important;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out !important;
        display: none !important;
    }

    .nav-links.active {
        display: flex !important;
        transform: translateX(0) !important;
        flex-direction: column !important;
        gap: 20px !important;
        padding: 30px 20px !important;
        background: linear-gradient(135deg, var(--navy-900), var(--navy-800)) !important;
    }

    .nav-links.active a {
        padding: 15px 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        font-size: 18px !important;
        font-weight: 600 !important;
    }

    .nav-links.active a:last-child {
        border-bottom: none !important;
    }

   
    .hex-row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
    }
}

@media screen and (max-width: 768px) {
    .classroom-section {
        padding: 40px 15px !important;
        overflow: hidden !important;
    }


    .video-viewport {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch; 
        scroll-snap-type: x mandatory; 
        padding-bottom: 20px;
    }

    .video-track {
        display: flex !important;
        width: max-content !important;
        gap: 15px !important;
        grid-template-columns: none !important; 
    }

    .video-card {
        width: 80vw !important; 
        max-width: 320px !important;
        flex-shrink: 0 !important;
        scroll-snap-align: center; 
    }

    
    .slider-wrapper .arrow {
        display: none !important;
    }
}

