/* =========================================
   BRAND COLOR SYSTEM (FROM LOGO)
========================================= */
:root {
  --brand-primary: #2DB4FF;   /* Logo blue */
  --brand-secondary: #CFCFCF; /* Logo grey */
  --brand-dark: #000000;

  --bg-light: #F8FAFC;

  --heading-dark: #0F172A;
  --text-body: #475569;
  --text-muted: #64748B;

  --border-light: rgba(15, 23, 42, 0.08);
  --border-accent: rgba(45, 180, 255, 0.15);
}


/* =================================================
   GLOBAL RESET & BASE
================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background: #f8fafc;
  color: #0f172a;
  
}
/* Offset page for fixed header height */
body {
  padding-top: 80px; /* adjust if your header height differs */
}

/* Remove browser defaults */
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* =================================================
   GLOBAL TYPOGRAPHY SYSTEM
================================================= */
h1 {
  font-size: 56px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 24px;
}

h2 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin-bottom: 20px;
}

h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 12px;
}

h4 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 10px;
}

p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 16px;
}

.subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #64748b;
}

.center {
  text-align: center;
}

/* =================================================
   LAYOUT
================================================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
}

.light-bg {
  background: #ffffff;
  padding: 110px 0;
}

/* =================================================
   ENTRY OFFER MARQUEE
================================================= */
.entry-marquee {
  height: 60px;
  background: var(--brand-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: 25px;
}

.marquee-track {
  padding-left: 100%;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.entry-marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* =================================================
   HEADER
================================================= */
.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

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

.logo {
  font-weight: 700;
}

.menu a {
  margin: 0 12px;
  position: relative;
  font-size: 16px;
}

.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #2DB4FF;
  transition: width 0.3s ease;
}

.menu a:hover::after,
.menu a.active::after {
  width: 100%;
}

.menu a.active {
  color: #2DB4FF;
  font-weight: 600;
}

/* =================================================
   BUTTON SYSTEM (GLOBAL)
================================================= */
.btn {
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn.primary {
  background: #2DB4FF;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(59, 94, 234, 0.25);
}

.btn.primary:hover {
  background: #2DB4FF;
  transform: translateY(-1px);
}

.btn.outline {
  background: transparent;
  color: #2DB4FF;
  border: 2px solid #2DB4FF;
}

.btn.outline:hover {
  background: rgba(59, 94, 234, 0.05);
  transform: translateY(-1px);
}

.btn.white {
  background: #ffffff;
  color: #2DB4FF;
}

/* =================================================
   HERO SECTION
================================================= */
.hero {
  padding: 120px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 20px;
}

/* =================================================
   WHY US CARDS
================================================= */
.card-grid {
  margin-top: 40px;
  display: grid;
  /* show two columns per row on desktop */
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 28px;
}

/* Responsive: stack to single column on smaller screens */
@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 44px;
  margin-bottom: 18px;
}

/* Card inner layout for image + content */
.card-inner {
  display: grid;
  /* image on top, content below for a landscape banner feel */
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

/* Make card a column flex container so CTA can be pinned to bottom */
.card {
  display: flex;
  flex-direction: column;
}

.card-inner {
  /* allow inner content to grow and push CTA down */
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.card-body {
  display: flex;
  flex-direction: column;
}

/* The final div inside .card-body contains the CTA; push it to bottom */
.card-body > div:last-child {
  margin-top: auto;
}

.card-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.card-image {
  width: 90%; /* image uses up to 90% of card width */
  max-width: 900px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  aspect-ratio: 16/9;
}

.card-body {
  /* keep text flow inside the card body */
}

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

  .card-image {
    width: 100%;
    height: auto;
  }
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.card.highlight {
  border: 2px solid #2DB4FF;
}

/* =================================================
   COURSES GRID (WITH DESCRIPTION + IMAGE)
================================================= */
.course-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.course-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  height: 100%;
  flex-direction: column;
  display: flex;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.1);
}

/* Course image */
.course-image {
  /* reduced height to make course cards more compact */
  height: 120px;
  background: linear-gradient(135deg, #2DB4FF, #2DB4FF);
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-image img {
  width: 64px;
}

/* Course content */
.course-content {
  /* make content take available vertical space so CTA can be pinned to bottom
     reduce top padding to remove extra gap between image and tags */
  padding: 12px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-content h3 {
  margin-bottom: 10px;
}

.course-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* tighten spacing for the tag row immediately under the image */
.course-tags {
  margin-top: 0;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
}

/* =================================================
   CTA SECTION
================================================= */
.cta {
  background: #2DB4FF;
  color: #ffffff;
  text-align: center;
  padding: 120px 20px;
}

.cta h2 {
  margin-bottom: 16px;
}

.cta p {
  font-size: 20px;
  margin-bottom: 36px;
}

/* =================================================
   FOOTER
================================================= */
.footer {
  background: #020617;
  color: white;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer h3,
.footer h4 {
  margin-bottom: 16px;
}

.footer p {
  font-size: 15px;
  line-height: 1.6;
}

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

.footer-list a {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-list a:hover {
  transform: translateX(6px);
  opacity: 0.9;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  /* opacity: 0.7; */
}

/* =================================================
   MODAL
================================================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  width: 90%;
  max-width: 420px;
}

.close {
  float: right;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}
/* =====================================
   VISIBILITY FIX ONLY – CTA & FOOTER
   (NO LAYOUT / NO SPACING CHANGES)
===================================== */

/* CTA text visibility */
.cta,
.cta * {
  color: #ffffff;
}

.cta p {
  color: rgba(255, 255, 255, 0.85);
}

/* Footer text visibility */
.footer,
.footer * {
  /* color: #94a3b8; */
  color: #dce3ec;
}

.footer h3,
.footer h4 {
  color: #e2e8f0;
}
.learning-approach-section {
  padding: 80px 0;
  background: #f8fafc;
}

.learning-approach-section .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.learning-approach-section .section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
  font-size: 18px;
  line-height: 1.6;
  color: #475569;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.approach-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px 24px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.approach-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.approach-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.approach-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
}
.learning-approach {
  padding: 80px 0;
  background: #ffffff;
}

.learning-approach-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.learning-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.learning-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 24px;
}

.learning-points {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.learning-points li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #334155;
}

.learning-points li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 2px;
  color: #2DB4FF;
  font-size: 20px;
}

.learning-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .learning-approach-grid {
    grid-template-columns: 1fr;
  }

  .learning-image {
    order: -1;
  }
}
/* ================================
   SCROLL ANIMATIONS
================================ */

/* Initial hidden state */
/* .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
   will-change: transform, opacity;
} */


/* When visible */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* CTA: smooth fade + slide-up animation (overrides generic reveal) */
.cta.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.995);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.2,.9,.2,1);
  will-change: transform, opacity;
}

