@charset "UTF-8";
/* Base Styles */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css");
body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
  color: #fff;
}

.largeText {
  font-size: 3rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .largeText {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 480px) {
  .largeText {
    font-size: 1.75rem !important; /* Slightly larger for small devices (e.g., small tablets) */
  }
}
@media (min-width: 768px) {
  .largeText {
    font-size: 2rem !important;
  }
}
@media (min-width: 1200px) {
  .largeText {
    font-size: 3rem !important;
  }
}
@media (min-width: 2400px) {
  .largeText {
    font-size: 4rem !important;
  }
}

.mediumText {
  font-size: 2rem !important;
}
@media only screen and (max-width: 767px) {
  .mediumText {
    font-size: 1rem !important;
  }
}
@media (min-width: 500px) {
  .mediumText {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 768px) {
  .mediumText {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 1200px) {
  .mediumText {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 2400px) {
  .mediumText {
    font-size: 2.5rem !important;
  }
}

/* Default Typography */
@media only screen and (max-width: 767px) {
  h1 h1,
  h2 h1,
  h3 h1,
  h4 h1,
  h5 h1,
  h6 h1 {
    font-size: 1.75rem !important;
  }
  h1 h2,
  h2 h2,
  h3 h2,
  h4 h2,
  h5 h2,
  h6 h2 {
    font-size: 1.65rem !important;
  }
  h1 h3,
  h2 h3,
  h3 h3,
  h4 h3,
  h5 h3,
  h6 h3 {
    font-size: 1.5rem !important;
  }
  h1 h4,
  h2 h4,
  h3 h4,
  h4 h4,
  h5 h4,
  h6 h4 {
    font-size: 1.35rem !important;
  }
  h1 h5,
  h2 h5,
  h3 h5,
  h4 h5,
  h5 h5,
  h6 h5 {
    font-size: 1.25rem !important;
  }
  h1 h6,
  h2 h6,
  h3 h6,
  h4 h6,
  h5 h6,
  h6 h6 {
    font-size: 1.15rem !important;
  }
}

p {
  font-weight: 500;
  margin: 0.5em 0;
}

/* Responsive Typography */
/* Mobile (default styles for smaller screens) */
@media only screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 0.75rem;
  }
  h4 {
    font-size: 0.85rem;
  }
  h5 {
    font-size: 0.75rem;
  }
  h6 {
    font-size: 0.65rem;
  }
  a,
  p,
  li,
  span,
  input,
  button {
    font-size: 1rem; /* Relative to the base font size (16px) */
    line-height: 1.5;
  }
}
/* Typography for a, p, and li */
a,
p,
li,
span,
input,
button {
  font-size: 1rem; /* Relative to the base font size (16px) */
  line-height: 1.5;
}

/* Laptop */
@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2.25rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.75rem;
  }
  h5 {
    font-size: 1.5rem;
  }
  h6 {
    font-size: 1.25rem;
  }
  a,
  p,
  li,
  span,
  input,
  button {
    font-size: 1rem; /* Consistent with body size */
  }
}
/* Desktop Screens */
@media (min-width: 1200px) {
  body {
    font-size: 16px; /* Larger base font size for desktops */
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1.25rem;
  }
  h6 {
    font-size: 1rem;
  }
  a,
  p,
  li,
  i,
  span,
  input,
  button {
    font-size: 1.1rem; /* Slightly increase relative font size */
    font-size: clamp(1rem, 0.8rem + 0.1vw, 2rem);
  }
}
/* 4K Screens */
@media (min-width: 2400px) {
  body {
    font-size: 24px; /* Significant base font size increase for 4K */
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 2rem;
  }
  h5 {
    font-size: 1.75rem;
  }
  h6 {
    font-size: 1.5rem;
  }
  div {
    font-weight: 500;
    letter-spacing: 1.1;
    font-size: clamp(1rem, 1rem + 0.4vw, 2rem) !important;
  }
  a,
  p,
  li,
  span,
  input,
  button {
    font-weight: 500;
    letter-spacing: 1.1;
    font-size: clamp(1rem, 1rem + 0.6vw, 2rem) !important;
  }
}
/* Base Styles */
body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
  color: #fff;
}

