:root {
  --bg: #0b0f14;
  --accent: #00d1ff;
  --muted: #9aa4b2;
  --glass: rgba(255, 255, 255, 0.03);
  --header-height: 84px;
  --max-width: 1200px;
  --radius: 12px;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
}

/* reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html,
body {
  height: 100%;

  padding-top: 43px;
  /* Header height ke barabar */

}

body {
  background: var(--bg);
  color: #eaf6ff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Show after load fade */
main,
header,
footer {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .9s ease-out, transform .9s ease-out;
}

/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0b0f14;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 9999;
}

.wings-launch {
  width: 100px;
  height: 100px;
  animation: launch 4s ease-in forwards;
}

@keyframes launch {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  /* 50% {
    transform: translateY(-50vh) scale(1.2);
    opacity: 1;
  } */

  100% {
    transform: translateY(-100vh) scale(1.3);
    opacity: 0;
  }
}

canvas {
  width: 100vw;
  height: 100vh;
}

/* Canvas sits behind page (z-index 0) */
#starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  background: radial-gradient(ellipse at center, #000010 0%, #000000 100%);
}

/* Cursor */
.cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 209, 255, 0.95);
  box-shadow: 0 6px 18px rgba(0, 209, 255, 0.12), 0 0 24px rgba(0, 209, 255, 0.12);
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: screen;
  transition: transform .08s linear, width .18s ease, height .18s ease, opacity .2s;
}


.site-header {
  width: 100%;
  padding: 14px 40px;
  position: fixed;
  top: 0;
  z-index: 100;

  /* Transparent Glass Effect */
  background: rgba(255, 255, 255, 0.05);
  /* ultra subtle transparent white */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* Safari support */

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}


.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

/* brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2
}

.brand-text .brand-main {
  font-weight: 800;
  font-size: 18px;
  color: #fff
}

.brand-text .brand-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px
}

/* nav */
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  position: relative;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(72%, 900px);
  pointer-events: none;
  height: 1px
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0 auto;
  justify-content: center;
  z-index: 2
}

.nav-links a {
  color: #e6eef6;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
  transition: color .18s ease
}

/* .nav-links a::after {
  content: "";
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  bottom: -8px;
  height: 2px;
  width: 60%;
  background: linear-gradient(90deg, var(--accent), #7df5ff);
  border-radius: 2px;
  transition: transform .22s ease;
  transform-origin: center;
  opacity: 0.95;
} */

.nav-links li {
  position: relative
}

.nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1)
}

/* CTA */
.nav-cta {
  margin-left: auto;
  z-index: 2
}

.btn {
  display: inline-block;
  font-weight: 600;
  border-radius: 12px;
  padding: 9px 16px;
  text-decoration: none;
  color: #eaf6ff;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: transparent
}

.btn.contact {
  background: linear-gradient(90deg, var(--accent), #7df5ff);
  color: #00121a;
  box-shadow: 0 10px 30px rgba(0, 209, 255, 0.06)
}

/* HAMBURGER CSS */
.hamburger {
  width: 32px;
  height: 24px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 10000;
}

.hamburger span {
  width: 100%;
  height: 3.5px;
  background: white;
  border-radius: 5px;
}

/* Hero Carousel */
.hero-carousel {
  display: flex;
  width: 100%;
  overflow: hidden;
  margin-left: 0;
  margin: 0%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  width: 100vw;
  /* Full viewport width */
  height: 100vh;
  /* Full viewport height */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.heading-gradient {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff, #00d1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  line-height: 1.2;
  margin-top: 50px;
}

.heading-gradientt {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
  margin-top: 90px;
}


.hero-slide {
  position: relative;
  /* pseudo-element ke liye zaroori */
  height: 525px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(107, 105, 105, 0.01));
  border-radius: var(--radius, 14px);
  padding: 18px;
  border: 3px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  overflow: hidden;
  /* pseudo-element ko clip karne ke liye */
}

/* Full width bottom glow */
.hero-slide::after {
  content: '';
  position: absolute;
  margin: 0%;
  bottom: 0;
  /* div ke bottom se start */
  left: 0;
  width: 100%;
  /* full width cover */
  height: 150px;
  /* adjust height for bigger glow */
  background: radial-gradient(circle at center bottom, rgba(0, 209, 255, 0.4) 0%, transparent 80%);
  filter: blur(100px);
  /* soft, realistic glow */
  pointer-events: none;
  /* click events text/button ke liye block na kare */
  z-index: 0;
  /* text aur image ke peeche rahe */
}



.heading-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 500px;
  /* adjust height as needed */
}

