/* ============================================================
    GLOBAL STYLES
============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Gilroy', sans-serif;
  color: aliceblue;
}

html,
body {
  height: 100%;
  width: 100%;
  background-color: #0C0C0C;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ============================================================
   ✍️ FONT IMPORTS
============================================================ */
@font-face {
  font-family: 'monument';
  src: url("MONUMENT/MonumentExtended-Ultrabold.otf");
}

@font-face {
  font-family: 'hellb';
  src: url("HELVATICA/HelveticaNowDisplay-ExtraBold_Qqt_sGOvuc_Z0ZOJEQucI.woff2");
}

/* ============================================================
    HEADER & NAVBAR
============================================================ */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.5s ease-in-out;
}

nav {
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10vw;
  background-color: #0C0C0C;
  border-bottom: 1px solid transparent;
  transition: all 0.5s ease-in-out;
}

/* Nav scroll effect */
body:has(.content:in-view) nav {
  background: rgba(15, 15, 15, 0.65);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 150, 0, 0.2);
}

/* Logo */
.nav1 a {
  font-size: 2.2em;
  font-family: 'monument', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(90deg, #ff0000, #ff6a00, #ffd700, #ff0000);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fireFlow 5s linear infinite, pulseScale 3s ease-in-out infinite;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.nav1 a:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px #ff8a00);
}

/* Navigation links */
.nav2 {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav2 a {
  position: relative;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ccc;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.nav2 a:hover {
  background: linear-gradient(90deg, #ff0000, #ff6a00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateY(-2px);
}

.nav2 a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #ff0000, #ff6a00, #ffd700);
  transition: width 0.4s ease;
}

.nav2 a:hover::after {
  width: 100%;
}

/* Hamburger menu (mobile) */
.menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1001;
}

#menu-toggle {
  display: none;
}

/* ============================================================
  HERO SECTION
============================================================ */
.hero {
  height: calc(100vh - 10vh);
  padding: 10vh 10vw 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  width: 100%;
  max-width: 1400px;
}

.hero-text {
  flex: 1 1 400px;
  text-align: left;
  color: #fff;
  z-index: 2;
}

.hero-text h1 {
  font-family: 'monument', sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text h1 span {
  background: linear-gradient(90deg, #ff0000, #ff6a00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fireFlow 5s linear infinite;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ccc;
}

/* Hero buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
  height: 1vw;
}

/* Primary CTA Button */
.btn-primary {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.8rem 2.2rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: linear-gradient(270deg, #ff6a00, #ffd700, #ff4500);
  background-size: 300% 300%;
  animation: gradientShift 6s ease infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #ff6a00, 0 0 25px #ffd700;
}



/* ============================================================
   HERO ILLUSTRATION
============================================================ */
.hero-illustration {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 350px;
  position: relative;
  animation: float 6s ease-in-out infinite;
  transition: transform 0.5s ease;
}

.ai-core {
  width: 250px;
  height: 250px;
  animation: rotateSVG 20s linear infinite;
  transition: transform 0.5s ease;
}

.connections {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  animation: pulseLines 3s ease-in-out infinite alternate;
}

/* Floating Coding Icons */
.code-icons {
  position: absolute;
  width: 100%;
  height: 100%;
}

.code-icons .icon {
  position: absolute;
  padding: 0.5rem 1rem;
  background: linear-gradient(90deg, #ff0000, #ff6a00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-family: 'monument', sans-serif;
  font-size: 1rem;
  opacity: 0.9;
  animation: floatIcons 6s ease-in-out infinite;
  transition: transform 0.5s ease;
}

/* Icon Positions */
.icon.html {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.icon .css {
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}

.icon.js {
  top: 50%;
  left: 5%;
  animation-delay: 2s;
}

.icon.python {
  bottom: 20%;
  left: 25%;
  animation-delay: 3s;
}

.icon.java {
  bottom: 15%;
  right: 20%;
  animation-delay: 4s;
}

.icon.dsa {
  top: 40%;
  right: 30%;
  animation-delay: 5s;
}

.icon.ai {
  bottom: 50%;
  left: 50%;
  animation-delay: 6s;
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fireFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulseScale {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
}

/* Glow pulsation */
@keyframes glowPulseUnique {

  0%,
  100% {
    box-shadow: 0 0 15px #ff6a00, 0 0 30px #ff8a00, 0 0 45px #ffd700;
    opacity: 0.7;
  }

  50% {
    box-shadow: 0 0 30px #ff6a00, 0 0 60px #ff8a00, 0 0 90px #ffd700;
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotateSVG {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.05);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes pulseLines {
  0% {
    stroke-opacity: 0.3;
  }

  50% {
    stroke-opacity: 1;
  }

  100% {
    stroke-opacity: 0.3;
  }
}

@keyframes floatIcons {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(15deg);
  }
}

/* ============================================================
   GLOWING PARTICLES
============================================================ */

.courses .glowing-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

.glowing-particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, #ff6a00, #ffd700, #ff4500);
  box-shadow: 0 0 20px #ff6a00, 0 0 40px #ff8a00, 0 0 60px #ffd700;
  opacity: 0.7;
  animation: floatUnique linear infinite, glowPulseUnique ease-in-out infinite;
}

.courses .glowing-particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, #ff6a00, #ffd700);
  box-shadow: 0 0 15px #ff6a00, 0 0 30px #ff8a00;
  opacity: 0.6;
  width: 8px;
  height: 8px;
  animation: floatUnique 20s linear infinite, glowPulseUnique 2s ease-in-out infinite;
}

/* Particle Variations */
.glowing-particles span:nth-child(1) {
  width: 8px;
  height: 8px;
  top: 10%;
  left: 20%;
  animation-duration: 18s;
  animation-delay: 0s;
}

.glowing-particles span:nth-child(2) {
  width: 12px;
  height: 12px;
  top: 50%;
  left: 80%;
  animation-duration: 22s;
  animation-delay: 1s;
}

.glowing-particles span:nth-child(3) {
  width: 10px;
  height: 10px;
  top: 70%;
  left: 30%;
  animation-duration: 20s;
  animation-delay: 2s;
}

.glowing-particles span:nth-child(4) {
  width: 14px;
  height: 14px;
  top: 20%;
  left: 60%;
  animation-duration: 25s;
  animation-delay: 0.5s;
}

.glowing-particles span:nth-child(5) {
  width: 9px;
  height: 9px;
  top: 40%;
  left: 40%;
  animation-duration: 19s;
  animation-delay: 1.5s;
}

.glowing-particles span:nth-child(6) {
  width: 11px;
  height: 11px;
  top: 80%;
  left: 70%;
  animation-duration: 23s;
  animation-delay: 2.2s;
}

.glowing-particles span:nth-child(7) {
  width: 13px;
  height: 13px;
  top: 60%;
  left: 10%;
  animation-duration: 21s;
  animation-delay: 0.7s;
}

.glowing-particles span:nth-child(8) {
  width: 7px;
  height: 7px;
  top: 30%;
  left: 90%;
  animation-duration: 24s;
  animation-delay: 1.2s;
}

.glowing-particles span:nth-child(9) {
  width: 10px;
  height: 10px;
  top: 75%;
  left: 50%;
  animation-duration: 20s;
  animation-delay: 0.9s;
}

.glowing-particles span:nth-child(10) {
  width: 12px;
  height: 12px;
  top: 15%;
  left: 75%;
  animation-duration: 26s;
  animation-delay: 1.7s;
}

/* ============================================================
   FLOATING & GLOW ANIMATIONS
============================================================ */

/* Floating with random movement paths */
@keyframes floatUnique {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(50px, -30px) rotate(45deg);
  }

  50% {
    transform: translate(-40px, 20px) rotate(90deg);
  }

  75% {
    transform: translate(30px, 40px) rotate(135deg);
  }

  100% {
    transform: translate(0, 0) rotate(180deg);
  }
}


.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(15, 15, 15, 0.6), rgba(15, 15, 15, 0.6));
  z-index: 0;
}

/* ============================================================
   COURSE SECTION
============================================================ */
.courses {
  padding: 4rem 10vw;
  position: relative;
  flex-wrap: wrap;
  /* background-color: green; */
}

.section-header {
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  /* background-color: red; */
}

.section-header h2 {
  font-family: 'monument', sans-serif;
  background: linear-gradient(90deg, #ff0000, #ff6a00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fireFlow 5s linear infinite;
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #ff6a00;
}

.section-header p {
  text-align: center;
  color: #ccc;
  margin: 0.5rem 0 4rem;
  font-size: 1.1rem;
}

.course-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  position: relative;
  /* z-index: 2; */
}

.course-card {
  background: rgba(15, 15, 15, 0.65);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2rem;
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(255, 150, 0, 0.3);
}

.course-icon {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ff0000, #ff6a00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fireFlow 5s linear infinite;
}

.course-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.course-card p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.course-card .btn-primary {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  border-radius: 25px;
  animation: fireFlow 4s linear infinite, glowPulse 2s ease-in-out infinite;
}

/* Course image */
.course-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.course-image img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.course-image:hover img {
  transform: scale(1.05);
}

/* Discount tag */
.discount {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(90deg, #ff0000, #ff6a00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
  font-size: 0.8rem;
  animation: fireFlow 4s linear infinite;
}

/* ============================================================
   SECTION CONTAINERS & CARDS
============================================================ */
.section-container {
  height: 75vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;


}

.card {
  position: relative;
  cursor: pointer;
  perspective: 1000px;
  /*Enable 3D effects*/
  z-index: 1;
  height: 95%;
  padding: 1rem;
  width: 28%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  background-color: #1E222D;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card1,
.card2,
.card3 {
  width: 100%;
  height: 100%;
  border-radius: 2%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
  border: 2px solid #FF7E00;
}

.beg1 {
  height: 50%;
  width: 48%;
  background-color: #8251F0;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: small;
}

.beg2 {
  height: 50%;
  width: 25%;
  background-color: #0C0C0C;
  border-radius: 100px;
  font-size: small;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* BUTTONS */
.card-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 30px;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(90deg, #ff0000, #ff6a00, #ffd700, #ff0000);
  background-size: 300% 300%;
  color: #fff;
  animation: fireFlow 4s linear infinite, glowPulse 2s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-btn:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 20px rgba(255, 200, 0, 0.8),
    0 0 40px rgba(255, 100, 0, 0.7),
    0 0 60px rgba(255, 50, 0, 0.6);
}

/* ============================================================
   CARD BASE STYLING & GLOW
============================================================ */
/* Content stays above decorative layers */
.card>* {
  position: relative;
  z-index: 2;
}

.card:hover::before {
  opacity: 1;
}

/* Shine sweep effect */
.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  transform: skewX(-25deg);
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  transition: left 0.7s ease-in-out, opacity 0.35s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}

.card:hover::after {
  left: 140%;
  opacity: 1;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  }

  50% {
    box-shadow: 0 0 40px rgba(255, 106, 0, 0.6);
  }
}


@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 15px 40px rgba(255, 150, 0, 0.4);

}

.card-img {
  width: 100%;
  height: auto;
  border-bottom: 2px solid #FF7E00;
  transition: transform 0.4s ease;
}

.card:hover .card-img {
  transform: scale(1.05);
}

.badge {
  color: #fff;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;

}

.level,
.lectures {
  display: flex;
  justify-content: space-between;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: bold;
  background-color: #0C0C0C;
  color: #fff;
  opacity: 0.8;
}

.level {

  background-color: #8251F0;
  color: #fff;
  margin-left: 0;
}


.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 0.8rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.card-author {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #ccc;
  opacity: 0.7;
}

.card-desc {
  font-size: 0.9rem;
  color: #ccc;
  opacity: 0.6;
  line-height: 1.4rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.card-action {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0 1rem 0;
}

.card-action2 {
  margin-top: 1.5rem;
}

.card-action3 {
  margin-top: 1.5rem;
}

.section2-header {
  height: 8%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section2-header div {
  position: relative;
  display: inline-block;
  margin-top: 2%;

}

.section2-header h1 {
  font-family: monument, sans-serif;
  font-size: 50px;
  background-image: url(Images/bloomMask\ Large_lvwFbM14_l.jpg);
  background-size: cover;
  background-position: center;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
  z-index: 2;
  margin-top: 7%;
}

.section2-header .bloom {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  filter: blur(50px);
  opacity: 1;
  z-index: 1;
  pointer-events: none;
  /* So it's not clickable */
}

.section3 {
  height: 160vh;
  width: 100%;
  /* background-color: green; */
  padding: 4rem 10vw;
  position: relative;
  overflow: hidden;
}

.card-a {
  margin-top: 2.5rem;

}

/* ============================================================
   STRIKE COURSE SECTION
============================================================ */

.section-strike {
  position: relative;
  padding: 5rem 10vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  z-index: 1;
}

/* Rotating Bloom Background */
@keyframes rotateBackground {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* =============================
   STRIKE CONTAINER LAYOUT
============================= */
.strike-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

/* =============================
   STRIKE IMAGE
============================= */
.strike-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.strike-image .strike-img {
  width: 100%;
  height: 10%;
  max-width: 420px;
  border-radius: 20px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 0 40px rgba(255, 150, 0, 0.2);
}

.strike-image .strike-img:hover {
  transform: rotateY(10deg) rotateX(5deg) scale(1.08);
  box-shadow: 0 0 60px rgba(255, 140, 0, 0.6), 0 0 120px rgba(255, 200, 0, 0.5);
}

/* =============================
   STRIKE INFO
============================= */
.strike-info {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #fff;
}

/* TITLE WITH NEON GLOW */
.strike-title {
  font-family: 'monument', sans-serif;
  font-size: 2.5rem;
  background: linear-gradient(90deg, #ff0000, #ff6a00, #ffd700, #ff4500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fireFlow 5s linear infinite, neonPulse 3s ease-in-out infinite;
}

/* DESCRIPTION */
.strike-desc {
  font-size: 1.1rem;
  line-height: 1.6rem;
  color: #ccc;
  max-width: 600px;
}

/* =============================
   BUTTONS WITH NEON GRADIENT
============================= */
.strike-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.strike-buttons .btn-primary {
  background: linear-gradient(45deg, #ff0000, #ff6a00, #ffd700, #ff4500);
  background-size: 300% 300%;
  padding: 0.8rem 2.2rem;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  animation: fireFlow 4s linear infinite, glowPulse 2s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strike-buttons .btn-primary:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 0 25px #ff6a00, 0 0 60px #ffd700, 0 0 100px #ff4500;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #ff6a00;
  color: #ff6a00;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.strike-buttons .btn-secondary:hover {
  background: #ff6a00;
  color: #0C0C0C;
}

/* =============================
   FEATURES LIST
============================= */
.strike-features {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
  color: #ccc;
}

.strike-features li {
  position: relative;
  padding-left: 2rem;
  line-height: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.strike-features li::before {
  content: "⚡";
  position: absolute;
  left: 0;
}

.strike-features li:hover {
  transform: translateX(5px);
  color: #ffb700;
}

/* =============================
   CLEAN COUNTDOWN (ALIGNED)
============================= */
.countdown-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2rem;
}

.countdown-title {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-grid {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.countdown-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 138, 0, 0.3);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  width: 80px;
  text-align: center;
  transition: all 0.3s ease;
}

.countdown-box:hover {
  background: rgba(255, 138, 0, 0.12);
  transform: translateY(-2px);
  border-color: #ff6a00;
}

.countdown-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffb000;
  font-family: "Poppins", sans-serif;
}

.countdown-label {
  font-size: 0.8rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.countdown-note {
  margin-top: 0.8rem;
  color: #aaa;
  font-size: 0.9rem;
}

.strike-image .strike-img {
  max-width: 350px;
  height: auto;
}

/* ============================
   ABOUT STRIKE — CLEAN VERSION
============================ */

.about-strike {
  position: relative;
  padding: 4rem 1rem;
  text-align: center;
  overflow: hidden;
}

/* ======= PREMIUM MARQUEE ANIMATION (DESKTOP) ======= */

.mentor-marquee {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(255, 136, 0, 0.05) 0%, transparent 70%);
  perspective: 1000px;
}

.mentor-container {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateX(100%) scale(0.9) rotateY(15deg);
  animation: mentorMarquee 12s ease-in-out infinite;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.3, 1);
}

/* Mentor 1 & 2 delay for alternating smooth motion */
.mentor-container:nth-child(1) {
  animation-delay: 0s;
}

.mentor-container:nth-child(2) {
  animation-delay: 6s;
}

/* 🔥 Smooth marquee with depth illusion and glow transition */
@keyframes mentorMarquee {
  0% {
    opacity: 0;
    transform: translateX(100%) scale(0.9) rotateY(15deg);
    filter: blur(3px);
  }

  10%,
  45% {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0deg);
    filter: blur(0);
  }

  55%,
  100% {
    opacity: 0;
    transform: translateX(-100%) scale(0.9) rotateY(-15deg);
    filter: blur(3px);
  }
}

/* ======= Image & Glow Enhancements ======= */
.mentor-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid #ff8800;
  box-shadow: 0 0 30px rgba(255, 136, 0, 0.4), 0 0 60px rgba(255, 136, 0, 0.15);
  object-fit: cover;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.mentor-image img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 40px #ff8800, 0 0 80px rgba(255, 136, 0, 0.3);
}

/* ======= Name & Description Polish ======= */
.mentor-name {
  font-weight: 800;
  font-size: 2rem;
  background: linear-gradient(90deg, #ff0000, #ff8800, #ffd500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  margin-top: 1rem;
  animation: shimmer 3s infinite linear;
  background-size: 200% auto;
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

.mentor-desc {
  color: #ccc;
  font-size: 1rem;
  max-width: 600px;
  margin: 1rem auto;
  line-height: 1.6;
  opacity: 0.9;
}

/* ======= Buttons ======= */
.mentor-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.mentor-buttons .btn {
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.enroll-btn {
  background: linear-gradient(90deg, #ff6a00, #ffcc00);
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 136, 0, 0.4);
}

.enroll-btn:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255, 136, 0, 0.6);
}

.learn-btn {
  border: 2px solid #ff6a00;
  color: #ff6a00;
  background: transparent;
}

.learn-btn:hover {
  background: #ff6a00;
  color: #fff;
}

/* ======= Glow Trail Effect on Active Mentor ======= */
.mentor-container:nth-child(1):before,
.mentor-container:nth-child(2):before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(255, 136, 0, 0.15) 0%, transparent 70%);
  filter: blur(20px);
  opacity: 0;
  animation: glowTrail 12s infinite;
}

.mentor-container:nth-child(1):before {
  animation-delay: 0s;
}

.mentor-container:nth-child(2):before {
  animation-delay: 6s;
}

@keyframes glowTrail {

  10%,
  45% {
    opacity: 1;
    transform: scale(1.1);
  }

  0%,
  55%,
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

/* ===========================
   CONTACT US SECTION
=========================== */

.contact-us {
  padding: 4rem 6vw;
  background: linear-gradient(180deg, #0C0C0C, #1A1A1A);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;

}

.contact-form {
  width: 100%;
  max-width: 480px;
  /* smaller form */
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(12px);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
}

.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.contact-form h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ff0000, #ff6a00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fireFlow 6s linear infinite;
}

.contact-form p {
  color: #bbb;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 0.95rem;
  transition: 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.8);
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ========== CONTACT SECTION ========== */
.contact-us {
  position: relative;
  width: 100%;
  padding: 5rem 1rem;
  background: radial-gradient(circle at top, rgba(255, 136, 0, 0.1), transparent 80%);
  overflow: hidden;
  z-index: 1;
}

/* Subtle glowing particle overlay */
.contact-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 136, 0, 0.1), transparent 70%);
  animation: moveGlow 10s infinite linear alternate;
  z-index: 0;
  pointer-events: none;
}

@keyframes moveGlow {
  0% {
    transform: translate(-10%, -10%) scale(1);
    opacity: 0.7;
  }

  100% {
    transform: translate(10%, 10%) scale(1.2);
    opacity: 0.9;
  }
}

/* Container */
.contact-container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(20, 20, 20, 0.7);
  border: 1px solid rgba(255, 136, 0, 0.4);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255, 136, 0, 0.2);
  backdrop-filter: blur(15px);
  padding: 3rem 2rem;
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Heading & Description */
.contact-form h2 {
  font-size: 2.2rem;
  text-align: center;
  background: linear-gradient(90deg, #ff0000, #ff8800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  font-family: 'Monument', sans-serif;
}

.contact-form p {
  color: #ccc;
  text-align: center;
  margin-bottom: 2rem;
}

/* Form Inputs */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 136, 0, 0.4);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff8800;
  box-shadow: 0 0 15px rgba(255, 136, 0, 0.4);
  transform: scale(1.02);
}