.largeText {
  font-size: 3rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .largeText {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 480px) {
  .largeText {
    font-size: 1.75rem !important; /* Slightly larger for small devices (e.g., small tablets) */
  }
}
@media (min-width: 768px) {
  .largeText {
    font-size: 2rem !important;
  }
}
@media (min-width: 1200px) {
  .largeText {
    font-size: 3rem !important;
  }
}
@media (min-width: 2400px) {
  .largeText {
    font-size: 4rem !important;
  }
}

.mediumText {
  font-size: 2rem !important;
}
@media only screen and (max-width: 767px) {
  .mediumText {
    font-size: 1rem !important;
  }
}
@media (min-width: 500px) {
  .mediumText {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 768px) {
  .mediumText {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 1200px) {
  .mediumText {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 2400px) {
  .mediumText {
    font-size: 2.5rem !important;
  }
}

/* Default Typography */
@media only screen and (max-width: 767px) {
  h1 h1,
  h2 h1,
  h3 h1,
  h4 h1,
  h5 h1,
  h6 h1 {
    font-size: 1.75rem !important;
  }
  h1 h2,
  h2 h2,
  h3 h2,
  h4 h2,
  h5 h2,
  h6 h2 {
    font-size: 1.65rem !important;
  }
  h1 h3,
  h2 h3,
  h3 h3,
  h4 h3,
  h5 h3,
  h6 h3 {
    font-size: 1.5rem !important;
  }
  h1 h4,
  h2 h4,
  h3 h4,
  h4 h4,
  h5 h4,
  h6 h4 {
    font-size: 1.35rem !important;
  }
  h1 h5,
  h2 h5,
  h3 h5,
  h4 h5,
  h5 h5,
  h6 h5 {
    font-size: 1.25rem !important;
  }
  h1 h6,
  h2 h6,
  h3 h6,
  h4 h6,
  h5 h6,
  h6 h6 {
    font-size: 1.15rem !important;
  }
}

p {
  font-weight: 500;
  margin: 0.5em 0;
}

/* Responsive Typography */
/* Mobile (default styles for smaller screens) */
@media only screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 0.75rem;
  }
  h4 {
    font-size: 0.85rem;
  }
  h5 {
    font-size: 0.75rem;
  }
  h6 {
    font-size: 0.65rem;
  }
  a,
  p,
  li,
  span,
  input,
  button {
    font-size: 1rem; /* Relative to the base font size (16px) */
    line-height: 1.5;
  }
}
/* Typography for a, p, and li */
a,
p,
li,
span,
input,
button {
  font-size: 1rem; /* Relative to the base font size (16px) */
  line-height: 1.5;
}

/* Laptop */
@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2.25rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.75rem;
  }
  h5 {
    font-size: 1.5rem;
  }
  h6 {
    font-size: 1.25rem;
  }
  a,
  p,
  li,
  span,
  input,
  button {
    font-size: 1rem; /* Consistent with body size */
  }
}
/* Desktop Screens */
@media (min-width: 1200px) {
  body {
    font-size: 16px; /* Larger base font size for desktops */
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1.25rem;
  }
  h6 {
    font-size: 1rem;
  }
  a,
  p,
  li,
  i,
  span,
  input,
  button {
    font-size: 1.1rem; /* Slightly increase relative font size */
    font-size: clamp(1rem, 0.8rem + 0.1vw, 2rem);
  }
}
/* 4K Screens */
@media (min-width: 2400px) {
  body {
    font-size: 24px; /* Significant base font size increase for 4K */
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 2rem;
  }
  h5 {
    font-size: 1.75rem;
  }
  h6 {
    font-size: 1.5rem;
  }
  div {
    font-weight: 500;
    letter-spacing: 1.1;
    font-size: clamp(1rem, 1rem + 0.4vw, 2rem) !important;
  }
  a,
  p,
  li,
  span,
  input,
  button {
    font-weight: 500;
    letter-spacing: 1.1;
    font-size: clamp(1rem, 1rem + 0.6vw, 2rem) !important;
  }
}
* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font-family: "Poppins", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: right;
}

.child {
  flex: 1;
}