.slide-contentt {
  position: relative;
  width: 50%;
  padding: 40px 20px;
  /* adjust padding */

}

.slide-contentt p {
  background: linear-gradient(90deg, #ffffff, #00d1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-content {
  position: relative;
  z-index: 1;
  /* text image ke upar dikhe */
  text-align: center;
  /* ya center, jo chahiye */
  padding: 40px 20px;
  /* adjust padding */
}

/* Animate the earth */
@keyframes rotateEarth {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.heading-wrapper::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  /* center ke liye */
  width: 400px;
  /* adjust size */
  height: 400px;
  /* adjust size */
  margin-left: -200px;
  /* center ke liye half width negative */
  background-image: url('./earth.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;

  /* Rotation */
  animation: rotateEarth 20s linear infinite;
  /* 20 seconds me 360°, continuously */
  transform-origin: center center;
  /* rotation center */
}

.heading-wrapper {
  position: relative;
  z-index: 1;
  /* text image ke upar rahe */
}

.features-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 85px;
  flex-wrap: wrap;
  margin-left: 25px;
}

#courses {
  position: relative;
  margin-top: -99px;
  /* adjust as per your hero height */
  z-index: 5;
  margin-bottom: 0%;
}

/* ---------- BASE STYLING ---------- */
.feature-box {
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.06);
  padding: 40px 35px;
  text-align: center;
  border-radius: 16px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
  transition: 0.35s ease;
  border-bottom: 3px solid transparent;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-box:hover {
  border-bottom: 3px solid #303a72;
  transform: translateY(-4px);
}

/* center wala box upar */
.center-box {
  margin-top: -60px;
  padding-top: 50px;
}

/* ---------- ICON & TEXT ---------- */
.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 22px auto;
  filter: drop-shadow(0 0 14px rgba(0, 255, 140, 0.25));
  opacity: 0.95;
}

.feature-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(0, 255, 140, 0.35);
}

.feature-box p {
  font-size: 14.5px;
  color: #d8e6ee;
  line-height: 1.45;
  font-weight: 400;
  opacity: 0.92;
  margin-top: 6px;
}

/* ---------- RESPONSIVE GRID CONTAINER ---------- */
.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- RESPONSIVENESS ---------- */

/* Tablet screens */
@media (max-width: 992px) {
  .feature-box {
    width: 300px;
    height: 320px;
    padding: 30px 25px;
  }

  .feature-box h3 {
    font-size: 18px;
  }

  .feature-box p {
    font-size: 14px;
  }
}

