/* *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #f5f5f5;
} */

/* Slider container */
.slider {

  height: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Slides wrapper */
.slides {
  width: 500%;
  height: 100%;
  display: flex;
}

/* Hide radio buttons */
.slides input {
  display: none;
}

/* Single slide */
.slide {
  width: 20%;
  transition: 1s;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Manual navigation (dots) */
.navigation-manual {
  position: absolute;
  width: 100%;
  bottom: 15px;
  display: flex;
  justify-content: center;
}

.manual-btn {
  border: 2px solid white;
  padding: 6px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.4s;
  margin: 0 6px;
}

.manual-btn:hover {
  background: white;
}

/* Radio checked -> move slides */
#radio1:checked~.first {
  margin-left: 0;
}

#radio2:checked~.first {
  margin-left: -20%;
}

#radio3:checked~.first {
  margin-left: -40%;
}

#radio4:checked~.first {
  margin-left: -60%;
}

/* Auto navigation dots (invisible) */
.navigation-auto {
  position: absolute;
  display: flex;
  width: 100%;
  justify-content: center;
  bottom: 15px;
  opacity: 0;
}

.navigation-auto div {
  border: 2px solid white;
  padding: 5px;
  border-radius: 50%;
  margin: 0 6px;
}


/* Apply animation */
.slides {
  animation: autoplay 16s infinite;
}

/* Section Container */
.principal-section {
  max-width: 1215px;
  margin: 60px auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 30px;
  align-items: center;
  transition: transform 0.3s ease;
}

.principal-section:hover {
  transform: translateY(-5px);
}

/* Principal Image */
.principal-section img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #07294d;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Content */
.principal-content {
  flex: 1;
}

.principal-content h2 {
  font-size: 30px;
  font-weight: bold;
  color: #07294d;
  margin-bottom: 12px;
  position: relative;
}

.principal-content h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #f59e0b;
  position: absolute;
  left: 0;
  bottom: -6px;
  border-radius: 2px;
}

.principal-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}

.principal-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin-top: 15px;
}