.cta.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Slight stagger support (optional) */
.reveal.delay-1 {
  transition-delay: 0.15s;
}

.reveal.delay-2 {
  transition-delay: 0.3s;
}

.reveal.delay-3 {
  transition-delay: 0.45s;
}
/* ================================
   SCROLL REVEAL (BOTTOM → TOP)
================================ */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* stagger helpers */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
/* ================================
   CARD HOVER MICRO-INTERACTIONS
================================ */
.course-card,
.why-card,
.approach-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover,
.why-card:hover,
.approach-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* inner content lift */
.course-card h3,
.course-card p {
  transition: transform 0.25s ease;
}

.course-card:hover h3 {
  transform: translateY(-2px);
}

.course-card:hover p {
  transform: translateY(-1px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat h2 {
  font-size: 44px;
  margin-bottom: 6px;
}
/* ================================
   HEADER SCROLL EFFECT
================================ */
.header {
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}
/* ================================
   COURSE IMAGE GRID FIX
================================ */

/* Course card image wrapper */
.course-card img {
  width: 100%;
  height: 180px;              /* FIXED height for uniform grid */
  object-fit: cover;          /* Crop neatly, no distortion */
  border-radius: 12px;
  margin-bottom: 16px;
  display: block;
}

/* Ensure course card content aligns */
.course-card {
  display: flex;
  flex-direction: column;
}
.course-card img {
  aspect-ratio: 16 / 9; /* locks layout before image loads */
}
/* ================================
   COURSE CARD OVERLAY CTA
================================ */
.course-card {
  position: relative;
  overflow: hidden;
}

/* Overlay layer */
.course-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-top: auto;
}

/* Show on hover */
.course-card:hover .course-overlay {
  opacity: 1;
}

/* Slight blur for premium feel */
.course-card:hover img {
  filter: blur(2px) brightness(0.7);
  transition: filter 0.3s ease;
}
/* ================================
   MOBILE IMAGE RATIO OPTIMIZATION
================================ */
@media (max-width: 768px) {
  .course-card img {
    height: 160px;        /* slightly shorter */
    aspect-ratio: 4 / 3;  /* better for mobile */
  }
}
/* ================================
   CTA ARROW ANIMATION
================================ */
.cta-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cta-arrow .arrow {
  transition: transform 0.25s ease;
}

.cta-arrow:hover .arrow {
  transform: translateX(6px);
}
/* ================================
   COURSE TAGS
================================ */
.course-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: #e0e7ff;
  color: #3730a3;
}

