/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap");
@import url("//db.onlinewebfonts.com/c/89d11a443c316da80dcb8f5e1f63c86e?family=Bauhaus+93+V2");
@import url("https://fonts.googleapis.com/css2?family=Bangers&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Boogaloo&family=Chau+Philomene+One:ital@0;1&family=Trade+Winds&family=Viga&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Rajdhani:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');

/* Global Variables */
:root {
  --primary: #0d171f;
  --second: #2e0166;
  --bgColor: #502b8c;
  --textColor: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  background: url("/assets/bg5.png") no-repeat center center/cover;
  font-family: "Roboto", sans-serif;
  width: 100%;
  position: relative;
  overflow-x:hidden;


  
}
.header  .icon #logo{
  width: 1000px;
  height: 10px;
  position: absolute;
  top: 10%;
  left: 1%;
}


.bang-text {
  /* font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal; */
    font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Typography */
h1 {
  /* font-family: "Bangers", system-ui;
  font-weight: 400; */
  /* font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal; */
    font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--textColor);
}

h2,
h4,
p {
 font-family: "Rajdhani", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
}

strong {
  text-transform: uppercase;
  font-size: 20px;
}

/* prelaoder */
/* Preloader - Fullscreen */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #0d1720; /* Dark background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* Spinner Animation */
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top: 5px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Spinner Keyframes */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* --- Sticky & Overlapping Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 20px;
  background: rgba(9, 5, 53, 0.336);
  backdrop-filter: blur(5px);
  z-index: 1000;
  /* font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal; */
    font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-style: normal;
  
}

.icon {
  font-size: 50px;
  color: rgb(207, 34, 34);

}

#logo{
  height: 20px;
  width: 40px;
}


/* Navigation */
.nav-list {
  list-style: none;
  display: flex;
  font-size: 25px;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease-in-out;
  /* transform: translateX(100%);
  opacity: 0;
  visibility: hidden; */
}

.nav-list-items {
  padding: 10px 20px;
  
}

.nav-list-items a:hover {

  color:var(--bgColor);
  transition: 0.1s ease;
  text-shadow: white ;
}

.nav-list-items a {
  text-decoration: none;
  color: var(--textColor);
}
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 1100;
  transition: transform 0.3s ease;
  opacity: 0;
}
/* 
.show {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  animation: fadeIn 0.5s ease-in-out forwards;
}

/* Hide Navigation */
.hide {
  transform: translateX(100%);
  opacity: 0;
  animation: fadeOut 0.5s ease-in-out forwards;
}

/* Smooth fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Smooth fade-out animation */
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(50px) scale(0.95);
  }
}
.hamburger-btn.active {
  transform: rotate(90deg);
}

body.blur {
  overflow: hidden; /* Prevent scrolling when modal is open */
}

.page-content.blur {
  filter: blur(5px);
  transition: filter 0.3s ease-in-out;
  pointer-events: none; /* Prevent interactions with the blurred content */
}

/* Modal Styles */
#waitlistModal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  height: 400px;
  background: var(--bgColor);
  color: #fff;
  padding: 70px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
  z-index: 1000;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 2000;

}


#close-modal-btn{
  position: absolute;
  top: -40px;
  right: -30px;
  padding: 10px;
 font-size: 20px;
  background-color: var(--second);
 color: white;
 cursor: pointer;
 border-radius: 10px;
 font-weight: bold;
 font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#close-modal-btn:hover{
   background: (var(--bgColor));
  box-shadow: 0 6px 14px rgba(2, 15, 56, 0.5);
  border: 3px solid white;
}

/* When modal is active, make it visible */
#waitlistModal.active {
  display: block;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* Overlay background */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1500;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;

}

#waitlistModal.show, .modal-overlay.show {
  opacity: 1;
}
/* Show overlay when modal is active */
.modal-overlay.active {
  display: block;
  opacity: 1;}

/* Input field */
#waitlistModal input {
  width: 100%;
  padding: 22px;
  margin-top: 10px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

#waitlistForm{
  position: relative;
}

/* Submit button inside modal */
.cta[data-action="submit-form"] {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  margin-top: 15px;
  color: #fff;
  background:var(--second);
  box-shadow: 0 4px 10px rgba(0, 200, 83, 0.3);
}

