/* Loader Container */
#loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* From Uiverse.io by satyamchaudharydev */
.loader {
  display: block;
  --height-of-loader: 4px;
  --loader-color: #0071e2;
  width: 130px;
  height: var(--height-of-loader);
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
}

.loader::before {
  content: "";
  position: absolute;
  background: var(--loader-color);
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  border-radius: 30px;
  animation: moving 1s ease-in-out infinite;
}

@keyframes moving {
  50% {
      width: 100%;
  }

  100% {
      width: 0;
      right: 0;
      left: unset;
  }
}
html {
  scroll-behavior: smooth;
}
body {
  background: linear-gradient(-45deg, #000000, #b5b5b5, #b5b4b4, #fafafa);
  background-size: 400% 400%;
  animation: backgroundAnimation 10s ease infinite;
  color: white;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.navbar {
  margin-top: 1rem;
  justify-self: center;
  transition: all 0.5s ease;
  width: 90%;
}
.navbar logo {
  width: 20%;
}
.navbar ul{
  width: 70%;
    gap: 11%;
}

.product-description {
  width: 90%;
  justify-self: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  transition: all 0.3s ease-in-out;
}

.feature-card h3 {

  font-weight: 700;
}

.feature-card p {
  font-weight: 500;
}

.product-description:hover {
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.364);
  transform: scale(1.02);
}


.middle {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  width: 40vw;
}


.container {
  perspective: 2000px;
  width: 100%;
  max-width: 601px;
  height: 244px;
  position: relative;
  margin-top: 100px;
}

.card {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(243, 234, 234, 0.85);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
  box-sizing: border-box;
  transition: transform 0.3s ease-in-out;
  transform-origin: center center -100px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: 3px solid rgba(0, 0, 0, 0.3);
  opacity: 0;
  text-align: center;
}

.card:hover {
  transform: scale(1.05) rotate(-2deg);
}

.card-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #1a1a1a;
  margin: 10px 0;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.card-subtitle {
  font-size: 1em;
  color: #444;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.thank-you {
  font-size: 1em;
  font-weight: 500;
  color: #555;
  margin-top: 15px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s;
}

.card.show .card-title,
.card.show .card-subtitle,
.card.show .thank-you {
  opacity: 1;
  transform: translateY(0);
}
.feature-box{
  opacity: 0;
  transform: translateY(30px);
  
}

.feature-box.active{
 
  animation: fadeInUp 2s  forwards;
  
  
}
.feature-box:nth-child(1){
  
  
  animation-delay:1.4s;
  
}.feature-box:nth-child(2){
  
  
  animation-delay: 1.9s;
  
}.feature-box:nth-child(3){
  
  
  animation-delay: 2.4s;
  
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature {
  justify-self: center;
  display: flex;
  justify-content: center;
  gap: 2rem;
  height: auto;
  width: 64vw;
  padding: 2rem;
  flex-wrap: wrap;
}

.bx {
  background-color: rgb(213, 187, 187);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 12px;
  width: 100%;
  height: 40vh;
  max-width: 158px;
  text-align: center;
}

.faq-container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 15px;
}

#frequently-asked-questions {
  color: black;
  font-weight: 600;
}

.faq-question {
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
  font-weight: bold;
}

.faq-answer {
  color: black;
  display: none;
  padding: 10px 0;
  font-size: 16px;
}

.toggle-btn {
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}

.faq {
  display: flex;
  justify-content: center;
  background-color: white;
  padding: 2rem;
}

.faq-text {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.early {
  text-align: center;
  padding: 2rem;
  background-color: #f5f5f5;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .feature {
    flex-direction: column;
    align-items: center;
  }

  .faq-text {
    font-size: 1.5rem;
  }
}


/* footer design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

.simple-footer {
  background: #000000;
  padding: 1rem;
  text-align: center;

}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.social-links a {
  text-decoration: none;
  font-size: 1.5rem;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
}

.copyright {
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 0.9rem;
}

/* Psychological typography considerations */
@media (prefers-reduced-motion: no-preference) {
  .social-links a {
    will-change: transform, opacity;
  }
}

body {
  font-family: 'Roboto', sans-serif;
  /* For body text */
}

h1,
h2,
h3,
.headline {
  font-family: 'Montserrat', sans-serif;
  /* For headings and important text */
}

/* Mobile devices (up to 480px) */
@media screen and (max-width: 480px) {
  .navbar {
    margin: 8px;
    padding: 8px;
    flex-direction: column;
    align-items: center;
  }

  .logo {
    width: 50px;
    height: auto;
  }

  .product-description {
    padding: 10px;
    text-align: center;
  }

  .product-description h1 {
    font-size: 1.8rem;
  }

  .product-description div {
    flex-direction: column;
  }

  .video-box video {
    width: 100%;
    height: auto;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .form-container {
    width: 100%;
    padding: 10px;
  }

  .feature {
    flex-direction: column;
  }

  .faq-container {
    padding: 10px;
  }

  .formcomb {
    flex-direction: column;
  }

  .middle {
    align-self: center;
    justify-self: center;
    width: 81vw;


  }
}


/* Tablets (481px to 768px) */
@media screen and (max-width: 768px) {
  .navbar {
    margin: 12px;
    padding: 12px;
  }

  .product-description {
    padding: 20px;
  }

  .product-description h1 {
    font-size: 2rem;
  }

  .product-description div {
    flex-direction: column;
  }

  .video-box video {
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-container {
    width: 90%;
  }

  .feature {
    flex-direction: column;
  }

  .faq-container {
    padding: 20px;
  }
}

/* Laptops (769px to 1024px) */
@media screen and (max-width: 1024px) {
  .product-description h1 {
    font-size: 2.2rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-container {
    padding: 30px;
  }

  .form-container {
    width: 80%;
  }
}

/* Larger Screens (Above 1024px) */
@media screen and (min-width: 1025px) {
  .product-description h1 {
    font-size: 2.5rem;
  }

  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .form-container {
    width: 70%;
  }
}










/* === Animated Background (Gradient) === */
@keyframes backgroundAnimation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}



/* === Move Boxes to Left with Animation === */
.box-container {
  position: relative;
  left: -100px;
  opacity: 0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.box-container.show {
  transform: translateX(100px);
  opacity: 1;
}