/** @format */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden; /* Horizontal scroll rokne ke liye */
}
:root {
  --bg-dark: #00041a;
  --accent-blue: #4d76ff;
  --glow: rgba(77, 118, 255, 0.4);
}

.hero-section {
  /* background-image: radial-gradient(circle at 70% 50%, #001242 0%, #00041a 100%),url('../assets/images/bg13.png'); */
  background-image:
    linear-gradient(rgba(0, 18, 66, 0.8), rgba(0, 4, 26, 0.9)),
    url("/assets/images/bg13.png");

  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  padding: 20px 8%;
  color: white;
  font-family: "Arial", sans-serif;
  overflow: hidden;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  /* font-size: 14px; */
}

.btn-demo {
  background: linear-gradient(90deg, #4d76ff, #2e44ff);
  color: white;
  padding: 14px 20px;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 0 15px var(--glow);
}

/* Hero Content Layout */
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
}

.hero-text {
  flex: 1;
  /* max-width: 500px; */
}

.hero-text h1 {
  font-size: 3.5rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text p {
  color: #aaa;
  margin-bottom: 30px;
}

/* Circular Diagram Styling */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.orbit-container {
  position: relative;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .core-circle {
    width: 120px;
    height: 120px;
    background: white;
    color: black;
    border-radius: 50%;
    display: flex;
    text-align: center;
    align-items: center;
    font-weight: bold;
    font-size: 12px;
    box-shadow: 0 0 40px white;
    z-index: 2;
} */

.core-circle {
  position: absolute;
  width: 140px; /* Thoda bada size */
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  overflow: visible; /* Ring ko bahar nikalne dene ke liye */

  /* Smooth background color change */
  animation: coreGlowChange 8s ease-in-out infinite alternate;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* --- Core Text (Readable everywhere) --- */
.core-text {
  position: relative;
  z-index: 12;
  color: #ffffff;
  font-weight: 900;
  font-size: 14px;
  text-align: center;
  padding: 10px;
  /* Dark glow taaki har color pe dikhe */
  text-shadow:
    0px 0px 8px rgba(0, 0, 0, 0.8),
    0px 0px 2px #000;
  line-height: 1.2;
}

/* --- Inner Rotating Ring (Core ke upar) --- */
.inner-ring {
  position: absolute;
  width: 160px; /* Core se thoda bada */
  height: 160px;
  border: 2px solid transparent;
  border-top: 2px solid #00d4ff; /* Sirf upar ki dhar dikhegi */
  border-bottom: 2px solid #6610f2; /* Niche ki dhar */
  border-radius: 50%;
  z-index: 11;
  /* Yeh satellites se tez ghumega */
  animation: rotateInnerRing 3s linear infinite;
}

/* --- Animations --- */

/* 1. Core ka Background aur Glow badalna */
@keyframes coreGlowChange {
  0% {
    background: radial-gradient(circle, #007bff 20%, #000 100%);
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.6);
  }
  50% {
    background: radial-gradient(circle, #6610f2 20%, #000 100%);
    box-shadow: 0 0 50px rgba(102, 16, 242, 0.7);
  }
  100% {
    background: radial-gradient(circle, #00d4ff 20%, #000 100%);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
  }
}

/* 2. Inner Ring ki tez rotation */
@keyframes rotateInnerRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.satellite {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  backdrop-filter: blur(5px);
}

/* Position Satellites in a circle */
.s1 {
  top: -40px;
  background: rgba(77, 118, 255, 0.3);
  border: 1px solid #4d76ff;
} /* Coaching */
.s2 {
  right: -40px;
  top: 120px;
} /* Schools */
.s3 {
  right: 40px;
  bottom: -20px;
} /* Language */
.s4 {
  left: 40px;
  bottom: -20px;
} /* Enterprise */
.s5 {
  left: -40px;
  top: 120px;
} /* Franchise */

/* --- Visual Container Setup --- */
.hero-visual {
  position: relative;
  width: 600px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::after {
  content: "";
  position: absolute;
  /* Iska size 'orbit-ring' se bada hona chaiye */
  width: 550px;
  height: 550px;
  border: 1px dashed rgba(255, 255, 255, 0.08); /* Bohot halki solid line */
  /* Agar dashed line chaiye to ye use karein: border: 1px dashed rgba(255, 255, 255, 0.1); */
  border-radius: 50%;
  pointer-events: none; /* Ispe click na ho sake */
  z-index: 1; /* Isko peeche rakhne ke liye */

  /* Optional: Thoda glow effect outer ring ke liye */
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.03);
}

/* --- Fixed Inner Core --- */
.core-circle {
  position: absolute; /* Isse yeh center mein fix rahega */
  width: 130px;
  height: 130px;
  background: white;
  color: black;
  border-radius: 50%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.6);
  z-index: 10; /* Sabse upar dikhega */
}

/* --- Rotating Outer Ring --- */
.orbit-ring {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px dashed rgba(255, 255, 255, 0.2); /* Outer circle line */
  border-radius: 50%;
  animation: rotateRing 25s linear infinite; /* Pura ring ghoomega */
}

/* --- Satellite Base Style --- */
.satellite {
  position: absolute;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: white;
  font-weight: bold;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);

  /* Rotation aur Color Change Animations */
  /* reverseRotate text ko seedha rakhega, aur color-specific animation bg change karegi */
  animation: reverseRotate 25s linear infinite;
}

/* --- Har Item ke liye Alag Position aur Unique Color Animation --- */

.s1 {
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  animation:
    reverseRotate 25s linear infinite,
    colorS1 6s infinite alternate;
}
.s2 {
  top: 25%;
  right: -30px;
  animation:
    reverseRotate 25s linear infinite,
    colorS2 6s infinite alternate;
}
.s3 {
  bottom: 5%;
  right: 20px;
  animation:
    reverseRotate 25s linear infinite,
    colorS3 6s infinite alternate;
}
.s4 {
  bottom: 5%;
  left: 20px;
  animation:
    reverseRotate 25s linear infinite,
    colorS4 6s infinite alternate;
}
.s5 {
  top: 25%;
  left: -30px;
  animation:
    reverseRotate 25s linear infinite,
    colorS5 6s infinite alternate;
}

/* --- Unique Color Keyframes --- */

@keyframes colorS1 {
  /* Blue to Purple */
  0% {
    background: rgba(0, 123, 255, 0.4);
    box-shadow: 0 0 20px #007bff;
  }
  100% {
    background: rgba(102, 16, 242, 0.4);
    box-shadow: 0 0 20px #6610f2;
  }
}

@keyframes colorS2 {
  /* Green to Cyan */
  0% {
    background: rgba(40, 167, 69, 0.4);
    box-shadow: 0 0 20px #28a745;
  }
  100% {
    background: rgba(23, 162, 184, 0.4);
    box-shadow: 0 0 20px #17a2b8;
  }
}

@keyframes colorS3 {
  /* Orange to Red */
  0% {
    background: rgba(253, 126, 20, 0.4);
    box-shadow: 0 0 20px #fd7e14;
  }
  100% {
    background: rgba(220, 53, 69, 0.4);
    box-shadow: 0 0 20px #dc3545;
  }
}

@keyframes colorS4 {
  /* Pink to Deep Blue */
  0% {
    background: rgba(232, 62, 140, 0.4);
    box-shadow: 0 0 20px #e83e8c;
  }
  100% {
    background: rgba(0, 50, 150, 0.4);
    box-shadow: 0 0 20px #003296;
  }
}

@keyframes colorS5 {
  /* Yellow to Teal */
  0% {
    background: rgba(255, 193, 7, 0.4);
    box-shadow: 0 0 20px #ffc107;
  }
  100% {
    background: rgba(32, 201, 151, 0.4);
    box-shadow: 0 0 20px #20c997;
  }
}

/* --- Essential Rotations --- */
@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes reverseRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

/* Ring rotation apply karein */
.orbit-ring {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: rotateRing 25s linear infinite;
}

/* Platforms Section Base */
.platforms-section {
  padding: 60px 5%; /* Reduced padding for smaller screens */
  background-color: #ffffff;
  text-align: center;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.section-header h2 {
  font-size: clamp(1.2rem, 4vw, 2rem); /* Fluid typography */
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap; /* Prevents badge from breaking layout */
}

.section-header h1 {
  font-size: clamp(1.8rem, 6vw, 3rem);
  margin: 10px 0;
  font-weight: 800;
  color: #000;
  line-height: 1.2;
}

/* Grid Layout - Mobile First (1 Column) */
.platforms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Card Styling */
.platform-card {
  background: #eef4ff;
  border-radius: 20px;
  padding: 30px 3px;
  display: flex;
  flex-direction: column; /* Stack vertically on mobile */
  justify-content: space-between;
  text-align: left;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.platform-card h3 {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-weight: 700;
}

.platform-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.card-img {
  width: 100%;
  max-width: 250px; /* Prevents image from getting too huge */
  height: auto;
  display: block;
  margin: 0 auto; /* Center image on mobile */
  object-fit: contain;
}

/* Responsive Breakpoints */

/* Tablet: 2 Columns */
@media (min-width: 768px) {
  .platforms-section {
    padding: 80px 8%;
  }

  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .platform-card {
    flex-direction: row; /* Side-by-side on larger screens */
    align-items: center;
    padding: 40px 10px;
  }

  .platform-card .card-content {
    flex: 1;
    padding-right: 20px;
  }

  .platform-card div:last-child {
    flex: 1;
  }

  .card-img {
    margin-top: 0;
    max-width: 100%;
  }
}

/* Desktop: Optional 3 columns if you want them in one row */

/* Responsive for Mobile */
@media (min-width: 2060px) {
  .orbit-ring {
    width: 750px;
    height: 750px;
  }
  .hero-visual::after {
    width: 1000px;
    height: 1000px;
  }
  .nav-links {
    gap: clamp(15px, 2vw, 80px);
    padding: clamp(12px, 2vw, 33px) clamp(12px, 2vw, 100px);
  }

  .core-circle {
    /* position: absolute; */
    width: 200px;
    height: 200px;
  }
  .core-text {
    font-size: 1.5rem;
  }
  .satellite {
    width: 9rem;
    height: 9rem;
    font-size: 1.5rem;
  }
  .btn-demo {
    padding: 26px 20px;
  }
  .header-content p {
    max-width: 900px;
    /* margin: 0 auto 50px; */
    color: #666;
    font-size: 1.5rem;
  }
  .header-content h1 {
    font-size: 3.5rem;
  }

  .header-contents p {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 1.5rem;
  }
}
@media (max-width: 992px) {
  .platforms-grid {
    grid-template-columns: 1fr; /* 1 Column on mobile */
  }

  .section-header h1 {
    font-size: 2.2rem;
  }
}

/* Inteligent lerning */
.transformation-section {
  padding: 80px 0;
  background: #fff;
}

.transformation-section .container {
  padding: 0 8%;
}

.header-content {
  margin-bottom: 40px;
}

.header-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.header-content p {
  color: #666;
  max-width: 600px;
  font-size: 1rem;
}

/* .header-content p {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #666;
} */

/* Blue Banner with Curvy Shape */
/* .blue-banner {
  background:
    linear-gradient(
      135deg,
      rgba(66, 165, 245, 0.9) 0%,
      rgba(30, 136, 229, 0.9) 100%
    ),
    url("assets/images/bg1.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 80px 40px;
  position: relative;
  border-radius: 25px;

  overflow: hidden;
  clip-path: polygon(0 7%, 53% 7%, 55% 0, 100% 0, 100% 100%, 0 100%);
  border-radius: 20px;
  margin-top: -50px;

  box-shadow: 0 15px 35px rgba(30, 136, 229, 0.3);
} */
.blue-banner {
  background:
    linear-gradient(
      135deg,
      rgba(66, 165, 245, 0.9) 0%,
      rgba(30, 136, 229, 0.9) 100%
    ),
    url("assets/images/bg1.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 80px 40px;
  position: relative;
  border-radius: 25px;
  overflow: hidden;

  clip-path: polygon(0 7%, 53% 7%, 55% 0, 100% 0, 100% 100%, 0 100%);
  border-radius: 20px;

  margin-top: -50px; /* keep for desktop */

  box-shadow: 0 15px 35px rgba(30, 136, 229, 0.3);
}
/* Optional: Agar aap chahte hain ki texture thoda aur 'pop' kare, 
   to gradient ki opacity (0.9) ko kam karke (0.7) kar sakte hain */

/* Horizontal Scrolling Wrapper */
.cards-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto; /* Mobile pe swipe karne ke liye */
  padding-bottom: 10px;
}

/* Hide Scrollbar for clean look */
.cards-wrapper::-webkit-scrollbar {
  display: none;
}

.info-cards {
  background: #ffffff;
  min-width: 280px; /* Card width */
  padding: 17px;
  border-radius: 15px;
  flex-shrink: 1;
  transition: transform 0.3s ease;
  /* border: 2px dotted rebeccapurple; */
}

.info-cards:hover {
  transform: translateY(-5px);
}
.mobile-break {
  display: none;
}

/* Phone only */
@media (max-width: 768px) {
  .mobile-break {
    display: block;
  }
}

/* Tablet only */
@media (min-width: 769px) and (max-width: 1024px) {
  .mobile-break {
    display: block;
  }
}
.icon-circle {
  width: 40px;
  height: 40px;
  background: #2979ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.info-cards h3 {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 700;
}

.info-cards p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
/* @media (max-width: 768px) {
  .header-content h1 {
    font-size: 2rem;
  }
  .blue-banner {
    border-top-right-radius: 50px;
    padding: 40px 20px;
  }
} */
@media (max-width: 768px) {
  .blue-banner {
    clip-path: polygon(0 3%, 53% 3%, 55% 0, 100% 0, 100% 100%, 0 100%);
  }
}
/* Tablet */
@media (max-width: 1024px) {
  .blue-banner {
    margin-top: 20px; /* remove overlap */
  }
}

/* Mobile */
@media (max-width: 768px) {
  .blue-banner {
    margin-top: 20px;
    padding: 40px 20px;
    border-top-right-radius: 50px;
  }
}
/* Business section */
/* --- Desktop Styles (Pehle se fixed) --- */
.business-tabs-section {
  padding: 80px 8%;
  background: #000;
  color: white;
  background-image: url("../assets/images/bg10.png");
  background-position: top 7% right -5%;
  background-repeat: no-repeat;
  background-size: 20%;
}

.tabs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 20px;
}

.tabs-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #333;
  padding-bottom: 15px;
}

.content-wrapper {
  display: flex;
  background: #fff; /* White card look */
  border-radius: 30px;
  overflow: hidden;
  color: #000;
  min-height: 450px;
}

.text-side {
  flex: 1.2;
  padding: 60px;
}

.image-side {
  flex: 1;
}

.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Responsive Media Queries --- */

@media (max-width: 992px) {
  .tabs-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .header-left h2 {
    font-size: 2rem;
  }

  .header-right p {
    font-size: 1rem;
    margin-top: 10px;
  }

  /* Tabs ko mobile par scrollable banana */
  .tabs-nav {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .content-wrapper {
    flex-direction: column; /* Text aur Image upar niche */
  }

  .text-side {
    padding: 30px;
    order: 2; /* Text ko image ke niche lana */
  }

  .image-side {
    height: 250px;
    order: 1; /* Image ko upar lana */
  }
}

@media (max-width: 480px) {
  .business-tabs-section {
    padding: 50px 5%;
  }

  .header-left h2 {
    font-size: 1.8rem;
  }

  .badge img {
    width: 4rem !important; /* Demo badge ko thoda chhota karna */
  }

  .text-side h1 {
    font-size: 1.5rem !important;
  }
}

/* Yellow Container with Dots */
.tabs-container {
  background-color: #fdf6d0; /* Pale yellow */
  background-image: radial-gradient(#d1c9a3 1px, transparent 1px);
  background-size: 20px 20px; /* Dotted pattern */
  border-radius: 30px;
  padding: 40px;
  color: #000;
}

/* Navigation Buttons */
.tabs-nav {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.tab-btn {
  padding: 12px 25px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  border-radius: 50px;
  white-space: nowrap;
  transition: 0.3s;
}

.tab-btn.active {
  background: #e6c543; /* Darker yellow/gold for active tab */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Content Layout */
.content-wrapper {
  display: flex;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
}

.text-side {
  flex: 1;
  padding: 60px;
}

.text-side h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.text-side ul {
  margin-top: 30px;
  padding-left: 20px;
}

.text-side li {
  margin-bottom: 15px;
  color: #444;
}

.image-side {
  flex: 1;
}

.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hide inactive content */
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* Our Barand */

.brand-tech-section {
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.header-contents h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.header-contents p {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #666;
  /* font-size: 1.5rem; */
}

.features-visual {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  height: 500px; /* Adjust based on your design */
}

.center-image {
  position: absolute;
  left: 32%;
  top: 17%;
  transform: translate(-50%, -50%);
  width: 400px;
  z-index: 1;
}

.yellow-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  background: #ffcc00;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.center-image img {
  width: 100%;
  border-radius: 0 0 200px 200px;
}

/* Card Styling */
.feature-card {
  position: absolute;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: 280px;
  text-align: left;
  z-index: 2;
}

.icon-box {
  background: #2563eb;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

/* Card Positioning */
.card-left-top {
  left: 5%;
  top: 10%;
}
.card-left-bottom {
  left: 3%;
  bottom: 10%;
}
.card-right-top {
  right: 15%;
  top: 7%;
}
.card-right-bottom {
  right: 7%;
  bottom: 7%;
}

@media (max-width: 768px) {
  .features-visual {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .feature-card {
    position: static;
    margin-bottom: 20px;
    width: 90%;
  }
  .center-image {
    position: static;
    transform: none;
    margin-bottom: 30px;
  }
}

/* Tablet & Mobile (Below 992px) */
@media (max-width: 992px) {
  .navbar {
    padding: 15px 0;
  }
  .hero-section {
    /* background-image: radial-gradient(circle at 70% 50%, #001242 0%, #00041a 100%); */
    height: 127vh;
    padding: 37px 8%;
  }

  /* Navbar Links hide karke mobile menu banana */
  .nav-links {
    display: none; /* Default hide */
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #00041a;
    flex-direction: column;
    padding: 30px;
    gap: 15px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    display: flex;
  } /* JavaScript se toggle hoga */

  .mobile-menu-btn {
    display: block;
    cursor: pointer;
    font-size: 28px;
    color: black;
  }

  .hero-content {
    flex-direction: column; /* Stack vertically */
    text-align: center;
    margin-top: 40px;
    color: #ffffff;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-visual {
    width: 100%;
    height: 450px; /* Thoda chhota height mobile ke liye */
    margin-top: 50px;
  }

  /* Scaling the Orbit for Mobile */
  .orbit-ring {
    width: 300px;
    height: 300px;
  }

  .hero-visual::after {
    width: 400px;
    height: 400px;
  }

  .core-circle {
    width: 100px;
    height: 100px;
    font-size: 11px;
  }

  .satellite {
    width: 70px;
    height: 70px;
    font-size: 10px;
  }

  /* Adjust Satellite positions for smaller orbit */
  .s1 {
    top: -35px;
  }
  .s2 {
    right: -25px;
    top: 30%;
  }
  .s3 {
    bottom: 0;
    right: 10px;
  }
  .s4 {
    bottom: 0;
    left: 10px;
  }
  .s5 {
    top: 30%;
    left: -25px;
  }
}

/* Small Phones (Below 480px) */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-visual {
    height: 350px;
    transform: scale(0.85); /* Pure visual ko thoda scale down karna */
  }

  .nav-btn {
    display: none;
  } /* Mobile par nav button chhipa sakte hain space ke liye */

  .hero-text p {
    font-size: 14px;
  }

  .text-side {
    flex: 1;
    padding: 11px;
  }
}