.no-flex {
  flex: none;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.center {
  text-align: center;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify_end {
  justify-content: flex-end;
}

.w100 {
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  .w100 {
    width: 100%;
  }
}

.w95 {
  width: 95%;
}
@media only screen and (max-width: 1199px) {
  .w95 {
    width: 100%;
  }
}

.w90 {
  width: 90%;
}
@media only screen and (max-width: 1199px) {
  .w90 {
    width: 100%;
  }
}

.w85 {
  width: 85%;
}
@media only screen and (max-width: 1199px) {
  .w85 {
    width: 100%;
  }
}

.w80 {
  width: 80%;
}
@media only screen and (max-width: 1199px) {
  .w80 {
    width: 95%;
  }
}

.w75 {
  width: 75%;
}
@media only screen and (max-width: 1199px) {
  .w75 {
    width: 100%;
  }
}

.w70 {
  width: 70%;
}
@media only screen and (max-width: 767px) {
  .w70 {
    width: 70%;
  }
}
@media only screen and (max-width: 575px) {
  .w70 {
    width: 100%;
  }
}

.w65 {
  width: 65%;
}

.w60 {
  width: 60%;
}

.w55 {
  width: 55%;
}
@media only screen and (max-width: 991px) {
  .w55 {
    width: 100%;
  }
}

.w50 {
  width: 50%;
}

.w48 {
  width: 48%;
}

.w45 {
  width: 45%;
}

.w40 {
  width: 40%;
}

.w35 {
  width: 35%;
}

.w30 {
  width: 30%;
}
@media only screen and (max-width: 991px) {
  .w30 {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .w30 {
    width: 70%;
  }
}
@media only screen and (max-width: 575px) {
  .w30 {
    width: 100%;
  }
}

.w25 {
  width: 25%;
}
@media only screen and (max-width: 991px) {
  .w25 {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .w25 {
    width: 70%;
  }
}
@media only screen and (max-width: 575px) {
  .w25 {
    width: 100%;
  }
}

.w20 {
  width: 20%;
}
@media only screen and (max-width: 991px) {
  .w20 {
    width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  .w20 {
    width: 50%;
  }
}
@media only screen and (max-width: 575px) {
  .w20 {
    width: 100%;
  }
}

.w15 {
  width: 15%;
}
@media only screen and (max-width: 1199px) {
  .w15 {
    width: 100%;
  }
}

.w10 {
  width: 10%;
}
@media only screen and (max-width: 1199px) {
  .w10 {
    width: 100%;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #fff;
  color: #333;
}

/* Top Bar */
.top-bar {
  background-color: #f5f5f5;
  padding: 5px 3%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 575px) {
  .top-bar .top-left {
    width: 100%;
  }
}
@media screen and (max-width: 320px) {
  .top-bar .top-left {
    width: 80%;
  }
}
.top-bar .top-left p {
  font-size: 0.8rem;
}
@media screen and (max-width: 768px) {
  .top-bar .top-left p {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 575px) {
  .top-bar .top-left p {
    font-size: 0.8rem;
  }
}
.top-bar .top-left p .my-icon {
  color: #4caf50;
  font-size: 0.8rem;
}
.top-bar .top-right {
  justify-items: flex-end;
  padding-right: 10px;
  font-size: 0.8rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .top-bar .top-right {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 575px) {
  .top-bar .top-right {
    font-size: 0.8rem;
  }
}
.top-bar .top-right .discloser {
  color: rgb(80, 80, 223);
  font-size: 0.9rem;
}
@media screen and (max-width: 768px) {
  .top-bar .top-right .discloser {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 575px) {
  .top-bar .top-right .discloser {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 575px) {
  .top-bar .top-right {
    width: 100%;
    text-align: left;
  }
}

/* Header Section */
.main-header {
  padding: 10px 3%;
  background-color: #ffffff;
  border-bottom: 1.5px solid #ddd;
}
.main-header .logo-section {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .main-header .logo-section {
    width: 85%;
  }
}
@media screen and (max-width: 575px) {
  .main-header .logo-section {
    width: 75%;
  }
}
.main-header .logo-section img {
  height: 75px;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .main-header .logo-section img {
    height: 60px;
  }
}
@media screen and (max-width: 575px) {
  .main-header .logo-section img {
    height: 45px;
  }
}
.main-header .logo-section .school-name h1 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: -8px;
}
@media screen and (max-width: 768px) {
  .main-header .logo-section .school-name h1 {
    font-size: 1.8rem;
    width: 90%;
    line-height: 1.4;
  }
}
@media screen and (max-width: 575px) {
  .main-header .logo-section .school-name h1 {
    font-size: 1.3rem;
    width: 90%;
    line-height: 1.4;
  }
}
@media screen and (max-width: 376px) {
  .main-header .logo-section .school-name h1 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 320px) {
  .main-header .logo-section .school-name h1 {
    font-size: 0.9rem;
  }
}
.main-header .logo-section p {
  font-size: 0.9rem;
  color: #333;
}

.nav-section {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .nav-section {
    display: none;
  }
}
.nav-section .nav-links {
  list-style: none;
  display: inline-flex;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .nav-section .nav-links {
    display: none;
  }
}
.nav-section .nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.nav-section .nav-links .enroll-btn {
  background-color: #4caf50;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 4px;
}
.nav-section .nav-links .enroll-btn:hover {
  background-color: #ffc107;
}

.main-nav {
  display: none;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  background-color: antiquewhite;
}
.main-nav a.enroll-btn {
  background: #4caf50;
  color: #fff;
  padding: 6px 15px;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .main-nav {
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  position: absolute;
  right: 3rem;
  top: 2rem;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    top: 4rem;
  }
}
@media screen and (max-width: 575px) {
  .menu-toggle {
    top: 5rem;
  }
}
@media screen and (max-width: 320px) {
  .menu-toggle {
    top: 8rem;
  }
}

/*slider */
.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: #f2f2f2;
}
.slider-container .slider {
  display: flex;
  width: 100%;
  transition: transform 1s ease-in-out;
  will-change: transform;
}
.slider-container .slide {
  flex: 0 0 100%;
}
.slider-container .slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.slider-container .buttons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  bottom: 5rem;
  gap: 1rem;
}
.slider-container .buttons .apply {
  background: #28a745;
  color: white;
}
.slider-container .buttons .enrolled {
  background: #ffc107;
  color: black;
}
.slider-container .buttons button {
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.slider-container .buttons button:hover {
  opacity: 0.9;
}

.mobile-image {
  display: none;
}
.mobile-image img {
  width: 100%;
  height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media screen and (max-width: 767px) {
  .slider {
    display: none !important;
  }
  .mobile-image {
    display: block;
  }
}
.why-choose {
  text-align: center;
  padding: 10px 20px 60px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  .why-choose {
    padding: 32px 20px 60px;
  }
}
.why-choose .border {
  width: 280px;
  height: 4px;
  background: #ff7f27;
  margin: -28px auto 30px;
}
@media screen and (max-width: 768px) {
  .why-choose .border {
    margin-top: 12rem;
  }
}
.why-choose h2 {
  font-size: 28px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .why-choose h2 {
    font-size: 23px;
    margin-bottom: -9.5rem;
    margin-left: 5px;
    width: 80%;
  }
}
@media screen and (max-width: 425px) {
  .why-choose h2 {
    width: 100%;
  }
}
.why-choose .features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 45px;
  margin-top: 2.5rem;
}
.why-choose .features .feature-box {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  width: 340px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .why-choose .features .feature-box {
    width: 315px;
  }
}
@media screen and (max-width: 425px) {
  .why-choose .features .feature-box {
    width: 80%;
  }
}
.why-choose .features .feature-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.why-choose .features .feature-box p {
  font-size: 14px;
  color: #555;
}

.why-choose-image {
  position: relative;
  display: inline-block;
  margin: 30px auto;
  width: 60%;
}
@media screen and (max-width: 768px) {
  .why-choose-image {
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .why-choose-image {
    display: none;
  }
}

.marquee-content {
  position: absolute;
  bottom: -36rem;
  left: 48%;
  z-index: 5;
  transform: translateX(-50%);
  width: 35%;
  color: #4caf50;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .marquee-content {
    bottom: -50rem;
  }
}
@media screen and (max-width: 425px) {
  .marquee-content {
    display: none;
  }
}

.marquee-subcontent {
  position: absolute;
  bottom: -37rem;
  left: 48%;
  z-index: 5;
  transform: translateX(-50%);
  width: 35%;
  color: chocolate;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .marquee-subcontent {
    bottom: -51rem;
  }
}
@media screen and (max-width: 768px) {
  .marquee-subcontent {
    font-size: 11px;
    bottom: -61.6rem;
    width: 65%;
    margin-left: 5px;
  }
}
@media screen and (max-width: 425px) {
  .marquee-subcontent {
    display: none;
  }
}

.marquee-content-up {
  position: absolute;
  bottom: -42rem;
  left: 48%;
  z-index: 5;
  transform: translateX(-50%);
  width: 35%;
  margin: 0 auto;
  color: #4caf50;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .marquee-content-up {
    bottom: -57rem;
  }
}
@media screen and (max-width: 768px) {
  .marquee-content-up {
    bottom: -66rem;
    width: 55%;
  }
}
@media screen and (max-width: 425px) {
  .marquee-content-up {
    display: none;
  }
}
.marquee-content-up h4 {
  color: #ffc107;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .marquee-content-up h4 {
    font-size: 14px;
  }
}

.school-info {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 5%;
  background: #ddd;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .school-info {
    flex-direction: column;
    align-items: center;
  }
}
.school-info .info-left {
  flex: 1;
  padding: 10px;
}
.school-info .info-left p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}
.school-info .info-left .info-buttons-prm,
.school-info .info-left .info-buttons-sec {
  margin-top: 20px;
  text-align: center;
  gap: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.school-info .info-left .btn {
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin: 10px;
  font-size: 14px;
  display: inline-block;
}
.school-info .info-left .btn.green {
  background-color: #4caf50;
  color: white;
}
.school-info .info-left .btn.gray {
  background-color: #ccc;
  color: black;
}
.school-info .info-left .btn.light {
  background-color: #eee;
  color: #333;
}
@media screen and (max-width: 1024px) {
  .school-info .info-left {
    width: 100%;
    text-align: center;
  }
}
.school-info .info-center {
  flex: 1;
  padding: 20px;
  max-width: 100%;
  text-align: center;
}
.school-info .info-center img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border: 1.5px solid #444;
  border-radius: 5px;
  box-shadow: rgba(158, 110, 110, 0.24) 0px 3px 8px;
}
.school-info .info-right {
  background-color: #666;
  padding: 15px;
  position: relative;
  display: flex;
  justify-content: center;
}
.school-info .info-right .admission-box {
  background-color: #999;
  padding: 40px 30px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  box-shadow: 4px 4px 0 #666;
  border: 2px solid #555;
  max-width: 500px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.school-info .info-right .admission-box h2 {
  margin: 0 0 15px;
  font-size: 2rem;
}
.school-info .info-right .admission-box p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.school-info .info-right .admission-box .call-btn {
  background-color: #ffc107;
  padding: 12px 24px;
  border-radius: 10px;
  margin-top: 20px;
  display: inline-block;
  font-weight: bold;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}
.school-info .info-right .admission-box .call-btn:hover {
  background-color: rgb(211, 158.25, 0);
}
.school-info .info-right::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid yellow;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .school-info .info-right .admission-box {
    padding: 25px 15px;
  }
  .school-info .info-right .admission-box h2 {
    font-size: 1.5rem;
  }
  .school-info .info-right .admission-box p {
    font-size: 1rem;
  }
  .school-info .info-right .admission-box .call-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
  .school-info .info-right::before {
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
  }
}
@media screen and (max-width: 480px) {
  .school-info .info-right .admission-box {
    font-size: 1rem;
  }
  .school-info .info-right .admission-box h2 {
    font-size: 1.3rem;
  }
  .school-info .info-right .admission-box .call-btn {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
  }
}

.infrastructure-section {
  padding: 40px 20px;
  text-align: center;
}
.infrastructure-section .section-title {
  font-size: 2rem;
  text-shadow: #eaef56 0px 0px 3px;
  color: #4caf50;
  font-weight: bold;
  margin-bottom: 30px;
}
.infrastructure-section .infrastructure-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.infrastructure-section .infrastructure-container .infrastructure-image {
  width: 450px;
  max-width: 100%;
  height: 310px;
  margin-top: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.infrastructure-section .infrastructure-container .infrastructure-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.infrastructure-section .infras {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 15px;
}
.infrastructure-section .infras .infra-item {
  background-color: #ffffff;
  padding: 15px 10px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  width: 160px;
}
.infrastructure-section .infras .infra-item img {
  width: 100px;
  height: 70px;
  margin-bottom: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
.infrastructure-section .infras .infra-item p {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 375px) {
  .infrastructure-section .infras .infra-item p {
    font-size: 16px;
  }
}
.infrastructure-section .infras .infra-item p a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
@media screen and (max-width: 375px) {
  .infrastructure-section .infras .infra-item p a {
    font-size: 16px;
  }
}
.infrastructure-section .infras .infra-item p a:hover {
  color: #4caf50;
}
@media screen and (max-width: 768px) {
  .infrastructure-section .infras {
    gap: 20px;
  }
  .infrastructure-section .infras .infra-item {
    width: 140px;
    padding: 12px 8px;
  }
  .infrastructure-section .infras .infra-item img {
    width: 80px;
    height: 60px;
  }
  .infrastructure-section .infras .infra-item p,
  .infrastructure-section .infras .infra-item p a {
    font-size: 13px;
  }
}
@media screen and (max-width: 425px) {
  .infrastructure-section .infras {
    justify-content: center;
  }
  .infrastructure-section .infras .infra-item {
    width: 45%;
    max-width: 180px;
  }
  .infrastructure-section .infras .infra-item p,
  .infrastructure-section .infras .infra-item p a {
    font-size: 16px;
  }
}

/* Life at School Section */
.life-section {
  background: #f5f5f5;
  padding: 40px 20px;
  text-align: center;
  overflow: hidden;
}
.life-section h2 {
  font-size: 2.5rem;
  color: #0a8a1f;
  margin-bottom: 40px;
}
.life-section .life-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px 6%;
}
.life-section .life-slider .slides {
  display: flex;
  transition: transform 0.5s ease;
  gap: 25px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* hide scrollbar in Firefox */
  -ms-overflow-style: none; /* hide scrollbar in IE 10+ */
}
.life-section .life-slider .slides::-webkit-scrollbar {
  display: none; /* hide scrollbar in Chrome, Safari and Opera */
}
.life-section .life-slider .slides .card {
  background: #fff;
  min-width: 330px;
  max-width: 330px;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  scroll-snap-align: center;
  text-align: center;
}
@media screen and (max-width: 376px) {
  .life-section .life-slider .slides .card {
    min-width: 280px;
    max-width: 280px;
    padding: 20px 15px;
  }
}
.life-section .life-slider .slides .card .icon {
  font-size: 40px;
  margin-bottom: 20px;
}
.life-section .life-slider .slides .card h3 a {
  text-decoration: none;
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: bold;
}
.life-section .life-slider .slides .card p {
  font-size: 1rem;
  color: #555;
}
.life-section .life-slider .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid green;
  color: green;
  padding: 8px 12px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 2;
}
.life-section .life-slider .nav.prev {
  left: 10px;
}
.life-section .life-slider .nav.next {
  right: 10px;
}
@media (max-width: 480px) {
  .life-section .slider {
    padding: 0 10px;
  }
  .life-section .slider .slides {
    gap: 15px;
  }
  .life-section .slider .slides .card {
    min-width: 280px;
    max-width: 100%;
    padding: 20px 15px;
  }
  .life-section .slider .nav {
    display: none;
  }
  .life-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}

.external-links-section {
  padding: 40px;
  background: #f9f9f9;
  text-align: center;
}
.external-links-section h2 {
  color: #2e7d32;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.external-links-section .resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .external-links-section .resources-grid {
    display: flex;
    flex-direction: row;
  }
}
.external-links-section .resource-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  max-width: 300px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .external-links-section .resource-card {
    width: 290px;
  }
}
@media screen and (max-width: 768px) {
  .external-links-section .resource-card {
    width: 407px;
  }
}
.external-links-section .resource-card img {
  width: 100px;
  margin-bottom: 20px;
}
.external-links-section .resource-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
}
.external-links-section .resource-card p {
  font-size: 0.95rem;
  color: #666;
  min-height: 50px;
}
.external-links-section .resource-card .resource-link {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 20px;
  background-color: #43a047;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s;
}
.external-links-section .resource-card .resource-link:hover {
  background-color: #2e7d32;
}
.external-links-section .resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* School Summary Section */
.school-summary-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  padding: 40px 20px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .school-summary-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.school-summary-wrapper .school-summary-image {
  flex: 1 1 45%;
  /* margin-top: 40px; */
  max-width: 600px;
}
.school-summary-wrapper .school-summary-image img {
  width: 100%;
  height: 530px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .school-summary-wrapper .school-summary-image img {
    height: 407px;
    margin-top: 57px;
  }
}
@media screen and (max-width: 575px) {
  .school-summary-wrapper .school-summary-image img {
    height: auto;
    margin-top: 57px;
  }
}
.school-summary-wrapper .school-summary-content {
  flex: 1 1 45%;
}
.school-summary-wrapper .school-summary-content h2 {
  font-size: 1.9rem;
  margin-bottom: 5px;
  font-weight: 800;
}
.school-summary-wrapper .school-summary-content p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 376px) {
  .school-summary-wrapper .school-summary-content p {
    text-align: justify;
    font-size: 0.88rem;
  }
}
.school-summary-wrapper .school-summary-content .school-summary-highlights {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}
.school-summary-wrapper .school-summary-content .school-summary-highlights li {
  margin-bottom: 10px;
  font-weight: 600;
  padding-left: 20px;
  position: relative;
}
.school-summary-wrapper .school-summary-content .school-summary-highlights li ::before {
  /* content: "📍"; */
  position: absolute;
  left: 0;
}
.school-summary-wrapper .school-summary-content .school-summary-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}
@media screen and (max-width: 425px) {
  .school-summary-wrapper .school-summary-content .school-summary-links {
    flex-direction: column;
    width: 60%;
    margin: auto;
  }
}
@media screen and (max-width: 376px) {
  .school-summary-wrapper .school-summary-content .school-summary-links {
    width: 80%;
  }
}
.school-summary-wrapper .school-summary-content .school-summary-links a {
  flex: 1 1 30%;
  text-align: center;
  background-color: #2a9d8f;
  color: #fff;
  text-decoration: none;
  padding: 0px 0px 10px 0px;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  transition: background-color 0.3s;
}
.school-summary-wrapper .school-summary-content .school-summary-links a:hover {
  background-color: #21867a;
}
@media screen and (max-width: 768px) {
  .school-summary-wrapper .school-summary-content .school-summary-links a {
    flex: 1 1 29%;
  }
}
.school-summary-wrapper .school-summary-content .school-summary-links img {
  width: 100%;
  height: 150px;
  margin-bottom: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px 5px 0px 0px;
  border: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .school-summary-wrapper .school-summary-content .school-summary-links img {
    height: 95px;
  }
}
@media screen and (max-width: 376px) {
  .school-summary-wrapper .school-summary-content .school-summary-links img {
    height: 170px;
  }
}