/* Submit Button */
.contact-form .btn-primary {
  background: linear-gradient(90deg, #ff0000, #ff8800);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  /* box-shadow: 0 0 25px rgba(255, 136, 0, 0.3); */

}

.contact-form .btn-primary:hover {
  background: linear-gradient(90deg, #ff8800, #ff0000);
  box-shadow: 0 0 40px rgba(255, 136, 0, 0.6);
  transform: translateY(-3px);
}

/* Glowing border animation */
.contact-container::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, #ff0000, #ff8800, );
  border-radius: 22px;
  z-index: -1;
  opacity: 0.3;
  filter: blur(20px);
  animation: glowBorder 6s linear infinite;
}

@keyframes glowBorder {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    width: 95%;
    padding: 2rem 1.5rem;
  }

  .contact-form h2 {
    font-size: 1.8rem;
  }

  .contact-form p {
    font-size: 0.95rem;
  }
}

/* ============================================================
   GET HIRED SECTION — SMOOTH NON-STOP SCROLL
============================================================ */
.get-hired {
  background: #0d0d0d;
  padding: 4rem 1.5rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.get-hired-header {
  max-width: 800px;
  margin-bottom: 3rem;
}

.get-hired-header h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  font-weight: 700;
  color: #ff6a00;
  margin-bottom: 0.5rem;
}

