  
  /* ---------- HERO ---------- */
  .hero-section {
    background: linear-gradient(rgba(0, 67, 143, 0.6), rgba(0, 67, 143, 0.6)), 
                url('images/cbse-boarding-school-banner.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
  }

  .hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }

  .hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: auto;
  }

  /* ---------- SECTIONS ---------- */
  section {
    max-width: 1200px;
    margin: auto;
    padding: 70px 20px;
  }

  /* ---------- ABOUT ---------- */
  .about-school {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
  }

  .about-school img {
    flex: 1;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .about-content {
    flex: 1;
  }

  /* ---------- FACILITIES ---------- */
  .facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
  }

  .facility-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    padding: 25px;
    transition: 0.3s;
  }

  .facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  }

  .facility-card i {
    font-size: 40px;
    color: #0078d4;
    margin-bottom: 10px;
  }

  .facility-card h3 {
    color: #004a99;
    margin-bottom: 10px;
  }

  /* ---------- GALLERY ---------- */
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 40px;
  }

  .gallery img {
    width: 100%;
    border-radius: 10px;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s;
  }

  .gallery img:hover {
    transform: scale(1.05);
  }

  /* ---------- WEEKLY ROUTINE ---------- */
  .routine-section {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow-x: auto;
  }

  /* ---------- CTA ---------- */
  .cta-section {
    background: linear-gradient(135deg, #0078d4, #00bfff);
    color: #fff;
    text-align: center;
    padding: 70px 20px;
  }

  .cta-btn {
    background: #fff;
    color: #0078d4;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
  }

  .cta-btn:hover {
    background: #004a99;
    color: #fff;
  }
  
  .daily-routine-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

.daily-routine-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  }

.daily-routine-heading {
  font-size: 1.8rem;
  color: #003366;
  font-weight: 600;
  margin-bottom: 30px;
  border-bottom: 3px solid #f7b500;
  display: inline-block;
  padding-bottom: 5px;
}

.daily-routine-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
}
.daily-routine-row {
  display: flex;
  justify-content: space-between;
  background-color: #f9fbff;
  border-bottom: 1px solid #ccc;
  transition: background-color 0.3s ease;
}

.daily-routine-head {
  display: flex;
  justify-content: space-between;
  background-color: #f9fbff;
  border-bottom: 1px solid #ccc;
  transition: background-color 0.3s ease;
}

.daily-routine-row-header {
  background-color: #003366;
  color: #fff;
  font-weight: 600;
}

.daily-routine-row:nth-child(even) {
  background-color: #eef4ff;
}

.daily-routine-row:hover {
  background-color: #dce9ff;
}

.daily-routine-cell {
  flex: 1;
  padding: 12px;
  text-align: left;
}

@media (max-width: 768px) {
  .daily-routine-row {
    flex-direction: column;
    text-align: center;
  }

  .daily-routine-cell {
    border-bottom: 1px solid #ddd;
    padding: 10px;
  }

  .daily-routine-row-header {
    display: none;
  }
}


  @media (max-width: 768px) {
    .about-school { flex-direction: column; }
    .hero-section h1 { font-size: 2rem; }
  }