/* Variants */
.tag.beginner {
  background: #dcfce7;
  color: #166534;
}

.tag.advanced {
  background: #fee2e2;
  color: #991b1b;
}

.tag.job {
  background: #e0f2fe;
  color: #075985;
}
.tag.career {
  background: #e0f2fe;
  color: #028707;
}
.tag.creative {
  background: #e0f2fe;
  color: #7203cc;
}
.tag.industry {
  background: #e0f2fe;
  color: #1223bf;
}
.tag.intermediate {
  background: #e0f2fe;
  color: #07a0f1;
}
/* ================================
   IMAGE SKELETON LOADER
================================ */
.image-skeleton {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(
    100deg,
    #e5e7eb 40%,
    #f3f4f6 50%,
    #e5e7eb 60%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}

.image-skeleton img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Remove skeleton when image loads */
.image-skeleton img.loaded {
  opacity: 1;
}

@keyframes shimmer {
  100% {
    background-position: -200% 0;
  }
}
/* ================================
   BACK TO TOP BUTTON
================================ */
#backToTop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #2DB4FF;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  transform: translateY(-4px);
}

/* Mobile adjust */
@media (max-width: 768px) {
  #backToTop {
    right: 16px;
    bottom: 16px;
  }
}
/* ================================
   ACTIVE NAV LINK
================================ */
.nav a.active {
  color: #2DB4FF;
  font-weight: 600;
  position: relative;
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #2DB4FF;
}
.course-content {
  /* keep content as a column and allow it to grow so CTA can be anchored */
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-overlay {
  margin-top: auto;     /* pushes CTA to bottom */
}

/* .course-cta {
  margin-top: auto;  */
  /* PUSHES CTA TO BOTTOM */
  /* padding-top: 16px;
} */
.course-card:hover .course-cta .btn {
  transform: translateY(-2px);
}
/* ================================
   COURSE CTA POSITION TUNING
================================ */

.course-cta {
  /* pin CTA to the bottom of the card and nudge it slightly upward */
  margin-top: auto;
  padding-top: 6px;
  padding-bottom: 6px;
  display: flex;
  justify-content: center;
}

.course-cta .btn {
  min-width: 160px;          /* consistent width across cards */
  justify-content: center;
  margin-bottom: 8px;        /* ensure 8px space from card bottom */
}

/* Mobile adjustments: make cards more compact and ensure CTA remains close */
@media (max-width: 600px) {
  .course-image {
    height: 100px;
  }

  .course-content {
    padding: 12px 14px;
  }

  .course-content p {
    margin-bottom: 6px;
  }

  .course-cta {
    margin-top: auto;
    padding-top: 6px;
    padding-bottom: 8px;
  }

  .course-cta .btn {
    min-width: 120px;
    padding: 8px 12px;
  }
}
/* =========================================
   SECTION SPACING REFINEMENT (GLOBAL)
   Purpose: Remove excess vertical gaps
========================================= */

/* HERO → WHY US */
.hero {
  padding-bottom: 60px; /* reduced from large default */
}

/* WHY US */
#why,
.why-section {
  padding-top: 60px;
  padding-bottom: 70px;
}

/* WHY US → COURSES */
#courses,
.courses-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

/* COURSES → LEARNING APPROACH */
.learning-approach,
.learning-approach-section {
  padding-top: 70px;
  padding-bottom: 80px;
}

/* LEARNING APPROACH → CTA */
.cta {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* GENERAL SECTION SAFETY (desktop) */
.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* =========================================
   MOBILE SPACING OPTIMIZATION
========================================= */
@media (max-width: 768px) {
  .hero {
    padding-bottom: 40px;
  }

  .section,
  #why,
  .why-section,
  #courses,
  .courses-section,
  .learning-approach,
  .learning-approach-section,
  .cta {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/* =====================================================
   FINAL UI POLISH (MOBILE HERO • FOOTER GAP • DIVIDERS)
===================================================== */

/* 1️⃣ MOBILE HERO TEXT SPACING */
@media (max-width: 768px) {
  .hero {
    padding-top: 90px;     /* reduce top bulk */
    padding-bottom: 40px; /* tighter flow to next section */
  }

  .hero h1 {
    font-size: 34px;       /* better mobile scale */
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 22px;
  }

  .hero-actions {
    gap: 14px;
  }
}

/* 2️⃣ FOOTER TOP GAP REDUCTION */
.footer {
  padding-top: 56px;   /* reduced from larger default */
}

/* tighten footer column spacing */
.footer-grid {
  row-gap: 28px;
}

/* 3️⃣ SUBTLE SECTION DIVIDERS (OPTIONAL BUT PREMIUM) */
/* Apply divider to sections that need separation */
.section-divider {
  position: relative;
}

.section-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(15, 23, 42, 0.08),
    transparent
  );
}

/* Mobile divider width tweak */
@media (max-width: 768px) {
  .section-divider::after {
    width: 90%;
  }
}
/* ================================
   STICKY HEADER (ALWAYS VISIBLE)
================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s ease;
}

/* Elevation on scroll */
.header.scrolled {
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}
/* ================================
   FIXED HEADER (ALWAYS VISIBLE)
================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s ease;
}

/* Elevation when scrolling */
.header.scrolled {
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}
/* ================================
   HEADER ACTIVE LINK (RESTORED)
================================ */

/* Default nav link */
.header .nav a {
  position: relative;
  transition: color 0.25s ease;
}

/* Active state */
.header .nav a.active {
  color: #2DB4FF;
  font-weight: 600;
}

/* Active underline indicator */
.header .nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #2DB4FF;
  border-radius: 2px;
}
/* ================================
   HEADER LOGO
================================ */
.logo img {
  height: 125px;          /* adjust if needed */
  width: auto;
  display: block;
}
/* ================================
   FOOTER LOGO
================================ */
.footer-brand img {
  height: 44px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: white;
  max-width: 260px;
}
@media (max-width: 768px) {
  .logo img {
    height: 36px;
  }

  .footer-brand img {
    height: 40px;
  }
}
/* ================================
   LEARNING APPROACH BULLET FIX
================================ */

.learning-approach-section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}

