/* ---------- 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 ---------- */

/* ---------- BASE ---------- */
.strike-hero {
  position: relative;
  min-height: 100vh;
  /* background: radial-gradient(circle at top left, #0b0b0b 20%, #000); */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 5%;
}

/* ---------- HERO CONTAINER ---------- */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

/* ---------- LEFT COLUMN ---------- */
.hero-content {
  flex: 1 1 500px;
  animation: fadeInUp 1.5s ease;
}
.hero-content h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.hero-content h1 span {
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-content p {
  color: #bbb;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 550px;
  margin-bottom: 2rem;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.hero-chips span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 140, 0, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  color: #fff;
  transition: 0.3s ease;
}
.hero-chips span:hover {
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  transform: scale(1.05);
}
.cta-btn {
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  border: none;
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 0 25px rgba(255, 120, 0, 0.3);
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(255, 120, 0, 0.5);
}

/* ---------- RIGHT COLUMN (3D CUBE) ---------- */
.hero-cube {
  flex: 1 1 400px;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 2s ease;
}
.cube {
  position: relative;
  width: 220px;
  height: 220px;
  transform-style: preserve-3d;
  animation: rotateCube 10s infinite linear;
}
.face {
  position: absolute;
  width: 220px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  box-shadow: 0 0 25px rgba(255, 120, 0, 0.3);
  background-size: 40px 40px;
}
.front {
  transform: translateZ(110px);
}
.back {
  transform: rotateY(180deg) translateZ(110px);
}
.right {
  transform: rotateY(90deg) translateZ(110px);
}
.left {
  transform: rotateY(-90deg) translateZ(110px);
}
.top {
  transform: rotateX(90deg) translateZ(110px);
}
.bottom {
  transform: rotateX(-90deg) translateZ(110px);
}

@keyframes rotateCube {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

/* ---------- SPARK EFFECTS ---------- */
.spark {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.4), transparent 70%);
  animation: moveSparks 6s linear infinite;
}
.spark1 {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.spark2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  right: 15%;
  animation-delay: 2s;
}
.spark3 {
  width: 100px;
  height: 100px;
  top: 60%;
  left: 20%;
  animation-delay: 3s;
}
.spark4 {
  width: 180px;
  height: 180px;
  bottom: 5%;
  right: 5%;
  animation-delay: 4s;
}

@keyframes moveSparks {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(30px, -40px) scale(1.3);
    opacity: 0.8;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    order: 1;
  }
  .hero-cube {
    order: 2;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .cube {
    width: 220px;
    height: 220px;
  }
  .face {
    width: 220px;
    height: 220px;
  }
}

.spark-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
  animation: moveDots 25s linear infinite;
  opacity: 0.15;
  z-index: 0;
}
@keyframes moveDots {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100px 100px;
  }
}

/* Floating gradient orbs for ambiance */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  animation: float 10s ease-in-out infinite alternate;
}
.orb.orange {
  background: #ff8c00;
  width: 250px;
  height: 250px;
  top: 15%;
  left: 10%;
}
.orb.red {
  background: #ff512f;
  width: 180px;
  height: 180px;
  bottom: 15%;
  right: 10%;
  animation-delay: 3s;
}
.orb.yellow {
  background: #ffd042;
  width: 100px;
  height: 100px;
  top: 60%;
  right: 40%;
  animation-delay: 2s;
}

/* ===== SECTION BASE ===== */
.strike-stats {
  position: relative;
  min-height: 100vh;
  padding: 8rem 6%;
  background: radial-gradient(circle at top left, #0b0b0b 20%, #000);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== GRID TEXTURE BACKGROUND ===== */
.stats-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveGrid 40s linear infinite;
  opacity: 0.07;
  z-index: 0;
}
@keyframes moveGrid {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 80px 80px;
  }
}