.get-hired-header p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #ccc;
}

/* ==========================================
   LOGO SHOWCASE — SEAMLESS INFINITE SCROLL
========================================== */
.logo-showcase {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
  will-change: transform;
}

.logo-track img {
  height: clamp(50px, 5vw, 70px);
  width: auto;
  object-fit: contain;
  margin: 0 2.5rem;
  filter: brightness(0.95);
  transition: transform 0.3s ease, filter 0.3s ease;
  will-change: transform, filter;
}

/* ✅ Hover without interrupting animation */
.logo-track img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* ==========================================
   SMOOTH CONTINUOUS SCROLL
========================================== */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */
@media (max-width: 1024px) {
  .logo-track img {
    margin: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  .get-hired {
    padding: 3rem 1rem;
  }

  .logo-track img {
    height: 55px;
  }
}

@media (max-width: 480px) {
  .logo-track img {
    height: 45px;
    margin: 0 1rem;
  }
}


/* Footer Styles */
.footer {
  background: #191919;
  color: #cfcfcf;
  padding-top: 30px;
  font-family: "Poppins", sans-serif;
}

.footer-top {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #6a11cb, #ff6a00);
}


.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 60px 8%;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  /* font-size: 2.2em; */
  font-family: 'monument', sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ff0000, #ff6a00, #ffd700, #ff0000);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fireFlow 5s linear infinite, pulseScale 3s ease-in-out infinite;
  transition: transform 0.3s ease, filter 0.3s ease;
}


