/* Global Theme Variables */
:root {
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-500: #2e84e2;
  --primary-600: #2a76cc;
  --primary-700: #0e5ba6;
  --accent: #10c0d1;
  --bg: #ffffff;
  --bg-100: #f8fafc;
  --bg-alt: #f7fafc;
  --text-900: #1a202c;
  --text-800: #2d3748;
  --text-700: #2d3748;
  --text-600: #4a5568;
  --muted: #718096;
  --ring: rgba(46, 132, 226, 0.35);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 32px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --container: 1140px;
  --success: #10b981;
  --warning: #f59e0b;
}

/* CSS Reset / Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Open Sans", Arial, sans-serif;
  color: var(--text-700);
  background: var(--bg-alt);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
button, a { cursor: pointer; }
a { color: var(--primary-500); text-decoration: none; }
a:hover { color: var(--primary-700); }

.container { 
  width: 100%; 
  max-width: var(--container); 
  margin-inline: auto; 
  padding-inline: 1.25rem; 
}

@media (max-width: 768px) {
  .container {
    padding-inline: 1rem;
  }
}
.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }

.btn { display: inline-flex; align-items: center; gap: .5rem; border-radius: 999px; padding: .75rem 1.25rem; font-weight: 600; border: 1px solid transparent; transition: all .2s ease; }
.btn-primary { background: var(--primary-500); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--primary-700); border-color: var(--primary-500); }
.btn-outline:hover { background: var(--primary-500); color: #fff; }

.badge { display:inline-block; padding: .25rem .6rem; border-radius: 999px; font-size: .78rem; font-weight: 600; background: #e6f0fd; color: var(--primary-700); }

.card { background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid #eef2f7; overflow: hidden; }
.card-body { padding: 1.25rem; }
.card-title { margin: 0 0 .25rem; font-size: 1.1rem; color: var(--text-900); }
.card-text { margin: 0; color: var(--text-600); font-size: .98rem; }

.grid { display: grid; gap: 1.25rem; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { 
  .grid-3, .grid-4, .grid-2 { 
    grid-template-columns: 1fr; 
  }
  
  /* Mobile course actions */
  .course-actions {
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
    width: 100% !important;
  }
  
  .course-actions .btn {
    width: 100% !important;
    max-width: 280px !important;
    min-width: auto !important;
    margin: 0 auto !important;
  }
  
  /* Mobile course detail actions */
  .course-detail .course-actions .btn {
    display: block !important;
    margin: 0.5rem auto !important;
    width: 100% !important;
    max-width: 300px !important;
  }
}

/* ===== MODERN GLASSY NAVBAR ===== */
.navbar-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-container:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  width: 100%;
  padding: 0 2rem;
}