/* ===== FLOATING BACKGROUND SHAPES ===== */
.stats-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  background: linear-gradient(
    135deg,
    rgba(255, 140, 0, 0.25),
    rgba(255, 81, 47, 0.25)
  );
  animation: floatShape 10s ease-in-out infinite;
  z-index: 1;
}
.shape1 {
  width: 250px;
  height: 250px;
  top: 20%;
  left: 10%;
}
.shape2 {
  width: 300px;
  height: 300px;
  bottom: 20%;
  right: 15%;
  animation-delay: 3s;
}
.shape3 {
  width: 200px;
  height: 200px;
  top: 65%;
  left: 60%;
  animation-delay: 5s;
}

@keyframes floatShape {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-25px) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
}

/* ===== CONTENT WRAPPER ===== */
.stats-content {
  position: relative;
  z-index: 5;
  text-align: center;
  animation: fadeInUp 1.2s ease;
}
.stats-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== STATS GRID ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ===== STATS CARDS ===== */
.stats-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem 1.5rem;
  backdrop-filter: blur(10px);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 0 25px rgba(255, 81, 47, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.stats-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 40px rgba(255, 140, 0, 0.5);
}

/* ===== HOVER SPARK ANIMATIONS ===== */
.card-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.stats-card:hover .card-bg {
  opacity: 1;
}
.spark {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.5), transparent 70%);
  filter: blur(10px);
  animation: sparkAnim 6s ease-in-out infinite;
}
.spark1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 15%;
}
.spark2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes sparkAnim {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(20px, -30px) scale(1.3);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
}

/* ===== TEXT ===== */
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}
.stat-label {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #ddd;
  position: relative;
  z-index: 2;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE GRID BREAKPOINTS ===== */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-card {
    padding: 2.5rem 1.2rem;
  }
}
@media (max-width: 768px) {
  .strike-stats {
    padding: 6rem 4%;
  }
  .stats-grid {
    gap: 1.5rem;
  }
  .stats-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stats-card {
    padding: 2rem 1.2rem;
  }
}
/* ---------- COURSES SECTION ---------- */
.courses {
  padding: 6rem 5%;
  text-align: center;
  position: relative;
  z-index: 1;
}
.courses h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: var(--orange-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

/* 3D Flip Card */
.card {
  perspective: 1000px;
  position: relative;
}
.card-inner {
  position: relative;
  width: 100%;
  height: 400px;
  transition: transform 1s;
  transform-style: preserve-3d;
}
.card:hover .card-inner {
  transform: rotateY(180deg);
}
.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(255, 120, 0, 0.1);
}
.card-front {
  padding: 1rem;
}
.card-front img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
}
.card-front h3 {
  margin-bottom: 0.5rem;
  color: #fff;
}
.card-front p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card-back {
  background: var(--orange-grad);
  transform: rotateY(180deg);
  color: white;
  padding: 1.5rem;
}
.card-back h3 {
  margin-bottom: 1rem;
}
.card-back ul {
  list-style: none;
  margin-bottom: 1.5rem;
  text-align: left;
}
.card-back ul li::before {
  content: "🔥 ";
}
.price {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.card-back .cta-btn {
  background: white;
  color: #ff512f;
}

/* ---------- ANIMATED SHAPES ---------- */
.card::before,
.card::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.2);
  animation: sparkle 6s linear infinite;
  z-index: 0;
}
.card::after {
  background: rgba(255, 81, 47, 0.25);
  animation-delay: 2s;
}
@keyframes sparkle {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-120px) translateX(60px) scale(0.5);
    opacity: 0;
  }
}

/* ---------- SECTION BASE ---------- */
.battleground {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, #000 40%, #0d0d0d 100%);
  color: #fff;
  padding: 6rem 1rem;
}
.battleground h2 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
}

/* ---------- CONTAINER ---------- */
.battle-container {
  position: relative;
  width: 550px;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 8s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

/* ---------- CORE ---------- */
.core {
  position: absolute;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #ff8c00;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 120, 0, 0.3);
  backdrop-filter: blur(12px);
  z-index: 10;
}

/* ---------- ORBITS ---------- */
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(255, 140, 0, 0.2);
  border-radius: 50%;
  animation: rotate linear infinite;
  transform-origin: center center;
}
.orbit .label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #ff8c00;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  color: #fff;
  backdrop-filter: blur(8px);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 0 15px rgba(255, 120, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

/* ---------- ANIMATIONS ---------- */
@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -55%) scale(1.1);
    opacity: 0.9;
  }
}

