.about-school-section {
  background-color: #e8f5e9;
  padding: 60px 20px;
  color: #2e7d32;
  font-family: 'Segoe UI', sans-serif;
}

.about-school-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  max-width: 1250px;
  margin: auto;
}

.about-school-text {
  flex: 1 1 500px;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-school-text h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #1b5e20;
}

.about-school-text p {
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-school-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-school-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.about-school-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .about-school-container {
    flex-direction: column;
  }

  .about-school-text,
  .about-school-image {
    flex: 1 1 100%;
  }
}

.school-info-section {
  background-color: #f1f8e9;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #2e7d32;
}

.school-info-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  justify-content: center;
}

.info-card {
  flex: 1 1 500px;
  background-color: white;
  border-left: 6px solid #2e7d32;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #1b5e20;
}

.info-card p {
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 15px;
}

.school-card {
  border-left-color: #388e3c;
}

.trust-card {
  border-left-color: #6a1b9a;
}

@media (max-width: 768px) {
  .school-info-container {
    flex-direction: column;
  }

  .info-card {
    flex: 1 1 100%;
  }
}
.trust-section {
  background: linear-gradient(to right, #ede7f6, #e3f2fd);
  padding: 80px 20px;
}

.trust-wrapper {
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1250px;
  margin: auto;
  align-items: center;
  justify-content: center;
}

.trust-image-box {
  flex: 1 1 300px;
  text-align: center;
}

.trust-image-box img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.trust-image-box img:hover {
  transform: scale(1.05);
}

.trust-content-box {
  flex: 1 1 600px;
background-color: #5187eb;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-left: 8px solid #6a1b9a;
}

.trust-content-box h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #4a148c;
}

.trust-content-box p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .trust-wrapper {
    flex-direction: column;
  }

  .trust-content-box,
  .trust-image-box {
    flex: 1 1 100%;
  }
}


.vmm-section {
  background: linear-gradient(to right, #e3f2fd, #ede7f6);
  padding: 60px 20px;
}

.vmm-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1250px;
  margin: auto;
}

/* Card layout */
.vmm-card {
  display: flex;
  flex-wrap: wrap;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  color: #fff;
}

.vmm-card:hover {
  transform: translateY(-5px);
}

/* Image styling */
.vmm-image {
  flex: 1 1 300px;
  max-width: 100%;
  width: 350px;
  height: auto;
  object-fit: cover;
  border-right: 1px solid rgba(255,255,255,0.1);
}

/* Text block */
.vmm-text {
  flex: 1 1 600px;
  padding: 30px;
}

.vmm-text h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #ffeb3b;
}

.vmm-text h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #ffeb3b;
}

.vmm-text p,
.vmm-text ul li,
.vmm-text blockquote,
.vmm-text footer {
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #f5f5f5;
}

.vmm-text ul {
  padding-left: 20px;
}

/* Blockquote styling */
blockquote {
  background-color: rgba(255,255,255,0.1);
  padding: 20px;
  border-left: 6px solid #ffeb3b;
  border-radius: 8px;
  font-style: italic;
}

blockquote footer {
  margin-top: 10px;
  font-size: 1em;
  color: #eee;
}

/* Dark background themes */
.vmm-card.vision {
  background-color: #1b5e20; /* Dark Green */
}

.vmm-card.mission {
  background-color: #0d47a1; /* Dark Blue */
}

.vmm-card.motto {
  background-color: #6a1b1a; /* Deep Maroon */
}

.objectives-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

.objectives-container {
  max-width: 900px;
  margin: auto;
  background-color: #0c56b0;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.objectives-image-box {
  text-align: center;
  margin-bottom: 30px;
}

.objectives-image-box img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.objectives-container h2 {
  font-size: 2em;
  margin-bottom: 30px;
  text-align: center;
  color: #ffcc00;
}

.objectives-list {
  list-style: none;
  padding-left: 0;
}

.objectives-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.8;
  color: #e0e0e0;
}

.objectives-list li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
  color: #00bfa5;
  font-size: 1.2em;
}

.objectives-list em {
  font-style: italic;
  color: #90caf9;
}
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d1b2a;
  color: #f5f5f5;
}

.objectives-section {
  padding: 60px 20px;
}

.objectives-container {
  max-width: 1250px;
  margin: auto;
  background-color: #1b263b;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.objectives-image-box {
  text-align: center;
  margin-bottom: 30px;
}

