:root {
  --color-primary-maroon: #841118;
  --color-navy: #30355f;
  --color-accent-orange: #f6914d;
  --color-white: #ffffff;
  --color-light-grey: #f8f9fa;
  --color-text-dark: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

/* Header Styles */
header {
  background: var(--color-navy);
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
  position: relative;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 0 0 auto;
  margin-right: auto;
}

.logo {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.school-info {
  display: flex;
  flex-direction: column;
}

.school-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.school-tagline {
  font-size: 1.425rem;
  color: #e0e0e0;
  margin: 0;
  font-weight: 400;
  white-space: nowrap;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1 1 auto;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.header-menu a {
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.header-menu a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 0.5rem 0;
  margin-top: 0.25rem;
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  color: var(--color-navy);
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  transition: background-color 0.2s;
  background: transparent;
  transform: none;
}

.dropdown-menu a:hover {
  background-color: #f8f9fa !important;
  color: var(--color-accent-orange);
  transform: none !important;
}

.header-menu .btn-primary {
  background: var(--color-accent-orange);
  color: white;
  font-weight: 600;
}

.header-menu .btn-primary:hover {
  background: #d9783f;
  transition: all 0.3s;
}

.affiliation {
  font-size: 0.75rem;
  color: #e0e0e0;
  padding: 0.5rem 2rem;
  text-align: right;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
}

/* Hamburger Menu Styles */
.hamburger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.375rem;
  z-index: 1001;
  position: relative;
  order: 2;
}

.hamburger-menu span {
  width: 28px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Header - Tablet and Up */
@media (max-width: 1024px) {
  .header-container {
    padding: 0.5rem 1.5rem;
    gap: 1rem;
  }

  .logo {
    height: 75px;
  }

  .school-name {
    font-size: 1.5rem;
  }

  .school-tagline {
    font-size: 1.1rem;
  }

  .header-menu a {
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
  }
}

/* Responsive Header - Mobile */
@media (max-width: 768px) {
  .header-container {
    padding: 0.75rem 1rem;
    flex-wrap: nowrap;
    gap: 1rem;
    position: relative;
  }

  .logo-section {
    flex: 1 1 auto;
    margin-right: 0;
  }

  .hamburger-menu {
    display: flex;
    flex: 0 0 auto;
  }

  .logo {
    height: 60px;
  }

  .school-name {
    font-size: 1.2rem;
  }

  .school-tagline {
    font-size: 0.9rem;
  }

  .header-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-navy);
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    gap: 0;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .header-menu.active {
    max-height: 600px;
    overflow-y: auto;
    padding: 1rem 0;
  }

  .header-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: normal;
    font-size: 1rem;
    font-weight: 500;
  }

  .header-menu a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: none;
  }

  .dropdown {
    position: relative;
    display: block;
    width: 100%;
  }

  .dropdown-toggle {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem 1.5rem;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    background: none;
    border: none;
    font-weight: 500;
    font-size: 1rem;
  }

  .dropdown-toggle:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }

  .dropdown-menu {
    position: static;
    display: none;
    background: rgba(0, 0, 0, 0.2);
    min-width: auto;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    z-index: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown-menu.active {
    display: block;
    max-height: 300px;
    overflow-y: auto;
  }

  .dropdown-menu a {
    padding: 0.6rem 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    display: block;
  }

  .dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-accent-orange);
  }

  .header-menu .btn-primary {
    background: var(--color-accent-orange);
    color: white;
    font-weight: 600;
    margin: 0.5rem 1rem;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
  }

  .header-menu .btn-primary:hover {
    background: #d9783f;
  }

  .affiliation {
    font-size: 0.65rem;
    padding: 0.4rem 1rem;
  }
}

/* Extra Small Screens */
@media (max-width: 480px) {
  .header-container {
    padding: 0.5rem 0.75rem;
  }

  .logo {
    height: 50px;
  }

  .school-name {
    font-size: 1rem;
  }

  .school-tagline {
    font-size: 0.8rem;
  }

  .header-menu a,
  .dropdown-toggle {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  .header-menu.active {
    max-height: 600px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.slideshow-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slideshow-container .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  animation: fadeIn 0.5s;
}

.slideshow-container .slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slideshow-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 1.5rem;
  z-index: 10;
}

.slideshow-controls button {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1.2rem;
  transition: all 0.3s;
  display: none;
  min-width: 40px;
  min-height: 40px;
}

.slideshow-controls button:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.hero:hover .slideshow-controls button {
  display: block;
}

.dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: white;
  width: 28px;
  border-radius: 6px;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.9);
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 6rem 2rem 3rem;
  z-index: 5;
  width: 100%;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  color: white;
  text-align: left;
}