/* Small tablets & large phones */
@media (max-width: 768px) {
  .features-container {
    gap: 25px;
  }

  .feature-box {
    width: 90%;
    height: auto;
  }

  .center-box {
    margin-top: 0;
    padding-top: 30px;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .feature-box {
    width: 100%;
    height: auto;
    padding: 25px 20px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-box h3 {
    font-size: 17px;
  }

  .feature-box p {
    font-size: 13.5px;
  }
}

@media(max-width:768px) {
  .center-box {
    margin-top: 0;
  }
}

.stats-section {
  width: 100%;
  padding: 70px 0;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stats-container {
  display: flex;
  gap: 70px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.stat-box {
  width: 280px;
  height: 180px;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  border-bottom: 3px solid #19ff91;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  /* Smooth hover transition */
  position: relative;
  overflow: hidden;
}

/* Hover effect */
.stat-box::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(68, 69, 70, 0.4) 0%, transparent 70%);
  transform: translateX(-50%) scale(0);
  transition: transform 0.5s ease, opacity 0.5s ease;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.stat-box:hover::after {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}


.stat-box h2 {
  font-size: 45px;
  color: white;
  margin: 0;
  font-weight: 700;
  letter-spacing: 1px;
}

.stat-box p {
  color: #19ff91;
  font-size: 18px;
  margin-top: 8px;
  font-weight: 500;
}

.center {
  transform: translateY(-40px);
}


#typewriter {
  font-size: 4rem;
  /* bada font */
  font-weight: 800;
  color: #ffffff;
  border-right: 3px solid #00d1ff;
  /* cursor */
  white-space: pre-wrap;
  /* line break allow kare */
  overflow: hidden;
  width: 100%;
  /* fixed width */
  max-width: 600px;
  /* fix width for 2 words first line */
  display: inline-block;
  line-height: 1.2;
  /* proper line spacing */
  background: linear-gradient(90deg, #ffffff, #00d1ff);
  /* gradient color */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.slide-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

.slide-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  position: relative;
}

.slide-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;

  /* Smooth jump animation */
  animation: jumpIn 1s ease-out forwards;
  animation-delay: 0.3s;
  /* delay for better effect */
}

/* Keyframes for jump animation */
@keyframes jumpIn {
  0% {
    transform: translateY(30px);
    opacity: 0.2;
    /* start slightly visible so image shows */
  }

  50% {
    transform: translateY(-10px);
    /* overshoot */
    opacity: 1;
  }

  80% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(0);
    /* final position */
    opacity: 1;
    /* fully visible */
  }
}

/* Optional: continuous floating effect after jump */
.slide-image img.float {
  animation: float 3s ease-in-out infinite alternate;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}


.slide-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  /* ya apna color */
  margin-bottom: 16px;
  font-size: 90px;
}

.slide-content button {
  padding: clamp(8px, 2vw, 12px) clamp(12px, 4vw, 20px);
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.btnnprimary {
  position: relative;
  display: inline-block;
  padding: clamp(10px, 2vw, 14px) clamp(20px, 4vw, 28px);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: white;
  background: transparent;
  border: 2px solid #00d1ff;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 1;
  margin-top: 20px;
  text-decoration: none;
}

/* Background animation (left → right) */
.btnnprimary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #00d1ff;
  z-index: -1;
  transition: width 0.4s ease;
  border-radius: 8px;
}

/* On hover → background fills left to right */
.btnnprimary:hover::before {
  width: 100%;
}

/* Text color change on hover */
.btnnprimary:hover {
  color: #000;
}


/* Buttons */
.prevBtn,
.nextBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
}

.prevBtn {
  left: 10px;
}

.nextBtn {
  right: 10px;
}

#infinity-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

#infinityCanvas {
  width: 100%;
  height: 100%;
  display: block;
}



.btn.primary {
  background: linear-gradient(90deg, var(--accent), #7df5ff);
  color: #00121a;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 209, 255, 0.06)
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(230, 240, 250, 0.9)
}

/* sections */
.section {
  padding: 60px 20px;
  position: relative;
  z-index: 1
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px
}

/* courses grid */
.section-title {
  font-size: 28px;
  margin-bottom: 6px;
  font-weight: 700
}

.section-sub {
  color: var(--muted);
  margin-bottom: 18px
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px
}

/* course card */
.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.03)
}

.card h4 {
  margin-bottom: 8px
}

.card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px
}

.card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px
}

/* WHY Section */
#why {
  position: relative;
  background: #000;
  padding: 100px 0 0;
  margin-top: -65px;
  width: 100%;
  overflow: hidden;
  /* ensures no overflow on small screens */
}

#why::before {
  content: "";
  position: absolute;
  /* inset: 0; */
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

/* Responsive Adjustments */

/* Large screens (Desktops) */
@media (min-width: 1200px) {
  #why {
    padding: 120px 0 0;
  }
}

/* Medium screens (Tablets) */
@media (max-width: 992px) {
  #why {
    padding: 80px 0 0;
    margin-top: -50px;
  }
}

/* Small screens (Mobiles) */
@media (max-width: 768px) {
  #why {
    padding: 60px 0 0;
    margin-top: 0px;
    width: 100%;
  }
}

