/* General Body Styles */
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  font-weight: 400;
}

/* Navigation Bar */
.navbar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
  color: #fff !important;
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  margin: 0 0.25rem;
}

.nav-link:hover {
  color: #fff !important;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.navbar-toggler {
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Guest Navbar Styles */
.navbar-light {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-light:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.navbar-light .navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.navbar-light .navbar-brand:hover {
  transform: scale(1.05);
  color: #fff !important;
}

.navbar-light .nav-link {
  color: #fff !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  margin: 0 0.25rem;
}

.navbar-light .nav-link:hover {
  color: #fff !important;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.navbar .btn {
  margin: 0 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .hero .btn {
    font-size: 1rem;
    padding: 12px 30px;
  }

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

  .navbar .btn {
    margin: 0.25rem 0;
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: center;
  }

  .footer {
    padding: 40px 0;
  }

  .footer h5 {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 80px 0;
  }

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

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 60px 0;
  }

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

  .feature-box {
    margin-bottom: 30px;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .nav-link {
    padding: 0.5rem 0.75rem;
  }
}

.navbar-light .navbar-toggler {
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23ffffff;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23ffffff;stop-opacity:0"/></radialGradient></defs><circle cx="500" cy="500" r="400" fill="url(%23a)"/></svg>');
  opacity: 0.3;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .btn {
  font-size: 1.2rem;
  padding: 15px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero .btn-primary {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: bold;
}

/* Features Section */
.feature-box {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.feature-icon {
  font-size: 3rem;
  color: #2575fc;
  margin-bottom: 20px;
}

/* How It Works Section */
.how-it-works-step {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.how-it-works-step .step-number {
  font-size: 3rem;
  font-weight: bold;
  color: #2575fc;
  margin-right: 30px;
}

.how-it-works-step .step-content {
  flex: 1;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 60px 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f093fb, #f5576c, #4facfe, #00f2fe);
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 25px;
  color: #f093fb;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer a {
  color: #bdc3c7;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: #f093fb;
  transform: translateX(5px);
}

.footer .social-icons a {
  font-size: 1.8rem;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.footer .social-icons a:hover {
  transform: translateY(-5px);
  color: #f5576c;
}
