/* ---------- RESET & BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin; /* "auto" or "thin" */
  scrollbar-color: #ff8c00 rgba(255, 255, 255, 0.05);
}
/* ===== CUSTOM SCROLLBAR (STRIKE THEME) ===== */

/* For WebKit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 10px; /* scrollbar width */
  height: 10px; /* horizontal scrollbar height */
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05); /* light transparent track */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 120, 0, 0.4);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ff512f, #ff8c00);
  box-shadow: 0 0 15px rgba(255, 120, 0, 0.6);
}

body {
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle at top left, #1a1a1a 10%, #000);
  color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #ff8c00 rgba(255, 255, 255, 0.05);
}
:root {
  --orange-grad: linear-gradient(135deg, #ff8c00, #ff512f);
  --border-color: #ff8c00;
  --text-muted: #ccc;
  --grid-line: rgba(255, 255, 255, 0.04);
}

/* ---------- GRID BACKGROUND ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 0;
}

/* ---------- SPARK EFFECT ---------- */
.spark {
  position: fixed;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  opacity: 0.6;
  animation: spark-move 6s linear infinite;
}
@keyframes spark-move {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) scale(0.5);
    opacity: 0;
  }
}

/* ---------- HEADER ---------- */
header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.5rem;
  z-index: 20;
  transition: all 0.3s ease;
}
header:hover {
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.4);
}

/* Logo & Title */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--orange-grad);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}
.logo h1 {
  background: var(--orange-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

/* Navigation Links */
nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

/* Active link style */
nav a.active {
  padding: 6px 10px;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(255, 120, 0, 0.4);
  font-weight: 600;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-grad);
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}

/* CTA Button */
.cta-btn {
  background: var(--orange-grad);
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 120, 0, 0.4);
}

/* ---------- MOBILE MENU ICON ---------- */
.menu-icon {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

/* ---------- SIDEBAR DRAWER ---------- */
#menu-toggle {
  display: none;
}
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 300px;
  padding-top: 10px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  border-left: 2px solid var(--border-color);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: right 0.5s ease;
  z-index: 30;
}
#menu-toggle:checked + .sidebar {
  right: 0;
}
.sidebar a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  margin-bottom: 1em;
  font-weight: 500;
}

/* Active link style */
.sidebar a.active {
  padding: 6px 10px;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(255, 120, 0, 0.4);
  font-weight: 600;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
}
.close-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}
/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 7rem 6%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 4rem;
  overflow: hidden;
}

/* ===== BACKGROUND ANIMATION ===== */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 140, 0, 0.12),
      transparent 60%
    ),
    radial-gradient(circle at 80% 70%, rgba(255, 81, 47, 0.12), transparent 60%);
  z-index: 0;
}

/* Grid texture + animated dots */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  animation: moveGrid 30s linear infinite;
  opacity: 0.15;
}
@keyframes moveGrid {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 80px 80px;
  }
}

/* Floating glowing particles */
.dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 140, 0, 0.9),
    rgba(255, 81, 47, 0.1)
  );
  filter: blur(1px);
  opacity: 0.7;
  animation: floatDot 12s linear infinite;
}
.dot:nth-child(odd) {
  animation-duration: 10s;
}
.dot:nth-child(even) {
  animation-duration: 14s;
}
@keyframes floatDot {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) translateX(20px);
    opacity: 1;
  }
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.6;
  }
}

/* Random dot placement */
.dot:nth-child(1) {
  top: 15%;
  left: 10%;
}
.dot:nth-child(2) {
  top: 70%;
  left: 20%;
}
.dot:nth-child(3) {
  top: 40%;
  left: 80%;
}
.dot:nth-child(4) {
  top: 25%;
  left: 65%;
}
.dot:nth-child(5) {
  top: 60%;
  left: 50%;
}
.dot:nth-child(6) {
  top: 10%;
  left: 90%;
}
.dot:nth-child(7) {
  top: 85%;
  left: 75%;
}
.dot:nth-child(8) {
  top: 45%;
  left: 30%;
}
.dot:nth-child(9) {
  top: 75%;
  left: 5%;
}
.dot:nth-child(10) {
  top: 20%;
  left: 55%;
}

