* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* font-family: "Segoe UI", sans-serif; */


  /* new updates */
  font-family: 'Poppins', sans-serif;

}

html {
  scroll-behavior: smooth;
}

/* --- VARIABLES --- */
:root {
  --neon-cyan: #00f2ff;
  --neon-pink: #ff0059;
  /* --bg-deep: #010409; */
  /* --bg-deep: #7c7cab; */
  --bg-deep: #040628;
  /* --glass: rgba(255, 255, 255, 0.03); */
  --glass: rgb(255, 255, 255);
  /* --border: rgba(255, 255, 255, 0.1); */
  --border: #d1d1d1;
}

body {
  /* font-weight: 400;   */
  background-color: var(--bg-deep);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/*------------ Home section starts here------------ */
.home_section {
  margin-top: 5.1vw;
  /* border: 2px solid blue; */
  background: white;
  /* height: 35vw; */
  min-height: 60vh;
  padding: 0px 5%;
  display: flex;
  /* box-shadow: 5vw 5vw 5vw white; */
}

.home_section_content {
  /* border: 2px solid red; */
  display: flex;
  display: grid;
  grid-template-columns: 50% 50%;
  width: auto;
}

.text_container {
  /* border: 2px solid aqua; */
  color: black;
}

.text_container h1 {
  font-size: 4vw;
  margin: 0vw auto;
  /* border: 2px solid green; */
  color: rgb(248, 60, 91);
}

.text_container h1 span:nth-child(1) {
  color: rgb(255, 58, 91);
  text-shadow: 0px 0px 31px rgb(255, 58, 91);
}

.text_container h1 span:nth-child(2) {
  color: rgb(58, 209, 255);
  text-shadow: 0px 0px 31px rgb(58, 209, 255);
}

.text_container h1 span:nth-child(3) {
  color: rgb(92, 203, 84);
  text-shadow: 0px 0px 31px rgb(92, 203, 84);
}

.img_container img {
  /* border: 2px solid yellow; */
  width: 100%;
}

/* ----------home section ends here------------ */


/* --- 3D BACKGROUND SYSTEM starts here --- */
.space-container {
  /* border: 2px solid greenyellow; */
  /* position: fixed; */
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at center, #0d1117 0%, #010409 100%);
  background: radial-gradient(circle at center, #575757 0%, #242222 100%);
}

.grid-3d {
  /* border: 2px solid red; */
  /* margin: 40vw auto; */
  margin-top: 40vw;
  position: absolute;
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;

  top: -90%;
  left: 0%;
  width: 100%;
  height: 294%;
  height: 345%;

  background-image:
    linear-gradient(var(--neon-cyan) 1px, transparent 1px),
    linear-gradient(var(--neon-cyan) 1px, transparent 1px),
    linear-gradient(90deg, var(--neon-cyan) 1px, transparent 1px);
  background-size: 100px 100px;
  /* background-size: 100%; */
  opacity: 0.1;
  transform: rotateX(60deg) translateZ(-200px);
}

.glow-orb {
  border: 2px solid yellow;
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
}

.orb-1 {
  width: 700px;
  height: 700px;
  background: var(--neon-pink);
  top: -20%;
  left: -10%;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: var(--neon-cyan);
  bottom: -10%;
  /* right: -10%; */
}

.floating-text {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Orbitron';
  font-size: 12vw;
  font-weight: 900;
  color: white;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}


.reveal-3d {
  color: black;
  opacity: 0;
  transform: translateY(100px) rotateX(20deg);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  /* margin-bottom: 150px; */
}

.reveal-3d h2 {
  text-align: center;
  font-size: 2rem;
  margin: 1vw auto;
  color: rgb(255, 174, 0);
}

.reveal-3d.active {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

/* --- 3D BACKGROUND SYSTEM ends here --- */


/* -------service section starts here------- */
.glass {
  background: var(--glass);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border);
  /* border: 2px solid blue; */
  padding: 60px;
}

.glass {
  background: white;
  border: 2px solid #d1d1d1;
  padding: 60px;
}


/* Hero */
.cyber-badge {
  color: var(--neon-pink);
  /* border: 1px solid var(--neon-pink); */
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.6rem;
  font-family: 'Orbitron';
  margin-bottom: 20px;
}

h1 {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
}

h1 span {
  color: var(--neon-cyan);
  text-shadow: 0 0 20px var(--neon-cyan);
}

/* Options Grid */
.options-grid {

  color: black;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.option-card {
  background: rgba(255, 255, 255, 0);
  /* background: rgba(112, 108, 108, 0.461); */
  padding: 40px;
  border-radius: 1vw;
  border: 1px solid var(--border);
  border: .2vw solid rgb(217, 213, 213);
  text-align: center;
  transition: 0.4s;
}


.option-card:hover {
  transform: translateY(-10px) scale(1.05);

  border: .1vw solid transparent;
 
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #ff416c, #ffc62b) border-box;
  background: linear-gradient(135deg, #ff416c, #ffc62b);
  color: white;
}
.btn-launch {
  border: .2vw solid;  
  padding: 12px 30px;
  color: #000;
  color: white;
  font-family: 'Orbitron';
  font-size: 1.3rem;
  font-weight: 900;
  margin-top: 1vw;
  cursor: pointer;
  border-radius: 2vw;
  transition: 0.3s;


}

button {
  background: linear-gradient(135deg, #ff416c, #ffc62b);
  
}

button {
  border: none;
}

.btn-launch:hover {
  background: none;
  color: #ff416c;
  border: 2px solid #ff416c;
  border: 2px solid white;
  color: white;
}





.close-btn {
  
  width: 50px;
  height: 50px;
  cursor: pointer;
}

body.popup-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.815);
  z-index: 9998;
}

.section-label {
  margin: 1vw auto;
}

#quickTestPopup {
  
  border-radius: 1vw;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);

  display: none;
  width: 90%;
  max-width: 900px;

  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  

  transition: all 0.3s ease;
}

#quickTestPopup.active {
  display: block;
  

  position: fixed;
  top: 50%;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);

  width: 90%;
  max-width: 900px;

  z-index: 9999;


  height: 46vw;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


 .option-card1:hover{
  background-color: rgb(34, 0, 255);
}
.option-card1{
  background: blue;
  background-color: #ffc62b;
}
.option-card2{
  background: blue;
  background-color: #2bbcff;
}
.option-card3{
  background: blue;
  background-color: #ff2b5d;
}
.card-pulse1{
}