.hero-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  line-height: 1.3;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  color: #e0e0e0;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cta, .btn-secondary {
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.btn-cta {
  background: var(--color-accent-orange);
  color: white;
}

.btn-cta:hover {
  background: #d9783f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(246, 145, 77, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Main Content */
.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

main {
  min-height: calc(100vh - 300px);
}

/* Intro Section */
.intro-section {
  background: var(--color-navy);
  color: white;
  padding: 80px 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.intro-section .container {
  max-width: 100%;
}

.intro-section h2 {
  font-size: 2.2rem;
  margin: 0 0 1.5rem 0;
  color: white;
}

.intro-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: #e0e0e0;
  text-align: left;
}

/* Why Schiller Section */
.why-schiller-section {
  padding: 80px 0;
  background: #f8f9fa;
  margin: 0;
  display: flex;
  align-items: center;
}

.why-schiller-section .container {
  width: 100%;
}

.why-schiller-section h2 {
  font-size: 2.2rem;
  color: var(--color-navy);
  margin: 0 0 30px 0;
  text-align: center;
}

.section-intro {
  font-size: 1.05rem;
  color: #555;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.advantage-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--color-primary-maroon);
  transition: all 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card-icon {
  display: inline-block;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #841118;
  margin-right: 0.5rem;
}

.advantage-card h3 {
  color: var(--color-navy);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.advantage-card p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Vital Stats Section */
.vital-stats {
  background: var(--color-navy);
  color: white;
  padding: 3rem 2rem;
  border-radius: 8px;
}

.vital-stats h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent-orange);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.5;
}

/* Principal's Message Section */
.principals-message-section {
  padding: 4rem 0;
  background: white;
  margin-bottom: 3rem;
}

.message-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.message-image {
  display: flex;
  justify-content: center;
}

.principal-portrait {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.message-content h2 {
  font-size: 2.2rem;
  color: var(--color-navy);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.message-text {
  margin-bottom: 1.5rem;
}

.message-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  font-style: italic;
  margin-bottom: 1rem;
}

.principal-signature {
  margin: 2rem 0;
  padding-top: 1rem;
  border-top: 2px solid #f0f0f0;
}

.principal-signature p {
  font-size: 0.95rem;
  color: #333;
  margin: 0.3rem 0;
}

.principal-signature p:first-child {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-navy);
}

.vision-link {
  display: inline-block;
  color: var(--color-primary-maroon);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-primary-maroon);
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.vision-link:hover {
  background-color: var(--color-primary-maroon);
  color: white;
  transform: translateX(3px);
}

/* Leadership Spotlight Section */
.leadership-spotlight-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  margin: 0;
}

.leadership-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.leadership-image {
  display: flex;
  justify-content: center;
}

.leadership-portrait {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(132, 17, 24, 0.2);
  object-fit: cover;
  border: 3px solid var(--color-primary-maroon);
}

.leadership-content h2 {
  font-size: 2.2rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.leadership-subtitle {
  font-size: 1.1rem;
  color: var(--color-primary-maroon);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leadership-text {
  margin-bottom: 1.5rem;
}

.leadership-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}

.leadership-signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 3px solid var(--color-primary-maroon);
}

.leadership-signature p {
  font-size: 0.95rem;
  color: #333;
  margin: 0.3rem 0;
}

.leadership-signature p:first-child {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary-maroon);
}

/* Programs Section */
.programs-section {
  padding: 80px 0;
  margin: 0;
}

.programs-section h2 {
  text-align: left;
  font-size: 2.2rem;
  color: var(--color-navy);
  margin: 0 0 2rem 0;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.program-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: var(--color-primary-maroon);
}

