@charset "UTF-8";
/* ── Modern Elegant Navbar (2026 Education Style) ── */
.navbar-modern {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(240, 240, 245, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  padding: 1rem 0;
  z-index: 1030;
}

.navbar-modern.scrolled {
  padding: 0.75rem 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}



.navbar-brand:hover .logo-wrapper {
  transform: scale(1.08);
}

.logo-img {
  width: auto;
  height: 42px;
  object-fit: contain;
}

/* Links */
.nav-link {
  color: #1f2937;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 0.6rem 1rem !important;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2.5px;
  bottom: 0;
  left: 50%;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  transition: all 0.35s ease;
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: #2563eb;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

/* Buttons */
.btn-enroll {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  padding: 0.65rem 1.8rem;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
  transition: all 0.3s ease;
}

.btn-enroll:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
  background: linear-gradient(90deg, #1d4ed8, #2563eb);
}

.btn-outline-contact {
  border: 2px solid #10b981;
  color: #10b981;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-contact:hover {
  background-color: #10b981;
  color: white;
  transform: translateY(-2px);
}

/* Mobile tweaks */
@media (max-width: 991px) {
  .navbar-modern {
    padding: 1rem 0;
  }
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 0 0 16px 16px;
    margin: 1rem -1.5rem 0;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  .nav-link {
    padding: 0.9rem 1.2rem !important;
    font-size: 1.1rem;
  }
}