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

:root {
  --primary: #2c3e50;
  --primary-dark: #1c2835;
  --accent: #f59e0b;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border: #e5e7eb;
  --success: #10b981;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--bg-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logoimg {
  width: 8rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-buttons {
  display: flex;
  gap: 1rem;
}

.nav-buttons .btn-secondary {
  color: var(--primary);
}

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-secondary {
  background-color: transparent;
  color: whitesmoke;
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: white;
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 6rem 2rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero CTA */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 1.25rem;
  transition: transform 0.18s ease, background 0.18s ease;
}

.hero-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.hero-cta-icon {
  font-size: 1rem;
  line-height: 1;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.hero-stats .stat {
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
}

.hero-stats .stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.hero-stats .stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.btn-white {
  background-color: white;
  color: var(--primary);
  font-weight: 600;
}

.btn-white:hover {
  background-color: var(--bg-light);
}

/* Features Section */
.features {
  padding: 4rem 2rem;
  background-color: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px #e8cdd1;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px #eee4e5;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Testimonials Section */

/* Testimonials Section */
        .testimonials {
            padding: 4rem 2rem;
            background-color: var(--bg-white);
        }

        .testimg{
            width: 5rem;
            height: 5rem;
            border-radius: 5rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background-color: var(--bg-light);
            padding: 2rem;
            border-radius: 1rem;
            border-left: 4px solid #D31A38;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 1.2rem;
        }

        .testimonial-info h4 {
            margin-bottom: 0.25rem;
            color: var(--text-dark);
        }

        .testimonial-info p {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        .testimonial-text {
            color: var(--text-dark);
            font-style: italic;
            margin-bottom: 1rem;
        }

        .rating {
            color: var(--accent);
            font-size: 1rem;
        }


/* How It Works Section */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  color: var(--text-dark);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-dark);
  font-size: 1.25rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.card {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid #334155;
  backdrop-filter: blur(10px);
}

.card-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 32px;
  font-weight: 600;
  font-size: 0.9rem;
  background-color: rgb(211, 26, 56);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: white;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step {
  display: flex;
  gap: 20px;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.step-number {
  background-color: rgb(211, 26, 56);
}

.step-content h3 {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  color: #94a3b8;
  line-height: 1.6;
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: white;
  padding: 3rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #d1d5db;
}

/* Floating Button */
/* .floating-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--accent) 0%, #ea8c0f 100%);
  color: white;
  padding: 1rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
  background: linear-gradient(135deg, #ea8c0f 0%, var(--accent) 100%);
}

.floating-btn::before {
  content: "✨";
  font-size: 1.2rem;
} */

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .testimonial-card {
    border-left: 0;
    border-top: 4px solid #d31a38;
  }

  /* .floating-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
  } */
  .section-header h2 {
    font-size: 2rem;
  }

  .testimonial-card {
    min-width: 280px;
    max-width: 280px;
  }
  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .card {
    padding: 24px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .container {
    margin: 0 10px;
  }
}
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .container {
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  nav {
    gap: 1rem;
  }

  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  /* .floating-btn {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  } */
  .hero-cta {
    font-size: 12px;
  }
  .container {
    max-width: 480px;
    margin: 0 10px;
  }
}
