 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #4a6cf7;
            --primary-dark: #3a5ce5;
            --secondary: #6c757d;
            --success: #28a745;
            --light: #f8f9fa;
            --dark: #343a40;
            --white: #ffffff;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        body {
            background-color: #f5f7fb;
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        /* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #222;
}

.logo-icon {
  background: #00df9a;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00df9a;
}

/* Buttons */
.btn {
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline {
  border: 2px solid #00df9a;
  color: #00df9a;
}

.btn-outline:hover {
  background: #00df9a;
  color: #fff;
}

.btn-primary {
  background: #00df9a;
  color: #fff;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: #10b981;
}

/* Mobile */
.mobile-menu {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: #444;
}

@media (max-width: 768px) {
  .nav-links, .auth-buttons {
    display: none;
  }

  .mobile-menu {
    display: block;
  }
}


       

        .nav-links li {
            margin-left: 25px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }

       

        .auth-buttons {
            display: flex;
            gap: 15px;
        }


        .btn-outline {
            background-color: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--white);
        }

        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7fb 0%, #e4e8f7 100%);
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .hero-text {
            flex: 1;
            padding-right: 40px;
        }

        .hero-text h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--dark);
            line-height: 1.2;
        }

        .hero-text p {
            font-size: 18px;
            color: var(--secondary);
            margin-bottom: 30px;
        }

        .hero-image {
            flex: 1;
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: var(--white);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .section-title p {
            color: var(--secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background-color: var(--light);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s;
            box-shadow: var(--shadow);
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
        }

        .feature-card h3 {
            margin-bottom: 15px;
            color: var(--dark);
        }

        .feature-card p {
            color: var(--secondary);
        }

        /* How It Works */
        .how-it-works {
            padding: 80px 0;
            background-color: #f5f7fb;
        }

        .steps {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
        }

        .step {
            text-align: center;
            flex: 1;
            padding: 0 20px;
            position: relative;
        }

        .step-number {
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        .step h3 {
            margin-bottom: 15px;
            color: var(--dark);
        }

        .step p {
            color: var(--secondary);
        }

        .step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 25px;
            right: -50px;
            width: 100px;
            height: 2px;
            background-color: var(--primary);
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background-color: var(--white);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background-color: var(--light);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: bold;
            margin-right: 15px;
        }

        .author-info h4 {
            color: var(--dark);
            margin-bottom: 5px;
        }

        .author-info p {
            color: var(--secondary);
            font-size: 14px;
        }

        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background-color: var(--white);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #eaeaea;
            border-radius: 8px;
            overflow: hidden;
        }

       .faq-question {
  padding: 20px;
  background-color: var(--light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}
.faq-question:hover {
  background-color: #eef2ff;
}

      .faq-question h3 {
  font-size: 18px;
  color: var(--dark);
  margin: 0;
}

       .faq-answer {
  padding: 0 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.faq-answer.active {
  padding: 20px;
  max-height: 400px;
  opacity: 1;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-answer.active + .faq-question i {
  transform: rotate(180deg);
}

    

        /* Download Section */
        .download {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            text-align: center;
        }

        .download h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .download p {
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 18px;
        }

        .download-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .download-btn {
            display: flex;
            align-items: center;
            background-color: var(--white);
            color: var(--dark);
            padding: 12px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s;
        }

        .download-btn:hover {
            transform: translateY(-5px);
        }

        .download-btn i {
            font-size: 24px;
            margin-right: 10px;
        }

       

        /* Logo Animation */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .logo-icon {
            animation: pulse 2s infinite;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
            }

            .hero-text {
                padding-right: 0;
                margin-bottom: 40px;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 36px;
            }

            .steps {
                flex-direction: column;
                gap: 40px;
            }

            .step:not(:last-child)::after {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .nav-links, .auth-buttons {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

            .download-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        .testimonial-card:hover {
    transform: translateY(-8px);
}
@media(max-width: 768px) {
    .testimonial-grid {
        flex-direction: column;
        align-items: center;
    }
}

.footer {
  background: #0f172a;
  color: #fff;
  padding: 60px 0 20px;
  font-family: "Poppins", sans-serif;
}

.footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #00df9a;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 8px 0;
  font-size: 14px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #00df9a;
}

.social-links a {
  display: inline-block;
  color: #cbd5e1;
  margin-right: 10px;
  font-size: 16px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #00df9a;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 13px;
  color: #94a3b8;
}

.footer-bottom .made-by {
  color: #00df9a;
  margin-top: 5px;
  font-size: 13px;
}


.step:hover {
    transform: translateY(-5px);
}
.step-icon:hover {
    transform: scale(1.2);
}