/* ============================================
   Stanford Montessori Training Center
   Complete Handcrafted Stylesheet v2.0
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary-color: #0B3C6F;
  --primary-dark: #062850;
  --accent-color: #F4B400;
  --accent-hover: #d9a000;
  --danger-color: #E63946;
  --success-color: #28a745;
  --text-dark: #1a1a2e;
  --text-body: #555;
  --text-muted: #777;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-body);
  line-height: 1.7;
  background: var(--bg-light);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
}

.text-justify {
  text-align: justify;
}

.text-accent {
  color: var(--accent-color) !important;
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #fff;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border-color);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 16px;
}

.preloader-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 2px;
}

.preloader-logo span {
  color: var(--accent-color);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--primary-color);
  color: #fff;
  font-size: 0.82rem;
  padding: 8px 0;
}

.top-bar a {
  color: #fff;
}

.top-bar a:hover {
  color: var(--accent-color);
}

/* ---------- Navbar ---------- */
.navbar-custom {
  background: #fff;
  padding: 12px 0;
  transition: var(--transition);
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: var(--shadow-md);
}

.navbar-custom.navbar-scrolled {
  background: #fff;
  box-shadow: var(--shadow-md);
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
  color: var(--primary-color) !important;
}

.navbar-custom .navbar-toggler-icon {
  filter: none;
}

/* Scrolled state: keep same colors, just add shadow */



.navbar-brand-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo-img {
  width: 44px;
  height: 44px;
}

.navbar-brand {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

.navbar-brand span {
  color: var(--accent-color);
}

.brand-tagline {
  font-size: 0.65rem;
  opacity: 0.8;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar-custom .nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--accent-color) !important;
}

.navbar-custom.navbar-scrolled .nav-link:hover,
.navbar-custom.navbar-scrolled .nav-link.active {
  color: var(--accent-color) !important;
}

@media (min-width: 992px) {
  .navbar-custom .container {
    gap: 2rem;
  }
  .navbar-custom .nav-link {
    padding: 8px 12px !important;
  }
}

/* ---------- Buttons ---------- */
.btn-custom {
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
  border: none;
}

.btn-primary-custom {
  background: var(--primary-color);
  color: #fff;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary-custom {
  background: var(--accent-color);
  color: var(--primary-color);
}

.btn-secondary-custom:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent-custom {
  background: var(--accent-color);
  color: var(--primary-color);
  font-weight: 700;
}

.btn-accent-custom:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: #fff;
}

/* ---------- Animate Pulse ---------- */
.animate-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
}

.hero-section .swiper {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
  position: absolute;
  top: 0; left: 0;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(11,60,111,0.85) 0%, rgba(6,40,80,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-title span {
  color: var(--accent-color);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  max-width: 600px;
  line-height: 1.8;
}

/* ---------- Hero Stats ---------- */
.hero-stats-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  margin-bottom: 60px;
}

.stats-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.stats-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.counter-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 8px;
}

.stats-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- Section Headers ---------- */
.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  background: rgba(244,180,0,0.1);
  padding: 4px 16px;
  border-radius: 20px;
}

.section-title {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
  margin-top: 16px;
}

.section-padding {
  padding: 80px 0;
}

/* ---------- About Cards ---------- */
.about-card {
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color) !important;
}

.about-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,60,111,0.08);
  border-radius: var(--radius-lg);
}

.about-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ---------- Course Cards ---------- */
.course-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.course-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.course-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover .course-img {
  transform: scale(1.05);
}

.course-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.course-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-title {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.course-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.course-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.course-info-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border-color);
  font-size: 0.82rem;
}

.course-info-item:last-child {
  border-bottom: none;
}

.course-info-label {
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.course-info-val {
  color: var(--text-muted);
  text-align: right;
}

.course-btn-wrapper {
  margin-top: auto;
}

/* ---------- Testimonials ---------- */
.testimonial-slide {
  padding: 10px;
}

.testimonial-card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  height: 100%;
}

.testimonial-rating i {
  font-size: 0.85rem;
  margin-right: 2px;
}

.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.8;
  font-style: italic;
}

/* ---------- Mobile App Section ---------- */
.mobile-app-section {
  background: linear-gradient(135deg, rgba(11,60,111,0.03) 0%, rgba(244,180,0,0.03) 100%);
}

.feature-icon-card {
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.feature-icon-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,60,111,0.08);
  border-radius: 12px;
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.premium-qr-wrapper {
  flex-shrink: 0;
}

.premium-qr-box {
  position: relative;
  width: 120px;
  height: 120px;
  background: #fff;
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.premium-qr-scanner-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  animation: scan 2s linear infinite;
}

@keyframes scan {
  0% { top: 0; }
  100% { top: 100%; }
}

/* Phone Mockup */
.phone-mockup-container {
  position: relative;
  z-index: 5;
}

.phone-mockup {
  width: 280px;
  background: #1a1a2e;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
}