.footer-logo:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px #ff8a00);
}

.footer-column h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-column p {
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 8px 0;
}

.footer-column ul li a {
  color: #bfbfbf;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: hellb;
}

.footer-column ul li a:hover {
  color: #ff8a00;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #181818;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
  color: #ff6a00;
}

.coder {
  color: #ff6a00;
}

.footer-social .linkedin:hover {
  background-color: #155DFC;
}

.footer-social .youtube:hover {
  background-color: #E7000B;
}

.footer-social .insta:hover {
  background-color: #E60076;
}

.join:hover {
  background: #ff6a00;
  color: #0C0C0C;
}

@keyframes mentorSlide {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  10%,
  45% {
    opacity: 1;
    transform: translateX(0);
  }

  55%,
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}

/* =========================================================
   STRIKE LANDING PAGE — FULL MOBILE RESPONSIVE (≤768px)
========================================================= */
@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
  }

  /* ========== NAVBAR ========== */
  nav {
    padding: 0 6vw;
    height: 70px;
  }

  .menu-icon {
    display: block !important;
  }

  .nav2 {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 0;
    transform: translateY(-200%);
    transition: transform 0.4s ease;
  }

  #menu-toggle:checked+.menu-icon+.nav2 {
    transform: translateY(0);
  }

  .signin-container {
    display: none !important;
  }

  /* ========== HERO SECTION ========== */
  .hero {
    flex-direction: column;
    height: auto;
    padding: 5rem 6vw;
    text-align: center;
  }

  .hero-text {
    order: 1;
    text-align: center;
    margin-top: 1rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 0.8rem;
    line-height: 1.6;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
    gap: 1rem;
  }

  .btn-primary,
  .join {
    width: 80%;
    max-width: 250px;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-illustration {
    order: 2;
    width: 80%;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
  }

  .ai-core {
    width: 180px;
    height: 180px;
  }

  /* ========== COURSE / CARD SECTION ========== */
  .courses,
  .section3 {
    padding: 3rem 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto !important;
  }

  .section-container {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center;
    flex-wrap: wrap;
    height: auto !important;
    gap: 2rem !important;
  }

  .card {
    width: 90% !important;
    max-width: 380px;
    margin-bottom: 2rem;
    height: auto !important;
    transform: none !important;
    /* background-color: red; */
  }

  .card:hover {
    transform: translateY(-5px) !important;
  }

  .card img {
    width: 100%;
    height: auto;
  }


  /* ========== STRIKE SECTION ========== */

  .section-strike {
    padding: 4rem 5vw !important;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 10px;
  }

  .strike-container {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2rem !important;
    width: 100% !important;
    padding: 3rem 5vw !important;
    text-align: center !important;
  }

  .strike-image {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .strike-image .strike-img {
    width: 90%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
  }

  .strike-info {
    width: 100%;
    max-width: 600px;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
  }

  .strike-title {
    font-size: 1.4rem;
    line-height: 1;
  }

  .strike-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #ddd;
    padding: 0 1rem;
    text-align: justify;
    letter-spacing: 1px;
  }

  /* =============== STRIKE FEATURES =============== */
  .strike-features {
    position: relative;
    width: 90%;
    margin: 0 auto;
    text-align: left;
    list-style: none;
    padding: 0;
    animation: fadeInFeatures 1.5s ease-out forwards;
  }

  /* Initial fade-in of the entire list */
  @keyframes fadeInFeatures {
    from {
      opacity: 0;
      transform: translateY(20px);
      filter: blur(8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }
  }

  /* Individual List Items */
  .strike-features li {
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #eee;
    padding: 0.5rem 0 0.5rem 2rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInItem 0.8s ease-out forwards;
    animation-delay: calc(var(--i) * 0.15s);
  }

  /* Sleek glowing bullet indicator */
  .strike-features li::before {
    content: "";
    position: absolute;
    left: 0.5rem;
    top: 50%;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #ff8800 0%, #ff0000 60%, transparent 100%);
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    animation: popGlow 0.6s ease-out forwards;
    animation-delay: calc(var(--i) * 0.15s + 0.2s);
    box-shadow: 0 0 12px rgba(255, 136, 0, 0.4);
  }

  /* Animated underline that grows on hover */
  .strike-features li::after {
    content: "";
    position: absolute;
    left: 1.5rem;
    bottom: 0.2rem;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #ff8800, #ff0000);
    transition: width 0.4s ease;
    opacity: 0.6;
  }

  .strike-features li:hover::after {
    width: 50%;
  }

  /* Animations */
  @keyframes slideInItem {
    0% {
      opacity: 0;
      transform: translateX(-20px);
      filter: blur(6px);
    }

    100% {
      opacity: 1;
      transform: translateX(0);
      filter: blur(0);
    }
  }

  @keyframes popGlow {
    0% {
      opacity: 0;
      transform: translateY(-50%) scale(0);
    }

    50% {
      opacity: 1;
      transform: translateY(-50%) scale(1.4);
    }

    100% {
      opacity: 1;
      transform: translateY(-50%) scale(1);
    }
  }

  /* Glowing hover motion */
  .strike-features li:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 136, 0, 0.6);
    transform: translateX(5px);
    transition: all 0.4s ease;
  }

  /* Optional shimmer for the list container */
  .strike-features::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 136, 0, 0.05), transparent);
    animation: shimmerSlide 6s infinite linear;
  }

  @keyframes shimmerSlide {
    0% {
      left: -100%;
    }

    100% {
      left: 100%;
    }
  }

  /* Responsive tweak */
  @media (max-width: 600px) {
    .strike-features li {
      font-size: 0.9rem;
      line-height: 1.5;
      padding-left: 1.5rem;
    }
  }


  .strike-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
  }

  .strike-buttons .btn-primary,
  .strike-buttons .btn-secondary {
    width: 80%;
    max-width: 260px;
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }

  /* ========== MENTOR SECTION ========== */
  .mentor-marquee {
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    height: 420px;
  }



  .mentor-marquee {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: auto;
    /* fixed height so mentors don't jump */
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
  }

  /* Each mentor container fades alternately but stays in center */
  .mentor-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 420px;
    opacity: 0;
    animation: mentorFadeMobile 12s infinite ease-in-out;
    text-align: center;
    gap: 1rem;
  }

  /* Alternate fade timing */
  .mentor-container:nth-child(1) {
    animation-delay: 0s;
  }

  .mentor-container:nth-child(2) {
    animation-delay: 6s;
  }

  /* Fade in/out sequence — only one visible at a time */
  @keyframes mentorFadeMobile {

    0%,
    45% {
      opacity: 1;
      transform: translate(-50%, -50%) translateY(0);
    }

    50%,
    100% {
      opacity: 0;
      transform: translate(-50%, -50%) translateY(30px);
    }
  }

  /* Image */
  .mentor-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #ff8800;
    box-shadow: 0 0 25px rgba(255, 136, 0, 0.6);
    object-fit: cover;
  }

  /* Info */
  .mentor-info {
    width: 90%;
    text-align: center;
  }

  .mentor-name {
    font-size: 1.2rem;
    background: linear-gradient(90deg, #ff0000, #ff8800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .mentor-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
    margin: 0.8rem auto 1.2rem;
    max-width: 90%;
  }

  /* Buttons */
  .mentor-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }

  .mentor-buttons .btn {
    width: 80%;
    max-width: 200px;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
  }

  /* Buttons styles */
  .enroll-btn {
    background: linear-gradient(90deg, #ff6a00, #ffcc00);
    color: #fff;
    border: none;
  }

  .learn-btn {
    background: transparent;
    border: 2px solid #ff6a00;
    color: #ff6a00;
  }

  .learn-btn:hover {
    background: #ff6a00;
    color: #fff;
  }

  /* Section Headers */
  .section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  /* Course Level Label */
  .level {
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Contact Form Send Button */
  .send-btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Strike Features */
  .strike-features li {
    padding-left: 15%;
  }

  /* Strike Buttons (Responsive, Touch-Friendly) */
  .strike-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 1rem;
  }

  .enroll-strike,
  .enroll-learn,
  .learn-btn {
    width: 90%;
    font-size: 1rem;
    padding: 14px;
    border-radius: 40px;
    text-align: center;
    transition: all 0.3s ease;
  }


  /* Optional: Add smooth entrance animation */
  .enroll-strike,
  .enroll-learn,
  .learn-btn {
    animation: fadeInUp 0.8s ease forwards;
  }

  /* ========== CONTACT SECTION ========== */
  .contact-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }

  .contact-form {
    width: 100%;
    max-width: 100%;
  }

  .contact-form h2 {
    font-size: 1.8rem;
  }

  /* ========== FOOTER ========== */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 40px 10%;
  }

  .footer-logo {
    font-size: 1.6rem;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }

  .section2-header div {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: red; */
    height: 0;
  }

  /* Section headers smaller on mobile */
  .section2-header h1 {
    font-size: 1.5rem;
    /* margin-bottom: 1em; */
  }



  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Container fixes */
  .strike-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin-top: 1.5rem;
  }

  /* Shared button styles */
  .enroll-strike,
  .enroll-learn,
  .learn-btn {
    display: inline-block;
    width: 90%;
    max-width: 350px;
    text-align: center;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  /* Enroll Now (Primary Button) */
  .enroll-strike {
    background: linear-gradient(90deg, #ff6a00, #ffb300);
    color: #fff;
    border: none;
    box-shadow: 0 0 12px rgba(255, 136, 0, 0.4);
  }

  .enroll-strike:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 18px rgba(255, 136, 0, 0.6);
  }

  /* Learn More (Secondary Button) */
  .enroll-learn,
  .learn-btn {
    background: transparent;
    border: 2px solid #ff6a00;
    color: #ff6a00;
  }

  .enroll-learn:hover,
  .learn-btn:hover {
    background: #ff6a00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 136, 0, 0.4);
  }

  /* Optional entrance animation (smooth load) */
  .enroll-strike,
  .enroll-learn,
  .learn-btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
  }

  .enroll-learn,
  .learn-btn {
    animation-delay: 0.2s;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

}