.student-feedback-area {
  padding: 0px 20px 30px 10px;
  font-family: Arial, sans-serif;
  background-color: #f2f8f8;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  margin-bottom: 10px;
  text-align: center;
}
.student-feedback-area h2 {
  padding-top: 25px;
  font-size: 2rem;
  color: #4caf50;
  margin-bottom: 30px;
  font-weight: bold;
}
.student-feedback-area .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .student-feedback-area .testimonial-grid {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .student-feedback-area .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
}
.student-feedback-area .testimonial-grid .testimonial-card {
  background: url("./../../images/frontbg.png") center/cover no-repeat;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  height: auto;
}
.student-feedback-area .testimonial-grid .testimonial-card p {
  font-size: 0.94rem;
  text-align: left;
  padding: 20px 20px 0px 20px;
  color: #444;
  line-height: 1.5;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .student-feedback-area .testimonial-grid .testimonial-card p {
    font-size: 0.85rem;
    padding: 15px;
  }
}
.student-feedback-area .testimonial-grid .testimonial-card .testimonial-author {
  margin-top: 8px;
  font-weight: bold;
  text-align: right;
  margin-bottom: 5px;
  padding-right: 30px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .student-feedback-area .testimonial-grid .testimonial-card .testimonial-author {
    font-size: 1rem;
    padding-right: 15px;
  }
}
.student-feedback-area .testimonial-button {
  margin-top: 30px;
  padding: 5px;
}
.student-feedback-area .testimonial-button a {
  background-color: red;
  color: #fff;
  text-decoration: none;
  padding: 10px 25px;
  font-size: 14px;
  border-radius: 25px;
  display: inline-block;
  font-weight: bold;
  transition: background-color 0.3s;
}
.student-feedback-area .testimonial-button a:hover {
  background-color: darkred;
}

