/* 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;
  }
}
/* 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", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-hero-section {
  background: linear-gradient(135deg, #244d98 0%, #3d71cc 100%);
  color: white;
  text-align: center;
  padding: 25px 0;
  position: relative;
  overflow: hidden;
}

.about-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(./../../images/about_bg.jpg) no-repeat center;
  background-size: cover;
  opacity: 0.3;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 575px) {
  .about-hero-title {
    font-size: 2rem;
  }
}

.about-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  opacity: 0.9;
  color: #ffc107;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.about-hero-description {
  font-size: 1rem;
  opacity: 0.8;
  width: 620px;
  margin: 0 auto;
}
@media screen and (max-width: 575px) {
  .about-hero-description {
    width: 330px;
  }
}

.about-section {
  padding: 30px 0;
}

.section:nth-child(even) {
  background-color: white;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1e3c72;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #ffd700, #ff8c00);
  margin: 20px auto;
  border-radius: 2px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin: 50px 0;
}

.content-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-left: 5px solid #ffd700;
}

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

.content-card h3 {
  color: #1e3c72;
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #1e3c72, #2a5298);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 50px 0;
}

.facility-item {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.facility-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #ffd700;
}

.facility-item h4 {
  color: #1e3c72;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.leadership-section {
  background: linear-gradient(135deg, #ffd700 0%, #e69b3f 70%);
  text-align: center;
  padding: 40px 20px;
  border-radius: 15px;
  margin: 50px 0;
}

.principal-info {
  max-width: 600px;
  margin: 0 auto;
}

.principal-info h3 {
  color: #1e3c72;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.principal-info p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .content-grid,
  .stats-grid,
  .facilities-grid {
    grid-template-columns: 1fr;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=about.css.map */