.stats-dashboard {
  margin-top: 2vw;
 
  margin: 9vw auto;
  display: flex;
  justify-content: space-around;
  padding: 60px 0;
}

.stat-item {
  text-align: center;
}

.stat-item .val {
  display: block;
  font-family: 'Orbitron';
  font-size: 3rem;
  color: var(--neon-cyan);
}

.stat-item .lab {
  font-size: 1rem;
  color: white;
  letter-spacing: 2px;
  opacity: 0.5;
}




.info-block {
  
  color: black;
  margin: 14vw auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-box {
  text-align: center;
  color: white;
}

.f-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}


.FAQ {
  padding: 2vw 2vw;
  color: white;
}

.FAQ p {
  margin-bottom: 2vw;
}


.faq-section {
 
  padding: 2vw 2vw;
}

.faq-item {
  background: rgba(145, 145, 145, 0.021);
  backdrop-filter: blur(15px);
  
  margin: 1vw auto;
}

.about_section {
  
  
  padding: 60px 0;
}

.about_container {
  
  display: grid;
  height: 100%;
  grid-template-columns: 50% 50%;
  background: white;
}

.text_container {
  
  background-color: white;
  padding: 0vw 2vw;
  color: white;
  color: black;
}

.text_container h2 {
  margin: 2vw auto;
  color: rgb(255, 174, 0);
}

.text_container p {
  margin: .5vw auto;
}

.img_container img {
  width: 100%;
}

.about_container .btn-launch {
  border: .2vw solid #ff850b;
  color: white;
}

.about_container .btn-launch:hover {
  color: #ff850b;
  border: .2vw solid #ff850b;
}

/* About section ends here */


.hero-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: #222;
}