/* ===== LEFT COLUMN ===== */
.hero-left {
  position: relative;
  z-index: 2;
  animation: fadeInLeft 1.5s ease;
}
.hero-left h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-left p {
  color: #ccc;
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.labels span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.labels span:hover {
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 81, 47, 0.4);
}
.hero-btn {
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  transition: all 0.4s ease;
  display: inline-block;
}
.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(255, 81, 47, 0.5);
}

/* ===== RIGHT COLUMN ===== */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 2s ease;
}

/* Animated Core Visual */
.about-visual {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, #111 40%, rgba(255, 255, 255, 0.05));
  box-shadow: 0 0 40px rgba(255, 81, 47, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* Pulsating Rings */
.about-visual::before,
.about-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 140, 0, 0.3);
  animation: spin 12s linear infinite;
}
.about-visual::before {
  width: 320px;
  height: 320px;
}
.about-visual::after {
  width: 380px;
  height: 380px;
  border-color: rgba(255, 81, 47, 0.25);
  animation-duration: 18s;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* STRIKE Core */
.about-core {
  position: relative;
  z-index: 3;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

/* Floating Course Cards */
.course-card {
  position: absolute;
  width: 140px;
  height: 100px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 25px rgba(255, 81, 47, 0.35);
  backdrop-filter: blur(10px);
  text-align: center;
  padding: 1rem;
  animation: floatCourse 8s ease-in-out infinite alternate;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.course-card h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.course-card p {
  font-size: 0.8rem;
  color: #ccc;
}
.course-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 81, 47, 0.6);
}

/* Card positions */
.course-card:nth-child(2) {
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
}
.course-card:nth-child(3) {
  bottom: -80px;
  left: -70px;
}
.course-card:nth-child(4) {
  bottom: -80px;
  right: -70px;
}

@keyframes floatCourse {
  0% {
    transform: translateY(0) rotateY(10deg);
  }
  100% {
    transform: translateY(-20px) rotateY(-10deg);
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-left h1 {
    font-size: 2.4rem;
  }
  .hero-left p {
    margin: 0 auto 2rem;
  }
  .hero-right {
    margin-top: 3rem;
  }
}
@media (max-width: 720px) {
  .hero-left h1 {
    font-size: 2rem;
  }
  .about-visual {
    width: 240px;
    height: 240px;
  }
  .course-card {
    width: 120px;
    height: 90px;
  }
}
/* ---------- PAGE BASE ---------- */
.about-page {
  background: radial-gradient(circle at top left, #0b0b0b 20%, #000);
  color: #fff;
  overflow: hidden;
  position: relative;
  padding-bottom: 6rem;
  font-family: "Poppins", sans-serif;
}

/* ---------- HERO SECTION ---------- */
.about-hero {
  position: relative;
  text-align: center;
  padding: 8rem 5% 6rem;
  overflow: hidden;
}
.about-hero h1 {
  font-size: 3rem;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  animation: fadeDown 1.5s ease;
}
.about-hero p {
  color: #ccc;
  max-width: 750px;
  margin: auto;
  line-height: 1.7;
  font-size: 1.05rem;
  animation: fadeUp 1.8s ease;
}
.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 120, 0, 0.25), transparent 70%);
  filter: blur(90px);
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
  }
}

/* ---------- MISSION & VISION ---------- */
.mission-vision {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 5%;
}
.mission-card,
.vision-card {
  flex: 1 1 400px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(255, 120, 0, 0.1);
  transition: all 0.5s ease;
  animation: fadeUp 1.5s ease;
}
.mission-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  box-shadow: 0 0 30px rgba(255, 120, 0, 0.4);
}
.mission-card h2,
.vision-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.mission-card p,
.vision-card p {
  color: #ddd;
  line-height: 1.6;
}

/* ---------- JOURNEY SECTION ---------- */
.journey {
  padding: 5rem 5%;
  text-align: center;
}
.journey h2 {
  font-size: 2.4rem;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
}
.timeline {
  max-width: 700px;
  margin: auto;
  position: relative;
  border-left: 2px dashed rgba(255, 255, 255, 0.2);
  padding-left: 2rem;
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  animation: fadeUp 1.5s ease;
}
.circle {
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  border-radius: 50%;
  position: absolute;
  left: -9px;
  top: 6px;
}
.timeline-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.timeline-item p {
  color: #ccc;
  line-height: 1.6;
}