.conduct {
  background: #dedede;
  padding: 2rem;
}
.conduct .conduct-header {
  text-align: center;
  margin-bottom: 2rem;
}
.conduct .conduct-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.conduct .conduct-header p {
  font-size: 1rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}
.conduct .conduct-conatiner {
  background-color: #f2f8f8;
  padding: 10px 0px;
  border-radius: 5px;
  margin: 0px 3%;
}
@media screen and (max-width: 425px) {
  .conduct .conduct-conatiner {
    margin: 0px 1%;
    width: 100%;
  }
}
.conduct .conduct-conatiner .conduct-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 1.5rem;
  margin: 0 2%;
}
@media screen and (max-width: 768px) {
  .conduct .conduct-conatiner .conduct-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
.conduct .conduct-conatiner-bottom {
  background-color: #f2f8f8;
  padding: 10px 0px;
  border-radius: 5px;
  margin: 15px 15%;
}
@media screen and (max-width: 425px) {
  .conduct .conduct-conatiner-bottom {
    margin: 15px 2%;
    width: 100%;
  }
}
.conduct .conduct-conatiner-bottom .conduct-grid-bottom {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 5px 2%;
}
.conduct .conduct-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.conduct .conduct-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #222;
}
@media screen and (max-width: 768px) {
  .conduct .conduct-card h3 {
    font-size: 1rem;
  }
}
.conduct .conduct-card ul {
  list-style: none;
  padding: 0;
}
.conduct .conduct-card ul li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.conduct .conduct-card ul li strong {
  color: #000;
}