.highlight {
  color: #2563eb;
  /* blue */
  background: rgba(37, 99, 235, 0.1);
  padding: 4px 10px;
  border-radius: 8px;
}

.highlight-alt {
  color: #ff6b35;
  /* orange */
}

.hero-text {
  font-size: 18px;
  color: #555;
  margin-top: 15px;
  max-width: 650px;
}




/* -------------------for Large mobile (426px)---------------------------- */
@media (max-width:426px) {

  
  .reveal-3d.active {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }

  .grid-3d {
    
    
    top: -123%;
    
    
    left: 0%;
    width: 100%;
    height: 294%;
    height: 345%;
    height: 100px;
    height: 3000px;
    height: 835%;

    background-image:
      linear-gradient(var(--neon-cyan) 1px, transparent 1px),
      linear-gradient(var(--neon-cyan) 1px, transparent 1px),
      linear-gradient(90deg, var(--neon-cyan) 1px, transparent 1px);
    background-size: 1500px 100px;
    background-size: 100px 100px;
    background-size: 90px 225px;
    
    opacity: 0.1;
    opacity: 0.2;
    transform: rotateX(30deg) translateZ(-200px);
  }

  .glow-orb {
    
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
  }

  .orb-1 {
    /* border: 5px solid blue; */
    width: 700px;
    width: 100%;
    height: 700px;
    background: var(--neon-pink);
    top: -20%;
    left: -100%;
    /* z-index: 1; */
  }

  .orb-2 {
    /* border: 2px solid red; */
    width: 600px;
    width: 300px;
    height: 600px;
    background: var(--neon-cyan);
    bottom: -10%;
  }

  .reveal-3d {
    color: black;
    opacity: 0;
    transform: translateY(100px) rotateX(20deg);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0px;
  }

  .reveal-3d h2 {
    text-align: center;
    font-size: 2rem;
    margin: 3vw auto;
    color: rgb(255, 174, 0);
  }

  .reveal-3d.active {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }

  /* --- 3D BACKGROUND SYSTEM ends here --- */

  .home_section {
    /* border: 2px solid red; */
    width: 100%;
    margin-top: 110px;
    padding: 5px 5px;
    /* display: flex; */
    flex-direction: row;
  }

  .home_section_content {
    /* border: 2px solid green; */
    display: block;
    text-align: center;
  }

  .text_container {
    /* border: 2px solid blue; */
  }

  .img_container {
    /* border: 2px solid aqua; */
  }

  .text_container h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-text {
    font-size: 15px;
  }

  /* BUTTON */
  .btn-launch {
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 25px;
  }

  /* OPTIONS GRID */
  .options-grid {
    grid-template-columns: 1fr;
  }

  .option-card {
    padding: 25px;
  }

  /* GLASS SECTION */
  .glass {
    padding: 30px 20px;
    /* border-radius: 20px; */
    /* 🔥 IMPORTANT FIX */
  }

  /* POPUP */
  #quickTestPopup.active {
    height: auto;
    padding: 20px;
  }

  /* STATS */
  .stats-dashboard {
    flex-direction: column;
    gap: 30px;
  }

  .stat-item .val {
    font-size: 2rem;
  }

  /* quick test section starts here */
  #quickTestPopup.active {
    /* border: 2px solid red; */
    padding: 4px 40px;
    top:54%;
    width: 83%;
  }
#quickTestPopup.active .options-grid {
  gap: 10px;
}
  .section-label {
    /* border: 2px solid aqua; */
  }


  /* quick test section ends here */

  /* FEATURES */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* ABOUT */
  .about_container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about_container img {
    width: 90%;
  }
.about_container .test_container button{
  border: 2px solid blue;
}
  .text_container h1 {
    font-size: 24px;
  }

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

  .btn-launch {
    /* border: 2px solid blue; */
    width: 100%;
    margin: 20px auto;
  }

  .option-card h3 {
    font-size: 18px;
  }

  .option-card p {
    font-size: 14px;
  }


}

/* For medium mobile */
@media (max-width: 376px) {
  

}


/* Small Mobile final */
@media (max-width: 320px) {
  
}

/* ================= RESPONSIVE DESIGN ================= */