/* ---------- TEAM SECTION ---------- */
.team {
  padding: 5rem 5%;
  text-align: center;
}
.team h2 {
  font-size: 2.4rem;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-content: center;
}
.team-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: 0.4s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(255, 120, 0, 0.1);
  animation: fadeUp 1.5s ease;
}
.team-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  box-shadow: 0 0 30px rgba(255, 120, 0, 0.4);
}
.team-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ff8c00;
  margin-bottom: 1rem;
}
.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.team-card p {
  font-size: 0.95rem;
  color: #ddd;
}

/* ---------- FLOATING ORBS ---------- */
.orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.4), transparent 70%);
  animation: float 8s ease-in-out infinite;
  z-index: 0;
}
.orb1 {
  width: 200px;
  height: 200px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}
.orb2 {
  width: 250px;
  height: 250px;
  bottom: 10%;
  right: 10%;
  animation-delay: 2s;
}
.orb3 {
  width: 180px;
  height: 180px;
  top: 60%;
  left: 40%;
  animation-delay: 4s;
}
@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.4;
  }
  50% {
    transform: translate(40px, -40px);
    opacity: 0.8;
  }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }
  .mission-card,
  .vision-card {
    padding: 1.8rem;
  }
  .timeline {
    padding-left: 1.2rem;
  }
  .team-card {
    padding: 1.5rem;
  }
}

/* ---------- SECTION BASE ---------- */
.launch-section {
  position: relative;
  height: 100vh;
  width: 100%;
  background: radial-gradient(circle at 30% 30%, #0b0b0b 20%, #000);
  overflow: hidden;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding: 2rem;
}

/* ---------- BACKGROUND ANIMATION ---------- */
.glow-bg {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg, #ff8c00, #ff512f, #ff8c00);
  filter: blur(120px);
  opacity: 0.1;
  animation: rotateBg 15s linear infinite;
  z-index: 0;
}
@keyframes rotateBg {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ---------- CONTENT ---------- */
.launch-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1.5s ease;
}
.launch-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 120, 0, 0.3);
}
.subtitle {
  color: #bbb;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* ---------- COUNTDOWN BOXES ---------- */
.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.time-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 30px rgba(255, 120, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}
.time-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.time-box:hover::before {
  opacity: 1;
}
.time-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(255, 120, 0, 0.3);
}
.num {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.label {
  font-size: 0.9rem;
  color: #ddd;
  position: relative;
  z-index: 1;
}

/* ---------- NOTIFY BUTTON ---------- */
.notify-btn {
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 25px rgba(255, 120, 0, 0.3);
}
.notify-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 35px rgba(255, 120, 0, 0.5);
}

/* ---------- FLOATING ORBS ---------- */
.orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.4), transparent 70%);
  animation: float 8s ease-in-out infinite;
}
.orb1 {
  width: 180px;
  height: 180px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.orb2 {
  width: 220px;
  height: 220px;
  bottom: 15%;
  right: 10%;
  animation-delay: 2s;
}
.orb3 {
  width: 150px;
  height: 150px;
  top: 60%;
  left: 30%;
  animation-delay: 4s;
}
.orb4 {
  width: 200px;
  height: 200px;
  bottom: 5%;
  right: 35%;
  animation-delay: 6s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(40px, -40px) scale(1.2);
    opacity: 0.8;
  }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .launch-content h1 {
    font-size: 2.3rem;
  }
  .time-box {
    width: 90px;
    height: 90px;
  }
  .num {
    font-size: 1.6rem;
  }
  .notify-btn {
    width: 100%;
  }
}

/* ---------- CONTACT SECTION ---------- */
.contact {
  position: relative;
  min-height: 100vh;
  padding: 6rem 5%;
  background: radial-gradient(circle at center, #0b0b0b 20%, #000 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.contact h2 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.subtitle {
  color: #bbb;
  margin-bottom: 3rem;
  font-size: 1rem;
}

/* ---------- FORM ---------- */
.contact-form {
  max-width: 600px;
  margin: auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 30px rgba(255, 120, 0, 0.1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease;
}

/* ---------- INPUT GROUP ---------- */
.input-group {
  position: relative;
  margin-bottom: 2rem;
  text-align: left;
}
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 0.8rem 0.5rem;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}
.input-group label {
  position: absolute;
  top: 0.9rem;
  left: 0.5rem;
  color: #aaa;
  font-size: 1rem;
  pointer-events: none;
  transition: 0.3s ease;
}

/* Floating Label Effect */
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
  top: -0.8rem;
  left: 0;
  font-size: 0.85rem;
  color: #ff8c00;
}
.input-group input:focus,
.input-group textarea:focus {
  border-color: #ff8c00;
}
.bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  transition: 0.4s;
}
.input-group input:focus ~ .bar,
.input-group textarea:focus ~ .bar {
  width: 100%;
}