/* Responsive Design */
@media(max-width: 768px) {
  .principal-section {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .principal-section img {
    margin-bottom: 20px;
  }

  .principal-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.facilities-section {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.section-title {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #07294d;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 75px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.facilities-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.facility-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: visible;
}

.facility-card .circle {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.facility-card h3 {
  margin-top: 40px;
  font-size: 19px;
  color: #07294d;
  font-weight: bold;
  text-transform: uppercase;
}

.facility-card p {
  color: #07294d;
  font-size: 15px;
  margin-top: 10px;
}

/* Different Colors for Each Card */
.card1 {
  background: #ffffff;
}

.card2 {
  background: #ffffff;
}

.card3 {
  background: #ffffff;
}

.card4 {
  background: #ffffff;
}

.circle i {
  font-size: 70px;
}


/* Tablet */
@media (max-width: 1024px) {
  .facilities-row {
    grid-template-columns: repeat(2, 1fr);
    /* 2 in a row */
  }
}

/* Mobile */
@media (max-width: 600px) {
  .facilities-row {
    grid-template-columns: 1fr;
    /* 1 in a row */
  }

  .facility-card {
    padding: 20px;
  }

  .facility-card .circle {
    width: 75px;
    height: 75px;
  }

  .facility-card .circle i {
    font-size: 32px;
  }

  .facility-card h3 {
    font-size: 1.1rem;
  }

  .facilities-section .section-title {
    font-size: 1.5rem;
  }

  .facilities-section .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
}

.breadcrumb-banner {
  position: relative;
  background: url('your-image.jpg') center/cover no-repeat;
  height: 200px;
  /* short height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.breadcrumb-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 41, 77, 0.6);
  /* dark overlay */
}

.breadcrumb-banner .container {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: bold;
}

.breadcrumb ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  font-size: 15px;
}

.breadcrumb ul li {
  color: #fff;
  margin-right: 8px;
}

.breadcrumb ul li a {
  color: #f1f1f1;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb ul li a:hover {
  color: #ffd700;
}

.breadcrumb ul li::after {
  content: "›";
  margin-left: 8px;
  color: #fff;
}

.breadcrumb ul li:last-child::after {
  content: "";
}

.school-rules ul li span {
  position: absolute;
  left: 0;
  border: 1px solid #ccc;
  background-color: #07294d;
  color: white;
  width: 30px;
  font-size: 14px;
  font-weight: 600;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
}

li {

  display: block;
  text-align: left;
}

.testimonial-carousel .owl-item img {
  width: 100%;
  height: 0%;
}

p {
  color: #252323;
}

.testimonial-carousel .owl-dot.active {
  width: 13px;
  height: 13px;
}

.testimonial-carousel .owl-dot {
  width: 13px;
  height: 13px;
}

.school-rules ul li span {
  position: absolute;
  left: 0;
  border: 1px solid #ccc;
  background-color: #07294d;
  color: white;
  width: 30px;
  font-size: 14px;
  font-weight: 600;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
}

.school-rules ul li {
  list-style-type: none;
  font-size: 16px;
  line-height: 30px;
  position: relative;
  margin-bottom: 20px;
  padding-left: 50px;
  text-align: justify;
}

a {
  color: #ffffff;
}

.img-box {
  padding: 25px;
}

.wrap-about .img {
  width: 100%;
  height: 400px;
}

.logo {
  margin: 21px;
}

.topp {
  margin-left: -104px;
}

.topp .text {
  margin-left: 0px;
}

.topp .icon span {
  background: #07294d;
  color: #EFEFEF;
  font-size: 20px;
  border-radius: 50%;
}

.btn {
  margin-top: 20px;
  margin-right: 100px;
}

.card {}

.cards-wrapper {
  display: flex;
  justify-content: center;
}

.card img {
  max-width: 100%;
  max-height: 100%;
}

.carousel-control-prev,
.carousel-control-next {
  background-color: #e1e1e1;
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

ol,
ul {
  padding-left: 0rem;
}

.school-rules ul li span {
  position: absolute;
  left: 0;
  border: 1px solid #ccc;
  background-color: #07294d;
  color: white;
  width: 30px;
  font-size: 14px;
  font-weight: 600;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
}

li {

  display: block;
  text-align: left;
}

.testimonial-carousel .owl-item img {
  width: 100%;
  height: 0%;
}

p {
  color: #252323;
}

.testimonial-carousel .owl-dot.active {
  width: 13px;
  height: 13px;
}

.testimonial-carousel .owl-dot {
  width: 13px;
  height: 13px;
}

.school-rules ul li span {
  position: absolute;
  left: 0;
  border: 1px solid #ccc;
  background-color: #07294d;
  color: white;
  width: 30px;
  font-size: 14px;
  font-weight: 600;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
}

.school-rules ul li {
  list-style-type: none;
  font-size: 16px;
  line-height: 30px;
  position: relative;
  margin-bottom: 20px;
  padding-left: 50px;
  text-align: justify;
}

a {
  color: #ffffff;
}

.img-box {
  padding: 25px;
}

.wrap-about .img {
  width: 100%;
  height: 400px;
}

.logo {
  margin: 21px;
}

.topp {
  margin-left: -104px;
}

.topp .text {
  margin-left: 0px;
}

.topp .icon span {
  background: #ffd700;
  color: #EFEFEF;
  font-size: 20px;
  border-radius: 50%;
}

.btn {
  margin-top: 20px;
  margin-right: 100px;
}

.card {}

.cards-wrapper {
  display: flex;
  justify-content: center;
}

.card img {
  max-width: 100%;
  max-height: 100%;
}

.carousel-control-prev,
.carousel-control-next {
  background-color: #e1e1e1;
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

ol,
ul {
  padding-left: 0rem;
}

a {
  color: #ff0202;
}

a:hover {
  color: #ffd700;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Barlow', sans-serif;

}

/* .container {
            margin: 0;
            padding: 10px 50px;
        } */

/* .text-center {
            text-align: center;
            Font-size: 40px;
            color: #5a0000;
            font-weight: bold;
            font-family: 'Barlow', sans-serif;
        } */
.abt-txt h2 {
  text-align: center;
  color: #5a0000;
  font-weight: 600;
  font-size: 40px;
  font-weight: bold;
}

.Heading5 {
  text-align: center;
  text-align: justify;
  font-size: 1.35rem;
  display: block;
  font-family: 'Barlow', sans-serif;

}

.table,
th,
td {
  border: 1px solid black;
  border-collapse: collapse;
  margin-left: 10%;
  margin-right: auto;
  /* width: 100%;
            max-width: 100%; */
  padding: 10px;

}

.table-body {
  font-family: 'Poppins', sans-serif;
  color: #444444;
}


>body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fb;
}

.contact-section {
  padding: 60px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #07294d;
  position: relative;
  display: inline-block;
}

.contact-section h2::after {
  content: "";
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #f5b417, #ee0979);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5b417, #ff6a00);
  color: #fff;
  font-size: 30px;
  margin-bottom: 20px;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #07294d;
}

.contact-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 6px 0;
}

/* Responsive */
@media(max-width:768px) {
  .contact-section h2 {
    font-size: 1.8rem;
  }
}

 :root{
      --bg: #f6f8fb;
      --card: #ffffff;
      --text: #1f2937;
      --muted: #6b7280;
      --primary: #2563eb;
      --primary-600:#1d4ed8;
      --ring: rgba(37, 99, 235, .25);
      --border:#e5e7eb;
      --radius: 14px;
    }

    * { box-sizing: border-box; }
    html, body { height: 100%; }
    body{
      margin:0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      color: var(--text);
      background: radial-gradient(1200px 600px at 20% -10%, #e8efff 0%, transparent 60%) , var(--bg);
      line-height: 1.45;
    }

    .wrapper{
      min-height: 100%;
      display: grid;
      place-items: center;
      padding: 24px;
    }

    .form-card{
      width: 100%;
      max-width: 880px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: 0 10px 30px rgba(17, 24, 39, .06);
      padding: 22px;
    }

    .header{
      padding: 6px 4px 18px;
      border-bottom: 1px dashed var(--border);
      margin-bottom: 18px;
    }
    .header h1{
      margin: 0 0 6px;
      font-size: clamp(22px, 3vw, 28px);
      letter-spacing: .2px;
    }
    .header p{
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    form{
      display: grid;
      gap: 16px;
    }

    /* Grid that becomes 2 columns on larger screens */
    .grid{
      display: grid;
      gap: 16px;
    }
    @media (min-width: 780px){
      .grid{
        grid-template-columns: repeat(2, 1fr);
      }
      .grid .span-2{
        grid-column: span 2;
      }
    }

    label{
      display:block;
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 6px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    select,
    textarea{
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 12px 12px;
      font-size: 15px;
      background: #fff;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
    }
    textarea{ min-height: 96px; resize: vertical; }

    input:focus, select:focus, textarea:focus{
      border-color: var(--primary);
      box-shadow: 0 0 0 4px var(--ring);
    }

    .row-inline{
      display:flex;
      gap:16px;
      flex-wrap: wrap;
      align-items: center;
    }
    .row-inline .radio{
      display:flex;
      align-items:center;
      gap:8px;
      font-size:14px;
      color: var(--text);
    }

    .help{
      font-size: 12px;
      color: var(--muted);
      margin-top: 6px;
    }

    .actions{
      display:flex;
      gap: 10px;
      justify-content: flex-end;
      padding-top: 6px;
    }

    button{
      appearance: none;
      border: 0;
      padding: 12px 18px;
      border-radius: 999px;
      font-weight: 600;
      cursor: pointer;
      transition: transform .02s ease, box-shadow .2s;
    }
    .btn-primary{
      background: var(--primary);
      color: #fff;
      box-shadow: 0 8px 24px rgba(37, 99, 235, .25);
    }
    .btn-primary:hover{ background: var(--primary-600); }
    .btn-primary:active{ transform: translateY(1px); }

    .btn-light{
      background: #f3f4f6;
      color: #111827;
      border: 1px solid var(--border);
    }

    .req{
      color: #ef4444;
      margin-left: 2px;
    }

    /* Small footer note */
    .footnote{
      text-align: center;
      font-size: 12px;
      color: var(--muted);
      margin-top: 8px;
    }
