/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 16px;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1e3a8a;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-top {
    background: #1e3a8a;
    color: white;
    padding: 8px 0;
    font-size: 0.875rem;
}

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

.contact-info {
    display: flex;
    gap: 24px;
}

.header-main {
  background: #fff; /* white background */
  border-bottom: 2px solid #e0e0e0; /* subtle bottom border */
}

.header-content {
  display: flex;
  align-items: center;       /* vertically centers logo & menu */
  justify-content: space-between; /* logo left, menu right */
  padding: 10px 20px;
}


.logo img {
  height: 80px;
  width: auto;
  display: block;
}


.logo h1 {
    color: #1e3a8a;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
}

.nav-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0 15px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #007BFF; /* hover color */
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1e3a8a;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #374151;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    color: white;
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    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 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title .highlight {
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

section.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    color: #1f2937;
    margin-bottom: 16px;
}

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

/* About Section */
.about {
    background: #f9fafb;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.about-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}

.principal-message {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 64px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 64px;
}

.message-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.principal-message h3 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.principal-message p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.leadership-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.leadership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Academics Section */
.academics {
    background: white;
}

.curriculum-overview {
    background: #eff6ff;
    padding: 64px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 64px;
}

.overview-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.curriculum-overview h3 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 24px;
}

.curriculum-overview p {
    font-size: 1.25rem;
    color: #374151;
    max-width: 800px;
    margin: 0 auto;
}

.academic-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.level-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.level-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.level-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.teaching-methodology {
    background: linear-gradient(135deg, #059669, #3b82f6);
    color: white;
    padding: 64px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 64px;
}

.methodology-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.teaching-methodology h3 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.teaching-methodology p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.methodology-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.method-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.method-label {
    font-size: 1rem;
    opacity: 0.9;
}

.academic-achievements {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.achievement-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.achievement-stat {
    padding: 32px;
    border-radius: 12px;
}

.achievement-stat:first-child {
    background: #fef3c7;
}

.achievement-stat:last-child {
    background: #d1fae5;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.achievement-number:first-child {
    color: #d97706;
}

.achievement-stat:last-child .achievement-number {
    color: #059669;
}

.achievement-label {
    font-size: 1.125rem;
    color: #374151;
}

/* Facilities Section */
.facilities {
    background: #f9fafb;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.facility-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.facility-card:hover::before {
    transform: scaleX(1);
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.facility-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    padding: 16px;
    background: #f3f4f6;
    border-radius: 12px;
    display: inline-block;
    transition: all 0.3s ease;
}

.facility-card:hover .facility-icon {
    background: #eff6ff;
    transform: scale(1.1);
}

.facility-highlights {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 64px;
    border-radius: 16px;
    text-align: center;
}

.facility-highlights h3 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.facility-highlights p {
    font-size: 1.25rem;
    margin-bottom: 48px;
    opacity: 0.9;
}

.facility-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.facility-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 8px;
}

.facility-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Admissions Section */
.admissions {
    background: white;
}

.admission-process {
    margin-bottom: 64px;
}

.admission-process h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 48px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    background: #1e3a8a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}

.step h4 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 8px;
}

.step p {
    color: #6b7280;
    margin: 0;
}

.admission-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.info-card {
    background: #f9fafb;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.admission-faqs {
    background: #f9fafb;
    padding: 48px;
    border-radius: 16px;
    margin-bottom: 64px;
}

.admission-faqs h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 32px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.faq-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    color: #1f2937;
    margin-bottom: 12px;
}

.faq-item p {
    color: #6b7280;
    margin: 0;
}