/* Extra small screens */
@media (max-width: 420px) {
  #why {
    padding: 50px 0 0;
    margin-top: -20px;
    width: 100%;
  }
}

.time_img {
  width: 450px;
  height: 230px;
  border-radius: 8px;
  margin-top: 80px;
  object-fit: cover;
  /* ✅ image bilkul perfect clear show */
  image-rendering: auto;
  /* ✅ prevent blur */
  animation: smoothJump 2.2s infinite ease-in-out;
}

@keyframes smoothJump {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* content container */
.div1 {
  width: 40%;
  margin-left: 40px;
}

.time_text {
  margin: auto;
  text-align: left;
  margin-top: 80px;
}

/* h3 bold clean */
.time_text h3 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  font-weight: bold;
  margin-top: 0%;
}

/* paragraph light white clean */
.time_text p {
  color: rgba(255, 255, 255, 0.7);
  /* ✅ light white but readable */
  font-size: 15px;
  line-height: 1.6;
  margin-top: 10px;
  background: linear-gradient(90deg, #ffffff, #00d1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-contentt p {
  color: rgba(255, 255, 255, 0.7);
  /* ✅ light white but readable */
  font-size: 25px;
  line-height: 1.6;
  margin-top: 10px;
}

/* main container */
.main_div {
  width: 90%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin: auto;
  margin-top: 80px;
}

/* Center Line */
.main_div::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  left: 52%;
  top: 0;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, #0a2221 0%, #43d3d1 50%, #0a2221 100%);
  border-radius: 50px;
}


.our-services {
  padding: 80px 20px;
  margin-left: 50px;
  margin-right: 50px;
}

/* --- Service Card Grid Layout --- */
.services-row {
  display: grid;
  /* 4 columns ke liye grid setup */
  grid-template-columns: repeat(4, 1fr);

  /* Cards ke beech ka bahut chhota gap, jisse dark line dikhe */
  max-width: 1200px;
  /* Max width set kiya gaya hai */
  margin: 0 auto;
  /* Center alignment */
  border: 1px solid rgba(255, 255, 255, 0.05);
  /* Outer border */
}

/* Individual service card */
.service-card {
  /* Existing Styles */
  padding: 40px 30px;
  text-align: left;
  height: 100%;
  box-sizing: border-box;

  /* Base Color: Image ke black background se match karta hua */


  /* Left border (Aapke pichle code se liya gaya) */
  border-left: 1px solid rgba(255, 255, 255, 0.1);

  /* Transition for smooth effect */

}

