/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- CUSTOM VARIABLES --- */
:root {
  /* Colors */
  --primary: #2e3192;
  --primary-light: #0096dc;
  --primary-dark: #191b5c;
  --accent: #e63946;
  --accent-hover: #c92a38;
  --accent-light: #fef2f2;
  --secondary-accent: #aadcf0;
  
  --neutral-light: #f8fafc;
  --neutral-dark: #0f172a;
  --neutral-body: #475569;
  --neutral-border: #e2e8f0;
  --white: #ffffff;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout & Spacing */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-shadow: 0 8px 32px 0 rgba(46, 49, 146, 0.08);
}

/* --- RESET & BASIC STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-body);
  background-color: var(--neutral-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--neutral-dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- REUSABLE UTILITIES --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  display: inline-block;
  background-color: var(--accent-light);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  border: 1px solid rgba(230, 57, 70, 0.15);
}

.section-main-title {
  font-size: 2.75rem;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--neutral-body);
  font-size: 1.1rem;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(46, 49, 146, 0.2);
}

.btn-secondary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 49, 146, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- SUB-HEADER --- */
.sub-header {
  background-color: var(--primary-dark);
  color: var(--white);
  font-size: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sub-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sub-header-contact {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.sub-header-contact a, .sub-header-contact span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.sub-header-socials {
  display: flex;
  gap: 1.25rem;
}

.sub-header-socials a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.sub-header-socials a:hover {
  color: var(--accent);
}

/* --- HEADER AREA --- */
.header-area {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
}

.header-area.sticky {
  position: fixed;
  top: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--glass-shadow);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: var(--transition-normal);
}

.header-area.sticky .main-nav {
  height: 75px;
}

.logo img {
  height: 60px;
  width: auto;
  transition: var(--transition-normal);
}

.header-area.sticky .logo img {
  height: 50px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary-dark);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--accent);
  transition: var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Desktop non-sticky state: white text on transparent overlay */
@media (min-width: 769px) {
  .header-area:not(.sticky) .nav-link {
    color: var(--white);
  }
  .header-area:not(.sticky) .nav-link:hover,
  .header-area:not(.sticky) .nav-link.active {
    color: var(--secondary-accent);
  }
}

/* Mobile hamburger toggle bars color when not sticky */
.header-area:not(.sticky) .menu-toggle span {
  background-color: var(--white);
}

/* Dropdown Menu */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--neutral-border);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition-normal);
  padding: 0.75rem 0;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--neutral-dark);
}

.dropdown-item:hover {
  background-color: var(--neutral-light);
  color: var(--accent);
  padding-left: 1.75rem;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--primary-dark);
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right, 
    rgba(25, 27, 92, 0.95) 0%, 
    rgba(25, 27, 92, 0.75) 50%, 
    rgba(0, 150, 220, 0.4) 100%
  );
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 750px;
  color: var(--white);
}

.hero-pretitle {
  display: inline-block;
  background-color: var(--accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--secondary-accent);
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* --- QUICK PORTAL ACTIVITIES BAR --- */
.quick-portal-bar {
  background-color: var(--primary);
  padding: 2.5rem 0;
  color: var(--white);
  position: relative;
  z-index: 10;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.portal-card {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-sm);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition-normal);
}

.portal-card:hover {
  background-color: var(--white);
  color: var(--neutral-dark);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.portal-icon {
  font-size: 2rem;
  color: var(--secondary-accent);
  transition: var(--transition-normal);
}

.portal-card:hover .portal-icon {
  color: var(--accent);
}

.portal-card h3 {
  color: inherit;
  font-size: 1.2rem;
  font-weight: 600;
}

.portal-card p {
  font-size: 0.85rem;
  opacity: 0.85;
}

.portal-card:hover p {
  opacity: 1;
}

.portal-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  color: var(--secondary-accent);
}

.portal-card:hover .portal-link {
  color: var(--accent);
}

/* --- ABOUT SECTION --- */
.about-section {
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--neutral-body);
}

.objectives-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.objective-item {
  display: flex;
  gap: 1.25rem;
  background-color: var(--neutral-light);
  padding: 1.5rem;
  border-radius: var(--border-radius-sm);
  border-left: 4px solid var(--primary);
  transition: var(--transition-normal);
}

.objective-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.objective-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.objective-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.objective-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --- STATISTICS SECTION --- */
.stats-section {
  background-color: var(--neutral-dark);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary-accent);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* --- PROGRAMS SECTION --- */
