/* 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%;
  }
}

.banner {
  background: url("./../../images/academics.webp") no-repeat center center/cover;
  height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 40px;
  text-align: center;
  color: #fff;
  width: 100%;
  height: 150px;
  margin-top: 8rem;
}

.overlay h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  margin-top: -30px;
}
@media screen and (max-width: 768px) {
  .overlay h1 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .overlay h1 {
    font-size: 1rem;
  }
}

.overlay h2 {
  font-size: 1.5rem;
  color: #ffc107;
  text-shadow: #dcdbdb 0px 0px 15px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 500px) {
  .overlay h2 {
    font-size: 1rem;
  }
}

.cta-button {
  background-color: red;
  color: white;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  border: none;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: darkred;
}

/* about section start here*/
.image-text-section {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 4rem 2% 6rem 2%;
  background: #dcdbdb;
  box-shadow: #727473 0px 0px 10px 0px;
}
@media screen and (max-width: 376px) {
  .image-text-section {
    flex-direction: column;
  }
}

.images {
  position: relative;
  /* border: 10px solid red; */
  width: 50%;
  /* background-color: #d90429; */
}

.img1 {
  width: 430px;
  border-radius: 10px;
  margin-left: 10px;
}
@media screen and (max-width: 1024px) {
  .img1 {
    width: 350px;
  }
}
@media screen and (max-width: 768px) {
  .img1 {
    width: 285px;
  }
}
@media screen and (max-width: 376px) {
  .img1 {
    margin-left: -3rem;
  }
}

.img2 {
  width: 350px;
  position: absolute;
  top: 150px;
  left: 170px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
  .img2 {
    width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .img2 {
    width: 200px;
  }
}
@media screen and (max-width: 376px) {
  .img2 {
    display: none;
  }
}

.text-content {
  max-width: 600px;
  width: 50%;
}
@media screen and (max-width: 376px) {
  .text-content {
    width: 80%;
  }
}

.text-content h2 {
  font-size: 36px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .text-content h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 376px) {
  .text-content h2 {
    font-size: 23px;
    line-height: 2.5;
  }
}

.text-content span {
  font-size: 30px;
  font-weight: 500;
  background-color: #2e7d32;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-style: italic;
}
@media screen and (max-width: 376px) {
  .text-content span {
    margin-left: 5rem;
  }
}

.text-content p {
  font-size: 16px;
  color: #555;
  margin-top: 0.5rem;
  line-height: 1.6;
}

.text-content ul {
  list-style: none;
  list-style-type: square;
  margin-top: 1rem;
}

.text-content ul li {
  font-size: 16px;
  color: #555;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* academic year section start here */
.year-structure {
  padding: 4%;
  text-align: center;
}

.year-structure h2 {
  font-size: 2.5rem;
  color: #4caf50;
  /* margin-bottom: 5px; */
}

.year-structure p {
  font-size: 18px;
  color: #555;
  width: 100%;
}

.terms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .terms {
    gap: 2rem;
  }
}

.term {
  background: #fff;
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  width: 290px;
  height: 190px;
  text-align: center;
  justify-items: anchor-center;
}
@media screen and (max-width: 768px) {
  .term {
    width: 330px;
  }
}

.term img {
  width: 50px;
  margin-bottom: 1rem;
}

.term h3 {
  margin-bottom: 0.5rem;
  color: #000;
}

/* academics */
.section-title {
  text-align: center;
  color: #4caf50;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.faculty-section {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
  background: #f9f9f9;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .faculty-section {
    display: block;
  }
}

.faculty-content {
  flex: 1;
  min-width: 300px;
  padding: 1rem;
}

.faculty-image {
  flex: 1;
  text-align: center;
}

.faculty-image img {
  width: 93%;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .faculty-image img {
    width: 60%;
  }
}
@media screen and (max-width: 376px) {
  .faculty-image img {
    width: 95%;
  }
}

ul {
  padding-left: 20px;
  margin-top: 1rem;
  line-height: 2;
}

.team-button {
  background-color: #d90429;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  margin: 24px 0;
}
@media screen and (max-width: 768px) {
  .team-button {
    margin: 24px 247px;
  }
}
@media screen and (max-width: 376px) {
  .team-button {
    margin: 24px 62px;
  }
}

.academics-section {
  padding: 3rem 2%;
  background: #ffffff;
  text-align: center;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.5rem;
  margin-top: 1.5rem;
}

.card {
  background-color: #f1f1f1;
  padding: 1.5rem;
  border-radius: 10px;
  width: 410px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
  .card {
    width: 430px;
  }
}
@media screen and (max-width: 768px) {
  .card {
    width: 335px;
  }
}

.card p {
  margin-bottom: 12px;
}

.card .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.learn-btn {
  background-color: #fbbf24;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  color: white;
}

/* achievement */
.achievements {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
  background: #f9f9f9;
}

.achievements h2 {
  font-size: 2.5rem;
}

.subtitle {
  font-size: 25px;
  color: #555;
  margin-bottom: 30px;
}

.achievement-grid {
  display: flex;
  gap: 50px;
  justify-content: center;
}
@media screen and (max-width: 376px) {
  .achievement-grid {
    flex-direction: column;
    gap: 0px;
  }
}

.achievement-card {
  position: relative;
  width: 100%;
  max-width: 410px;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.achievement-card img {
  width: 100%;
  height: 280px;
  display: block;
  border-radius: 12px;
}

.overlay1 {
  position: absolute;
  bottom: -50px;
  width: 100%;
  height: 120px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  color: white;
  text-align: center;
  line-height: 100px; /* adjust to center text vertically */
  font-size: 20px;
}

.caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* objective */
.objectives-section {
  text-align: center;
  padding: 50px 2%;
  background-color: #fff;
}

.objectives-section h2 {
  font-size: 2.2rem;
  color: #165b33;
  margin-bottom: 40px;
}

.objectives-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.objective-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 260px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .objective-card {
    width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .objective-card {
    width: 340px;
  }
}

.objective-card:hover {
  transform: translateY(-6px);
  background-color: #e8f5e9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.icon {
  font-size: 40px;
  color: #2e7d32;
  margin-bottom: 15px;
}

.icon .size {
  font-size: 36px;
  color: #2e7d32;
  margin-bottom: 15px;
}

.objective-card h3 {
  font-size: 1.2rem;
  color: #165b33;
  margin-bottom: 10px;
}

.objective-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.learn-more {
  display: inline-block;
  margin-top: 15px;
  color: #165b33;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.learn-more:hover {
  color: #0d3a20;
}/*# sourceMappingURL=academics.css.map */