.service-card:hover {
  /* Base background dark */
  background-color: #1a1a1a;

  /* Halo/light effect from top-left */
  background-image: radial-gradient(circle at top left, rgba(255, 255, 255, 0.089), rgba(255, 255, 255, 0) 70%);
  background-blend-mode: lighten;

  /* Card ko halka sa upar uthana */
  transform: translateY(-3px);

  /* Left border highlight */
  border-left-color: rgba(255, 255, 255, 0.3);

  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Icon on top */
.feature-icon {
  width: 45px;
  height: 45px;
  object-fit: contain;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
  /* Smooth transition */
}

/* Hover effect: icon jump */
.service-card:hover .feature-icon {
  transform: translateY(-10px);
  /* Jump up by 10px */
}


/* Heading - BOLD aur Spacing */
.service-card h3 {
  font-size: 24px;
  /* Size image se match kiya gaya */
  font-weight: bold;
  /* Bold effect */
  margin-top: 0;
  margin-bottom: 10px;
  /* h3 aur p ke beech ka gap */
  color: #fff;
}

/* Paragraph */
.service-card p {
  font-size: 14px;
  color: #9aa4b2;
  /* Light grey text color */
  line-height: 1.5;
  margin-top: 0;
}

/* --- Responsive Adjustments (Mobile, Tablet) --- */

@media (max-width: 1024px) {

  /* Tablet view: 2 columns */
  .services-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {

  /* Mobile view: 1 column */
  .services-row {
    grid-template-columns: 1fr;
  }

  .our-services {
    padding: 40px 10px;
  }
}

.achHeading {
  font-family: 'Inter', sans-serif;
  font-size: 80px;
  font-weight: 800;
  text-align: center;
  margin-top: 50px;
  /* niche shift */

  background: linear-gradient(to bottom, #ffffff 0%, #43d3d1 50%, #0a2221 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.65));
  /* text sharp banayega */
}

.bitwings-about {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.bitwings-about p {
  color: #d0d4db;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 30px;

}

.bitwings-about p strong {
  font-weight: 600;
  color: #ffffff;
}

@media(max-width:700px) {
  .bitwings-about p {
    font-size: 17px;
    line-height: 1.7;
  }
}

.achHeadingg {
  font-family: 'Inter', sans-serif;
  font-size: 80px;
  font-weight: 800;
  text-align: center;
  margin-top: 50px;
  color: white;

  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.65));
  /* text sharp banayega */
}

/* Trust box styling (same as before) */
.trust-box {
  width: 260px;
  height: 150px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
  padding: 15px;
  box-sizing: border-box;
  /* Animation */
  animation: jump 2s infinite;
}

/* Horizontal and vertical lines */
.trust-box::before,
.trust-box::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.trust-box::before {
  top: -1.5px;
}

.trust-box::after {
  bottom: -1.5px;
}

.trust-box .vline1,
.trust-box .vline2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 130%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.trust-box .vline1 {
  left: -1.5px;
}

.trust-box .vline2 {
  right: -1.5px;
}

/* Text */
.trust-box h2 {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1;
}

.trust-box p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #00f7e3;
  letter-spacing: .5px;
  text-transform: uppercase;
  text-align: center;
}

/* Hover effect */
.trust-box:hover::before,
.trust-box:hover::after,
.trust-box:hover .vline1,
.trust-box:hover .vline2 {
  opacity: 0;
}

/* Keyframes for 1 & 3 (up) */
@keyframes jumpUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Keyframes for 2 & 4 (down) */
@keyframes jumpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(15px);
  }
}

.trust-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  margin-top: 80px;
}

/* Apply animations to boxes */
.trust-container .trust-box:nth-child(1),
.trust-container .trust-box:nth-child(3) {
  animation: jumpUp 2s infinite ease-in-out;
}

.trust-container .trust-box:nth-child(2),
.trust-container .trust-box:nth-child(4) {
  animation: jumpDown 2s infinite ease-in-out;
}

/* why */
.why-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px
}

.why-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.00));
  padding: 18px;
  border-radius: 12px;
  flex: 1;
  min-width: 220px
}

/* footer */
.site-footer {
  padding: 40px 20px;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02));
  margin-top: 30px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 300px;
  gap: 18px;
  align-items: start
}




.content-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Media Queries */
@media(max-width:1080px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:820px) {
  .nav-links {
    display: none;
    position: absolute;
    right: 14px;
    top: calc(var(--header-height) + 6px);
    flex-direction: column;
    background: rgba(9, 12, 15, 0.96);
    padding: 14px;
    border-radius: 10px;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    width: 220px
  }

  .nav-links.open {
    display: flex
  }

  .nav-cta {
    display: none
  }

  .nav-toggle {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px
  }

  .courses-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:480px) {
  .brand-text .brand-main {
    font-size: 16px
  }

  .hero-title {
    font-size: 28px
  }

  .header-inner {
    padding: 10px 16px
  }

  .hero-slide {
    height: auto;
    padding: 12px;
  }

  .slide-content h1 {
    font-size: 1.8rem;
  }

  .slide-content button {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
}

/* FOOTER BASE STYLE */
.bit_footer {
  width: 100%;
  background: transparent;
  color: #ddd;
  font-family: "Inter", sans-serif;
  margin-top: 100px;
  /* padding: 70px 80px 30px; */
  box-sizing: border-box;
}

.footer_box {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-left: 50px;
}

.footer_logo {
  width: 150px;
  margin-bottom: 20px;
}

.footer_desc {
  font-size: 18px;
  line-height: 30px;
  max-width: 450px;
  margin-bottom: 25px;
}

.footer_col h3 {
  font-size: 22px;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 600;
}

.footer_col ul li {
  list-style: none;
  margin-bottom: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.footer_col ul li:hover {
  color: #fff;
  transform: translateX(3px);
}

.social_links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social_links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 22px;
  transition: 0.3s;
}

.social_links a:hover {
  transform: translateY(-3px);
}

.copy_right {
  margin-top: 30px;
  text-align: center;
  font-size: 17px;
  color: #888;
  padding-bottom: 30px;
}

/* CONTACT FOOTER */
.contact_footer {
  width: 30%;
  min-width: 280px;
}

.contact_footer h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
}

