/* Home Page Styles */
/* General header styling */
/* General header and navbar styling */
header {
    background-color: #0d47a1;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: fixed; /* Make the header fixed at the top */
    top: 0; /* Position it at the top */
    left: 0; /* Make it span the full width */
    z-index: 1000; /* Ensure it stays above other content */
}

/* Navbar styling */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 {
    margin: 0;
    font-size: 24px;
    color: white;
}

.logo img {
    width: 80px;
    height: auto;
    display: block;
    margin: 0;
}

/* Navigation links styling */
.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.nav-links a:hover {
    color: #007bff;
}

/* Hamburger menu styling for mobile view */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* Responsive styling */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 60px;
        flex-direction: column;
        background-color: #0d47a1;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Add padding to body to account for fixed navbar */
body {
    padding-top: 60px; /* Account for fixed header height */
    margin: 0;
}

:root {
    --primary-color: #1a237e;
    --secondary-color: #0d47a1;
    --accent-color: #ffc107;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white:#f0f8ff;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* Hero Section with Slider */
  .hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
    margin-top: 0; /* No extra margin needed - body has padding-top */
  }
  
  .hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-position: center;
    background-size: cover;
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
  }
  
  .hero-content {
    position: absolute;
    top: 27%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: blue;
    z-index: 10;
    width: 90%;
    max-width: 800px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* White with 80% opacity */
    border-radius: 10px; /* Optional: add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: add a subtle shadow */
  }
  .logo h1{
    margin: 0;
    font-size: 24px;
    color: white;
  }

  .hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
  }
  
  .hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.2s forwards;
  }
  
  .slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
  }
  
  .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .slider-dot.active {
    background: var(--white);
  }
  
  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
  }
  
  .slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
  }
  
  .slider-arrow.prev {
    left: 20px;
  }
  
  .slider-arrow.next {
    right: 20px;
  }
  
  .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.4s forwards;
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Rest of the styles remain the same */
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    background: var(--light-gray);
  }
  
  .feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
  }
  
  .feature-card i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
  }
  
  .news-preview {
    padding: 60px 20px;
    background-color:#f5f5f5;
  }
  
  .news-preview h2 {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .news-card {
    background: aliceblue;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
  .news-image {
    height: 200px;
    background: url('https://source.unsplash.com/random/400x300?school') center/cover;
  }
  
  .news-content {
    padding: 20px;
  }
  
  .news-content h3 {
    margin-bottom: 10px;
  }
  
  .read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    background: #0056b3;
  }
  
   
    .hero-content h1 {
      font-size: 2em;
    }
    
    .slider-arrow {
      width: 40px;
      height: 40px;
    }
    
    .features {
      padding: 40px 20px;
    }
    
    .news-grid {
      grid-template-columns: 1fr;
    }
    /*footer*/
    /* General footer styling */
.footer {
    background-color:#0d47a1;
    color: #fff;
    padding: 20px 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p, 
.footer-section ul, 
.footer-section .social-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
}

.footer-section a:hover {
    color: #007bff;
}

/* Social links styling */
.social-links a {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
}

.footer-bottom {
    text-align: center;
    padding: 10px 0;
    background-color:#1a237e;
    color: #bbb;
    width: 100%;
    box-sizing: border-box;
}
/*Images on home page*/
.news-image {
    width: 100%;
    height: 200px; /* Adjust the height as needed */
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* General box styling */
.news-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.news-card {
  background-color: aliceblue; /* Semi-transparent white background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px; /* Adjust max-width as needed */
}

.news-image{
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 10px; /* Optional: add rounded corners */
}

.news-image img {
  width: 100%;
  height: auto;
  object-fit: cover; /* Ensure the entire image is displayed */
  border-radius: 10px;
}
.headmaster-container {
  max-width: 1200px;
  margin: 0 auto;
  background: aliceblue;
  padding: 60px 20px; /* Same padding as news-preview and news grid */
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: grid; /* Use grid layout like news-grid */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsively fit cards */
  gap: 30px; /* Similar gap to news-grid */
  box-sizing: border-box;
}
.headmaster-card {
  background-color:aliceblue; /* Background color */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;  /* Let the card take the full width of its parent container */
  max-width: 800px; /* Increase the max-width to make it wider */
  margin: 10px auto;  /* Center the card horizontally with some space */
}

.headmaster-image img {
  width: 100%;
  height: auto;
  object-fit: cover; /* Ensure the entire image is displayed */
  border-radius: 10px;
}
.headmaster-content {
  text-align: center;
  width: 100%;
  border-radius: 8px;
  padding: 20px;
}

/* Responsive styling */
@media (min-width: 768px) {
  .news-card, .headmaster-card {
      width: calc(50% - 20px); /* Adjust based on the desired layout */
  }
}

/* Additional content styling */
.news-content {
  text-align: center;
  width: 100%;
  border-radius: 8px;
  padding: 20px;
}

.read-more, .cta-button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.read-more:hover, .cta-button:hover {
  background-color: #0056b3;
}
.headmaster-message {
  background-color:#f5f5f5 ;

   
}

/* Latest News Section */
.latest-news {
    padding: 60px 20px;
    background: #f8f9fa;
}

.latest-news h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.news-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

/* Featured News Item */
.other-news {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 20px auto;
  justify-content: center;
}
.news-card {
  max-width: 400px;
  width: 100%;
  background: aliceblue;
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.news-item.featured {
    grid-column: 1 / -1;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 20px;
}

.news-item.featured .news-image {
    height: 100%;
    min-height: 300px;
}

.news-item.featured .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.news-item.featured .news-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

/* Top Students Section */
.top-students {
    grid-column: 1 / -1;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.top-students h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
}

.student-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.student-card {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.student-card:hover {
    transform: translateY(-5px);
}

.student-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 20px auto;
    border: 4px solid var(--primary-color);
}

.student-card h4 {
    color: var(--primary-color);
    margin: 10px 0;
    font-size: 1.2rem;
}

.student-card p {
    color: #666;
    margin: 5px 0;
    font-size: 0.9rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .news-item.featured {
        grid-template-columns: 1fr;
    }

    .student-grid {
        grid-template-columns: 1fr;
    }

    .results-table {
        font-size: 0.9rem;
    }

    .results-table th,
    .results-table td {
        padding: 10px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-item.featured,
.student-card,
.results-table {
    animation: fadeInUp 0.6s ease-out;
}
/* Float-in Animation */
@keyframes floatInUp {
  from {
    opacity: 0;
    transform: translateY(100px); /* Start slightly below */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* End at normal position */
  }
}

.float-in-up {
  animation: floatInUp 1s ease-out forwards;
}

/* Christmas Banner - Professional Design */
.christmas-strip {
  position: relative;
  height: 300px;
  background: linear-gradient(135deg, #8B1538 0%, #1B4332 50%, #8B1538 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-top: 3px solid rgba(212, 175, 55, 0.6);
  border-bottom: 3px solid rgba(212, 175, 55, 0.6);
}

/* ELEGANT OVERLAY PATTERN */
.christmas-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(212, 175, 55, 0.03) 2px,
      rgba(212, 175, 55, 0.03) 4px
    ),
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
  animation: subtleShimmer 12s ease-in-out infinite;
  pointer-events: none;
}

@keyframes subtleShimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ELEGANT RIBBON BORDERS */
.christmas-strip::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(to right, 
      transparent 0%,
      rgba(212, 175, 55, 0.2) 20%,
      rgba(212, 175, 55, 0.2) 30%,
      transparent 50%,
      rgba(212, 175, 55, 0.2) 70%,
      rgba(212, 175, 55, 0.2) 80%,
      transparent 100%
    );
  background-size: 200% 100%;
  animation: ribbonFlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ribbonFlow {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 0%; }
}

/* SOPHISTICATED TREE PATTERN */
.trees-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.08) 50%, transparent 100%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.02) 40px,
      rgba(255, 255, 255, 0.02) 41px
    );
  opacity: 0.4;
  animation: patternDrift 25s linear infinite;
}