/* ---------- BUTTON ---------- */
.send-btn {
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.send-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff512f, #ff8c00);
  transition: all 0.5s ease;
  z-index: 0;
}
.send-btn:hover::before {
  left: 0;
}
.send-btn:hover {
  box-shadow: 0 0 25px rgba(255, 120, 0, 0.4);
}
.send-btn span {
  position: relative;
  z-index: 1;
}

/* ---------- BACKGROUND ANIMATION ---------- */
.contact::before,
.contact::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.2), transparent 70%);
  animation: moveGlow 8s linear infinite;
  z-index: 0;
}
.contact::before {
  width: 250px;
  height: 250px;
  top: 15%;
  left: 10%;
}
.contact::after {
  width: 300px;
  height: 300px;
  bottom: 10%;
  right: 10%;
  animation-delay: 2s;
}
@keyframes moveGlow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(40px, -30px) scale(1.3);
    opacity: 0.8;
  }
}

/* ---------- ANIMATION ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 600px) {
  .contact h2 {
    font-size: 2rem;
  }
  .contact-form {
    padding: 1.5rem;
  }
  .send-btn {
    width: 100%;
  }
}

/* ---------- FAQ SECTION ---------- */
.faqs {
  padding: 6rem 5%;
  text-align: center;
  background: radial-gradient(circle at top, #0d0d0d 20%, #000);
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.faqs h2 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
}

/* ---------- CONTAINER ---------- */
.faq-container {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ---------- ACCORDION (DETAILS) ---------- */
details {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1rem 1.5rem;
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(255, 120, 0, 0.1);
  transition: all 0.3s ease;
}
details[open] {
  background: linear-gradient(
    135deg,
    rgba(255, 140, 0, 0.15),
    rgba(255, 81, 47, 0.15)
  );
  box-shadow: 0 0 25px rgba(255, 120, 0, 0.25);
  transform: translateY(-3px);
}

/* ---------- SUMMARY ---------- */
summary {
  list-style: none;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  padding-right: 1.5rem;
}
summary::marker {
  display: none;
}
summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  color: #ff8c00;
}
details[open] summary::after {
  transform: rotate(45deg);
}

/* ---------- CONTENT ---------- */
details p {
  margin-top: 1rem;
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  animation: fadeIn 0.4s ease;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- BACKGROUND SPARKS ---------- */
.faqs::before,
.faqs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.3), transparent 70%);
  animation: spark 6s linear infinite;
  z-index: 0;
}
.faqs::before {
  width: 250px;
  height: 250px;
  top: 10%;
  left: 15%;
  animation-delay: 1s;
}
.faqs::after {
  width: 300px;
  height: 300px;
  bottom: 10%;
  right: 10%;
  animation-delay: 3s;
}
@keyframes spark {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 600px) {
  .faqs h2 {
    font-size: 2rem;
  }
  summary {
    font-size: 1rem;
  }
  details p {
    font-size: 0.9rem;
  }
}

/* ---------- FOOTER BASE ---------- */
.footer {
  position: relative;
  background: radial-gradient(circle at center, #0b0b0b 10%, #000 100%);
  color: #fff;
  padding: 5rem 8% 2rem;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.footer::before,
.footer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.3), transparent 70%);
  animation: glowMove 8s ease-in-out infinite;
}
.footer::before {
  width: 250px;
  height: 250px;
  top: 10%;
  left: 15%;
}
.footer::after {
  width: 300px;
  height: 300px;
  bottom: 10%;
  right: 10%;
  animation-delay: 2s;
}
@keyframes glowMove {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(40px, -30px) scale(1.3);
    opacity: 0.8;
  }
}

