/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Container utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 1rem;
  position: relative;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #4b6cb7, #182848);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #003366;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  z-index: 10000;
  font-weight: 600;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* Header - Streamlined Compact Design */
.site-header {
  background: #003366;
  color: white;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  position: relative;
}

.navbar-brand-container {
  flex-shrink: 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  padding: 0.25rem;
  border-radius: 6px;
}

.navbar-brand:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.navbar-brand:focus {
  outline: 2px solid #4b6cb7;
  outline-offset: 2px;
}

.site-logo {
  height: 40px;
  width: 40px;
  margin-right: 12px;
  transition: all 0.3s ease;
  border-radius: 6px;
  object-fit: contain;
}

.navbar-brand:hover .site-logo {
  transform: scale(1.03);
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.1;
  color: white;
}

.site-tagline {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  margin-top: 1px;
}

/* Navigation Styles - Streamlined */
.site-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.nav-link:focus {
  outline: 2px solid #4b6cb7;
  outline-offset: 2px;
}

/* Dropdown Styles */
.dropdown .dropdown-arrow {
  margin-left: 0.5rem;
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  list-style: none;
  margin: 0;
}

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

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  border-radius: 4px;
  margin: 0 0.5rem;
}

.dropdown-menu a:hover {
  background-color: #f8fafc;
  color: #4b6cb7;
  transform: translateX(5px);
}

/* CTA Button */
.nav-item.cta .nav-link {
  background: linear-gradient(135deg, #4b6cb7, #182848);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(75, 108, 183, 0.3);
  margin-left: 1rem;
}

.nav-item.cta .nav-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(75, 108, 183, 0.4);
  background: linear-gradient(135deg, #5a7bc7, #283858);
}

.btn-icon {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.nav-item.cta .nav-link:hover .btn-icon {
  transform: translateX(3px);
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 1rem;
  }
  
  .nav-list {
    gap: 0.1rem;
  }
  
  .nav-link {
    font-size: 0.85rem;
    padding: 0.4rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .nav-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-link {
    font-size: 0.8rem;
    padding: 0.3rem 0.4rem;
  }
}

/* Breadcrumb Navigation */
.breadcrumb {
  background: #f8fafc;
  padding: 1rem 0;
  margin-top: 66px;
  border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: '›';
  margin: 0 0.5rem;
  color: #666;
  font-weight: 600;
}

.breadcrumb-item a {
  color: #4b6cb7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #182848;
  text-decoration: underline;
}

.breadcrumb-item.active span {
  color: #666;
  font-weight: 500;
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Body padding to account for fixed navbar */
body {
  padding-top: 66px; /* Adjusted for streamlined header height */
}

/* Main content wrapper */
#main-content {
  min-height: calc(100vh - 66px);
}

/* Hero Section */
.hero {
  min-height: 80vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::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="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="90" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  min-width: 500px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #4b6cb7, #182848);
  color: white;
  box-shadow: 0 8px 25px rgba(75, 108, 183, 0.3);
}

.hero-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(75, 108, 183, 0.4);
}

.hero-btn.secondary {
  background: transparent;
  color: #4b6cb7;
  border: 2px solid #4b6cb7;
}

.hero-btn.secondary:hover {
  background: #4b6cb7;
  color: white;
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #4b6cb7;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.hero-image {
  flex: 1;
  min-width: 400px;
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
}

.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #4b6cb7, #182848);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Quick Info Bar */
.quick-info {
  background: white;
  padding: 3rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.info-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
  font-size: 2.5rem;
  min-width: 60px;
  text-align: center;
}

.info-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 0.5rem;
}

.info-content p {
  color: #666;
  font-size: 0.95rem;
}