/* ========== TABLET VERSION ========== */
@media (min-width: 769px) and (max-width: 1024px) {

  html,
  body {
    overflow-x: hidden;
  }

  /* ========== NAVBAR ========== */
  nav {
    padding: 0 8vw;
    height: 75px;
  }

  .menu-icon {
    display: none !important;
  }

  .nav2 {
    display: flex !important;
    justify-content: flex-end;
    gap: 2rem;
    background: transparent;
    position: static;
    transform: none;
    flex-direction: row;
  }

  .signin-container {
    display: flex !important;
    align-items: center;
  }

  /* ========== HERO SECTION ========== */
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: auto;
    padding: 6rem 8vw;
  }

  .hero-text {
    width: 50%;
    text-align: left;
  }

  .hero-text h1 {
    font-size: 2.4rem;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .hero-buttons {
    justify-content: flex-start;
    gap: 1.5rem;
  }

  .btn-primary,
  .join {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .hero-illustration {
    width: 45%;
    display: flex;
    justify-content: center;
  }

  .ai-core {
    width: 250px;
    height: 250px;
  }

  /* ========== COURSE SECTION ========== */
  .courses,
  .section3 {
    padding: 4rem 6vw 6rem;
    /* bottom padding prevents strike overlap */
    position: relative;
    z-index: 2;
    background: transparent;
  }

  /* Flex container */
  .section-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Course Card */
  .card {
    flex: 1 1 320px;
    max-width: 400px;
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.15);
  }

  /* Image inside card */
  .card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
  }

  /* Card hover */
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(255, 136, 0, 0.3);
  }

  /* Ensure consistent height */
  .card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /* Keep "Enroll Now" aligned evenly */
  .card .btn {
    align-self: flex-start;
    margin-top: auto;
  }

  /* Prevent next section overlap */
  .section3+.section-strike {
    margin-top: 5rem;
  }


  /* ========== STRIKE SECTION ========== */
  .section-strike {
    padding: 6rem 8vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .strike-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1100px;
    width: 100%;
    flex-wrap: wrap;
    position: relative;
  }

  .strike-image {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
  }

  .strike-image .strike-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
    box-shadow: 0 0 25px rgba(255, 136, 0, 0.25);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }

  .strike-image .strike-img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(255, 136, 0, 0.5);
  }

  .strike-info {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    color: #fff;
    text-align: left;
    min-width: 300px;
  }

  .strike-title {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    background: linear-gradient(90deg, #ff8800, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .strike-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ddd;
  }

  .strike-features {
    width: 100%;
    padding-left: 1rem;
    list-style: none;
    margin-top: 1rem;
  }

  .strike-features li {
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 1.5rem;
  }

  .strike-features li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff8800;
    font-size: 1.1rem;
    animation: glowFeature 2s infinite ease-in-out;
  }

  @keyframes glowFeature {

    0%,
    100% {
      text-shadow: 0 0 8px #ff8800, 0 0 15px #ff0000;
      opacity: 1;
    }

    50% {
      text-shadow: 0 0 3px #ff8800, 0 0 5px #ff0000;
      opacity: 0.7;
    }
  }

  /* ========== MENTOR SECTION ========== */
  .mentor-marquee {
    position: relative;
    padding: 4rem 0;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .mentor-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    animation: mentorFadeTablet 12s infinite ease-in-out;
    width: 100%;
    max-width: 500px;
  }

  .mentor-container:nth-child(1) {
    animation-delay: 0s;
  }

  .mentor-container:nth-child(2) {
    animation-delay: 6s;
  }

  @keyframes mentorFadeTablet {

    0%,
    45% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    50%,
    100% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.98);
    }
  }

  .mentor-image img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid #ff8800;
    box-shadow: 0 0 25px rgba(255, 136, 0, 0.4);
    object-fit: cover;
  }

  .mentor-name {
    font-size: 1.4rem;
    margin-top: 1rem;
    background: linear-gradient(90deg, #ff0000, #ff8800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .mentor-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
    margin-top: 0.5rem;
  }

  /* ========== CONTACT SECTION ========== */
  .contact-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 3rem;
    padding: 4rem 6vw;
  }

  .contact-form {
    width: 60%;
    max-width: 600px;
  }

  .contact-form h2 {
    font-size: 2rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
    padding: 0.9rem 1rem;
  }

  .contact-form button {
    font-size: 1rem;
    padding: 0.9rem 2rem;
  }

  /* ========== FOOTER ========== */
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: left;
    padding: 60px 8vw;
  }

  .footer-logo {
    font-size: 1.8rem;
  }

  .footer-bottom {
    font-size: 0.9rem;
  }

}