/* Gallery Section */
.gallery-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
  background: #f9f9f9;
}
.gallery-section h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #4caf50;
}
.gallery-section .gallery-subtitle {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 30px;
  margin-top: -8px;
}
.gallery-section .gallery-grid {
  display: flex;
  gap: 50px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .gallery-section .gallery-grid {
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .gallery-section .gallery-grid {
    flex-direction: column;
    align-items: center;
  }
}
.gallery-section .gallery-grid .gallery-card {
  position: relative;
  width: 400px;
  max-width: 400px;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 425px) {
  .gallery-section .gallery-grid .gallery-card {
    width: 90%;
    max-width: 100%;
  }
}
.gallery-section .gallery-grid .gallery-card img {
  width: 100%;
  display: block;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.gallery-section .gallery-grid .gallery-card .goverlay1 {
  position: absolute;
  bottom: -3.5rem;
  width: 100%;
  height: 125px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 60%;
  color: white;
  text-align: center;
  line-height: 100px; /* adjust to center text vertically */
  font-size: 20px;
}

.footer-wrapper {
  background-color: #f4f4f4;
  font-family: Arial, sans-serif;
  padding: 40px 20px 10px;
  color: #333;
}
.footer-wrapper .footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.footer-wrapper .footer-flex .footer-column {
  flex: 1 1 220px;
}
.footer-wrapper .footer-flex .footer-column .footer-logo {
  max-width: 150px;
  width: 35%;
  margin-left: 60px;
}
.footer-wrapper .footer-flex .footer-column .footer-heading {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: #000;
}
.footer-wrapper .footer-flex .footer-column .footer-icon {
  display: flex;
  align-items: center;
}
.footer-wrapper .footer-flex .footer-column .footer-icon i {
  font-size: 18px;
  color: #4caf50;
}
.footer-wrapper .footer-flex .footer-column .footer-icon p {
  padding: 0px 10px;
}
.footer-wrapper .footer-flex .footer-column .footer-text,
.footer-wrapper .footer-flex .footer-column .footer-link {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}
.footer-wrapper .footer-flex .footer-column .footer-icons {
  margin-top: 15px;
}
.footer-wrapper .footer-flex .footer-column .footer-icons i {
  font-size: 18px;
  margin-right: 10px;
  color: #333;
  cursor: pointer;
}
.footer-wrapper .footer-flex .footer-column .footer-map {
  width: 100%;
  height: 150px;
  border: 0;
}
.footer-wrapper .footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-top: 30px;
  border-top: 1px solid #ccc;
  padding-top: 15px;
}
.footer-wrapper .footer-bottom .footer-designer {
  padding: 10px;
  font-weight: bold;
  /* border-top: 0.5px solid #666;s */
}/*# sourceMappingURL=index.css.map */