/* Programs Section */
.programs {
  padding: 5rem 0;
  background: #f8fafc;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.program-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4b6cb7, #182848);
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.program-card.featured {
  background: linear-gradient(135deg, #4b6cb7, #182848);
  color: white;
}

.program-card.featured h3,
.program-card.featured p,
.program-card.featured li {
  color: white;
}

.program-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.program-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 1rem;
}

.program-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.program-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.program-card li {
  color: #555;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.program-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4b6cb7;
  font-weight: bold;
}

.program-card.featured li::before {
  color: white;
}

.program-btn {
  display: inline-block;
  background: linear-gradient(135deg, #4b6cb7, #182848);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.program-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(75, 108, 183, 0.3);
}

.program-card.featured .program-btn {
  background: white;
  color: #4b6cb7;
}

/* Facilities Section */
.facilities {
  padding: 5rem 0;
  background: white;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.facility-card {
  text-align: center;
  padding: 2rem;
  border-radius: 20px;
  background: #f8fafc;
  transition: all 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: white;
}

.facility-image {
  margin-bottom: 1.5rem;
}

.facility-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.facility-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 1rem;
}

.facility-card p {
  color: #666;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  font-style: italic;
  position: relative;
}

.testimonial-content p::before {
  content: '"';
  font-size: 4rem;
  color: #4b6cb7;
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4b6cb7, #182848);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 0.25rem;
}

.author-info span {
  color: #666;
  font-size: 0.9rem;
}

/* News & Events Section */
.news-events {
  padding: 5rem 0;
  background: white;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.news-card {
  background: #f8fafc;
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  background: white;
}

.news-card.featured {
  background: linear-gradient(135deg, #4b6cb7, #182848);
  color: white;
}

.news-card.featured h3,
.news-card.featured p {
  color: white;
}

.news-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #4b6cb7;
  color: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.news-card.featured .news-date {
  background: rgba(255, 255, 255, 0.2);
}

.date {
  font-size: 1.5rem;
  line-height: 1;
}

.month {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.news-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 1rem;
}

.news-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.news-link {
  color: #4b6cb7;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.news-link:hover {
  color: #182848;
}

.news-card.featured .news-link {
  color: white;
}

/* Admission Form Section */
.admission-form {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.form-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 1.5rem;
}

.form-info p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.benefit-icon {
  width: 20px;
  height: 20px;
  background: #4b6cb7;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.form-container {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.admission-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.form-group label {
  font-weight: 600;
  color: #003366;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4b6cb7;
  box-shadow: 0 0 0 3px rgba(75, 108, 183, 0.1);
}

.checkbox-group {
  flex-direction: row !important;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: #555;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
}

.submit-btn {
  background: linear-gradient(135deg, #4b6cb7, #182848);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(75, 108, 183, 0.3);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* Virtual Tour Section */
.virtual-tour {
  padding: 5rem 0;
  background: white;
}

.tour-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tour-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 1.5rem;
}

.tour-info p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.tour-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tour-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 10px;
}

.feature-icon {
  font-size: 1.5rem;
}

.tour-btn {
  background: linear-gradient(135deg, #4b6cb7, #182848);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tour-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(75, 108, 183, 0.3);
}

.tour-preview {
  position: relative;
}

.tour-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.tour-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(75, 108, 183, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: rgba(75, 108, 183, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button span {
  color: white;
  font-size: 2rem;
  margin-left: 5px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #003366 0%, #004080 50%, #0066cc 100%);
  color: white;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4b6cb7, #182848, #4b6cb7);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #4b6cb7, #182848);
  border-radius: 2px;
}

.footer-section p,
.footer-section li {
  color: #e0e6ed;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: #e0e6ed;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-section a:hover {
  color: #4b6cb7;
  transform: translateX(5px);
}

/* School Info Section */
.school-info {
  text-align: left;
}

.school-logo-footer {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(1.1);
}

.school-info p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.accreditation {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Quick Links */
.quick-links ul li a::before {
  content: '→';
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.quick-links ul li a:hover::before {
  transform: translateX(3px);
}

/* Important Links */
.important-links ul li a::before {
  content: '📄';
  margin-right: 8px;
}

/* Contact Info */
.contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 12px;
}

.contact-item-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info .office-hours {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Social Media Section */
.social-media {
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #bc1888;
}

.social-icon.twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
}

.social-icon.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
}

.social-icon.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.footer-bottom p {
  margin: 0;
  color: #b8c5d1;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #4b6cb7;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero-content {
    gap: 3rem;
  }
  
  .hero-text {
    min-width: 400px;
  }
  
  .hero-image {
    min-width: 350px;
  }
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-text {
    min-width: auto;
  }
  
  .hero-image {
    min-width: auto;
  }
  
  .hero-text h1 {
    font-size: 2.8rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .form-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tour-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .programs-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }
  
  .site-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .site-title {
    font-size: 1.2rem;
  }
  
  .site-logo {
    height: 40px;
  }
  
  .hero {
    padding: 2rem 1rem;
    min-height: 70vh;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .info-items {
    grid-template-columns: 1fr;
  }
  
  .programs-grid {
    grid-template-columns: 1fr;
  }
  
  .facilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .tour-features {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    padding: 2rem 1rem 1rem;
    gap: 2rem;
    text-align: center;
  }
  
  .school-info,
  .contact-info {
    text-align: center;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-bottom {
    padding: 1rem;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .hero-image img {
    max-width: 90vw;
  }
  
  .navbar {
    padding: 0.75rem;
  }
  
  .site-title {
    font-size: 1.1rem;
  }
  
  .site-logo {
    height: 35px;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .programs-grid,
  .facilities-grid,
  .testimonials-grid,
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .school-logo-footer {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 1.5rem 1rem 1rem;
  }
  
  .hero {
    padding: 1.5rem 0.5rem;
  }
  
  .hero-text h1 {
    font-size: 1.6rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .program-card,
  .facility-card,
  .testimonial-card,
  .news-card {
    padding: 1.5rem;
  }
  
  .form-container {
    padding: 2rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

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

/* Scroll to top button styles */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4b6cb7, #182848);
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}