.contact_footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact_footer ul div {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact_footer ul li {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 23px;
  margin: 0;
}

/* Icons */
.contact_footer svg {
  min-width: 24px;
  min-height: 24px;
  opacity: 0.85;
  transition: .3s ease;
}

.contact_footer svg:hover {
  opacity: 1;
}

/* =============================
   RESPONSIVE BREAKPOINTS
============================= */

/* Large screens (1200px+) */
@media (min-width: 1200px) {
  .bit_footer {
    /* padding: 80px 100px 40px; */
  }
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .bit_footer {
    padding: 60px 60px 30px;
    margin-left: 0;
  }

  .footer_box {
    justify-content: space-between;
    gap: 30px;
  }

  .footer_desc {
    font-size: 16px;
    line-height: 28px;
  }

  .contact_footer {
    width: 45%;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {

  .bit_footer {
    padding: 50px 30px 25px;
  }

  .footer_box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0%;
  }

  .footer_logo {
    width: 130px;
  }

  .footer_col {
    width: 100%;
    text-align: center;
  }

  .footer_col h3 {
    font-size: 20px;
  }

  .footer_col p {
    text-align: center;
  }

  .footer_desc {
    font-size: 15px;
    line-height: 26px;
  }

  .contact_footer {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .contact_footer ul div {
    justify-content: center;
  }

  .social_links {
    justify-content: center;
    margin-top: 15px;
  }

  .copy_right {
    font-size: 15px;
    margin-top: 20px;
  }
}


/* ------------------------------ */
/* 📱 Mobile (max-width: 480px)   */
/* ------------------------------ */

@media (max-width: 480px) {

  .bit_footer {
    padding: 40px 20px;
  }

  .footer_col h3 {
    font-size: 18px;
  }

  .footer_desc {
    font-size: 14px;
  }

  .social_links a {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .copy_right {
    font-size: 14px;
  }
}


/* ------------------------------ */
/* 📱 Small Mobile (max-width: 400px) */
/* ------------------------------ */

@media (max-width: 400px) {

  .bit_footer {
    padding: 35px 18px;
  }

  .footer_desc {
    font-size: 13px;
  }

  .footer_col h3 {
    font-size: 16px;
  }

  .social_links a {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .copy_right {
    font-size: 13px;
  }
}


/* ------------------------------ */
/* 📱 Extra Small (max-width: 360px) */
/* ------------------------------ */

@media (max-width: 360px) {

  .bit_footer {
    padding: 30px 16px;
  }

  .footer_col h3 {
    font-size: 15px;
  }

  .footer_desc {
    font-size: 12.5px;
  }

  .social_links a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .copy_right {
    font-size: 12px;
  }
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  border-radius: 12px;
}

.time_img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  /* subtle transparent overlay */
}

/* VIEW MORE button style */
.view-more-btn {
  position: relative;
  display: inline-block;
  padding: 14px 40px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 2px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  margin-top: 80px;
}

/* Corner borders */
.view-more-btn::before,
.view-more-btn::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

.view-more-btn::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.view-more-btn::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

/* Hover animation */
.video-container:hover .video-overlay {
  opacity: 1;
}

.view-more-btn:hover::before {
  width: 100%;
  height: 100%;
}

.view-more-btn:hover::after {
  width: 100%;
  height: 100%;
}

.back-btn {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  background: transparent;
  border: 2px solid #00d1ff;
  padding: 6px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: #00d1ff;
  color: #0b0f14;
}

/* Video Section */
.video-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -80px;

}

.main-video {
  width: 80%;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 209, 255, 0.3);
}

/* Details Section */
.details {
  max-width: 900px;
  margin: 30px auto 60px;
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.details h2 {
  color: #00d1ff;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.details p {
  margin-bottom: 20px;
  color: #d6d6d6;
}

.info-list {
  list-style: none;
  padding: 0;
  color: #bfbfbf;
}

.info-list li {
  margin-bottom: 8px;
}

.glass-btn {
  position: relative;
  display: inline-block;
  padding: 14px 40px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 2px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  margin-top: 80px;
}

.glass-btn::before,
.glass-btn::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

.glass-btn::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.glass-btn::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.glass-btn:hover::before {
  width: 100%;
  height: 100%;
}

.glass-btn:hover::after {
  width: 100%;
  height: 100%;
}

.bitwingss-about {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.bitwingss-about p {
  color: #d0d4db;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #ffffff, #455c62);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.bitwingss-about p strong {
  font-weight: 600;
  color: #ffffff;
}

@media(max-width:700px) {
  .bitwingss-about p {
    font-size: 17px;
    line-height: 1.7;
  }
}

.graphic-design-section {

  color: #ffffff;
  padding: 80px 20px;
  font-family: 'Arial', sans-serif;
}

.container {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.text-content {
  flex: 1 1 600px;
  margin-right: 40px;
}

.text-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ffffff;
  /* Full white */
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #c0c5c9;
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.breadcrumb a {
  color: #00d1ff;
  text-decoration: none;
  margin-right: 5px;
}

.breadcrumb span {
  color: #ffffff;
}

.icon-content {
  flex: 1 1 400px;
  text-align: center;
}

.icon-content img {
  max-width: 80%;
  height: auto;
  animation: jump 2s ease-in-out infinite;
  /* Smooth continuous jump */
  margin-top: 100px;
}

@keyframes jump {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
    /* Jump height */
  }
}


.simple-menu {
  list-style: none;
  /* padding: 40px 20px; */
  margin: 0;
}

.simple-menu li {
  margin: 15px 0;
}

.simple-menu a {
  text-decoration: none;
  color: #d3d3d3;
  /* Soft white/gray */
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.simple-menu a:hover {
  color: #ffffff;
  /* Brighter on hover */
}


.contact-section {
  padding: 80px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

/* ---------- Left Side ---------- */
.contact-info {
  flex: 1 1 45%;
}

.contact-info h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info p {
  color: #c0c5c9;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 25px;
}

.contact-info hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 30px 0;
}

.info-block h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.info-block p {
  color: #b5b5b5;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ---------- Right Side ---------- */
.contact-form {
  flex: 1 1 45%;
  background: #0f0f0f;
  padding: 30px;
  border-radius: 12px;
}

.contact-form h2 {
  font-size: 1.4rem;
  margin-bottom: 25px;
}

.contact-form label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: #ddd;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #222;
  background: #111;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00d1ff;
}

/* ---------- Button ---------- */
.btnnprimary {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: transparent;
  border: 2px solid #00d1ff;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
}

/* Left-to-right hover fill */
.btnnprimary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #00d1ff;
  z-index: -1;
  transition: width 0.4s ease;
  border-radius: 8px;
}

.btnnprimary:hover::before {
  width: 100%;
}

.btnnprimary:hover {
  color: #000;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    flex: 1 1 100%;
  }
}

#adminBtn {
  display: none;
  /* hidden by default */
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background: #00d1ff;
  color: black;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
}

#adminBtn:hover {
  background: linear-gradient(90deg, #00d1ff, #0099cc);
}

.table-container {
  width: 100%;
  max-width: 1100px;
  background: #2b2b2b;
  border-radius: 10px;
  padding: 20px 25px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

h2 {
  margin-bottom: 20px;
  color: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

table thead {
  background: #111;
}

table th,
table td {
  padding: 12px 15px;
  border-bottom: 1px solid #444;
  text-align: left;
  color: #ddd;
}

table tbody tr:hover {
  background: #383838;
}

.table-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.rows-per-page {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rows-per-page select {
  padding: 5px 10px;
  border-radius: 5px;
  border: none;
  outline: none;
  background: #444;
  color: #fff;
}

.pagination {
  display: flex;
  gap: 8px;
}

.pagination button {
  background: #333;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.pagination button:hover {
  background: #555;
}

.pagination button.active {
  background: #007bff;
}

.features {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  padding: 60px 5%;
  flex-wrap: nowrap;
  /* prevent wrapping */
  background: #000;
  /* optional dark bg */
  box-sizing: border-box;
}

.feature-card {
  flex: 1;
  max-width: 32%;
  display: flex;
  align-items: center;
  background: #0d0d0d;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 220px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.12);
}

.feature-number {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  padding: 40px 60px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
}

.feature-content {
  padding: 30px;
}

.feature-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.feature-content p {
  color: #aaa;
  line-height: 1.7;
  font-size: 1rem;
}

/* ---------- Responsive for smaller screens ---------- */
@media (max-width: 992px) {
  .features {
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-card {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

.stats-section {
  padding: 80px;
}

.stats-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

/* Jump keyframes */
@keyframes jump {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
    /* upar ki taraf jump */
  }
}

.stats-image img {
  width: 380px;
  height: 420px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  animation: jump 2s ease-in-out infinite;
  /* Jump effect */
}


.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 300px);
  grid-gap: 30px;
}

.stat-box {
  background: #0d0d0d;
  border: 1px solid #f1f1f1;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.stat-box h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.stat-box p {
  color: #8a8a8a;
  font-size: 1rem;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .stats-container {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.trust-containerr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 51px;
  max-width: 1200px;
  margin: auto;
  padding: 20px;

}

.box2 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ---------- Large Tablets ---------- */
@media (max-width: 992px) {
  .slide-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .slide-contentt h1 {
    font-size: 38px;
  }

  .slide-contentt h2 {
    font-size: 28px;
  }

  .slide-contentt p {
    font-size: 15px;
  }

  .slide-image img {
    max-width: 80%;
  }

  .slide-content h1 {
    font-size: 48px;
  }

  .slide-content h2 {
    font-size: 22px;
  }
}

/* ---------- Tablets & Mobiles ---------- */
@media (max-width: 768px) {
  .hero {
    height: auto;
    /* padding: 80px 0; */
  }


  .slide-container {
    flex-direction: column;
    width: 90%;
    gap: 25px;
  }

  .slide-contentt h1 {
    font-size: 32px;
  }

  .slide-contentt h2 {
    font-size: 24px;
  }

  .slide-contentt p {
    font-size: 14px;
  }

  .slide-image img {
    width: 90%;
    height: auto;
  }

  .prevBtn,
  .nextBtn {
    font-size: 35px;
    padding: 6px 12px;
  }
}

/* ---------- Small Mobiles ---------- */
@media (max-width: 480px) {
  .slide-content h1 {
    font-size: 36px;
  }

  .slide-content h2 {
    font-size: 18px;
  }

  .slide-contentt h1 {
    font-size: 28px;
  }

  .slide-contentt h2 {
    font-size: 20px;
  }

  .slide-contentt p {
    font-size: 13px;
    line-height: 1.4;
  }

  .btnnprimary {
    padding: 10px 25px;
    font-size: 14px;
  }

  .slide-image img {
    width: 100%;
  }

  .prevBtn,
  .nextBtn {
    display: none;
    /* hide nav buttons on small phones for clean UI */
  }
}

/* Basic setup */
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #000;
  color: #fff;
}

/* Section Layout */
.mission-section {
  padding: 80px 10%;
  background-color: #000;
}

.mission-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* Left Content */
.mission-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.mission-text h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.mission-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #ccc;
}

/* Right Image */
.mission-image {
  flex: 1 1 40%;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mission-image img {
  width: 420px;
  height: 420px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
  animation: jump 2.5s ease-in-out infinite;
}

/* Jump Animation */
@keyframes jump {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .mission-text h1 {
    font-size: 40px;
  }

  .mission-text p {
    font-size: 17px;
  }

  .mission-image img {
    width: 320px;
    height: 360px;
  }
}

@media (max-width: 768px) {
  .mission-container {
    flex-direction: column;
    text-align: center;
  }

  .mission-image {
    margin-top: 40px;
  }

  .mission-image img {
    width: 90%;
    height: auto;
  }
}