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

    body {
      font-family: 'Segoe UI', sans-serif;
background: linear-gradient(to right, #a18cd1, #fbc2eb)

    }

    header {
      position: fixed; /* This makes it stick to the top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* Keeps it above other content */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10%;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    }

    header .logo {
      font-size: 28px;
    font-weight: bold;
    color: #00e0ff;
    background: linear-gradient(45deg, #00e0ff, #ff00cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s;
  }

  .logo:hover {
    transform: scale(1.1) rotate(-1deg);
  }


    nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
  }

  nav a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 3px;
    background: #00e0ff;
    left: 0;
    bottom: -5px;
    border-radius: 4px;
    transition: width 0.3s ease;
  }

  nav a:hover {
    color: #00e0ff;
    transform: perspective(100px) translateZ(5px);
  }

  nav a:hover::after {
    width: 100%;
  }

  /* Optional: Add icons beside text */
  nav a i {
    margin-right: 6px;
    color: #00e0ff;
  }

    .btns button {
  margin-left: 10px;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3), -4px -4px 12px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

/* Sign In Button - primary */
.signin {
  background: linear-gradient(135deg, #5f3df7, #00e0ff);
  color: #fff;
}

.signin:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #5f3df7, 0 0 30px #00e0ff;
}

/* Sign Up Button - outline style */
.signup {
  background: transparent;
  color: #5f3df7;
  border: 2px solid #5f3df7;
}

.signup:hover {
  background: #5f3df7;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 20px #5f3df7, 0 0 30px #5f3df7;
}

    .hero {
       background: linear-gradient(145deg, #1a1a1c, #202022);
  box-shadow: 10px 10px 25px #0e0e0f, -10px -10px 25px #262628;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  position: relative;
  overflow: hidden;
}

    .hero-left {
      max-width: 50%;
  color: white;
  animation: slideInLeft 1s ease-out forwards;
}

    .hero-left h1 {
      font-size: 52px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00e0ff, #5f3df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: 1px;
}

    .hero-left p {
       margin-bottom: 30px;
  color: #aaa;
  font-size: 18px;
  line-height: 1.6;
}

    .hero-left .search {
      display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  backdrop-filter: blur(12px);
  transition: 0.3s;
}

.hero-left .search:hover {
  box-shadow: 0 0 30px #5f3df7;
}

    .hero-left input {
      flex: 1;
  padding: 15px 20px;
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  outline: none;
}

.hero-left input::placeholder {
  color: #bbb;
}

    .hero-left button {
      background: linear-gradient(135deg, #5f3df7, #00e0ff);
  color: white;
  border: none;
  padding: 15px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 0 15px #5f3df7;
}

.hero-left button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #00e0ff, 0 0 40px #5f3df7;
}

    .hero-right img {
      width: 450px;
  max-width: 100%;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(95, 61, 247, 0.4));
}

    .features-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  padding: 60px 10%;
  background: linear-gradient(145deg, #1a1a1c, #202022);
}

.feature-card {
  background: #1e1e20;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 10px 10px 20px #0e0e0f, -10px -10px 20px #262628;
  color: #eaeaff;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 25px #5f3df7;
}

.feature-card i {
  font-size: 36px;
  margin-bottom: 15px;
  color: #5f3df7;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
}

@keyframes slideInLeft {
  0% { transform: translateX(-50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

    .steps-section {
  text-align: center;
  padding: 60px 20px;
}

.steps-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background: linear-gradient(145deg, #1a1a1c, #202022);
  border-radius: 20px;
  box-shadow: 10px 10px 25px #0e0e0f, -10px -10px 25px #262628;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 350px;
  padding: 180px 40px 50px;
  position: relative;
  overflow: visible;
  cursor: pointer;
  transition: all 0.4s ease, transform 0.5s ease;
  transform-style: preserve-3d;
  animation: fadeInUp 1s ease both;
}

.card:hover {
  transform: rotateY(8deg) scale(1.06);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25), 0 0 15px rgba(95, 61, 247, 0.4);
}

.card img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: translateX(-50%) scale(1.05) rotate(5deg);
}

.card h3 {
  font-size: 22px;
  color: white;
  margin-top: 20px;
}

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

  .card {
    width: 90%;
    padding: 160px 30px 40px;
  }
}

/* Counter Section */
.counter-section {
  text-align: center;
  padding: 60px 20px;
}

.counter-heading {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 60px;
}

.counter-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.counter-card {
  background: linear-gradient(145deg, #1a1a1c, #202022);
  border-radius: 20px;
  box-shadow: 10px 10px 25px #0e0e0f, -10px -10px 25px #262628;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 330px;
  padding: 80px 40px 50px;
  transition: all 0.4s ease;
  position: relative;
  overflow: visible;
  cursor: pointer;
  animation: fadeInUp 1s ease both;
}

.counter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 10px rgba(37, 117, 252, 0.4);
}

.counter-number {
  font-size: 48px;
  font-weight: 700;
  color: #2575fc;
}

.counter-label {
  font-size: 22px;
  color: white;
  margin-top: 10px;
}

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

  .counter-card {
    width: 90%;
    padding: 60px 30px 40px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.timeline-section {
  padding: 80px 20px;
  background: #1a1a1c;
  text-align: center;
}

.timeline-section h2 {
  color: white;
  font-size: 42px;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease both;
}

.timeline {
  position: relative;
  margin: 0 auto;
  padding-left: 30px;
  max-width: 800px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #2575fc;
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  padding-left: 40px;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  left: -2px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: #2575fc;
  border-radius: 50%;
  box-shadow: 0 0 10px #2575fc88;
}

.timeline-content {
  background: linear-gradient(145deg, #1a1a1c, #202022);
  box-shadow: 10px 10px 25px #0e0e0f, -10px -10px 25px #262628;
  border-radius: 15px;
  padding: 30px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

/* Fade-in scroll animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.about-section {
  padding: 80px 20px;
  text-align: center;
}

.about-section h2 {
  font-size: 42px;
  margin-bottom: 60px;
  color: white;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.4);
  animation: fadeInUp 1s ease both;
}

.about-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
  gap: 40px;
}

.about-row.reverse {
  flex-direction: row-reverse;
}

.about-text,
.about-image {
  flex: 1;
  max-width: 500px;
  padding: 20px;
  background: linear-gradient(145deg, #1a1a1c, #202022);
  box-shadow: 10px 10px 25px #0e0e0f, -10px -10px 25px #262628;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: fadeInUp 1s ease both;
}

.about-text h3 {
  color: #2575fc;
  font-size: 28px;
  margin-bottom: 20px;
}

.about-text p {
  color: white;
  font-size: 18px;
  line-height: 1.6;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05) rotate(2deg);
}

@media (max-width: 768px) {
  .about-row {
    flex-direction: column;
  }
}

/* Fade animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}






     