.phone-notch {
  width: 120px;
  height: 24px;
  background: #1a1a2e;
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screen {
  background: #f8f9fa;
  border-radius: 24px;
  overflow: hidden;
  min-height: 480px;
}

.mock-app-header {
  background: var(--primary-color);
  padding: 20px 16px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mock-app-header-title {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0;
}

.mock-app-header-title span {
  color: var(--accent-color);
}

.mock-app-header-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-color);
}

.mock-app-content {
  padding: 16px;
}

.mock-screen-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-color);
}

.mock-progress-card {
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 10px;
}

.mock-progress-bar {
  height: 6px;
  background: #e9ecef;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 8px;
}

.mock-progress-fill {
  height: 100%;
  background: var(--primary-color);
  border-radius: 3px;
  transition: width 1s ease;
}

.mock-progress-fill.secondary {
  background: var(--success-color);
}

.mock-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.mock-mini-card {
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.mock-mini-card-icon {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.mock-profile-card {
  text-align: center;
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 10px;
}

.mock-profile-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 8px;
  border: 3px solid var(--accent-color);
}

.mock-noti-item {
  background: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 8px;
  border-left: 3px solid var(--primary-color);
}

.mock-noti-item.unread {
  border-left-color: var(--accent-color);
  background: #fffcf0;
}

.mock-certificate-card {
  background: linear-gradient(135deg, #fff9e6, #fff);
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 12px;
  position: relative;
}

.mock-gold-seal {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 50%;
  margin: 8px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(244,180,0,0.4);
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 15;
  animation: floatBadge 3s ease-in-out infinite;
}

.floating-badge-1 { top: 10%; left: -20px; animation-delay: 0s; }
.floating-badge-2 { top: 35%; right: -30px; animation-delay: 0.5s; }
.floating-badge-3 { bottom: 25%; left: -30px; animation-delay: 1s; }
.floating-badge-4 { bottom: 5%; right: -20px; animation-delay: 1.5s; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Screen Nav Shortcuts */
.screen-nav-shortcut {
  width: 30px !important;
  height: 30px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  transition: var(--transition);
}

.screen-nav-shortcut:hover {
  transform: scale(1.15);
}

/* ---------- Form Success Card ---------- */
.form-success-card {
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon {
  font-size: 3rem;
  color: var(--success-color);
  margin-bottom: 16px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--primary-dark);
  color: #fff;
}

.footer-top {
  padding: 60px 0 40px;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.footer-brand span {
  color: var(--accent-color);
}

.footer-logo-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}

.footer-contact-item i {
  color: var(--accent-color);
  font-size: 1rem;
  margin-top: 3px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

.footer-socials {
  display: flex;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
}

.footer-social-btn:hover {
  background: var(--accent-color);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- Scroll to Top ---------- */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* ---------- Modal Styles ---------- */
.modal-content {
  border-radius: var(--radius-lg);
}

.modal-header {
  border-bottom: none;
}

.modal-header .btn-close {
  padding: 8px;
}

/* ---------- Form Styles ---------- */
.form-floating > .form-control,
.form-floating > .form-select {
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(11,60,111,0.15);
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: var(--danger-color);
}

.invalid-feedback {
  font-size: 0.78rem;
}

/* ---------- Swiper Pagination Override ---------- */
.swiper-pagination-bullet {
  background: var(--primary-color);
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
}

/* ---------- Text Utilities ---------- */
.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.text-warning {
  color: var(--accent-color) !important;
}

.text-success {
  color: var(--success-color) !important;
}

.text-danger {
  color: var(--danger-color) !important;
}

.text-white {
  color: #fff !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-light {
  background-color: var(--bg-light) !important;
}

.bg-dark {
  background-color: #1a1a2e !important;
}

.text-end {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-start {
  text-align: left;
}

.text-uppercase {
  text-transform: uppercase;
}

.fw-bold {
  font-weight: 700;
}

.fw-semibold {
  font-weight: 600;
}

.fw-medium {
  font-weight: 500;
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-white-50 {
  color: rgba(255,255,255,0.5) !important;
}

.small {
  font-size: 0.85rem;
}

.fs-1 { font-size: 2.5rem; }
.fs-2 { font-size: 2rem; }
.fs-3 { font-size: 1.5rem; }
.fs-4 { font-size: 1.25rem; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-content {
    padding-top: 80px;
  }

  .hero-section {
    min-height: 70vh;
  }

  .floating-badge {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-padding {
    padding: 50px 0;
  }

  .hero-stats-wrapper {
    margin-top: -40px;
  }

  .counter-value {
    font-size: 2rem;
  }

  .phone-mockup {
    width: 240px;
  }

  .phone-screen {
    min-height: 400px;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }
}

/* Hide Admission Open and Apply Now buttons in navbar */
.navbar .btn[href*="admission"],
.navbar .btn[href*="apply"],
.navbar .nav-link[href*="admission"],
.navbar .nav-link[href*="apply"],
.navbar .btn.admission-open,
.navbar .btn.apply-now,
.navbar .nav-link.admission-open,
.navbar .nav-link.apply-now,
.navbar li.nav-item:has(.btn[href*="admission"]),
.navbar li.nav-item:has(.btn[href*="apply"]) {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  pointer-events: none !important;
}
