/* Sticky Header */
.navbar {
  background-color: transparent;
  box-shadow: none;
  transition: all 0.3s ease;
  padding: 1rem 0;
  z-index: 1000;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background-color: var(--background-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.logo {
  width: 120px;
  height: 80px;
}
.navbar:not(.scrolled) .nav-link {
  color: white !important;
}

.navbar:not(.scrolled) .navbar-brand {
  color: white !important;
}

.navbar:not(.scrolled) .btn-outline-primary-custom {
  color: white !important;
  border-color: white !important;
}

.navbar:not(.scrolled) .btn-outline-primary-custom:hover {
  background-color: white !important;
  color: var(--primary) !important;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary) !important;
  text-decoration: none;
}

.nav-link {
  color: var(--text-heading) !important;
  font-weight: 400;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary) !important;
}

.btn-primary-custom {
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.btn-primary-custom:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(28, 63, 120, 0.4);
}

.btn-secondary-custom {
  background-color: var(--secondary);
  color: white;
  border: none;
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.btn-secondary-custom:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(14, 127, 87, 0.4);
}

.btn-accent-custom {
  background-color: var(--accent);
  color: white;
  border: none;
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.btn-accent-custom:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(194, 164, 93, 0.4);
}

.btn-outline-primary-custom {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  font-weight: 400;
  transition: all 0.3s ease;
}

.btn-outline-primary-custom:hover {
  background-color: var(--primary);
  color: white;
}
/* Footer */
.footer {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-hover) 100%
  );
  color: white;
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.footer-contact {
  margin-top: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.footer-contact-item i {
  color: var(--accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}

.footer-director {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-director-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.footer-director-role {
  font-size: 1rem;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-image {
    height: 400px;
  }

  .section-title {
    font-size: 2rem;
  }

  .plan-card.popular {
    transform: scale(1);
  }

  .plan-card.popular:hover {
    transform: translateY(-10px);
  }

  .vision-mission-image img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .hero-image {
    height: 300px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .instructor-image {
    width: 150px;
    height: 150px;
  }

  .director-image {
    width: 150px;
    height: 150px;
  }

  .feature-card-modern {
    padding: 2rem 1.5rem;
  }

  .review-card {
    padding: 2rem 1.5rem;
  }

  .free-reviews-title {
    font-size: 2rem;
  }

  .vision-mission-text h2 {
    font-size: 2rem;
  }

  .vision-mission-image img {
    height: 350px;
  }

  .plan-card {
    padding: 2rem 1.5rem;
  }
}

/* Navbar Toggler Customization */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.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%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