.cta[data-action="submit-form"]:hover {
  background: (var(--bgColor));
  box-shadow: 0 6px 14px rgba(2, 15, 56, 0.5);
  border: 3px solid white;
}

/* Close button */
.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
}

.close-modal:hover {
 background-color: (var(--bgColor));
  box-shadow: 0 6px 14px rgba(2, 15, 56, 0.5);
  border: 3px solid white;
}



/* Slide-in animation (NEW) */
@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* --- Hero Section --- */
.hero {
  width: 100vw;
  height: 110vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 60px;
  padding: 3rem;
  border: 7px solid rgb(18, 3, 18);
  background-size: cover;
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
  font-style: normal;
  /* background: linear-gradient(135deg, violet, black); */
  animation: slideBackground 100s infinite linear;
  transition: background 1s ease-in-out;
  overflow: hidden;
}

.hero .hero-content h1{
    /* font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal; */
    font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.hero-content {
  position: relative;
  padding: 2rem;
  /* flex: 1; */
  background-color: #240d55d6;
  border: 5px solid rgba(209, 186, 217, 0.655);
  margin-left: 0;
  height: 450px;
  border-radius: 25px;
  max-width: 40%; /* so text doesn’t get too wide */
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
  font-style: normal;
}



.hero .hero-content h1{
 font-size: 25px;
 

}

/* SWIPPER */

.hero-swiper .swiper {
  position: absolute;
  right: 5%;
  top: 30%;
  width: 35%;
  height: 350px; 
  z-index: 10;
  border-radius: 20px;
  
}

.swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  border: 5px solid rgba(255, 255, 255, 0.457);
  border-radius: 20px;
  overflow: hidden;
}

.swiper-slide::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
    background: radial-gradient(
    ellipse at top center,              /* shape + starting point */
    rgba(0, 0, 0, 0.7) 0%,              /* strong black at center */
    rgba(0, 0, 0, 0.5) 30%,             /* fade */
    rgba(0, 0, 0, 0) 60%                /* transparent */
  );
  border-radius: 20px; 
  pointer-events: none; 
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit:cover;
  border-radius: 20px;
}



.swiper-text{
  position:absolute;
  right: 4%;
  top: 22%;
  font-size: 40px;
  /* font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight:700;
  font-style: normal; */
    font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#play{
  height: 80px;
  width: 20%;
  position:absolute;
  right: 10%;
  top: 75%;
 

}

#coming-soon{
   position:absolute;
  right: 10%;
  top: 88%;
  font-size: 50px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-style: normal;

}
 

.hero-text {
  position: absolute;
  top: 30%;
  width: 90%;
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  text-transform: uppercase;
  background-color: rgba(13, 23, 31, 0.422);
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.7);
  animation: pushReleaseFromRight 0.8s ease-in-out;
}


.hero::before,
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: fade 40s infinite;
  z-index: -1;
  opacity: 0;
}

.hero::before {
  background-image: url("/assets/hero-bg6.jpg");
  animation-delay: 0s;
}

.hero::after {
  background-image: url("/assets/hero-bg2.png");
  animation-delay: 20s;
}

/* Hero Background Animation (Smooth Blending) */
@keyframes slideBackground {
  0% {
    background-image: url("/assets/himg1.webp");
    opacity: 1;
  }

  
  20% {
    background-image: url("/assets/himg4.webp");
    opacity: 1;
  }

  40% {
    background-image: url("/assets/himg6.webp");
    opacity: 1;
  }
  
  60% {
    background-image: url("/assets/himg7.webp");
    opacity: 1;
  }
  80% {
    background-image: url("/assets/himg10.webp");
    opacity: 1;
  }
  90% {
    background-image: url("/assets/himg11.webp");
    opacity: 1;
  }
  100% {
    background-image: url("/assets/himg9.webp");
    opacity: 1;
  }
}




/* Hero Text */
/* Hero Text */
/* --- Call to Action Button --- */
.cta {
  position: absolute;
 bottom: 20px;
 left: 20%;
  padding: 15px 25px;
  border-radius: 15px;
  font-size: 25px;
  /* font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal; */
    font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: #e8e8e8;
  transition: all 250ms;
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  cursor: pointer;
}