.learning-approach-section ul li {
  position: relative;
  padding-left: 28px;       /* space for custom bullet */
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 16px;
  color: #334155;
}

/* Custom bullet */
.learning-approach-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;                /* aligns dot vertically with text */
  width: 8px;
  height: 8px;
  background-color: #2DB4FF;
  border-radius: 50%;
}
/* ================================
   STATS / TRUST SECTION
================================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.stat-card {
  text-align: center;
}

.stat-card h3 {
  font-size: 36px;
  font-weight: 700;
  color: #2DB4FF;
  margin-bottom: 6px;
}

.stat-card p {
  font-size: 15px;
  color: #555;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ================================
   STAGGERED BULLET ANIMATION
================================ */

.learning-approach-section ul li {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.learning-approach-section ul li.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ================================
   LEARNING ILLUSTRATION
================================ */

.learning-illustration {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  background: #f5f7ff;
}
/* ================================
   MODAL (METHODOLOGY)
================================ */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  max-width: 520px;
  width: 90%;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}
/* ================================
   CTA MICRO INTERACTIONS
================================ */

.btn-primary {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
}

/* Arrow animation inside CTA */
.btn-primary .arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.25s ease;
}

.btn-primary:hover .arrow {
  transform: translateX(6px);
}
.btn-outline {
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.08);
  transform: translateY(-1px);
}
.cta-section p {
  opacity: 0.9;
  max-width: 620px;
  margin: 12px auto 28px;
  line-height: 1.7;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

footer a:hover {
  color: #2DB4FF;
  transform: translateX(4px);
}
.footer-trust {
  margin-top: 12px;
  font-size: 14px;
  opacity: 0.75;
}
.footer-contact p {
  line-height: 1.8;
  opacity: 0.85;
}
.footer-bottom {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  opacity: 0.7;
}
 .course-image-wrapper {
  position: relative;
  overflow: hidden;
}

.course-image {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.course-image.loaded {
  opacity: 1;
}

.skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #f1f5f9 25%,
    #e2e8f0 37%,
    #f1f5f9 63%
  );
  animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

/* ==============================
   COURSE PAGE MODAL TWEAKS
   Ensure large course content can scroll inside the modal
   and prevent background scrolling while modal is open.
============================== */

body.modal-open {
  overflow: hidden;
}

.course-page-modal {
  padding: 24px; /* spacing on small screens */
}

.course-page-modal .modal-content {
  max-width: 980px;
  width: calc(100% - 48px);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  box-shadow: 0 20px 60px rgba(2,6,23,0.45);
}

.course-page-modal .modal-body {
  padding: 8px 0 24px;
}

/* Programs-style layout inside the course modal */
.course-page-modal .modal-content {
  max-width: 1100px;
  padding: 36px;
}

.course-page-modal .card {
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(2,6,23,0.06);
  margin-bottom: 16px;
}

.course-page-modal .card-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr; /* image left, content right */
  gap: 28px;
  align-items: start;
}