.objectives-image-box img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.objectives-container h2 {
  font-size: 2em;
  margin-bottom: 30px;
  text-align: center;
  color: #ffcc00;
}

/* Grid layout */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Base item style */
.objective-item {
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  font-size: 1.05em;
  line-height: 1.6;
  color: #fff;
}

/* Color variations */
.objective-item.green {
  background-color: #2e7d32;
}

.objective-item.blue {
  background-color: #1565c0;
}

.objective-item.maroon {
  background-color: #6a1b1a;
}

.objective-item.purple {
  background-color: #4a148c;
}

.objective-item.orange {
  background-color: #ef6c00;
}

.objective-item.teal {
  background-color: #00897b;
}

.objective-item em {
  color: #ffeb3b;
  font-style: italic;
}

.team-section {
  background-color: #fffff0;
  padding: 60px 20px;
}

.team-container {
  max-width: 1250px;
  margin: auto;
  background-color: #1b263b;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.team-container h2 {
  font-size: 2em;
  margin-bottom: 40px;
  text-align: center;
  color: #ffcc00;
}

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

.team-card {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  font-size: 1.05em;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}

.team-card h3 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.3em;
  color: #ffeb3b;
}

.team-photo {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Role-specific colors */
.team-card.correspondent {
  background-color: #2e7d32;
}

.team-card.principal {
  background-color: #1565c0;
}

.team-card.trustees {
  background-color: #6a1b1a;
}

.team-note {
  margin-top: 40px;
  background-color: #243447;
  padding: 20px;
  border-radius: 10px;
  font-size: 1.1em;
  color: #e0e0e0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .team-container {
    padding: 20px;
  }

  .team-container h2 {
    font-size: 1.6em;
  }

  .team-card {
    font-size: 1em;
  }

  .team-note {
    font-size: 1em;
  }
}



/* Responsive tweaks */
@media (max-width: 768px) {
  .objectives-container {
    padding: 20px;
  }

  .objectives-container h2 {
    font-size: 1.6em;
  }

  .objective-item {
    font-size: 1em;
  }
}


/* Responsive layout */
@media (max-width: 768px) {
  .objectives-container {
    padding: 20px;
  }

  .objectives-container h2 {
    font-size: 1.6em;
  }

  .objectives-list li {
    font-size: 1em;
  }
}


.correspondent-section {
  background-color: #f6f6f6;
  padding: 60px 20px;
}

.correspondent-container {
  max-width: 1250px;
  margin: auto;
}

.correspondent-card {
  display: flex;
  flex-wrap: wrap;
  background-color: #1b263b;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  overflow: hidden;
  animation: fadeIn 1.2s ease-in-out;
}

.correspondent-text {
  flex: 1 1 600px;
  padding: 40px;
}

.correspondent-text h2 {
  font-size: 2em;
  color: #ffcc00;
  margin-bottom: 10px;
}

.correspondent-name {
  font-size: 1.2em;
  color: #90caf9;
  margin-bottom: 30px;
}

.correspondent-message p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.correspondent-message em {
  font-style: italic;
  color: #ffeb3b;
}

.correspondent-image-box {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #243447;
  padding: 30px;
}
.principal-text .correspondent-card {
    background-color: #3d0303;
}
.principal-text .correspondent-image-box {
    background-color: #800000;
}
.correspondent-photo {
  width: 340px;
  height: 340px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ffcc00;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.correspondent-photo:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(255, 204, 0, 0.5);
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive layout */
@media (max-width: 768px) {
  .correspondent-card {
    flex-direction: column-reverse;
  }

  .correspondent-text {
    padding: 20px;
  }

  .correspondent-text h2 {
    font-size: 1.6em;
  }

  .correspondent-name {
    font-size: 1em;
  }

  .correspondent-message p {
    font-size: 1em;
  }

  .correspondent-photo {
    width: 180px;
    height: 180px;
  }

  .correspondent-image-box {
    padding: 20px;
  }
}


.curriculum-section {
  background-color: #ffffff;
  padding: 60px 20px;
  background-size: cover;
  background-repeat: no-repeat;
}

.curriculum-container {
  max-width: 1100px;
  margin: auto;
}

.curriculum-container h2 {
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 30px;
  color: #6a1b9a;
}

.curriculum-intro {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
  color: #252525;
}

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

.curriculum-card {
  background-color: #fff;
  border-left: 8px solid #6a1b9a;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.curriculum-card:hover {
  transform: translateY(-5px);
}

.curriculum-card h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #4a148c;
  font-weight: 600;
}