/* Ensure cards never overflow below */
.courses {
  margin-bottom: 5rem;
  /* adds breathing room before next section */
}

/* Uniform height fix for course cards */
.section-container {
  align-items: stretch;
  /* forces all cards in a row to be equal height */
}

/* Prevent cards from growing too tall */
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  max-height: 520px;
  /* stops it from expanding infinitely */
}

/* Prevent text overflow causing tall cards */
.card-desc {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* On tablet, add safe gap before Strike section */
@media (max-width: 1024px) {
  .courses {
    padding-bottom: 8rem;
  }

  .section3+.section-strike {
    margin-top: 8rem;
  }
}

/* Mobile fix (ensures cards stay centered & spaced) */
@media (max-width: 768px) {
  .courses {
    padding-bottom: 10rem;
  }

  .card {
    max-height: none;
    /* let it breathe naturally */
  }
}

/* ===============================
   FULL-WIDTH STRIKE COUNTDOWN
=============================== */
.launch-section {
  width: 100%;
  /* background: radial-gradient(circle at top center, #0b0b0b 0%, #000 100%); */
  color: #fff;
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Soft wave animation background */
.launch-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  /* background: radial-gradient(circle, rgba(255,120,0,0.15), transparent 60%); */
  animation: waveGlow 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes waveGlow {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.3) rotate(180deg);
    opacity: 0.7;
  }
}