.course-page-modal .card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

.course-page-modal .card-image-wrapper {
  width: 100%;
}

.course-page-modal .card-body {
  display: flex;
  flex-direction: column;
}

.course-page-modal .btn.primary {
  align-self: flex-start;
  padding: 10px 20px;
}

@media (max-width: 900px) {
  .course-page-modal .card-inner {
    grid-template-columns: 1fr;
  }

  .course-page-modal .card-image {
    height: 160px;
    width: 100%;
  }
}

/* On very small screens make modal take most of viewport */
@media (max-width: 480px) {
  .course-page-modal .modal-content {
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 64px);
    border-radius: 12px;
  }
}

/* Page-specific helpers moved from inline styles in courses.html */
.subtitle.page-subtitle {
  max-width: 820px;
  margin-top: 10px;
  color: #475569;
}

.subtitle.cta-subtitle {
  max-width: 760px;
  margin: 8px auto 0;
  color: #fff;
}

.advisor-cta {
  margin-top: 16px;
  text-align: center;
}

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

.faq-item {
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 16px;
}

.faq-icon {
  font-size: 18px;
}
.form-card {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(2,6,23,0.06);
}

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

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(15,23,42,0.12);
  font-size: 14px;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand-primary);
}

.form-note {
  font-size: 12px;
  color: #64748b;
  margin-top: 10px;
}
/* =========================================
   COURSE DETAIL PAGE (Full Stack & others)
========================================= */