.admission-cta {
    background: linear-gradient(135deg, #1e3a8a, #059669);
    color: white;
    padding: 64px;
    border-radius: 16px;
    text-align: center;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.admission-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.admission-cta p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Student Life Section */
.student-life {
    background: #f9fafb;
}

.student-activities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.activity-card {
    padding: 40px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.activity-card:nth-child(1) { background: #eff6ff; }
.activity-card:nth-child(2) { background: #ecfdf5; }
.activity-card:nth-child(3) { background: #fef3c7; }
.activity-card:nth-child(4) { background: #faf5ff; }
.activity-card:nth-child(5) { background: #eef2ff; }
.activity-card:nth-child(6) { background: #fef2f2; }

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.activity-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.student-life-highlights {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: white;
    padding: 64px;
    border-radius: 16px;
    text-align: center;
}

.student-life-highlights h3 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.student-life-highlights p {
    font-size: 1.25rem;
    margin-bottom: 48px;
    opacity: 0.9;
}

.life-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.life-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fde047;
    margin-bottom: 8px;
}

.life-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Parents Section */
.parents {
    background: white;
}

.parent-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.service-card {
    background: #f9fafb;
    padding: 40px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: white;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.service-card ul {
    list-style: none;
    margin-top: 16px;
}

.service-card li {
    padding: 4px 0;
    color: #6b7280;
}

.parent-portal {
    background: linear-gradient(135deg, #1e3a8a, #7c3aed);
    color: white;
    padding: 64px;
    border-radius: 16px;
    text-align: center;
}

.portal-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.parent-portal h3 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.parent-portal p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.portal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.feature-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fde047;
    margin-bottom: 8px;
}

.feature-label {
    font-size: 1rem;
    opacity: 0.9;
}

.portal-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* News & Events Section */
.news-events {
    background: #f9fafb;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.news-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.news-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.event-list, .achievement-list {
    margin-top: 24px;
}

.event-item, .achievement-item {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.event-item {
    background: #eff6ff;
    display: flex;
    align-items: center;
    gap: 16px;
}

.event-item:hover {
    background: #dbeafe;
}

.event-date {
    color: #1e3a8a;
    font-weight: 600;
    min-width: 80px;
}

.event-details h4 {
    margin: 0 0 4px 0;
    color: #1f2937;
}

.event-type {
    background: #e5e7eb;
    color: #374151;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.achievement-item {
    background: #fef3c7;
    position: relative;
}

.achievement-item:hover {
    background: #fde68a;
}

.achievement-item h4 {
    color: #1f2937;
    margin-bottom: 8px;
}

.achievement-item p {
    color: #6b7280;
    margin: 0;
    font-size: 0.875rem;
}

.achievement-year {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #d97706;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.school-calendar {
    background: linear-gradient(135deg, #059669, #3b82f6);
    color: white;
    padding: 64px;
    border-radius: 16px;
    text-align: center;
}

.calendar-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.school-calendar h3 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.school-calendar p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.calendar-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.calendar-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 8px;
}

.calendar-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Gallery Section */
.gallery {
    background: white;
}

.gallery-section, .video-section {
    margin-bottom: 64px;
}

.gallery-header, .video-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.gallery-icon, .video-icon {
    font-size: 2.5rem;
    margin-right: 16px;
}

.photo-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.photo-category {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.photo-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.category-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-category:hover .category-image img {
    transform: scale(1.1);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 32px 24px 24px;
}

.category-info h4 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.category-info p {
    margin: 0;
    opacity: 0.9;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.video-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(239, 68, 68, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.video-item:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ef4444;
}

.video-info {
    padding: 16px;
    background: white;
}

.video-info h4 {
    margin-bottom: 8px;
    color: #1f2937;
}

.video-duration {
    color: #6b7280;
    font-size: 0.875rem;
}

.virtual-tour {
    background: linear-gradient(135deg, #1e3a8a, #7c3aed);
    color: white;
    padding: 64px;
    border-radius: 16px;
    text-align: center;
}

.tour-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.virtual-tour h3 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.virtual-tour p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tour-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.tour-feature {
    text-align: center;
}

.tour-feature .feature-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fde047;
    margin-bottom: 8px;
}

.tour-feature .feature-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    background: #f9fafb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 64px;
}

.contact-card {
    background: #1e3a8a;
    color: white;
    padding: 48px;
    border-radius: 16px;
    height: fit-content;
}

.contact-card h3 {
    font-size: 2rem;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 16px;
    margin-top: 4px;
    color: #fbbf24;
}

.contact-details h4 {
    color: white;
    margin-bottom: 8px;
}

.contact-details p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.6;
}

.form-card {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-card h3 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 32px;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

.map-section {
    margin-top: 64px;
}

.map-card {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-card h3 {
    text-align: center;
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 24px;
}

.map-placeholder {
    background: #f3f4f6;
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: #6b7280;
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.map-content p {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.map-content span {
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    padding: 64px 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.logo-icon {
    font-size: 2rem;
    margin-right: 12px;
    color: #fbbf24;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}

.footer-section h3 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.25rem;
}

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

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fbbf24;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-item .contact-icon {
    color: #fbbf24;
    margin-top: 2px;
}

.footer-contact-item div {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 32px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fbbf24;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 32px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-highlights {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .academic-levels {
        grid-template-columns: 1fr;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .admission-info {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .student-activities {
        grid-template-columns: 1fr;
    }
    
    .parent-services {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-categories {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-stats,
    .facility-stats,
    .life-stats,
    .portal-features,
    .calendar-stats,
    .tour-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
    
    .principal-message,
    .teaching-methodology,
    .facility-highlights,
    .admission-cta,
    .student-life-highlights,
    .parent-portal,
    .school-calendar,
    .virtual-tour {
        padding: 40px 24px;
    }
}

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

.animate {
    animation: fadeInUp 0.8s ease forwards;
}

/* Smooth scrolling enhancement */
html {
    scroll-padding-top: 120px;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn,
    .nav-toggle {
        display: none !important;
    }
    
    section {
        page-break-inside: avoid;
        padding: 20px 0;
    }
    
    .hero {
        background: none !important;
        color: black !important;
    }
}