/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9f9;
  color: #333;
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  background-color: #007bff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.nav-links li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.nav-links li a:hover {
  color: #ffc107;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #007bff;
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('https://images.unsplash.com/photo-1517649763962-0c623066013b') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 5rem 2rem;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: fadeIn 1s ease-in-out;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeIn 1.4s ease-in-out;
}
.btn {
  background-color: #28a745;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}
.btn:hover {
  background-color: #218838;
}

/* Features Section */
.features {
  padding: 3rem 2rem;
  background-color: #f8f9fa;
  text-align: center;
}
.section-title {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 2rem;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.feature-card {
  background: white;
  padding: 2rem;
  width: 280px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  animation: slideUp 0.8s ease forwards;
}
.feature-card h3 {
  color: #007bff;
  margin-bottom: 1rem;
}
.feature-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}
.feature-btn {
  background: #007bff;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
}
.feature-btn:hover {
  background-color: #0056b3;
}

/* Stats Section */
.stats-section {
  padding: 3rem 2rem;
  background-color: #ffffff;
  text-align: center;
}
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.stat {
  background: #f8f9fa;
  padding: 1.5rem;
  width: 160px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.stat h3 {
  font-size: 1.6rem;
  color: #28a745;
}
.stat p {
  font-size: 0.9rem;
  color: #555;
}

/* Testimonials Section */
.testimonials {
  padding: 3rem 2rem;
  background-color: #eef1f5;
  text-align: center;
}
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.testimonial {
  background: white;
  padding: 1.5rem;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-style: italic;
}
.testimonial h4 {
  margin-top: 1rem;
  color: #333;
}

/* Call to Action */
.cta-section {
  background-color: #007bff;
  color: white;
  text-align: center;
  padding: 3rem 2rem;
}
.cta-section .btn {
  background-color: #ffc107;
  color: #333;
  font-weight: bold;
}
.cta-section .btn:hover {
  background-color: #e0a800;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Scroll Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .features-grid, .stats-grid, .testimonial-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature-card, .stat, .testimonial {
    width: 100%;
    max-width: 350px;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
}




body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f4f6f8;
}
.auth-container {
  max-width: 400px;
  margin: 100px auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.auth-container h2 {
  margin-bottom: 1.5rem;
  color: #333;
}
.auth-form input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.auth-form button {
  width: 100%;
  padding: 0.8rem;
  background-color: #007bff;
  color: white;
  border: none;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
}
.auth-form button:hover {
  background-color: #0056b3;
}
.auth-switch {
  margin-top: 1rem;
  font-size: 0.9rem;
}
.auth-switch a {
  color: #007bff;
  text-decoration: none;
}
.auth-switch a:hover {
  text-decoration: underline;
}
.message.success {
  background-color: #e1f3e1;
  color: #2d6a2d;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 15px;
}