/* ---------- ORBIT SIZES & SPEEDS ---------- */
.orbit1 {
  width: 180px;
  height: 180px;
  animation-duration: 20s;
}
.orbit2 {
  width: 230px;
  height: 230px;
  animation-duration: 24s;
  animation-direction: reverse;
}
.orbit3 {
  width: 280px;
  height: 280px;
  animation-duration: 28s;
}
.orbit4 {
  width: 330px;
  height: 330px;
  animation-duration: 30s;
  animation-direction: reverse;
}
.orbit5 {
  width: 380px;
  height: 380px;
  animation-duration: 34s;
}
.orbit6 {
  width: 430px;
  height: 430px;
  animation-duration: 38s;
  animation-direction: reverse;
}
.orbit7 {
  width: 480px;
  height: 480px;
  animation-duration: 42s;
}
.orbit8 {
  width: 530px;
  height: 530px;
  animation-duration: 46s;
  animation-direction: reverse;
}
.orbit9 {
  width: 580px;
  height: 580px;
  animation-duration: 50s;
}
.orbit10 {
  width: 630px;
  height: 630px;
  animation-duration: 54s;
  animation-direction: reverse;
}

/* ---------- SPARKING ANIMATED SHAPES ---------- */
.battle-container::before,
.battle-container::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.3), transparent 70%);
  animation: spark 6s linear infinite;
}
.battle-container::before {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 20%;
  animation-delay: 1s;
}
.battle-container::after {
  width: 250px;
  height: 250px;
  bottom: 10%;
  right: 15%;
  animation-delay: 3s;
}
@keyframes spark {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .battle-container {
    width: 340px;
    height: 340px;
  }
  .core {
    width: 100px;
    height: 100px;
    font-size: 1.1rem;
  }
  .orbit1 {
    width: 140px;
    height: 140px;
  }
  .orbit2 {
    width: 180px;
    height: 180px;
  }
  .orbit3 {
    width: 220px;
    height: 220px;
  }
  .orbit4 {
    width: 260px;
    height: 260px;
  }
  .orbit5 {
    width: 300px;
    height: 300px;
  }
  .orbit6 {
    width: 340px;
    height: 340px;
  }
  .orbit7 {
    display: none;
  }
  .orbit8 {
    display: none;
  }
  .orbit9 {
    display: none;
  }
  .orbit10 {
    display: none;
  }
}

/* ---------- MENTORS SECTION ---------- */
.mentors {
  padding: 6rem 5%;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.mentors h2 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
}
.mentor-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

/* ---------- CARD BASE ---------- */
.mentor-card {
  position: relative;
  width: 320px;
  height: 420px;
  perspective: 1000px;
  transition: transform 0.5s ease;
  opacity: 0;
  transform: translateY(80px) scale(0.9);
  animation: appear 1s ease forwards;
}
@keyframes appear {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ---------- CARD INNER FLIP ---------- */
.mentor-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1s;
}

/* On hover flip */
.mentor-card:hover .mentor-inner {
  transform: rotateY(180deg);
}

/* Scroll-triggered flip (entry animation) */
.mentor-card {
  animation: scrollFlip 1.5s ease forwards;
}
@keyframes scrollFlip {
  0% {
    transform: translateY(80px) rotateY(90deg);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(0) rotateY(0deg);
    opacity: 1;
  }
}

/* ---------- CARD SIDES ---------- */
.mentor-front,
.mentor-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(255, 120, 0, 0.2);
}

/* FRONT SIDE */
.mentor-front {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}
.mentor-front img {
  width: 100%;
  height: 70%;
  flex-grow: 1;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}
.mentor-front h3 {
  margin-top: 1rem;
  color: #fff;
  font-size: 1.3rem;
}
.mentor-front p {
  color: #ccc;
  font-size: 0.95rem;
}