.cta:hover {
  color: #e8e8e8;
  background-color: #502b8c}


.hero h1 {
  font-size: 90px;
  text-transform: uppercase;
  font-weight: bold;
  color: white;
  opacity: 0;
}

.hero h1.animate {
  opacity: 1;
  animation: pushReleaseFrom 0.8s ease-out forwards;
}

@keyframes pushReleaseFrom {
  from {
    transform: scale(3);
    opacity: 0;
  }
  30% {
    transform: scale(0.5);
    opacity: 1;
  }
  to {
    transform: scale(1);
  }
}


/* Keyframes for smooth entry */
@keyframes pushReleaseFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  50% {
    transform: translateX(-30px);
    opacity: 1;
  }
  70% {
    transform: translateX(10px);
  }
  to {
    transform: translateX(0);
  }
}



/* --- About Section --- */
.about {
  padding: 100px 20px;
  text-align: left;
  background: url("/assets/bg5.png") no-repeat center center/cover;
  border-radius: 20px;
  max-width: 900px;
  margin: 100px auto;
  font-family: system-ui;
  font-size: 20px;
  border: 5px white solid;
}

.about h1 {
  font-size: 60px;
}

/* --- Features Section --- */

.feature-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}
/* Cards Animation */
.card {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  align-items: center;
  max-width: 70%;
  margin-inline: auto;
  gap: 40px;
  justify-content: center;
  padding: 50px;
  border-radius: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.card.animate {
  opacity: 1;
  transform: translateY(0px);
  animation: blurIn 0.8s ease-out forwards;
}
@keyframes blurIn {
  from {
    filter: blur(20px);
    opacity: 0;
  }
}

.content {
  width: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 30px;
  border-radius: 22px;
  margin: 10px;
  color: var(--textColor);
  background: #0a3cff;
  transition: 0.4s ease-in-out;
}

.card:hover {
  transform: translateY(-16px);
}

/* First content box */
.card .content:nth-child(1) {
  background-color: rgba(136, 17, 17, 0.418);
  border: #e7ecff 5px solid;
}

/* Second content box */
.card .content:nth-child(2) {
  background-color: rgba(4, 4, 32, 0.568);
  border: #e7ecff 5px solid;
}

/* Third content box */
.card .content:nth-child(3) {
  background-color: rgba(0, 128, 0, 0.421);
  border: #e7ecff 5px solid;
}

/* Fourth content box */
.card .content:nth-child(4) {
  background-color: rgba(255, 166, 0, 0.466);
  border: #e7ecff 5px solid;
}

.card .content .para strong {
  display: block;
  font-size: 30px;
}

/* --- Subscription Section (Fixed Visibility) --- */
.subscription {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: rgba(25, 41, 56, 0.9);
  border-radius: 10px;
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.5);
  margin-top: 50px;
  width: 100%;
  max-width: 600px;
  color: white;
}

.subscription input {
  margin-top: 10px;
  outline: 0;
  background: white;
  padding: 0.6em;
  border-radius: 14px;
  border: 1px solid #333;
  color: black;
  width: 80%;
}

.subscription button {
  border: 0;
  background: #111;
  color: #fff;
  padding: 0.68em;
  border-radius: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.subscription button:hover {
  opacity: 0.8;
}

/* --- Footer Section --- */
.footer-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 60px;
  text-align: center;
}

.footer-wrapper p {
  font-size: 30px;
}

.footer-wrapper span svg {
  height: 70px;
  width: 50px;
  cursor: pointer;
}

.footer-wrapper span svg:hover {
  color: var(--second);
  height: 90px;
  width: 80px;
  transition: 0.5s ease;
}

.subscription {
  text-align: center;
  display: block;
  background-color: #3d216b;
  border: 1px solid white;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 25px;
}

.subscription h2 {
  color: var(--textColor);
  font-size: 22px;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px;
  width: 250px;
  border: 1px solid var(--second);
  border-radius: 5px;
  outline: none;
}