/* Page container alignment */
.two-column {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
}

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

/* Info card (right column in overview) */
.info-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.06);
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 14px;
}

.info-card li:last-child {
  border-bottom: none;
}

/* Feature / learning grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.feature-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(2, 6, 23, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.08);
}

.feature-card h4 {
  margin-bottom: 8px;
}

/* Program structure timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.timeline-item {
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  border-left: 4px solid var(--brand-primary);
  box-shadow: 0 8px 22px rgba(2, 6, 23, 0.05);
}

.timeline-item h4 {
  margin-bottom: 6px;
}

/* Career outcomes */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .outcome-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.outcome-card {
  background: #ffffff;
  padding: 16px;
  text-align: center;
  border-radius: 12px;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.05);
}

/* Course lead form */
.form-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.06);
}

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

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-size: 14px;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand-primary);
}

/* FAQ spacing on course pages */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Minor hero tightening for course pages */
body[data-page^="course"] .hero {
  padding-bottom: 60px;
}
/* =========================================
   ICON LIST (Course pages, About, Forms)
========================================= */

.icon-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.icon-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #334155;
  line-height: 1.6;
}

/* Custom bullet icon */
.icon-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--brand-primary);
  font-size: 14px;
  font-weight: 600;
}
/* LEARNING TIMELINE */
.learning-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.timeline-step {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 20px;
  width: 220px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(2,6,23,0.06);
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.6s ease;
}

.timeline-step.visible {
  transform: translateY(0);
  opacity: 1;
}

.timeline-circle {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.timeline-arrow {
  font-size: 28px;
  color: #94a3b8;
  margin-bottom: 12px;
}

/* Mobile layout */
@media (max-width: 900px) {
  .learning-timeline {
    flex-direction: column;
  }

  .timeline-arrow {
    transform: rotate(90deg);
  }
}
/* Careers Page Enhancements */

.career-hero {
  background: linear-gradient(180deg,
    rgba(59,130,246,0.08),
    rgba(255,255,255,0));
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Highlight cards */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.highlight-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 14px 40px rgba(2,6,23,0.08);
}

/* Icon list */
.icon-list-grid {
  display: grid;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.icon-list-item {
  display: flex;
  gap: 18px;
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(2,6,23,0.06);
}

.icon-list-item .icon {
  font-size: 28px;
}

/* Expectations */
.expectation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.expectation-card {
  background: linear-gradient(180deg,
    rgba(59,130,246,0.08),
    rgba(255,255,255,1));
  border-radius: 14px;
  padding: 24px;
}

/* Apply box */
.apply-box {
  background: linear-gradient(180deg,
    var(--brand-primary),
    #2DB4FF);
  color: #fff;
  padding: 36px;
  border-radius: 20px;
  text-align: center;
}

.apply-box h2,
.apply-box p {
  color: #fff;
}

.apply-contact p {
  margin-top: 10px;
  font-size: 16px;
}
/* Trainer Profiles */

.trainer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.trainer-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 40px rgba(2,6,23,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.trainer-avatar {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(180deg,
    var(--brand-primary),
    #2DB4FF);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trainer-meta {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 8px;
}

.trainer-skills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

.trainer-skills span {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(59,130,246,0.08);
  color: var(--brand-primary);
}
/* Trainer CTA (Course Pages) */

.trainer-cta-box {
  background: linear-gradient(180deg,
    rgba(59,130,246,0.08),
    #ffffff);
  padding: 36px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 14px 40px rgba(2,6,23,0.08);
}

.trainer-mini-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
}

.trainer-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  color: #475569;
}

.trainer-mini span {
  font-size: 26px;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 72px;
    padding-bottom: 36px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.25;
  }

  .page-subtitle {
    font-size: 15px;
    line-height: 1.6;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 72px;
    padding-bottom: 36px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.25;
  }

  .page-subtitle {
    font-size: 15px;
    line-height: 1.6;
  }
}
@media (max-width: 768px) {
  .btn {
    min-height: 46px;
    padding: 12px 18px;
    font-size: 15px;
  }
}
/* Contact Page */

.contact-option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

/* .contact-card {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 14px 40px rgba(2,6,23,0.08);
} */

.contact-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-form textarea {
  width: 100%;
  margin-top: 12px;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.location-box {
  max-width: 520px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(59,130,246,0.08),
    #ffffff
  );
  text-align: center;
}
.google-form-wrapper {
  background: #fff;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 14px 40px rgba(2,6,23,0.08);
}
.google-form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.08);
  overflow: hidden;
}

.google-form-iframe {
  width: 100%;
  height: 760px; /* stable */
  border: none;
}
.contact-card {
  border-radius: 18px;
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.12);
}