/* BACK SIDE */
.mentor-back {
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  transform: rotateY(180deg);
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

/* GRID TEXTURE ON BACK SIDE */
.back-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  pointer-events: none;
}
.mentor-back h3,
.mentor-back p,
.social-links {
  position: relative;
  z-index: 1;
}
.mentor-back h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}
.mentor-back .designation {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.mentor-back .desc {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.social-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  margin: 0 0.5rem;
  transition: transform 0.3s ease;
}
.social-links a:hover {
  transform: scale(1.3);
}

/* ---------- ANIMATED BACKGROUND SHAPES ---------- */
.spark,
.spark2 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
  animation: moveSparks 6s linear infinite;
}
.spark {
  width: 100px;
  height: 100px;
  background: rgba(255, 140, 0, 0.3);
  top: 20%;
  left: -20%;
}
.spark2 {
  width: 80px;
  height: 80px;
  background: rgba(255, 81, 47, 0.3);
  bottom: -10%;
  right: -15%;
  animation-delay: 2s;
}
@keyframes moveSparks {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(40px, -30px) scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .mentor-grid {
    flex-direction: column;
    align-items: center;
  }
  .mentor-card {
    width: 280px;
    height: 380px;
  }
}

/* ============ BASE ============ */
body {
  font-family: "Poppins", sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* ============ WHY CHOOSE US ============ */
.why-choose {
  padding: 6rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why-choose h2 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  animation: fadeDown 1s ease;
}
.why-choose .subtext {
  color: #ccc;
  max-width: 700px;
  margin: auto;
  font-size: 1rem;
  margin-bottom: 3rem;
}
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-content: center;
}
.choose-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
  animation: fadeUp 1.5s ease;
  box-shadow: 0 0 20px rgba(255, 120, 0, 0.08);
}
.choose-card:hover {
  transform: translateY(-10px) scale(1.03);
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  box-shadow: 0 0 30px rgba(255, 120, 0, 0.4);
}
.choose-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.choose-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.choose-card p {
  color: #eee;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ---------------- STRIKE PROJECTS SECTION ---------------- */
.strike-projects {
  padding: 6rem 5%;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at top left, #0b0b0b 25%, #000);
  overflow: hidden;
  color: #fff;
}

.strike-heading {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeDown 1s ease;
}

.strike-heading span {
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.strike-subtext {
  color: #ccc;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 4rem;
  animation: fadeUp 1.5s ease;
}

/* Grid Layout */
.strike-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  justify-content: center;
  perspective: 1000px;
}

/* 3D Flip Card */
.strike-card {
  position: relative;
  width: 100%;
  height: 400px;
  perspective: 1000px;
}

.strike-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1s ease;
}

.strike-card:hover .strike-card-inner {
  transform: rotateY(180deg);
}

/* Card Faces */
.strike-card-front,
.strike-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  backface-visibility: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 25px rgba(255, 120, 0, 0.1);
  transition: box-shadow 0.5s ease;
}

/* Card Front */
.strike-card-front {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

.strike-card-front img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.strike-card-front h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.strike-card-front p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Card Back */
.strike-card-back {
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 2rem;
  box-shadow: 0 0 30px rgba(255, 81, 47, 0.2);
}

.strike-card-back h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.strike-card-back ul {
  text-align: left;
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.strike-card-back li {
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
}

.strike-card-back li::before {
  content: "⚡";
  position: absolute;
  left: 0;
  color: #fff;
}

/* Button */
.strike-btn {
  background: #fff;
  color: #ff512f;
  text-decoration: none;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.strike-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(255, 120, 0, 0.4);
}

/* Sparkles */
.strike-card::before,
.strike-card::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.15);
  animation: sparkle 6s infinite ease-in-out;
  z-index: 0;
}

.strike-card::after {
  background: rgba(255, 81, 47, 0.2);
  animation-delay: 3s;
}

/* Animations */
@keyframes sparkle {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-100px) translateX(60px) scale(0.5);
    opacity: 0;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover Glow */