.card3__form{
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.form-group{
  width:70%;
  height: 60px;
  display: flex;
  justify-content: space-around;
}

.card3__form input::placeholder {
  font-family: "Roboto", sans-serif;
  color: #07788d;

}

#join{
  position: relative;
  top: 10%;
  right: 80%;
}

#join:hover{
   border: 1px solid white;
   color: white;
}


#email{
  position: relative;
  left: 15%;
}


.newsletter-form button {
  background-color: var(--second);
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  
}

.newsletter-form button:hover {
  background-color: var(--second);
 
}

.footer-wrapper a {
  color: #ffffff;
  padding: 5px;
}

.footer-wrapper a:hover {
  transition: 0.2s ease;
  padding: 20px;
}

.footer-wrapper .services li {
  color: #ffffff;
  list-style: none;
  padding: 10px;
}

.footer-wrapper .services a {
  text-decoration: none;
}
.footer-wrapper .services a:hover {
  color: var(--second);
}

.footer-wrapper .services li:hover {
  color: var(--second);;
  transition: 0.2s ease-in-out;
}

/* Responsive Design */

/* 🖥️ Large Tablets & Small Laptops (1024px and below) */
@media (max-width: 1024px) {
  .header {
    flex-direction: column;
    padding: 10px;
  }

 
  .header  .icon #logo{

    display: none;
}

  #play{
      width: 200px;
      height: 70px;
      position: absolute;
      top: 75%;
      right: 10%; 
  }

 

  #coming-soon{
    font-size: 30px;
 position: absolute;
      top: 83%;
      right: 11%; 
      
  }

  

   .swiper-text{
    font-size: 20px;
    position: absolute;
      top: 23%;
      right: 7%;
  }

  .nav-list {
    flex-direction: column;
    text-align: center;
    padding: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px white solid;
    border-radius: 10px;
  }

  .show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    animation: fadeIn 0.5s ease-in-out forwards;
  }

  /* Hide Navigation */
  .hide {
    transform: translateX(100%);
    opacity: 0;
    animation: fadeOut 0.5s ease-in-out forwards;
  }

  .hero {
    height: 100vh;
  }

 #hero-head{
 
  font-size: 25px;
 }

  .hero-content{
    position: relative;
    height: 67vh;
    
  }

  .hero-text {
    position: absolute;
       left: 3%;

    width: 90%;
    height: 280px;
    top: 35%;
    text-align: center;
    font-size: 15px;
    padding: 20px;
  }

  .cta{
    position:absolute;
    top: 95%;
    left: 23%;
    height: 60px;
    width: 55%;
    font-size: 15px;
    padding: 10px;
  }

 

  

  .card {
    flex-direction: column;
    grid-template-columns: repeat(1, 1fr);
    max-width: 100%;
    margin-inline: initial;
    padding: 30px;
  }

  .footer-wrapper {
    flex-direction: column;
    padding: 40px;
    text-align: center;
  }
  .hamburger-btn {
    display: block;
    opacity: 1;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(9, 5, 53, 0.9);
    width: 100%;
    text-align: center;
    padding: 20px 0;
    transition: all 0.3s ease;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list-items {
    padding: 15px;
  }

  .subscription h2 {
    color: var(--textColor);
    font-size: 22px;
    margin-bottom: 40px;

  }

 
}


  