.curriculum-card p {
    margin-bottom: 10px;
    color: #252525;
    font-weight: 500;
}

.curriculum-card ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.curriculum-card ul li {
  margin-bottom: 6px;
    list-style: circle;
    color: #252525;
    font-size: 16px;
}

.goal {
  font-weight: bold;
  color: #2e7d32;
}

.curriculum-quote {
  margin-top: 60px;
  background-color: #ede7f6;
  padding: 30px;
  border-left: 6px solid #6a1b9a;
  border-radius: 10px;
  font-style: italic;
  font-size: 1.2em;
  color: #333;
}

.curriculum-quote footer {
  margin-top: 10px;
  font-size: 1em;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .curriculum-container h2 {
    font-size: 1.8em;
  }

  .curriculum-intro {
    font-size: 1em;
  }

  .curriculum-card h3 {
    font-size: 1.2em;
  }

  .curriculum-quote {
    font-size: 1em;
  }
}
.curriculum-card.preprimary {
  background-color: #f48fb1;
  border-left: 8px solid #c2185b;
}

.curriculum-card.primary {
  background-color: #64b5f6;
  border-left: 8px solid #1976d2;
}

.curriculum-card.middle {
  background-color: #81c784;
  border-left: 8px solid #388e3c;
}

.curriculum-card.highschool {
  background-color: #ffb74d;
  border-left: 8px solid #f57c00;
}

.curriculum-card.highersecondary {
  background-color: #ba68c8;
  border-left: 8px solid #7b1fa2;
}

.curriculum-card.enrichment {
  background-color: #4db6ac;
  border-left: 8px solid #00796b;
}
.large-icon {
    text-align: center;
    margin: auto;
    display: block;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease,
    box-shadow 0.4s ease;
    margin-bottom: 25px;
    border-radius: 20px;
}

.large-icon:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(255, 204, 0, 0.5);
}
.section-kt.facilities-sec {
    background-color: #800000;
}
.svc-section-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  background-color: #e6f2ff; /* Blue background */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.svc-section-text {
    flex: 1;
    padding: 10px 10px 0 10px;
}

.svc-section-text h2 {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 20px;
}

.svc-list {
  list-style: none;
  padding: 0;
}

.svc-list li {
  position: relative;
  padding: 12px 20px 12px 40px;
  margin-bottom: 12px;
  background-color: #fff;
  border-left: 5px solid #0077cc;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-list li::before {
  content: "✔";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #0077cc;
  font-size: 1.2em;
}

.svc-list li:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 119, 204, 0.2);
}

.svc-section-image {
  flex: 1;
  padding: 20px;
  text-align: center;
}

.svc-section-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.svc-section-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 119, 204, 0.3);
}

.svc-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.svc-table th,
.svc-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
  background-color: #fff;
}

.svc-table th {
  background-color: #d9ecff;
  color: #003366;
}

/* Shared List Style */
.admission-list {
  list-style: none;
  padding: 0;
}

.admission-list li {
  position: relative;
  padding: 12px 20px 12px 40px;
  margin-bottom: 12px;
  background-color: #fff;
  border-left: 5px solid #0077cc;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.admission-list li::before {
  content: "✔";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #0077cc;
  font-size: 1.2em;
}

.admission-list li:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 119, 204, 0.2);
}

/* Section Layouts */
.admission-box,
.documents-box,
.notes-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0px auto;
  max-width: 1350px;
  padding: 20px 20px 10px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