.launch-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
}

/* Floating rocket */
.launch-icon {
  font-size: 3rem;
  animation: floatUp 3s ease-in-out infinite;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Title animation: smooth type glow */
.launch-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  margin-top: 1rem;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ff4500, #ffb000, #ff4500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGlow 5s ease-in-out infinite;
}

@keyframes textGlow {

  0%,
  100% {
    text-shadow: 0 0 10px #ffb00066;
  }

  50% {
    text-shadow: 0 0 25px #ffb000aa, 0 0 50px #ff450099;
  }
}

.spark {
  animation: sparkBlink 1.8s infinite;
}

@keyframes sparkBlink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
}

/* Subtitle */
.launch-sub {
  color: #bbb;
  margin-top: 0.8rem;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Countdown wrapper */
.countdown-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

/* Time boxes with pulse ring */
.time-box {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.15), rgba(0, 0, 0, 0.9));
  border: 2px solid rgba(255, 150, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(255, 150, 0, 0.3);
  position: relative;
  animation: pulseRing 3s infinite;
}

@keyframes pulseRing {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(255, 150, 0, 0.3);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 35px rgba(255, 120, 0, 0.8);
    transform: scale(1.05);
  }
}

/* Animated outer glow ring */
.time-box::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #ff6a00;
  border-bottom-color: #ffb000;
  animation: rotateRing 6s linear infinite;
}