.program-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.program-card h3 {
  color: var(--color-navy);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.program-subtitle {
  font-size: 0.95rem;
  color: var(--color-accent-orange);
  font-weight: 500;
  margin-bottom: 1rem;
}

.program-card p {
  color: #555;
  line-height: 1.7;
  text-align: center;
}

/* Typography */
h1 {
  color: var(--color-navy);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

h2 {
  color: var(--color-navy);
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

h3 {
  color: var(--color-navy);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Footer */
footer {
  background: var(--color-navy);
  color: white;
  padding: 3rem 2rem 1rem;
  margin-top: 3rem;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin: 1rem 0 1rem;
  color: white;
  font-weight: 600;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--color-accent-orange);
  font-weight: 600;
}

.footer-column p {
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-column a {
  color: var(--color-accent-orange);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #ffb38a;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent-orange);
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #ffb38a;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(246, 145, 77, 0.3);
}

.social-icon {
  width: 20px;
  height: 20px;
}

.footer-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.footer-btn {
  display: inline-block;
  padding: 0.9rem 1.5rem;
  background: transparent;
  border: 2px solid var(--color-accent-orange);
  color: var(--color-accent-orange);
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
  width: fit-content;
}

.footer-btn:hover {
  background: rgba(246, 145, 77, 0.1);
  border-color: #ffb38a;
  color: #ffb38a;
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer-bottom p {
  color: #a0a0a0;
  font-size: 0.85rem;
  margin: 0.3rem 0;
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-actions {
    align-items: stretch;
  }
}

footer p {
  color: #e0e0e0;
  margin-bottom: 0.5rem;
}

/* News, Events & Circulars Section */
.news-events-section {
  padding: 80px 0;
  background: #f8f9fa;
  margin: 0;
}

.news-events-section h2 {
  text-align: left;
  font-size: 2.2rem;
  color: var(--color-navy);
  margin: 0 0 2rem 0;
}

/* Events Grid */
.events-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.event-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: var(--color-primary-maroon);
}

.event-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.event-title {
  color: var(--color-navy);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.event-subtitle {
  font-size: 0.95rem;
  color: var(--color-accent-orange);
  font-weight: 500;
  margin-bottom: 1rem;
}

.event-card p {
  color: #555;
  line-height: 1.7;
  text-align: center;
}

/* Form Styles */
.partners-section {
  padding: 80px 0;
  background: #f8f9fa;
  overflow: hidden;
  margin: 0;
  display: flex;
  align-items: center;
}

.logo-scroll {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: white;
  padding: 2rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.logo-track {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 80px;
  padding: 1rem 2rem;
  background: white;
  border: none;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.3s;
}

.partner-logo img {
  max-height: 60px;
  max-width: 130px;
  object-fit: contain;
}

.partner-logo:hover {
  transform: scale(1.05);
  border-color: var(--color-accent-orange);
  box-shadow: 0 4px 12px rgba(246, 145, 77, 0.2);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-scroll:hover .logo-track {
  animation-play-state: paused;
}

.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  padding: 1rem;
}

.why-card {
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  color: white;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.why-card h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: white;
}

.why-card p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
}

.card-blue {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-green {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.card-orange {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card-purple {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.card-teal {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.card-pink {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.card-indigo {
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

@media (max-width: 768px) {
  .why-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.admission-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  margin: 2rem 0;
}

.admission-process,
.admission-enquiry {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.admission-process h2,
.admission-enquiry h2 {
  margin-top: 0;
}

.admission-process .documents-heading {
  font-size: 1.3rem;
  margin-top: 2rem;
}

.admission-process ul {
  margin-left: 0;
  padding-left: 1.5rem;
}

.admission-process li {
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

@media (max-width: 968px) {
  .admission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.admission-form {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  margin: 2rem auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.admission-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-navy);
}

.admission-form input,
.admission-form select,
.admission-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}

.admission-form input:focus,
.admission-form select:focus,
.admission-form textarea:focus {
  outline: none;
  border-color: var(--color-accent-orange);
  box-shadow: 0 0 0 3px rgba(246, 145, 77, 0.1);
}

/* Transparency / Disclosure Cards (match Why Schiller card style) */
.transparency-section {
  padding: 80px 0;
  background: #f8f9fa;
  margin: 0;
  display: flex;
  align-items: center;
}

.transparency-section .container {
  width: 100%;
}

.transparency-section h2 {
  font-size: 2.2rem;
  color: var(--color-navy);
  margin: 0 0 30px 0;
  text-align: center;
}

.transparency-section .section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0.5rem auto 2rem;
  color: #555;
}

.disclosure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.disclosure-item {
  background: white;
  padding: 1.5rem 1.25rem;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 6px solid var(--color-accent-orange);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.disclosure-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.disclosure-icon {
  font-size: 2.25rem;
  color: var(--color-accent-orange);
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.disclosure-item h4 {
  margin: 0;
  color: var(--color-navy);
  font-size: 1.05rem;
  font-weight: 600;
}

.disclosure-link {
  margin-left: auto;
  text-decoration: none;
  color: var(--color-accent-orange);
  font-weight: 700;
  border: 2px solid var(--color-accent-orange);
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.disclosure-link:hover {
  background: var(--color-accent-orange);
  color: white;
}

/* Glassmorphism button variant for hero */
.btn-glassmorphism {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}


.admission-form button {
  background: var(--color-accent-orange);
  color: white;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  width: 100%;
}

.admission-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(246, 145, 77, 0.3);
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
  border-left: 4px solid var(--color-accent-orange);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

/* Resource Link */
.resource-link {
  display: block;
  background: white;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  color: var(--color-navy);
  border-left: 4px solid var(--color-accent-orange);
  transition: all 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.resource-link:hover {
  background-color: #f8f9fa;
  transform: translateX(5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.resource-link strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-accent-orange);
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
  .hero-content h2 {
    font-size: 2.5rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .hero {
    min-height: 520px;
  }

  .hero-overlay {
    padding: 5rem 1.5rem 2.5rem;
  }

  .slideshow-controls {
    padding: 0 1rem;
  }

  .slideshow-controls button {
    padding: 0.6rem 0.8rem;
    font-size: 1rem;
  }

  /* Tablet: 2 columns for events */
  .events-grid-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .news-events-section h2 {
    font-size: 1.8rem;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
  .header-container {
    flex-wrap: nowrap;
    gap: 1rem;
    padding: 0.5rem 1rem;
  }

  .logo-section {
    flex-shrink: 1;
  }

  .header-menu {
    flex-shrink: 0;
    justify-content: flex-end;
    gap: 0.3rem;
  }

  .header-menu a {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }

  .hero {
    min-height: 420px;
  }

  .hero-overlay {
    padding: 2.5rem 1rem 1.5rem;
  }

  .hero-content h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .slideshow-controls {
    padding: 0 0.75rem;
  }

  .slideshow-controls button {
    padding: 0.5rem 0.6rem;
    font-size: 0.95rem;
    min-width: 36px;
    min-height: 36px;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .intro-section {
    padding: 2rem 1rem;
  }

  .intro-section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 380px;
  }

  .hero-overlay {
    padding: 2rem 0.75rem 1rem;
  }

  .hero-content {
    padding: 2rem 1rem;
  }

  .hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .slideshow-controls {
    padding: 0 0.5rem;
  }

  .slideshow-controls button {
    padding: 0.4rem 0.5rem;
    font-size: 0.9rem;
    min-width: 32px;
    min-height: 32px;
  }

  .hero-buttons {
    gap: 0.5rem;
  }

  .btn-cta,
  .btn-secondary {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-cta, .btn-secondary {
    width: fit-content;
    text-align: center;
  }

  .header-container {
    gap: 0.5rem;
  }

  .header-menu {
    gap: 0.2rem;
    flex-wrap: nowrap;
  }

  .header-menu a {
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
  }

  .school-name {
    font-size: 1.2rem;
  }

  .school-tagline {
    font-size: 0.75rem;
  }

  .logo {
    height: 60px;
  }
}

/* Gallery Video Styles */
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gallery Modal Styles */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  overflow: auto;
}

.gallery-modal-content {
  position: relative;
  margin: 2% auto;
  padding: 2rem;
  width: 90%;
  max-width: 1200px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 2rem;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #ccc;
}

.gallery-modal-content h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.slideshow-wrapper {
  position: relative;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}

#slideshowImage {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.slideshow-counter {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1rem;
}

.slideshow-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-btn {
  background-color: #1976d2;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.1s ease;
}

.nav-btn:hover {
  background-color: #1565c0;
  transform: scale(1.05);
}

.nav-btn:active {
  transform: scale(0.98);
}

/* Gallery card clickable style */
.gallery-card-item {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-size: cover;
  background-position: center;
  position: relative;
}

.gallery-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
  border-radius: 12px;
  z-index: 1;
}

.gallery-card-item .card-icon,
.gallery-card-item h2,
.gallery-card-item p {
  position: relative;
  z-index: 2;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.gallery-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Gallery */
@media (max-width: 768px) {
  .gallery-modal-content {
    width: 95%;
    padding: 1rem;
  }
  
  .gallery-modal-content h2 {
    font-size: 1.5rem;
  }
  
  .close-modal {
    font-size: 2rem;
    right: 1rem;
  }
  
  .nav-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .message-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .principal-portrait {
    max-width: 100%;
  }
  
  .message-content h2 {
    font-size: 1.8rem;
  }
  
  .leadership-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .principal-portrait {
    max-width: 100%;
  }

  .leadership-portrait {
    max-width: 100%;
  }
  
  .leadership-content h2 {
    font-size: 1.8rem;
  }

  /* Mobile Padding for Sections */
  .intro-section,
  .why-schiller-section,
  .leadership-spotlight-section,
  .programs-section,
  .news-events-section,
  .transparency-section,
  .partners-section {
    padding: 40px 0;
  }

  .news-events-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .events-grid-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-schiller-section h2,
  .transparency-section h2 {
    margin-bottom: 20px;
  }

  .programs-section h2 {
    margin-bottom: 1.5rem;
  }

  .section-intro {
    margin-bottom: 2rem;
  }

  .advantage-grid {
    margin-bottom: 2rem;
    gap: 1.5rem;
  }

  .programs-grid {
    gap: 1.5rem;
  }
}

/* Admission Modal Styles */
.admission-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}

.admission-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
  position: relative;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideIn 0.3s ease-in-out;
  z-index: 2001;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #004a99;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  z-index: 2002;
}

.modal-close:hover {
  transform: scale(1.2);
}

.modal-header {
  background: linear-gradient(135deg, #004a99 0%, #003366 100%);
  color: var(--color-white);
  padding: 30px 25px 20px;
  border-radius: 12px 12px 0 0;
  text-align: center;
}

.modal-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  color: var(--color-white);
}

.modal-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.modal-body {
  padding: 30px 25px;
}

.modal-description {
  color: #666;
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.6;
}

.admission-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--color-text-dark);
  font-size: 14px;
}

.form-group input,
.form-group select {
  padding: 12px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #004a99;
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(0, 74, 153, 0.1);
}

.form-group input::placeholder {
  color: #999;
}

.btn-submit {
  padding: 13px 25px;
  background: linear-gradient(135deg, #004a99 0%, #003366 100%);
  color: var(--color-white);
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 74, 153, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Success Message Styles */
.success-message {
  text-align: center;
  padding: 40px 20px;
  animation: slideIn 0.3s ease-in-out;
}

.success-icon {
  font-size: 60px;
  color: #004a99;
  margin-bottom: 15px;
  display: block;
  font-weight: bold;
}

.success-message h3 {
  font-size: 24px;
  color: #004a99;
  margin-bottom: 10px;
  font-weight: 700;
}

.success-message p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Responsive Design for Modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .modal-header h2 {
    font-size: 24px;
  }

  .modal-header,
  .modal-body {
    padding: 20px;
  }

  .modal-body {
    padding: 25px 20px;
  }

  .admission-form {
    gap: 15px;
  }

  .form-group input,
  .form-group select {
    padding: 11px 12px;
    font-size: 16px;
  }

  .btn-submit {
    padding: 12px 20px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 98%;
  }

  .modal-header h2 {
    font-size: 22px;
  }

  .modal-header {
    padding: 20px 15px 15px;
  }

  .modal-body {
    padding: 20px 15px;
  }

  .modal-description {
    font-size: 14px;
  }
}

/* Floating WhatsApp Button */
#whatsapp-float {
  position: fixed !important;
  bottom: 40px;
  left: 40px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999999;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  visibility: visible !important;
  opacity: 1 !important;
  padding: 0;
  border: none;
  padding-bottom: env(safe-area-inset-bottom);
}

#whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.6);
  background-color: #20BA5A;
}

#whatsapp-float:active {
  transform: scale(0.95);
}

#whatsapp-float svg {
  width: 28px;
  height: 28px;
  pointer-events: none;
  display: block;
  fill: white;
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
  #whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }

  #whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  #whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }

  #whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