@keyframes patternDrift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 100px 0, 0 40px; }
}

/* ELEGANT TREE ICONS */
.trees-bg::before {
  content: "🎄";
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  opacity: 0.25;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  animation: treeFloat 6s ease-in-out infinite;
}

.trees-bg::after {
  content: "🎄";
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  opacity: 0.25;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  animation: treeFloat 6s ease-in-out infinite 1.5s;
}

@keyframes treeFloat {
  0%, 100% { 
    transform: translateY(-50%) scale(1);
    opacity: 0.2;
  }
  50% { 
    transform: translateY(-60%) scale(1.1);
    opacity: 0.3;
  }
}

/* REFINED STAR PATTERN */
.stars-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(1.5px 1.5px at 15% 25%, rgba(212, 175, 55, 0.8), transparent),
    radial-gradient(1px 1px at 25% 45%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 35% 65%, rgba(212, 175, 55, 0.7), transparent),
    radial-gradient(1px 1px at 45% 35%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 55% 55%, rgba(212, 175, 55, 0.6), transparent),
    radial-gradient(1px 1px at 65% 25%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 75% 45%, rgba(212, 175, 55, 0.8), transparent),
    radial-gradient(1px 1px at 85% 65%, rgba(255, 255, 255, 0.6), transparent);
  background-size: 100% 100%;
  animation: starsTwinkle 4s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes starsTwinkle {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

/* MAIN CONTENT */
.christmas-strip-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 40px 60px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: contentFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 90%;
}