.strike-card:hover .strike-card-front,
.strike-card:hover .strike-card-back {
  box-shadow: 0 0 30px rgba(255, 120, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
  .strike-heading {
    font-size: 2.3rem;
  }
  .strike-card-back ul li {
    font-size: 0.9rem;
  }
}

@media (max-width: 720px) {
  .strike-heading {
    font-size: 2rem;
  }
  .strike-grid {
    grid-template-columns: 1fr;
  }
  .strike-card {
    height: 380px;
  }
}

:root {
  --orange-grad: linear-gradient(135deg, #ff8c00, #ff512f);
  --glass-bg: rgba(255, 255, 255, 0.05);
}

/* -------------- HERO SECTION -------------- */
.features-hero {
  text-align: center;
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}

.features-hero::before,
.features-hero::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 81, 47, 0.2);
  filter: blur(100px);
  animation: floatGlow 8s infinite ease-in-out;
}

.features-hero::after {
  background: rgba(255, 140, 0, 0.3);
  top: 100px;
  right: 10%;
  animation-delay: 4s;
}

.features-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--orange-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeDown 1.2s ease;
}

.features-hero p {
  color: #ccc;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeUp 1.5s ease;
}

/* -------------- GRID SECTION -------------- */
.features-grid-section {
  padding: 5rem 5%;
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

/* -------------- FEATURE CARD -------------- */
.feature-card {
  position: relative;
  border-radius: 20px;
  padding: 2rem;
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 25px rgba(255, 120, 0, 0.1);
  backdrop-filter: blur(15px);
  overflow: hidden;
  transition: all 0.5s ease;
  transform: translateY(0);
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 0 30px rgba(255, 81, 47, 0.5);
}

/* Animated Texture Overlay */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.03) 2px,
    transparent 2px,
    transparent 6px
  );
  opacity: 0.3;
  pointer-events: none;
  animation: moveTexture 8s linear infinite;
}

@keyframes moveTexture {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200px 200px;
  }
}

/* Card Content */
.card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: var(--orange-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse 3s infinite ease-in-out;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.8rem;
}

.feature-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
}

/* Floating Glow Elements */
.feature-card::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 140, 0, 0.25);
  border-radius: 50%;
  filter: blur(50px);
  bottom: -30px;
  right: -30px;
  animation: floatGlow 6s infinite ease-in-out alternate;
}

@keyframes floatGlow {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-15px) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

/* -------------- RESPONSIVE DESIGN -------------- */
@media (max-width: 992px) {
  .features-hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 720px) {
  .features-hero h1 {
    font-size: 2rem;
  }
  .feature-card {
    padding: 1.8rem;
  }
}

/* ------------------ GLOBAL STYLES ------------------ */

:root {
  --orange-grad: linear-gradient(135deg, #ff8c00, #ff512f);
  --card-bg: rgba(255, 255, 255, 0.05);
}

/* ------------------ HERO SECTION ------------------ */
.pricing-hero {
  text-align: center;
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}

.pricing-hero h1 {
  font-size: 3rem;
  background: var(--orange-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  animation: fadeDown 1.5s ease;
}

.pricing-hero p {
  color: #ccc;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeUp 1.5s ease;
}

/* Glowing Orbs */
.pricing-hero::before,
.pricing-hero::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.25);
  filter: blur(80px);
  animation: floatGlow 10s infinite ease-in-out alternate;
}

.pricing-hero::after {
  background: rgba(255, 81, 47, 0.25);
  top: 100px;
  right: 10%;
  animation-delay: 3s;
}

/* ------------------ PRICING GRID ------------------ */
.pricing-grid-section {
  padding: 5rem 5%;
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
}

/* ------------------ PRICING CARD ------------------ */
.pricing-card {
  position: relative;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 25px rgba(255, 120, 0, 0.1);
  overflow: hidden;
  transition: all 0.5s ease;
  transform: translateY(0);
}

.pricing-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 0 40px rgba(255, 81, 47, 0.4);
}