/* ===== GLOBAL FAB STYLES ===== */
.fab-toggle {
  appearance: none;
  position: fixed;
  z-index: 100;
}

/* Floating Buttons */
.fab-btn {
  position: fixed;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  box-shadow: 0 0 25px rgba(255, 81, 47, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 101;
}
.fab-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(255, 81, 47, 0.8);
}
.fab-glow {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 81, 47, 0.4), transparent 70%);
  animation: pulseGlow 2s ease-in-out infinite alternate;
  z-index: -1;
}
@keyframes pulseGlow {
  from {
    transform: scale(0.9);
    opacity: 0.6;
  }
  to {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* ===== POSITIONS (BOTTOM LEFT) ===== */
#strikeFab + label {
  bottom: 30px;
  left: 30px;
  z-index: 103;
}
#chatFab + label {
  bottom: 110px;
  left: 30px;
  z-index: 104;
}

/* ===== MODAL COMMONS ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 99;
}
.modal-box {
  position: fixed;
  bottom: 120px;
  left: 40px;
  background: rgba(20, 20, 20, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  width: 320px;
  text-align: center;
  box-shadow: 0 0 40px rgba(255, 81, 47, 0.3);
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 102;
}

/* ===== HEADER ===== */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.modal-header h2 {
  font-size: 1.2rem;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== CLOSE BUTTON ===== */
.close-btn {
  font-size: 1.4rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.close-btn:hover {
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  box-shadow: 0 0 10px rgba(255, 81, 47, 0.6);
  transform: rotate(90deg);
}

/* ===== STRIKE MODAL ===== */
.modal-box p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}
.count-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 500;
  backdrop-filter: blur(10px);
  animation: pulseChip 2s infinite ease-in-out;
}
.count-chip:nth-child(2) {
  animation-delay: 0.3s;
}
.count-chip:nth-child(3) {
  animation-delay: 0.6s;
}
@keyframes pulseChip {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 81, 47, 0.3);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
  }
}

/* ===== CHATBOT MODAL ===== */
.chat-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.chat-form input,
.chat-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.9rem;
  resize: none;
  outline: none;
  transition: all 0.3s ease;
}
.chat-form input:focus,
.chat-form textarea:focus {
  border-color: #ff8c00;
  box-shadow: 0 0 10px rgba(255, 81, 47, 0.5);
}
.chat-form button {
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 25px;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.chat-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 81, 47, 0.6);
}

/* ===== TOGGLE MECHANISM ===== */
#strikeFab:checked ~ .strike-overlay,
#strikeFab:checked ~ .strike-modal {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#chatFab:checked ~ .chat-overlay,
#chatFab:checked ~ .chat-modal {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Fix: ensure close icons actually trigger checkboxes */
label[for="strikeFab"],
label[for="chatFab"] {
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .modal-box {
    bottom: 100px;
    left: 20px;
    width: 280px;
  }
  .fab-btn {
    width: 60px;
    height: 60px;
  }
}

/* ---------- FOOTER CONTAINER ---------- */
.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 2;
}

/* ---------- ABOUT COLUMN ---------- */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}
.logo h3 {
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-col p {
  color: #bbb;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.social-links a {
  display: inline-block;
  color: #fff;
  font-size: 1.3rem;
  margin-right: 0.8rem;
  transition: transform 0.3s, color 0.3s;
}
.social-links a:hover {
  transform: scale(1.2);
  color: #ff8c00;
}

/* ---------- OTHER COLUMNS ---------- */
.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin: 0.6rem 0;
}
.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s, transform 0.3s;
}
.footer-col ul li a:hover {
  color: #ff8c00;
  transform: translateX(5px);
}

/* ---------- FOOTER BOTTOM (TRICOLOR STRIKE) ---------- */
.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}
.footer-bottom h2 {
  font-size: 15em;
  font-weight: 800;
  letter-spacing: 4px;
  background: linear-gradient(90deg, #ff9933, #ffffff, #138808);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 720px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-links a {
    margin: 0 0.5rem;
  }
  .footer-bottom h2 {
    font-size: 7rem;
  }
}

@media (max-width: 420px) {
  .footer-bottom h2 {
    font-size: 4rem;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .menu-icon {
    display: block;
  }
  header {
    justify-content: space-between;
  }
  .hero h2 {
    font-size: 2.2rem;
  }
}