@keyframes contentFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.tree-icon {
  font-size: 56px;
  display: block;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  animation: elegantFloat 4s ease-in-out infinite;
  color: #D4AF37;
}

@keyframes elegantFloat {
  0%, 100% { 
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
  }
  50% { 
    transform: translateY(-8px) scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.7));
  }
}

.christmas-strip-content h1 {
  font-family: 'Pacifico', cursive;
  font-size: 48px;
  margin: 15px 0 10px 0;
  font-weight: 400;
  letter-spacing: 3px;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(212, 175, 55, 0.4),
    0 0 40px rgba(212, 175, 55, 0.2);
  color: #fff;
  position: relative;
}

.christmas-strip-content h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
  0%, 100% { 
    opacity: 0.6;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
  }
  50% { 
    opacity: 1;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
  }
}

.christmas-strip-content h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 36px;
  font-style: italic;
  font-weight: 500;
  margin-top: 20px;
  letter-spacing: 2px;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(212, 175, 55, 0.3);
  color: rgba(255, 255, 255, 0.95);
  animation: subtitleElegance 3s ease-in-out infinite;
}

@keyframes subtitleElegance {
  0%, 100% { 
    opacity: 0.9;
    transform: translateY(0);
  }
  50% { 
    opacity: 1;
    transform: translateY(-2px);
  }
}

/* DECORATIVE CORNER ELEMENTS */
.christmas-strip-content::before,
.christmas-strip-content::after {
  content: '✦';
  position: absolute;
  font-size: 20px;
  color: #D4AF37;
  opacity: 0.6;
  animation: cornerSparkle 4s ease-in-out infinite;
}

.christmas-strip-content::before {
  top: 15px;
  left: 20px;
  animation-delay: 0s;
}

.christmas-strip-content::after {
  bottom: 15px;
  right: 20px;
  animation-delay: 2s;
}

@keyframes cornerSparkle {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.2) rotate(180deg);
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .christmas-strip {
    height: 240px;
    border-top-width: 2px;
    border-bottom-width: 2px;
  }

  .christmas-strip-content {
    padding: 30px 40px;
    max-width: 95%;
  }

  .tree-icon {
    font-size: 42px;
    margin-bottom: 12px;
  }

  .christmas-strip-content h1 {
    font-size: 32px;
    letter-spacing: 2px;
    margin: 12px 0 8px 0;
  }

  .christmas-strip-content h2 {
    font-size: 26px;
    letter-spacing: 1px;
    margin-top: 15px;
  }

  .trees-bg::before,
  .trees-bg::after {
    font-size: 32px;
  }

  .christmas-strip-content::before,
  .christmas-strip-content::after {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .christmas-strip {
    height: 200px;
  }

  .christmas-strip-content {
    padding: 20px 30px;
  }

  .tree-icon {
    font-size: 36px;
  }

  .christmas-strip-content h1 {
    font-size: 28px;
  }

  .christmas-strip-content h2 {
    font-size: 22px;
  }
}

/* Admissions Banner */
.admissions-banner {
  position: relative;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
  text-align: center;
  overflow: hidden;
  animation: flashBackground 3s ease-in-out infinite;
}

.admissions-content {
  position: relative;
  z-index: 2;
  color: yellow;
}

.admissions-content .icon {
  font-size: 60px;
  display: block;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

.admissions-content h1 {
  color: yellow;
  font-size: 42px;
  font-weight: bold;
  margin: 20px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.admissions-content p {
  color: white;
  font-size: 24px;
  font-weight: 600;
  margin-top: 15px;
}

.admissions-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 15px 40px;
  background-color: yellow;
  color: #0d47a1;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.admissions-btn:hover {
  background-color: #ffd700;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

@keyframes flashBackground {
  0%, 100% {
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
  }
  50% {
    background: linear-gradient(135deg, #1565c0 0%, #42a5f5 100%);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .admissions-banner {
    padding: 40px 15px;
  }
  
  .admissions-content h1 {
    font-size: 28px;
  }
  
  .admissions-content p {
    font-size: 18px;
  }
  
  .admissions-content .icon {
    font-size: 40px;
  }
}

  