/* Card Header */
.card-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  background: var(--orange-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price span {
  font-size: 0.9rem;
  color: #ccc;
}

/* Popular Tag */
.tag {
  position: absolute;
  top: -10px;
  right: -25px;
  background: var(--orange-grad);
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 25px;
  transform: rotate(15deg);
}

/* Features List */
.features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  text-align: left;
}

.features li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  padding-left: 25px;
  position: relative;
  color: #ddd;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff8c00;
}

/* Button */
.pricing-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  color: #ff512f;
  background: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  background: var(--orange-grad);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255, 81, 47, 0.4);
}

/* Highlighted Plans */
.popular {
  background: linear-gradient(
    135deg,
    rgba(255, 81, 47, 0.1),
    rgba(255, 140, 0, 0.15)
  );
  border: 1.5px solid rgba(255, 81, 47, 0.3);
}

.premium {
  background: linear-gradient(
    135deg,
    rgba(255, 120, 0, 0.1),
    rgba(255, 81, 47, 0.15)
  );
}

/* Animated Texture */
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.03) 2px,
    transparent 2px,
    transparent 6px
  );
  opacity: 0.3;
  animation: moveTexture 8s linear infinite;
}

@keyframes moveTexture {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200px 200px;
  }
}

/* Floating Glow */
.pricing-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  bottom: -40px;
  right: -40px;
  background: rgba(255, 140, 0, 0.25);
  filter: blur(60px);
  animation: floatGlow 6s infinite ease-in-out alternate;
}

@keyframes floatGlow {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-15px) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
}

/* Fade Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------ RESPONSIVE DESIGN ------------------ */
@media (max-width: 992px) {
  .pricing-hero h1 {
    font-size: 2.5rem;
  }
  .price {
    font-size: 1.8rem;
  }
}

@media (max-width: 720px) {
  .pricing-hero h1 {
    font-size: 2rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    padding: 2rem;
  }
}

/* ============ OUR MISSION ============ */
.mission {
  padding: 6rem 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at top left, #0b0b0b 30%, #000);
  overflow: hidden;
}
.mission-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.mission-text {
  flex: 1 1 400px;
  animation: fadeUp 1.5s ease;
}
.mission-text h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mission-text p {
  color: #ccc;
  margin-bottom: 1.2rem;
  line-height: 1.7;
  font-size: 1rem;
}
.mission-visual {
  flex: 1 1 400px;
  position: relative;
  animation: fadeRight 1.8s ease;
}
.mission-visual img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 0 30px rgba(255, 120, 0, 0.2);
}
.mission-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 120, 0, 0.25), transparent 70%);
  filter: blur(80px);
  animation: glowPulse 6s infinite ease-in-out;
}

/* ============ CTA SECTION ============ */
.cta {
  position: relative;
  text-align: center;
  padding: 6rem 5%;
  overflow: hidden;
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
  animation: fadeUp 1.5s ease;
}
.cta-content h2 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.cta-content p {
  color: #ccc;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.cta-btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff8c00, #ff512f);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(255, 120, 0, 0.4);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 81, 47, 0.1),
    rgba(255, 140, 0, 0.1)
  );
  animation: moveBg 10s infinite linear;
  z-index: 1;
  filter: blur(60px);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}
@keyframes moveBg {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -50px) scale(1.1);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .why-choose h2,
  .mission-text h2,
  .cta-content h2 {
    font-size: 2rem;
  }
  .mission-content {
    flex-direction: column-reverse;
  }
}

/* ---------- 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: rotateBgLaunch 15s linear infinite;
  z-index: 0;
}
@keyframes rotateBgLaunch {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ---------- CONTENT ---------- */
.launch-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUpLaunch 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: floatLaunch 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 floatLaunch {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(40px, -40px) scale(1.2);
    opacity: 0.8;
  }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUpLaunch {
  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%;
  }
}

/* ---------- 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;
  }
}

/* ---------- 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: fadeInUpContact 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 fadeInUpContact {
  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%;
  }
}

/* ---------- 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;
  }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .menu-icon {
    display: block;
  }
  header {
    justify-content: space-between;
  }
  .hero h2 {
    font-size: 2.2rem;
  }
}