/* Background Colors */
.admission-box { background-color: #f0f9ff; margin-bottom: 35px; }
.documents-box { background-color: #fff8e1; }
.notes-box { background-color: #e8f5e9; }

/* Text and Image Columns */
.admission-left,
.documents-left,
.notes-left {
  flex: 1;
  padding: 20px;
}

.admission-left h2,
.documents-left h2,
.notes-left h2 {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 20px;
}

.admission-right,
.documents-right,
.notes-right {
  flex: 1;
  padding: 20px;
  text-align: center;
}

.admission-right img,
.documents-right img,
.notes-right img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.admission-right img:hover,
.documents-right img:hover,
.notes-right img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 119, 204, 0.3);
}
.faculty-box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  background-color: #f0f9ff;
  border-radius: 12px;
  padding: 20px;
  margin: 0px auto;
  max-width: 1350px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.faculty-left {
  flex: 1;
  padding: 20px;
}

.faculty-left h2 {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 20px;
}

.faculty-left h3 {
  font-size: 1.3em;
    color: #005fa3;
    margin-top: 0;
    margin-bottom: 25px;
}

.faculty-left p {
  font-size: 1em;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.faculty-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.faculty-table th,
.faculty-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
  background-color: #fff;
}

.faculty-table th {
  background-color: #d9ecff;
  color: #003366;
}

.faculty-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.faculty-list li {
  position: relative;
  padding: 12px 20px 12px 40px;
  margin-bottom: 12px;
  background-color: #fff;
  border-left: 5px solid #0077cc;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faculty-list li::before {
  content: "✔";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #0077cc;
  font-size: 1.2em;
}

.faculty-list li:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 119, 204, 0.2);
}

.faculty-quote {
  margin-top: 20px;
  font-style: italic;
  font-size: 1.1em;
  color: #005fa3;
  border-left: 4px solid #0077cc;
  padding-left: 15px;
  background-color: #fff;
}

.faculty-right {
  flex: 1;
  padding: 20px;
  text-align: center;
}

.faculty-right img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.faculty-right img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 119, 204, 0.3);
}
.rules-box.rules-full {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  background-color: #f0f4ff; /* Soft blue background */
  border-left: 6px solid #0077cc;
  border-radius: 12px;
  padding: 30px;
  margin: 60px auto;
  max-width: 1100px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.rules-box:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 119, 204, 0.3);
}

.rules-left {
  flex: 1;
  padding: 20px;
}

.rules-left h2 {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 20px;
}

.rules-left h3 {
  font-size: 1.3em;
  color: #005fa3;
  margin-top: 25px;
  margin-bottom: 10px;
}

.rules-left p {
  font-size: 1em;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.rules-list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.rules-list li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #333;
}

.rules-quote {
  margin: 20px 0;
  font-style: italic;
  font-size: 1.1em;
  color: #005fa3;
  border-left: 4px solid #0077cc;
  padding-left: 15px;
}

.rules-right {
  flex: 1;
  padding: 20px;
  text-align: center;
}

.rules-right img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.rules-right img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 119, 204, 0.3);
}

 .rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
  margin: 0px auto;
  max-width: 1300px;
  padding: 0 20px;
}

.rules-card {
  padding: 25px;
  border-left: 6px solid #0077cc;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rules-card:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 24px rgba(0, 119, 204, 0.2);
}

.rules-card h2 {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 15px;
}

.rules-card ol,
.rules-card ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.rules-card li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #333;
}

.rules-card blockquote {
  margin-top: 15px;
  font-style: italic;
  color: #005fa3;
  border-left: 4px solid #0077cc;
  padding-left: 15px;
}

/* Section-specific background colors */
.rules-discipline { background-color: #e3f2fd; }   /* Light Blue */
.rules-attendance { background-color: #fff3e0; }   /* Soft Orange */
.rules-parents    { background-color: #e8f5e9; }   /* Pale Green */
.rules-uniform    {
  background-color: #fce4ec;
  margin: 40px auto;
  max-width: 1200px;
  padding: 30px 25px;
}

/* Responsive layout */
@media (max-width: 1199px) { 
  
.svc-section-row {
    display: block;
}
.admission-box, .documents-box, .notes-box {
  display: block;
}
.faculty-box {
   display: block;
}
}
@media (max-width: 768px) {
  .vmm-card {
    flex-direction: column;
  }

  .vmm-image {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .vmm-card {
    flex-direction: column;
  }

  .vmm-image {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .vmm-text {
    padding: 20px;
  }

  .vmm-text h2 {
    font-size: 1.5em;
  }

  .vmm-text h3 {
    font-size: 1.3em;
  }

  .vmm-text p,
  .vmm-text ul li {
    font-size: 1em;
  }

  blockquote {
    padding: 15px;
  }
  .vmm-text {
  flex: 1 1 1px;
}
.vmm-image {
    width: 100%;
}
}