@keyframes rotateRing {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.time-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffb000;
  line-height: 1;
}

.time-label {
  font-size: 0.9rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Input + button */
.launch-input {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.launch-input input {
  padding: 0.8rem 1.4rem;
  border-radius: 30px;
  border: 1px solid #333;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  width: 260px;
  outline: none;
}

.launch-input button {
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  border: none;
  background: l
}

/* ===== STRIKE MARQUEE (Festive + Smooth Loop) ===== */
.strike-marquee {
  position: relative;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 600;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  letter-spacing: 1px;
  padding: 0.7rem 0;
  z-index: 999;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
  /* box-shadow: 0 0 12px rgba(255, 90, 0, 0.4); */
  transition: opacity 0.5s ease-in-out, transform 0.5s ease;
  /* Static */
  background: linear-gradient(90deg, #0f1724 0%, #6a11cb 30%, #ff0066 65%, #00e5ff 100%);

  /* Animated (slow moving) */
  background: linear-gradient(90deg, #0f1724, #6a11cb, #ff0066, #00e5ff);
  background-size: 400% 400%;
  animation: gradientShift 14s ease infinite;

}

/* Smooth continuous scrolling */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
  will-change: transform;
}

/* Duplicate content makes it seamless */
.marquee-track span {
  padding-right: 5rem;
  display: inline-block;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.strike-marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* Hide when scrolled down */
body:has(main:has(:not(:first-child))) .strike-marquee {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    transform: none;
  }
}

/* ============================================================
   🇮🇳 NEO ANIMATED TRICOLOR SCROLLBAR — PREMIUM STYLE
============================================================ */

/* Scrollbar base */
::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

/* Scrollbar track */
::-webkit-scrollbar-track {
  background: #0a0a0a;
  /* deep black for neon contrast */
  border-radius: 10px;
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.1);
}

/* Tricolor glowing animated thumb */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg,
      #ff9933,
      #ffffff,
      #138808,
      #ff9933);
  background-size: 100% 400%;
  border-radius: 12px;
  border: 2px solid #0a0a0a;
  box-shadow: 0 0 10px rgba(255, 153, 51, 0.7),
    0 0 10px rgba(255, 255, 255, 0.6),
    0 0 10px rgba(19, 136, 8, 0.7);
  animation: neonTricolor 3s linear infinite;
  transition: all 0.3s ease;
}

/* Hover makes it pulse brighter */
::-webkit-scrollbar-thumb:hover {
  box-shadow: 0 0 20px rgba(255, 153, 51, 0.9),
    0 0 20px rgba(255, 255, 255, 0.9),
    0 0 20px rgba(19, 136, 8, 0.9);
  transform: scale(1.08);
}

/* NEO flowing flag animation */
@keyframes neonTricolor {
  0% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 0% 100%;
  }

  100% {
    background-position: 0% 0%;
  }
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #138808 #0a0a0a;
}

/* ============================================================
   ⚡ CSS-ONLY DARK/LIGHT MODE TOGGLE
============================================================ */
.theme-toggle {
  display: none;
}

.theme-switch {
  --size: 32px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  position: relative;
  background: radial-gradient(circle at 30% 30%, #ffcc33 40%, #ffaa00 100%);
  box-shadow: 0 0 10px rgba(255, 200, 0, 0.5);
  cursor: pointer;
  transition: all 0.4s ease;
}

/* 🌞 Sun rays (light mode) */
.theme-switch::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      rgba(255, 220, 100, 0.8),
      rgba(255, 180, 0, 0.9),
      rgba(255, 220, 100, 0.8));
  mask: radial-gradient(circle, transparent 40%, black 41%);
  transition: opacity 0.4s ease;
}

/* 🌙 Moon shape (dark mode) */
.theme-switch::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(var(--size) - 8px);
  height: calc(var(--size) - 8px);
  border-radius: 50%;
  background: #f8f8f8;
  box-shadow: -8px 0 0 0 #0d1117;
  transform: scale(0);
  transition: transform 0.4s ease;
}

/* Dark mode activated */
.theme-toggle:checked+.theme-switch {
  background: radial-gradient(circle at 30% 30%, #111 40%, #222 100%);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

/* Hide sun rays & reveal moon */
.theme-toggle:checked+.theme-switch::before {
  opacity: 0;
}

.theme-toggle:checked+.theme-switch::after {
  transform: scale(1);
}

/* Optional: Small hover glow */
.theme-switch:hover {
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.8);
}

.theme-toggle:checked+.theme-switch:hover {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}