/* Brand Section */
.navbar-brand {
  justify-self: start;
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.brand-link:hover {
  transform: translateY(-1px);
}

.brand-logo {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}



/* Navigation Links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--text-700);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.5s ease;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover {
  color: var(--primary-700);
  background: rgba(59, 130, 246, 0.08);
  transform: translateY(-2px);
}

.nav-link.active {
  color: var(--primary-700);
  background: rgba(59, 130, 246, 0.12);
  font-weight: 700;
}

.nav-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  transition: all 0.3s ease;
}

.nav-link:hover .nav-icon {
  transform: scale(1.1);
  stroke-width: 2.5;
}

/* Enroll Button */
.navbar-actions {
  justify-self: end;
}

.enroll-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.enroll-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.enroll-btn:hover::before {
  left: 100%;
}

.enroll-btn:hover {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.enroll-btn:active {
  transform: translateY(-1px);
}

.enroll-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  transition: all 0.3s ease;
}

.enroll-btn:hover .enroll-icon {
  transform: scale(1.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--text-700);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-menu-toggle:hover .hamburger-line {
  background: var(--primary-600);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu {
  right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-logo {
  height: 32px;
  width: auto;
}



.mobile-menu-close {
  width: 40px;
  height: 40px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 10px;
  color: #ef4444;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.4);
  transform: scale(1.05);
}

.mobile-menu-close svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

/* Mobile Navigation Links */
.mobile-nav-links {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: auto;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  color: var(--text-700);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.5s ease;
}

.mobile-nav-link:hover::before {
  left: 100%;
}

.mobile-nav-link:hover {
  color: var(--primary-700);
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateX(8px);
}

.mobile-nav-link.active {
  color: var(--primary-700);
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
  font-weight: 700;
}

.mobile-nav-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover .mobile-nav-icon {
  transform: scale(1.1);
}

/* Mobile Enroll Section */
.mobile-enroll-section {
  padding: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-enroll-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.mobile-enroll-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.mobile-enroll-btn:hover::before {
  left: 100%;
}

.mobile-enroll-btn:hover {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.mobile-enroll-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  transition: all 0.3s ease;
}

.mobile-enroll-btn:hover .mobile-enroll-icon {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navbar-nav {
    gap: 0.25rem;
  }
  
  .nav-link {
    padding: 0.625rem 0.75rem;
    font-size: 0.85rem;
  }
  
  .brand-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 1rem;
    grid-template-columns: 1fr auto;
  }
  
  .navbar-nav {
    display: none;
  }
  
  .navbar-actions {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    justify-self: end;
  }
  
  .brand-text {
    display: none;
  }
}

@media (max-width: 480px) {
  .navbar {
    height: 64px;
    padding: 0 0.75rem;
  }
  
  .brand-logo {
    height: 36px;
  }
  
  .mobile-menu {
  max-width: 100%;
  }
}

/* Remove top margin so navbar overlaps content */
main {
  margin-top: 0;
}

/* Enrollment Form Spacing */
.enrollment-form {
  margin-top: 5rem;
  padding-top: 2rem;
}

/* Full Width Navbar completely removed */

/* Statistics Section */
.stats-section {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #1a202c 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  min-height: 150px;
  display: block;
}

.stats-section::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.stats-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  min-height: 120px;
}

.stats-item {
  text-align: center;
  flex: 1;
  max-width: 250px;
  display: block;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.stats-number.animate {
  opacity: 1;
  transform: translateY(0);
}

.stats-number::after {
  content: '+';
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-500);
  margin-left: 0.25rem;
}

.stats-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #a0aec0 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease 0.2s;
  display: block;
}

.stats-label.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .stats-section {
    padding: 2rem 0;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .stats-item {
    max-width: none;
  }
  
  .stats-number {
    font-size: 2rem;
  }
  
  .stats-number::after {
    font-size: 1.5rem;
  }
  
  .stats-label {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .stats-number {
    font-size: 1.8rem;
  }
  
  .stats-number::after {
    font-size: 1.3rem;
  }
  
  .stats-label {
    font-size: 0.65rem;
  }
}

/* Navbar components completely removed */

/* Enroll button and menu toggle completely removed */

/* Mobile navbar completely removed */

/* Additional mobile breakpoint completely removed */



/* Hero */
.hero { position: relative; background: linear-gradient(135deg, #eaf3ff 0%, #ffffff 40%), var(--bg); overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; min-height: 520px; gap: 2rem; }
.hero-eyebrow { margin: 0 0 .5rem; }
.hero-title { margin: 0 0 .75rem; font-size: clamp(1.9rem, 1.25rem + 2.2vw, 3rem); line-height: 1.15; color: var(--text-900); }
.hero-subtitle { margin: 0 0 1.25rem; color: var(--text-600); font-size: clamp(1rem, .85rem + .5vw, 1.2rem); }
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-art { position: relative; min-height: 340px; }
.hero-bg {
  position: absolute; inset: -10% -20% -10% 20%;
  background-image: url("../../../OLD Site/Infotech College – College Of Business and IT_files/Untitled-design.png");
  background-size: cover; background-repeat: no-repeat; background-position: right center;
  filter: saturate(1.05) contrast(1.02);
  opacity: .9;
}

/* Full Width Hero Section */
.hero-full-width {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-fade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(255, 255, 255, 0.8) 20%, 
    rgba(255, 255, 255, 0.4) 50%, 
    rgba(255, 255, 255, 0.1) 80%, 
    transparent 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0;
  margin: 0;
}

.hero-text-overlay {
  max-width: 500px;
  color: var(--text-900);
  margin-left: 4rem;
  padding-left: 2rem;
}

.hero-text-overlay .hero-eyebrow {
  margin: 0 0 1.5rem;
  background: var(--primary-500);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
}

.hero-text-overlay .hero-title {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-900);
}

.hero-text-overlay .hero-subtitle {
  margin: 0 0 2.5rem;
  font-size: clamp(1rem, 0.875rem + 0.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-800);
  max-width: 450px;
}

.hero-text-overlay .hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-text-overlay .btn {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.hero-text-overlay .btn-primary {
  background: var(--primary-500);
  color: white;
  border: none;
  box-shadow: var(--shadow-md);
}

.hero-text-overlay .btn-primary:hover {
  background: var(--primary-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-text-overlay .btn-outline {
  background: transparent;
  color: var(--primary-700);
  border: 2px solid var(--primary-500);
}

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

/* Responsive adjustments for hero */
@media (max-width: 768px) {
  .hero-full-width {
    height: 60vh;
    min-height: 400px;
  }
  
  .hero-content {
    padding: 0;
  }
  
  .hero-text-overlay {
    text-align: center;
    margin-left: 1rem;
    padding-left: 1rem;
  }
  
  .hero-text-overlay .hero-cta {
    justify-content: center;
  }
  
  .hero-text-overlay .hero-title {
    font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  }
  
  .hero-text-overlay .hero-subtitle {
    font-size: clamp(0.9rem, 0.8rem + 0.3vw, 1.1rem);
  }
}

/* The Infotech Advantage Section */
.advantage-section {
  padding: 3rem 0;
  background: var(--white);
}

.advantage-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.advantage-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.advantage-image {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  width: 100%;
}

.advantage-right {
  padding-left: 2rem;
}

.advantage-headline {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.advantage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.advantage-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.advantage-icon {
  font-size: 1.75rem;
  margin-top: 0.25rem;
}

.advantage-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.advantage-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments for advantage section */
@media (max-width: 1024px) {
  .advantage-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .advantage-right {
    padding-left: 0;
  }
  
  .advantage-headline {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .advantage-section {
    padding: 2rem 0;
  }
  
  .advantage-container {
    padding: 0 1rem;
  }
  
  .advantage-headline {
    font-size: 1.75rem;
    text-align: center;
  }
  
  .advantage-item {
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  
  .advantage-icon {
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  /* Mobile grid adjustments */
  .grid-3, .grid-4, .grid-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Mobile card adjustments */
  .card {
    margin-bottom: 1rem;
  }
  
  /* Mobile button adjustments */
  .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  /* Move hero image far right on mobile to show the girl */
  .hero-bg-image {
    object-position: 65% center;
  }
}
.hero-gradient { position: absolute; inset: 0; background: radial-gradient(1200px 400px at 20% 30%, rgba(46,132,226,.25), transparent 60%), linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,.6) 60%, transparent 100%); }

@media (max-width: 920px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 2.5rem; padding-bottom: 2.5rem; }
}

/* Features */
.feature { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem; border-radius: var(--radius-md); background: #fff; border: 1px solid #eef2f7; }
.feature-icon { display: grid; place-items: center; height: 40px; width: 40px; border-radius: 10px; color: #fff; background: var(--primary-500); box-shadow: var(--shadow-sm); }
.feature h3 { margin: 0 0 .25rem; font-size: 1.02rem; color: var(--text-900); }
.feature p { margin: 0; color: var(--text-600); }

/* Courses */
.courses .card { transition: transform .2s ease, box-shadow .2s ease; }
.courses .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.course-meta { display: flex; justify-content: space-between; align-items: center; margin-top: .75rem; color: var(--muted); font-size: .9rem; }

/* Simplified Course Card Styles */
.course-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.course-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.course-card .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1rem;
}

.course-card .card-title {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.course-card .card-text {
  flex-grow: 1;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  font-size: 0.9rem;
  color: var(--text-600);
}

.course-card .lecturer-info {
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}

.course-actions {
  margin-top: auto;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.course-actions .btn {
  min-width: 140px;
  justify-content: center;
}

.read-more-btn {
  width: 100%;
  justify-content: center;
  padding: 0.75rem 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.read-more-btn:hover {
  background: var(--primary-500);
  color: white;
  transform: translateY(-1px);
}

/* Course specific styles */
.lecturer-info {
  margin: .75rem 0;
  font-size: .9rem;
  color: var(--text-600);
}

.lecturer-info strong {
  color: var(--text-700);
  font-weight: 600;
}

.qualification {
  color: var(--primary-500);
  font-style: italic;
  margin-left: .25rem;
}

.fee-badge {
  background: #f0f9ff;
  color: var(--primary-600);
  font-weight: 700;
}

.handbook-badge {
  background: var(--success);
  color: white;
}

.no-courses {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}

/* Site Footer */
.site-footer {
  color: #e6eefc;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.6), rgba(2, 6, 23, 0.85)),
    url('/static/images/students/footer.webp') center/cover no-repeat;
}
.footer-top { padding: 2rem 0 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 1.25rem; }
.footer-brand { display: flex; align-items: center; gap: .75rem; color: #fff; font-weight: 800; margin-bottom: .5rem; }
.footer-brand img { height: 32px; width: auto; }

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand {
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .footer h4 {
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}
.footer h4 { margin: 0 0 .75rem; color: #fff; }
.footer a { color: #e8f0ff; }
.footer a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .75rem 0 1.25rem; color: #d1dbef; font-size: .92rem; }

/* Footer social icons */
.footer-social {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.35);
}

.footer-credits { opacity: .95; }

@media (max-width: 920px) { 
  .footer-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 2rem;
  } 
}

@media (max-width: 640px) {
  .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-bottom { 
    flex-direction: column; 
    align-items: center;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-credits {
    text-align: center;
  }
}

/* Forms */
.input { width: 100%; padding: .75rem .9rem; border-radius: 12px; border: 1px solid #e3e8ef; background: #fff; color: var(--text-700); outline: none; transition: box-shadow .15s ease, border-color .15s ease; }
.input:focus { border-color: var(--primary-500); box-shadow: 0 0 0 4px var(--ring); }
.label { display: block; font-weight: 600; margin-bottom: .4rem; }
.form-row { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 768px) { .form-row { grid-template-columns: 1fr; } }

/* Utilities */
.m-0 { margin: 0; }
.mt-1 { margin-top: .25rem; } .mt-2 { margin-top: .5rem; } .mt-3 { margin-top: .75rem; } .mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: .5rem; } .mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.hidden { display: none !important; }
.max-w-md { max-width: 720px; margin-left: auto; margin-right: auto; }

/* Horizontal Scroller */
.h-scroller { display: flex; gap: 1rem; overflow-x: auto; scroll-behavior: smooth; padding-bottom: .5rem; }
.h-scroller { -webkit-overflow-scrolling: touch; cursor: grab; }
.h-scroller.dragging { cursor: grabbing; }
.h-scroller.compact .card { min-width: 260px; }
.h-scroller::-webkit-scrollbar { height: 6px; }
.h-scroller::-webkit-scrollbar-thumb { background: #d1d9e6; border-radius: 999px; }
.h-scroller .card { min-width: 320px; flex: 0 0 auto; }

/* Slideshow */
.slideshow { position: relative; height: 360px; border-radius: 16px; overflow: hidden; }
.slideshow.slideshow-sm { height: 260px; border-radius: 12px; }
@media (max-width: 920px) { .slideshow { height: 220px; } }
.slideshow img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .8s ease; }
.slideshow img.active { opacity: 1; }

/* Compact Scroller */
.h-scroller.compact-sm .card { min-width: 320px; }
.h-scroller.compact-sm .card img { height: 180px; object-fit: cover; }
.h-scroller.compact-sm .card .card-title { font-size: 1.2rem; }
.h-scroller.compact-sm .card .card-text { font-size: .9rem; } 

/* Accordion Styling */
.accordion {
  margin: 1rem 0;
}

.accordion details {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.accordion summary {
  background: #f8fafc;
  padding: 1rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-900);
  border-bottom: 1px solid #e2e8f0;
  transition: background-color 0.2s ease;
}

.accordion summary:hover {
  background: #f1f5f9;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: '▼';
  float: right;
  transition: transform 0.2s ease;
  color: var(--primary-500);
}

.accordion details[open] summary::after {
  transform: rotate(180deg);
}

.accordion .card-body {
  padding: 1rem;
  background: white;
}

.accordion ul {
  margin: 0;
  padding-left: 1.5rem;
}

.accordion li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--text-700);
}

/* Course Detail Specific Styles */
.course-description h3 {
  color: var(--text-900);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.course-description p {
  line-height: 1.6;
  color: var(--text-700);
  margin-bottom: 1rem;
}

.lecturer-info {
  margin: 2rem 0;
  padding: 1rem;
  background: var(--bg-100);
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.lecturer-info h4 {
  color: var(--text-900);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.lecturer-info p {
  margin: 0.25rem 0;
  color: var(--text-600);
  line-height: 1.5;
}

.lecturer-info p:first-of-type {
  font-weight: 600;
  color: var(--text-800);
}

/* New Course Detail Layout Styles */
.course-headline {
  font-size: 2.5rem;
  color: var(--text-900);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 800;
  line-height: 1.2;
}

.course-cover {
  margin-bottom: 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 300px;
}

.course-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.course-details {
  margin-bottom: 2rem;
}

.course-dropdown {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.course-dropdown:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-500);
}

.course-dropdown summary {
  background: #f8fafc;
  padding: 1.25rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--text-900);
  font-size: 1.1rem;
  border-bottom: 1px solid #e2e8f0;
  transition: background-color 0.2s ease;
  position: relative;
}

.course-dropdown summary:hover {
  background: #f1f5f9;
}

.course-dropdown summary::-webkit-details-marker {
  display: none;
}

.course-dropdown summary::after {
  content: '▼';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  color: var(--primary-500);
  font-size: 0.9rem;
}

.course-dropdown[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.dropdown-content {
  padding: 1.5rem;
  background: white;
}

.dropdown-content p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
  color: var(--text-700);
  font-size: 1rem;
}

.dropdown-content p:last-child {
  margin-bottom: 0;
}

.course-fee {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-600);
}

.payment-options {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.payment-options h4 {
  color: var(--text-900);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.payment-options p {
  margin-bottom: 0.5rem;
  color: var(--text-700);
}

.bank-details {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--bg-100);
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.bank-details p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.bank-details p:last-child {
  margin-bottom: 0;
}

.course-duration {
  font-size: 1.1rem;
  color: var(--text-800);
  font-weight: 600;
}

.course-structure {
  margin: 0;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.course-structure li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: var(--text-700);
  font-size: 1rem;
}

.course-structure li:last-child {
  margin-bottom: 0;
}

.lecturer-info {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}

.lecturer-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-900);
  margin-bottom: 0.5rem;
}

.lecturer-qualification {
  font-size: 1rem;
  color: var(--primary-600);
  font-weight: 600;
  margin-left: 0.5rem;
}

.lecturer-experience {
  font-size: 1rem;
  color: var(--text-700);
  line-height: 1.6;
}

/* Course detail page actions */
.course-detail .course-actions {
  text-align: center;
  margin-top: 2rem;
}

.course-detail .course-actions .btn {
  margin: 0 0.5rem;
}

.course-detail .course-actions .btn:first-child {
  margin-left: 0;
}

.course-detail .course-actions .btn:last-child {
  margin-right: 0;
}

/* Responsive adjustments for course detail */
@media (max-width: 768px) {
  .course-headline {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .course-cover {
    margin-bottom: 1.5rem;
    height: 200px;
  }
  
  .course-dropdown summary {
    padding: 1rem;
    font-size: 1rem;
  }
  
  .dropdown-content {
    padding: 1rem;
  }
  
  /* Mobile course detail actions handled in main mobile section above */
}

/* Horizontal scrolling courses section */
.h-scroller {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-300) transparent;
  overflow-x: auto;
  white-space: nowrap;
  padding: 1rem 0;
}

.h-scroller::-webkit-scrollbar {
  height: 8px;
}

.h-scroller::-webkit-scrollbar-track {
  background: transparent;
}

.h-scroller::-webkit-scrollbar-thumb {
  background-color: var(--primary-300);
  border-radius: 4px;
}

.h-scroller::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-400);
}

/* Course cards in horizontal scroll */
.h-scroller .card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  display: inline-block;
  width: 360px;
  margin-right: 1.5rem;
  white-space: normal;
  vertical-align: top;
}

.h-scroller .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.h-scroller .card img {
  transition: transform 0.3s ease;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

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

.h-scroller .card-body {
  padding: 1rem;
}

.h-scroller .card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-900);
}

.h-scroller .course-meta {
  margin-top: 0.5rem;
}

.h-scroller .badge {
  background: var(--primary-100);
  color: var(--primary-700);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Difficulty badge positioning for popular courses */
.h-scroller .card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.h-scroller .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 5rem;
  justify-content: flex-start;
  padding-bottom: 3.5rem;
}

.h-scroller .card-title {
  margin-bottom: 0;
  line-height: 1.3;
  font-size: 1.1rem;
}

.h-scroller .difficulty-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 0 1rem 0;
  background: linear-gradient(to top, rgba(255,255,255,0.95), rgba(255,255,255,0.8));
  width: 100%;
  text-align: center;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Social media buttons styling */
.social-media-section {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 2rem;
  border-radius: 16px;
  margin: 2rem 0;
  text-align: center;
}

.social-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}

.social-buttons .btn {
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 140px;
  justify-content: center;
}

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

/* Footer improvements */
.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.footer-bottom span {
  font-size: 0.9rem;
  color: var(--text-600);
} 

/* Why Choose Infotech - Full Width */
.wcu-section {
  position: relative;
  width: 100%;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.wcu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/static/images/students/wcu.webp') center/cover no-repeat;
  filter: saturate(1.08) contrast(1.08);
}

.wcu-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  /* Lighten overlay to reveal more of background */
  background: linear-gradient(0deg, rgba(255,255,255,0.78), rgba(255,255,255,0.72));
  display: grid;
  place-items: center;
  padding: 2rem 1rem 2.5rem;
}

.wcu-content {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.wcu-title {
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  font-weight: 800;
  color: var(--text-900);
  margin: 0 0 1rem;
}

.wcu-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 2rem; /* more space between cards */
}

.wcu-feature {
  background: #ffffffd6;
  backdrop-filter: blur(6px);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.wcu-icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.wcu-text {
  font-weight: 800;
  color: var(--text-900);
  margin-bottom: 0.25rem;
}

.wcu-subtext {
  margin: 0;
  color: var(--text-700);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .wcu-section { 
    min-height: 300px; 
    padding: 1rem 0;
  }
  
  .wcu-features { 
    grid-template-columns: 1fr; 
    gap: 1rem; 
  }
  
  .wcu-content {
    padding: 0 1rem;
  }
  
  .wcu-title {
    font-size: clamp(1.2rem, 1rem + 0.5vw, 1.5rem);
  }
  
  .wcu-feature {
    padding: 1rem;
  }
  
  .wcu-text {
    font-size: 1rem;
  }
  
  .wcu-subtext {
    font-size: 0.9rem;
  }
  
  /* Center align icons in WCU section on mobile */
  .wcu-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
} 

/* Center align Popular Courses content */
.courses .container { text-align: center; }
.courses .h-scroller { justify-content: center; display: flex; }
.courses .card { margin: 0 0.5rem; }

/* Mobile responsive courses */
@media (max-width: 768px) {
  .courses .container {
    padding: 0 1rem;
  }
  
  .courses .h-scroller {
    justify-content: flex-start;
    padding: 0 1rem;
    margin: 0 -1rem;
  }
  
  .courses .card {
    min-width: 280px;
    margin: 0 0.75rem 0 0;
  }
  
  .h-scroller .card {
    min-width: 280px;
  }
  
  .h-scroller .card img {
    height: 160px;
  }
}

/* Reduce space above WCU title */
.wcu-content { padding-top: 0.15rem; }

/* Full-width CTA (compact) */
.cta-full {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: #fff;
  padding: 1.6rem 1rem; /* compact */
  display: grid;
  place-items: center;
}

.cta-inner { text-align: center; max-width: 900px; }
.cta-inner h2 { margin: 0 0 0.5rem; font-size: clamp(1.3rem, 1.05rem + 0.8vw, 1.8rem); font-weight: 800; }
.cta-inner p { margin: 0 0 0.9rem; opacity: .95; font-size: 0.98rem; }
.cta-actions { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }

/* Footer - keep original nice design */
.footer .container { 
  max-width: var(--container-max); 
  margin: 0 auto; 
  padding-inline: 1rem; 
} 

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(to bottom, #87CEEB 0%, #B0E0E6 50%, #E0F6FF 100%);
  color: #333;
  padding: 6rem 0 4rem 0;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #333;
}

.contact-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  color: #333;
}

.contact-section {
  padding: 4rem 0;
  background: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-card h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-900);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--text-800);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  margin-bottom: 2rem;
}

.submit-btn {
  background: var(--primary-500);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1rem;
}

.submit-btn:hover {
  background: var(--primary-700);
  transform: translateY(-1px);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Contact Info Card */
.contact-info-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-900);
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-icon {
  background: var(--primary-500);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-content h4 {
  font-weight: 600;
  color: var(--text-900);
  margin-bottom: 0.25rem;
}

.info-content p {
  color: var(--text-600);
  margin: 0;
}

/* Social Media Section */
.social-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-900);
  margin-bottom: 1.5rem;
}

.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-btn.facebook {
  background: #1877f2;
}

.social-btn.facebook:hover {
  background: #166fe5;
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.instagram:hover {
  background: linear-gradient(45deg, #e0852e, #d55f37, #c6233e, #b71f5f, #a7157a);
}

.social-btn.whatsapp {
  background: #25d366;
}

.social-btn.whatsapp:hover {
  background: #22c55e;
}

/* Notification System */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-left: 4px solid;
  max-width: 400px;
  animation: slideIn 0.3s ease;
}

.notification-success {
  border-left-color: #10b981;
}

.notification-error {
  border-left-color: #ef4444;
}

.notification-content {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.notification-message {
  font-weight: 500;
  color: var(--text-900);
}

.notification-close {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.notification-close:hover {
  background: #f3f4f6;
  color: #6b7280;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 3rem 0;
  }
  
  .contact-hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-hero p {
    font-size: 1.1rem;
  }
  
  .contact-section {
    padding: 3rem 0;
  }
  
  .contact-form-card,
  .contact-info-card {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .social-buttons {
    flex-direction: column;
  }
  
  .notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .contact-form-card,
  .contact-info-card {
    padding: 1.5rem;
  }
  
  .info-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .info-icon {
    align-self: center;
  }
} 

/* Courses Page Styles */
.courses-hero {
  background: linear-gradient(to bottom, #87CEEB 0%, #B0E0E6 50%, #E0F6FF 100%);
  color: #333;
  padding: 6rem 0 4rem 0;
  text-align: center;
}

.courses-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #333;
}

.courses-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  color: #333;
}

/* About Us Page Styles */
.about-hero {
  background: linear-gradient(to bottom, #87CEEB 0%, #B0E0E6 50%, #E0F6FF 100%);
  color: #333;
  padding: 6rem 0 4rem 0;
  text-align: center;
}

.about-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #333;
}

.about-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  color: #333;
}

/* Responsive adjustments for hero sections */
@media (max-width: 768px) {
  .contact-hero,
  .about-hero,
  .jobs-hero {
    padding: 4rem 0 3rem 0;
  }
  
  .courses-hero {
    padding: 4rem 0 3rem 0;
  }
  
  .contact-hero h1,
  .courses-hero h1,
  .about-hero h1,
  .jobs-hero h1 {
    font-size: 2rem;
  }
  
  .contact-hero p,
  .courses-hero p,
  .about-hero p,
  .jobs-hero p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-hero h1,
  .courses-hero h1,
  .about-hero h1,
  .jobs-hero h1 {
    font-size: 1.8rem;
  }
} 

/* Jobs Page Styles */
.jobs-hero {
  background: linear-gradient(to bottom, #87CEEB 0%, #B0E0E6 50%, #E0F6FF 100%);
  color: #333;
  padding: 6rem 0 4rem 0;
  text-align: center;
}

.jobs-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #333;
}

.jobs-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  color: #333;
} 

/* Pending Course Additions Styles */
.pending-courses-section {
    margin: 30px 0;
}

.pending-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.pending-course-card {
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.pending-course-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.pending-course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.pending-course-header h4 {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.pending-status {
    background-color: #ffc107;
    color: #856404;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.pending-courses-list {
    margin-bottom: 20px;
}

.pending-course-item {
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
}

.pending-course-item:last-child {
    margin-bottom: 0;
}

.pending-course-item h5 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 16px;
}

.pending-course-item .course-fee {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.pending-course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.total-fee {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fee-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    font-weight: 500;
}

.fee-amount {
    font-size: 18px;
    font-weight: 700;
    color: #28a745;
}

.request-date {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}

.date-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    font-weight: 500;
}

.date-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Mobile Responsiveness for Pending Courses */
@media (max-width: 768px) {
    .pending-courses-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pending-course-card {
        padding: 15px;
    }
    
    .pending-course-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .pending-course-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .request-date {
        text-align: left;
    }
}

/* Student Navigation Dropdown */
.student-nav-dropdown {
    position: relative;
    display: inline-block;
}

.student-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    z-index: 1000;
    margin-top: 4px;
}

.student-nav-dropdown:hover .student-dropdown-content {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f8fafc;
    color: #1f2937;
}

.dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

.dropdown-icon {
    width: 16px;
    height: 16px;
    color: #6b7280;
}

.dropdown-item:hover .dropdown-icon {
    color: #3b82f6;
}

/* Mobile responsiveness for dropdown */
@media (max-width: 768px) {
    .student-dropdown-content {
        right: auto;
        left: 0;
        min-width: 200px;
    }
}