/* 📱 Large Phones & Portrait Tablets (768px and below) */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    padding: 10px;
    text-align: center;
  }
   .header  .icon #logo{

    display: none;
}

 


  .nav-list {
    flex-direction: column;
    font-size: 20px;
  }

  #hero-head{
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: bold;
  }
  
  .hero {
    position: relative;
    height: 90vh;
    width: 100%;
    font-size: 32px;
    
      
  }
  
  .hero-content{
  position: absolute;
  top: 15%;
  left: 12%;
  height: 40%;
  max-width: 80% !important;
  }



  #join{
    position: absolute;
    top: 37px;
    left: 72%;
    
    height: 60px;
    width: 70px;
  }
  

  .swiper-text{
    display: none;;
  }

    .hero-text{
      font-size: 60px;
      font-weight: bold;
    
    }

  .hero-swiper .swiper {
    position: absolute; 
    top: 63%;          
    right: 35%;        
    transform: translateX(-50%);
    width: 37%;         
    height: 220px;      
  }


  #play{
    position: absolute; 
    top: 75%;          
    right: 0;        
    transform: translateX(-50%);
    width: 30%;         
    height: 70px;
  }

  #coming-soon{
       position: absolute; 
        font-family: "Orbitron", sans-serif;
    top: 87%;          
    right: -50px;        
    transform: translateX(-50%);
    width: 40%;         
    height: 70px;
    font-size: 23px;
    font-weight: bold;
    /* color: #240d55;
    border: 1px solid white; */
  }

  .hero-text {
    position: absolute;
    top: 45%;
    height: 100px;
    left: 5%;
    font-size: 8px;
    padding: 20px;
    width: 90%;
  }

  .cta {
    position: absolute;
    top: 80%;
    font-size: 15px;
    margin-top: 20px;
    padding: 12px 20px;
    height: 50px;
    width: 60%;
  }

  .feature-title{
    font-size: 40px;
  }

  .about {
    padding: 50px;
  }

  .subscription {
    width: 90%;
    padding: 15px;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form input {
    width: 90%;
  }

  .card {
    flex-direction: column;
    grid-template-columns: repeat(1, 1fr);
    max-width: 100%;
    margin-inline: initial;
    padding: 30px;
  }

  .content {
    width: 90%;
    height: auto;
    padding: 30px;
  }

  .footer-wrapper {
    flex-direction: column;
    padding: 30px;
  }

  .footer-wrapper p {
    font-size: 20px;
  }

  .hamburger-btn {
    display: block;
  }

  /* Show the hamburger button */
  .hamburger-btn {
    display: block;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1100;
  }

  /* Change the button when active */
  .hamburger-btn.open {
    transform: rotate(90deg);
    color: #0998a8;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(9, 5, 53, 0.9);
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list-items {
    padding: 15px;
  }
}

/* 📲 Small Phones (480px and below) */
@media (max-width: 480px) {
  .hero {
    height: 100vh;
  }

  .hero-text {
    top: 45%;
    font-size: 18px;
    padding: 15px;
    width: 90%;
    
  }

   .header  .icon #logo{

    display: none;
}


  .icon {
    font-size: 40px;
    text-align: left;
    color: rgb(207, 34, 34);
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: initial;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
  }

  #waitlistModal.active {
 background-color: #3d216bc1;
 border: 1px solid white;
}


  .cta[data-action="submit-form"] {
  position: absolute;
  top: 200px;
  left: 0;
  width: 100%;
  margin-top: 15px;
  color: #fff;
  background:var(--second);
  box-shadow: 0 4px 10px rgba(0, 200, 83, 0.3);
}

  .hero-content{
    background-color: #240d55b2;
  }
  .hero-text{
    position: absolute;
    top: 35%;
    font-size: 10px;
    height: 23vh;
  }

  .hamburger-btn {
    position: absolute;
    top: 15px;
    right: 40px;
  }

  

  .cta {
     position: absolute;
    top: 80%;
    left: 18%;
    font-size: 16px;
    padding: 10px 18px;
    width: 180px;
    height: 20%;
  }

  .hero-content{
    color: red;
    height: 50vh;
    
  }

  .hero-swiper .swiper{
    position: absolute;
    top: 73%;
    left: 30%;
    height: 200px;
    width: 45%;
  }
.about-text h1{
  font-size: 30px;
  text-align: center;
  margin-bottom: 10px;}


  .feature-title{
    font-size: 30px;
  }

  .card {
    flex-direction: column;
    grid-template-columns: repeat(1, 1fr);
    max-width: 100%;
    margin-inline: initial;
    padding: 30px;
  }

  .about {
    padding: 40px;
    font-size: 18px;
  }

  .subscription {
    padding: 10px;
  }

  .subscription h2 {
    font-size: 18px;
  }

  .newsletter-form input {
    width: 100%;
  }

  .newsletter-form button {
    padding: 8px 12px;
  }

  .footer-wrapper {
    padding: 20px;
  }

  .footer-wrapper p {
    font-size: 18px;
  }
}


/* Responsive screen oveeride */