.programs-section {
  background-color: var(--neutral-light);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.program-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--neutral-border);
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition-normal);
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glass-shadow);
  border-color: var(--secondary-accent);
}

.program-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--accent-light);
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.program-card h3 {
  font-size: 1.85rem;
  margin-bottom: 1rem;
}

.program-desc {
  color: var(--neutral-body);
  margin-bottom: 2rem;
}

.requirements-block {
  background-color: var(--neutral-light);
  border-radius: var(--border-radius-sm);
  padding: 1.75rem;
}

.requirements-block h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.requirements-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.requirements-list li {
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--neutral-body);
}

.requirements-list li i {
  color: var(--primary-light);
  margin-top: 0.25rem;
}

/* --- ADMISSION CTA BANNER --- */
.admission-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 4.5rem 0;
  text-align: center;
}

.banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.banner-content h2 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.banner-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.25rem;
}

/* --- INSTRUCTORS SECTION --- */
.instructors-section {
  background-color: var(--white);
}

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.instructor-card {
  background-color: var(--white);
  border: 1px solid var(--neutral-border);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: var(--transition-normal);
}

.instructor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glass-shadow);
}

.instructor-img {
  height: 260px;
  background-color: var(--neutral-light);
  overflow: hidden;
  position: relative;
}

.instructor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.instructor-card:hover .instructor-img img {
  transform: scale(1.05);
}

.instructor-info {
  padding: 2rem;
}

.instructor-info h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.instructor-title {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.instructor-bio {
  font-size: 0.9rem;
  color: var(--neutral-body);
  line-height: 1.5;
}

/* --- GOVERNING COUNCIL & DIRECTORS --- */
.council-section {
  background-color: var(--neutral-light);
}

.council-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.council-block {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--neutral-border);
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.council-block h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--neutral-border);
}

.council-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.council-member {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
  background-color: var(--neutral-light);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-normal);
}

.council-member:hover {
  transform: translateX(5px);
  border-left: 4px solid var(--accent);
}

.member-name {
  font-weight: 600;
  color: var(--neutral-dark);
}

.member-role {
  font-size: 0.85rem;
  color: var(--neutral-body);
  font-weight: 500;
}

/* --- CONTACT SECTION --- */
.contact-section {
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-details-box {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info-card {
  display: flex;
  gap: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(46, 49, 146, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.contact-info-card p, .contact-info-card a {
  font-size: 0.95rem;
  color: var(--neutral-body);
}

.contact-form-box {
  background-color: var(--neutral-light);
  padding: 3rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--neutral-border);
}

.contact-form-box h3 {
  font-size: 1.65rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--neutral-border);
  background-color: var(--white);
  outline: none;
  transition: var(--transition-normal);
}

.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(0, 150, 220, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* --- FOOTER --- */
.footer-section {
  background-color: var(--neutral-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 6.5rem 0 2rem 0;
  border-top: 5px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-about-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-social-links {
  display: flex;
  gap: 1rem;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.footer-social-links a:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links-list a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links-list a:hover {
  color: var(--accent);
  padding-left: 0.5rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 0.25rem;
  font-size: 1rem;
}

.footer-contact-item a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.js-enabled .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.js-enabled .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  .hero-title {
    font-size: 3.25rem;
  }
  .portal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .section-main-title {
    font-size: 2.25rem;
  }
  .about-grid, .programs-grid, .council-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .instructors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .sub-header {
    display: none;
  }
  .header-area {
    top: 0;
  }
  .main-nav {
    height: 80px;
  }
  .menu-toggle {
    display: flex;
  }
  
  /* Mobile Nav Menu styles */
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    gap: 1.5rem;
    padding: 3rem 1.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
    overflow-y: auto;
    align-items: stretch;
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .nav-link {
    font-size: 1.15rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--neutral-border);
    display: block;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    display: none;
    background-color: var(--neutral-light);
    margin-top: 0.5rem;
    border-radius: var(--border-radius-sm);
  }
  
  .has-dropdown.active .dropdown-menu {
    display: block;
  }
  
  .dropdown-item {
    padding: 0.75rem 1.5rem;
  }
  
  .nav-cta {
    margin-top: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.05rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .section-padding {
    padding: 4.5rem 0;
  }
  .portal-grid, .instructors-grid, .stats-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .contact-form-box {
    padding: 2rem 1.5rem;
  }
}