.contact-card .icon {
  font-size: 26px;
  color: var(--brand-primary);
  margin-bottom: 10px;
}
.location-card {
  margin: 24px auto 0;
  max-width: 420px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(2,6,23,0.06);
}
.cta {
  background: linear-gradient(
    135deg,
    var(--brand-primary),
    var(--brand-secondary)
  );
}

.cta .btn.primary {
  background: #ffffff;
  color: var(--brand-primary);
}
.section {
  padding: 80px 0;
}

.section.small {
  padding: 56px 0;
}
/* CONTACT FORM LAYOUT */
.contact-form-section {
  background: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT CONTENT */
.contact-info h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.contact-info .subtitle {
  color: #475569;
  margin-bottom: 20px;
  line-height: 1.7;
}

.contact-points {
  list-style: none;
  padding: 0;
}

.contact-points li {
  margin-bottom: 10px;
  color: #334155;
  font-weight: 500;
}

/* FORM BOX */
.contact-form-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(15,23,42,0.08);
}

/* GOOGLE FORM */
.google-form-iframe {
  width: 100%;
  height: 1150px;
  border: none;
  border-radius: 12px;
}

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

  .google-form-iframe {
    height: 1350px;
  }
}
.map-section {
  background: #ffffff;
}

.map-box {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15,23,42,0.08);
}

.map-box iframe {
  width: 100%;
  height: 420px;
  border: none;
}

@media (max-width: 768px) {
  .map-box iframe {
    height: 300px;
  }
}
.contact-highlights {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.highlight-item {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(15,23,42,0.06);
}

.highlight-item strong {
  display: block;
  font-size: 14px;
  color: var(--brand-primary);
  margin-bottom: 4px;
}

.highlight-item span {
  color: #334155;
  font-size: 15px;
}
/* Career Outcomes */
.career-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.career-role {
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(2,6,23,0.06);
  font-weight: 500;
  color: #0f172a;
}

.career-note {
  margin-top: 20px;
  font-size: 13px;
  color: #64748b;
  text-align: center;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #ffffff;
  padding: 24px 28px;
  border-radius: 12px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  transform: scale(0.9);
  animation: scaleIn 0.3s ease forwards;
}

.modal-box h3 {
  margin-bottom: 8px;
  color: #1a1a1a;
}

.modal-box p {
  color: #555;
  margin-bottom: 16px;
}

.modal-box button {
  background: #2DB4FF;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
}

@keyframes scaleIn {
  to {
    transform: scale(1);
  }
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal-overlay.hide {
  opacity: 0;
  visibility: hidden;
}
body.modal-open {
  overflow: hidden;
}
