 /* Reset */
 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: "Poppins", sans-serif;
 }
html,body{
  scroll-behavior: smooth;
}
 body {
   background: linear-gradient(to right, #6a11cb, #2575fc);
   color: #fff;
   overflow-x: hidden;
 }

 header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px 10%;
   position: relative;
 }

 header h1 {
   font-size: 28px;
   font-weight: 700;
   letter-spacing: 1px;
 }

 nav a {
   margin-left: 20px;
   text-decoration: none;
   color: #fff;
   font-weight: 500;
   transition: 0.3s;
 }

 nav a:hover {
   color: #ffe082;
 }

 /* Hero Section */
 .hero {
   height: 100vh;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   text-align: center;
   padding: 0 10%;
 }

 .hero h2 {
   font-size: 48px;
   margin-bottom: 20px;
   animation: fadeInDown 1s ease-in-out;
 }

 .hero p {
   font-size: 18px;
   margin-bottom: 30px;
   max-width: 600px;
   line-height: 1.6;
   animation: fadeInUp 1.2s ease-in-out;
 }

 .cta-btn {
   background: #ffe082;
   color: #222;
   padding: 15px 40px;
   border: none;
   border-radius: 30px;
   font-size: 18px;
   cursor: pointer;
   font-weight: 600;
   transition: 0.3s;
   animation: fadeInUp 1.5s ease-in-out;
 }

 .cta-btn:hover {
   background: #fff59d;
   transform: scale(1.05);
 }

 /* Features Section */
 .features {
   background: #fff;
   color: #222;
   text-align: center;
   padding: 80px 10%;
 }

 .features h3 {
   font-size: 32px;
   margin-bottom: 40px;
 }

 .feature-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 30px;
 }

 .card {
   background: #f7f7f7;
   border-radius: 20px;
   padding: 30px;
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
   transition: 0.3s;
 }

 .card:hover {
   transform: translateY(-10px);
 }

 .card h4 {
   margin-bottom: 15px;
   font-size: 22px;
   color: #2575fc;
 }

 /* Footer */
 footer {
   background: #222;
   text-align: center;
   padding: 20px;
   font-size: 14px;
 }

 /* Animations */
 @keyframes fadeInDown {
   from {
     opacity: 0;
     transform: translateY(-30px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 @keyframes fadeInUp {
   from {
     opacity: 0;
     transform: translateY(30px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 .fa-bars {
  position: fixed;
   cursor: pointer;
   font-size: 28px;
   right: 0;
   top:10px;
   visibility: hidden;
 }

 @media (max-width:600px) {
  header{
    padding:10px;
    margin: 0;
  }
  header nav  {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap:20px;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease-in-out;
   background: linear-gradient(to left, #6a11cb, #2575fc);
   padding: 5px;

  }
   header nav a:hover{
     background: black;
     padding: 5px;
     color: white;
     border-radius: 5px;
     font-size: 18px;
  }
  .fa-bars{
    visibility: visible;
    transition: ease-in-out;
  }
  .display_nav{
    visibility: visible;
    max-height: 400px;
    transition: all 0,3s ease-in-out;
  }

 }
 #loginBtn{
  display: flex;
  align-items: center;
  justify-content: center;
 }
#loginBtn span {
  animation: animateBtn 2s ease-in-out infinite alternate;
  background: green;
  padding:10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

@keyframes animateBtn {
  0% {
    transform: scale(0.4);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.4);
  }
}
/* Styling for "How It Works" section only */
#how {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  margin: 2rem 0;
  font-family: Arial, sans-serif;
}

#how h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #222;
  text-align: center;
}

#how p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

#how ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#how li {
  background: #fff;
  color: #333;
  padding: 1.2rem;
  margin-bottom: 1rem;
  border-left: 5px solid #4CAF50;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#how li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#how li h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  color: #333;
}

#how li p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

#how li ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-top: 0.5rem;
}

#how strong {
  color: #222;
}

#how em {
  color: #0073e6;
  font-style: normal;
}

/* Highlight warning */
#how li p strong,
#how li p .warning {
  color: #e63946;
}
 footer{
  display: flex;
  background: #ddd;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-radius: 10px;
 }

 footer ul{
  display: flex;
  gap:10px;
  list-style: none;
  align-items: center;
 }
 footer ul li{
  display: flex;
  align-items: center;

 }
 footer ul li a{
  color:#181717;
  text-decoration: none;
 }
 footer ul li a i{
  transition: all 0.3s ease-in-out;
 }
 footer ul li a i:hover{
  transform: scale(1.3);
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  padding: 10px;
  font-size: 30px;
 }