*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

@media only screen and (max-width: 75em) {
  html {
    font-size: 59%;
  }
}

@media only screen and (max-width: 56.25em) {
  html {
    font-size: 56%;
  }
}

@media only screen and (min-width: 112.5em) {
  html {
    font-size: 65%;
  }
}

body {
  box-sizing: border-box;
  position: relative;
  line-height: 1.5;
  font-family: sans-serif;
  overflow-x: hidden;
  overflow-y: scroll;
  font-family: 'Source Sans Pro', sans-serif;
  color: #333;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

input:focus,
button:focus,
a:focus,
textarea:focus {
  outline: none;
}

button {
  border: none;
  cursor: pointer;
}

textarea {
  resize: none;
}

.ink-form {
  display: none;
}

/* Gallery Styles */
.carousel-container {
  position: relative;
  max-width: 100%;
  margin-bottom: 5px;
  overflow: hidden;
  box-shadow: 0 20px 24px rgba(0, 0, 0, 0.12);
}

.carousel-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: space-between;
  background-color: #faebd7;
  margin-top: 1rem;
  padding: 5px;
  height: 70vh;
  box-sizing: border-box;
}

.gallery-image-container {
  max-height: 70vh;
  height: auto;
  max-width: 60%;
  width: 60%;
  object-fit: contain;
  flex-shrink: 0;
  flex: 1;
}

.gallery-image-container img {
  width: 100%;
  height: 100%;
  transition: all 1s;
}

.gallery-description {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 2rem;
  gap: 1rem;
  max-width: 40%;
}

.gallery-desc-title {
  font-size: 3rem;
  font-weight: 500;
  font-style: oblique;
  margin-bottom: 0.5rem;
  color: #5f3411 !important;
  line-height: 1.2;
}

.gallery-desc-text {
  font-size: 2rem;
  color: #5f3411 !important;
  font-weight: 400;
  margin-bottom: 0.8rem;
  text-align: justify;
  text-justify: auto;
}

.gallery-btn {
  display: inline-block;
  font-size: 18px;
  border-radius: 5px;
  padding: 10px 5px;
}

.gallery-btn-holder {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}

.carousel-indicators {
  text-align: center;
  margin-top: 10px;
}

.carousel-indicator {
  background-color: #007bff;
  border: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  margin: 0 5px;
}

.carousel-indicator.active {
  background-color: #0056b3;
}

.carousel-pause-play {
  background-color: transparent;
  border: none;
  color: #007bff;
  cursor: pointer;
  margin-right: 1rem;
  padding-left: 3px;
}

.carousel-pause-play i {
  font-size: 2rem;
  justify-content: center;
}

/* Mobile Screens */
@media (max-width: 600px) {
  .gallery-container {
    flex-direction: column;
    align-items: center;
    min-height: 72vh;
    gap: 0.1rem;
    /* padding: 1rem; */
  }

  .carousel-pause-play {
    top: 0;
  }

  .carousel-indicator {
    display: none;
  }

  .gallery-image-container {
    max-width: 100%;
    max-height: 50vh;
    width: 100%;
    height: auto;
  }

  .gallery-description {
    max-width: 100%;
    padding: 1rem;
    text-align: left;
  }

  .gallery-desc-title {
    font-size: 1.5rem;
    text-align: left;
  }

  .gallery-desc-text {
    font-size: 1rem;
  }

  .gallery-btn-holder {
    justify-content: flex-end;
    width: 100%;
  }

  .gallery-btn {
    font-size: 15px;
  }
}

@media (min-width: 600px) and (max-width: 1024px) {
  .gallery-container {
    flex-direction: column;
    align-items: start;
    height: 80vh;
    width: 100%;
  }

  .gallery-image-container {
    max-width: 100%;
    max-height: 60%;
    height: auto;
    width: 100%;
  }

  .gallery-description {
    max-width: 100%;
    padding: 1rem;
    text-align: left;
  }

  .gallery-desc-title {
    font-size: 2.5rem;
    padding: 0.5rem;
  }

  .gallery-desc-text {
    font-size: 1.8rem;
  }

  .gallery-btn-holder {
    justify-content: flex-end;
    margin: 1rem 0.5rem;
    width: 100%;
  }

  .gallery-btn {
    border: 3px thin;
    font-size: 17px;
    padding: 15px;
  }

  .carousel-indicator {
    display: none;
  }
}

/* Animations */

@keyframes fade-show {
  0% {
    transform: translateX(-400px);
    /* filter: grayscale(1); */
  }

  100% {
    transform: translateX(0);
    /* filter: grayscale(0); */
  }
}

@keyframes fade-text-show {
  0% {
    transform: translateY(80px);
  }

  100% {
    transform: translateY(0);
  }
}

.hidden {
  display: none !important;
}

.visible {
  display: block;
}

.academics-links-section {
  width: 100%;
  min-height: 30vh;
  padding: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.academics-links-section a {
  display: block;
  font-size: 2.2rem;
}

.academics-links-section a:hover {
  color: rgba(13, 108, 203, 0.752);
}


/* Styles for the new sections */
.address-section,
.maps-section,
.reach-section {
  margin-top: 40px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.address-section h2,
.maps-section h2,
.reach-section h2 {
  margin-bottom: 20px;
  font-size: 24px;
}

.maps-section iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 8px;
}


.contact-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 37.5em) {
  .contact-container {
    flex-direction: column;
  }
}

.contacts-links-section {
  width: 100%;
  padding: 2rem;
}

.contacts-links-section h2 {
  font-weight: 400;
  font-size: 3rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  margin-left: 0;
}

.contacts-links-section h2 i {
  color: rgba(13, 108, 203, 0.752);
}

.contacts-links-section a {
  display: flex;
  justify-content: start;
  align-items: center;
  margin: auto;
  font-size: 2rem;
  margin-left: 1rem;
}

.contacts-links-section i {
  margin-left: 1rem;
  margin-right: 1rem;
}

.social-media-links-section {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.social-media-links-section a {
  display: inline-block;
  align-content: start;
}

.contacts-links-section a:hover {
  color: #0062b9;
}

.side-img-link-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.side-img-link-container a {
  margin: 0.5rem;
  padding: 1.85rem 2.5rem;
  font-size: 1rem;
  text-align: center;
}

.result-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 5rem;
  padding: 2rem;
}

@media only screen and (max-width: 37.5em) {
  .result-container {
    flex-direction: column;
  }
}

.results-links-section {
  width: 100%;
}

.results-links-section h2 {
  font-weight: 600;
  font-size: 3rem;
  margin-left: -1rem;
}

.results-links-section h2 i {
  color: rgba(13, 108, 203, 0.752);
}

.results-links-section a {
  display: block;
  font-size: 2.2rem;
}

.results-links-section a:hover {
  color: rgba(13, 108, 203, 0.752);
}

/* placements table start */

table {
  margin: auto;
  text-align: justify;
  border: 0px solid #0063b9af;
  border-collapse: collapse;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.22);
}

table th,
td,
tr {
  padding: 1rem;
  font-size: 1.8rem;
  border: 0px solid #0063b9af;
  text-transform: capitalize;
}

.placements-headings {
  background-color: #0063b9af !important;
  color: white !important;
  font-size: 2rem !important;
}

table tbody tr:nth-child(odd) {
  background-color: #f1f1f1;
}

table a:hover {
  color: #0062b9;
}

@media only screen and (max-width: 37.5em) {

  table th,
  td,
  tr {
    padding: 0.8rem;
    font-size: 1rem;
  }
}

.clear {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

/* placements table exit */

.overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
  overflow: hidden;
  position: relative;
  top: 0;
  left: 0;
}

.profile-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.profile-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 1.2rem;
  width: 140px;
  height: 180px;
  background-color: #f1f1f1;
  border-radius: 10px;
  flex-wrap: 1;
  margin: auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.125);
  transition: all 0.3s;
}

.profile-card img {
  width: 85px;
  height: 85px;
  border-radius: 50px;
}

.profile-card p {
  color: #333;
  font-size: 1rem;
}

.profile-card-name {
  font-size: 1.3rem;
  color: #000;
}

.profile-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.225);
  transform: translateY(-8px);
}

@media only screen and (max-width: 37.5em) {
  .profile-card {
    margin: 0.5rem;
    padding: 0.8rem;
  }

  .profile-card-name {
    font-size: 1.1rem;
  }

  .profile-card p {
    color: #333;
    font-size: 0.9rem;
  }
}

.center-text {
  text-align: center !important;
}

.left-text {
  text-align: left !important;
}

.right-text {
  text-align: right !important;
}

.blue-link {
  color: #000067;
}

.top-space {
  margin-top: 1.8rem;
}

.heading-sec__mb-bg {
  margin-bottom: 5rem;
}

.heading-gallery {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 56.25em) {
  .heading-sec__mb-bg {
    margin-bottom: 8rem;
  }
}

.heading-sec__mb-med {
  margin-bottom: 9rem;
}

@media only screen and (max-width: 56.25em) {
  .heading-sec__mb-med {
    margin-bottom: 8rem;
  }
}

.heading-sec__main {
  display: block;
  font-size: 4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 3rem;
  position: relative;
}

.heading-text--small {
  font-size: 3rem !important;
}

.heading-sec__main--lt {
  color: #fff;
}

.heading-sec__main--lt::after {
  content: '';
  background: #fff !important;
}

.heading-sec__main::after {
  content: '';
  position: absolute;
  top: calc(100% + 1.5rem);
  height: 5px;
  width: 5rem;
  background: #e87d02;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}

/* .heading-sec__main::after {
  content: "🪔";
  margin-left: 0.5rem;
  width: 7rem;
  box-shadow: 0px -10px 40px rgba(242, 95, 10, 0.5);
  display: inline-block;
  background-color: rgba(242, 95, 10, 0.2);
  border-radius: 50px;
}

.heading-sec__main::before {
  content: "🪔";
  margin-right: 0.5rem;
  width: 7rem;
  box-shadow: 0px -10px 40px rgba(242, 95, 10, 0.5);
  display: inline-block;
  background-color: rgba(242, 95, 10, 0.2);
  border-radius: 50px;
} */

@media only screen and (max-width: 37.5em) {
  .heading-sec__main::after {
    top: calc(100% + 1.2rem);
  }

  .heading-text--small {
    font-size: 2.5rem !important;
  }
}

.heading-sec__sub {
  display: block;
  text-align: center;
  text-justify: auto;
  color: #0c0c0c;
  font-size: 2.5rem;
  font-weight: 500;
  max-width: 80rem;
  margin: auto;
  line-height: 1.6;
}

@media only screen and (max-width: 37.5em) {
  .heading-sec__sub {
    font-size: 1.8rem;
  }
}

.heading-sec__sub--lt {
  color: #eee;
}

.heading-sm {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-container {
  max-width: 120rem;
  margin: auto;
  width: 92%;
}

.main-container-max {
  margin: auto;
  width: 100%;
}

.btn {
  background: #fff;
  color: #333;
  letter-spacing: 2px;
  display: inline-block;
  font-weight: 700;
  border-radius: 80px;
  background-color: #1879cd;
  box-shadow: 0px 5px 0 rgb(0, 47, 88);
}

.btn:active {
  transform: translateY(5px);
  box-shadow: none;
}

.btn--bg {
  padding: 1.4rem 5rem;
  font-size: 1.5rem;
}

.btn--med {
  padding: 1.5rem 5rem;
  font-size: 2rem;
  text-transform: none;
}

.btn--theme {
  background: #0062b9;
  color: #fff;
}

.btn--theme-inv {
  width: fit-content;
  color: #0062b9;
  background: #fff;
  border: 2px solid #0062b9;
  text-transform: none;
  padding: calc(1.5rem - 2px) calc(5rem - 2px);
}

.sec-pad-even {
  background-color: hwb(28 87% 3%);
  padding: 5px;
}

.spacer {
  padding: 3rem 0;
}

.sec-pad-odd {
  padding: 5px;
  background-color: #ffffff;
}

.sec-pad--top {
  padding: 0;
  padding-top: 12rem;
}

.sec-pad-alt {
  padding: 0 !important;
}

@media only screen and (max-width: 56.25em) {
  .sec-pad {
    padding: 8rem 0;
  }

  .sec-pad--top {
    padding-top: 8rem;
  }
}

.text-primary {
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
  width: 100%;
  line-height: 1.6;
}

@media only screen and (max-width: 37.5em) {
  .text-primary {
    font-size: 2rem;
  }
}

.d-none {
  display: none;
}

.home-hero body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.home-hero {
  position: relative;
  height: 100vh;
  /* Full viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-hero__content {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
  max-width: 800px;
}

.heading-primary {
  list-style-type: none;
}

.heading-primary ul {
  padding: 0;
  margin: 0;
}

.heading-primary li {
  padding: 1.5rem 0;
  font-size: 4rem;
}

#quote {
  font-size: 2.5rem;
  color: #ffc401;
  background: rgba(112, 112, 112, 0.7);
  /* Optional: Add a filter to darken the background for better text visibility */
  border-radius: 15px;
}

.hidden {
  display: none;
}

#quote-meaning {
  font-size: 2rem;
  font-style: italic;
  color: #ff9901;
  background: rgba(112, 112, 112, 0.7);
  border-radius: 15px;
}

.flip-quote,
.flip-meaning {
  display: inline-block;
  backface-visibility: hidden;
  transition: opacity 0.6s;
}

.flipped {
  opacity: 0;
}

.visible {
  opacity: 1;
}

@media (max-width: 600px) {
  .home-hero {
    background-attachment: scroll;
    background-size: 100% 100vh;
  }

  .heading-primary li {
    font-size: 2rem;
  }

  #quote {
    font-size: 1.8rem;
  }

  #quote-meaning {
    font-size: 1.5rem;
  }
}

@media (min-width: 768) {
  .heading-primary li {
    font-size: 3rem;
  }

  #quote {
    font-size: 2.5rem;
  }

  #quote-meaning {
    font-size: 1.8rem;
  }
}

@media (min-width: 1024px) {
  .heading-primary li {
    font-size: 4rem;
  }

  #quote {
    font-size: 3rem;
  }

  #quote-meaning {
    font-size: 2.5rem;
  }
}

.home-hero__socials {
  position: absolute;
  top: 50%;
  border: 2px solid #eee;
  border-left: 2px solid #eee;
  transform: translateY(-50%);
}

@media only screen and (max-width: 56.25em) {
  .home-hero__socials {
    display: none;
  }
}

.home-hero__mouse-scroll-cont {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 37.5em) {
  .home-hero__mouse-scroll-cont {
    display: none;
  }
}

.home-hero__social {
  width: 5rem;
}

.home-hero__social-icon-link {
  width: 100%;
  display: block;
  padding: 1.2rem;
  border-bottom: 2px solid #eee;
  transition: background 0.3s;
}

.home-hero__social-icon-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.home-hero__social-icon-link--bd-none {
  border-bottom: 0;
}

.home-hero__social-icon {
  width: 100%;
}

.home-hero__info {
  margin: 3rem auto 0 auto;
  max-width: 80rem;
}

.home-hero__cta {
  margin-top: 3rem;
  text-align: center;
}

.about {
  background: hsl(0, 0%, 100%);
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10rem;
}

@media only screen and (max-width: 56.25em) {
  .about__content {
    grid-template-columns: 1fr;
    grid-gap: 8rem;
  }
}

.about__content-title {
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 37.5em) {
  .about__content-title {
    font-size: 2.4rem;
  }
}

.about__content-details-para {
  font-size: 1.8rem;
  color: #0c0c0c;
  max-width: 60rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about__content-details-para--hl {
  font-weight: 700;
  margin: 0 3px;
}

.about__content-details-para:last-child {
  margin-bottom: 4rem;
}

.projects__row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-gap: 5rem;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 56.25em) {
  .projects__row {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    margin-bottom: 8rem;
  }
}

@media only screen and (max-width: 56.25em) {
  .projects__row {
    text-align: center;
  }
}

.projects__row:last-child {
  margin-bottom: 0;
}

.projects__row-img-cont {
  overflow: hidden;
  width: 100%;
}

.projects__row-img-cont video {
  overflow: hidden;
  width: 80%;
}

.projects__row-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.projects__row-img-fit {
  width: 100%;
  height: 700px;
  display: block;
  object-fit: contain;
}

.crop-fit {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;
}

.projects__row-content {
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}

@media only screen and (max-width: 56.25em) {
  .projects__row-content {
    align-items: center;
  }
}

.projects__row-content-title {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 37.5em) {
  .projects__row-content-title {
    font-size: 2.3rem;
  }
}

.projects__row-content-desc {
  font-size: 2rem;
  color: #0c0c0c;
  max-width: 65rem;
  line-height: 1.5;
  margin-bottom: 3rem;
  text-align: justify;
  text-justify: auto;

}

@media only screen and (max-width: 37.5em) {
  .projects__row-content-desc {
    font-size: 1.5rem;
  }
}

.projects__row_buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.button-row {
  display: flex;
  gap: 10px;
  /* Space between buttons */
}

.projects__row_buttons .btn {
  width: fit-content;
  margin-bottom: 10px;
  padding: 1rem 2rem;
  font-size: 1.5rem;
}

/* Facilities */

.facilities__row-button-cont {
  margin-top: 20px;
}

.facilities__row-button {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  /* Text color */
  text-align: center;
  text-decoration: none;
  font-size: 16px;
}

.facilities__row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-gap: 5rem;
  margin-bottom: 3rem;
}

.facilities__row:nth-child(even) .facilities__row-img-cont {
  order: 1;
}

.facilities__row:nth-child(even) .facilities__row {
  order: 1;
  grid-template-columns: 1fr 1.5fr;
}

@media only screen and (max-width: 56.25em) {
  .facilities__row {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    margin-bottom: 8rem;
  }

  .facilities__row:nth-child(even) .facilities__row-img-cont {
    order: 0;
  }

  .facilities__row:nth-child(even) .facilities__row {
    order: 1;
    grid-template-columns: 1.5fr 1fr;
  }
}

@media only screen and (max-width: 56.25em) {
  .facilities__row {
    text-align: center;
  }

  .facilities__row:nth-child(even) .facilities__row-img-cont {
    order: 0;
  }

  .facilities__row:nth-child(even) .facilities__row {
    order: 1;
    grid-template-columns: 1.5fr 1fr;
  }
}

.facilities__row:last-child {
  margin-bottom: 0;
}

.facilities__row-img-cont {
  overflow: hidden;
  width: 100%;
}

.facilities__row-img-cont video {
  overflow: hidden;
  width: 80%;
}

.facilities__row-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.facilities__row-img-fit {
  width: 100%;
  height: 700px;
  display: block;
  object-fit: contain;
}

.crop-fit {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;
}

.facilities__row-content {
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}

@media only screen and (max-width: 56.25em) {
  .facilities__row-content {
    align-items: center;
  }
}

.facilities__row-content-title {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 37.5em) {
  .facilities__row-content-title {
    font-size: 2.3rem;
  }
}

.facilities__row-content-desc {
  font-size: 1.8rem;
  color: grey;
  max-width: 60rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 37.5em) {
  .facilities__row-content-desc {
    font-size: 1.7rem;
  }
}

/* Header */
.header {
  position: absolute;
  width: 100%;
  z-index: 5;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: color 0.3s;
}

.header__logo img {
  width: 18rem;
  height: auto;
  object-fit: contain;
  object-position: center;
}

@media only screen and (max-width: 56.25em) {
  .header__logo img {
    width: 12rem;
  }
}

.hamburger {
  width: 3rem;
  cursor: pointer;
  margin-right: 1rem;
}

.menu-toggle {
  width: 100%;
}

.menu {
  background: #ffcc80;
  /* Light orangish-golden background */
  position: absolute;
  width: 40%;
  /* Change to auto to prevent full width */

  right: 0;
  /* Align the menu to the right */
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  /* Add rounded corners */
}

.menu.active {
  visibility: visible;
  opacity: 1;
}

.menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-links li a {
  display: block;
  text-decoration: none;
  padding: 1.5rem 2rem;
  /* Adjust padding for a more compact look */
  font-size: 1.4rem;
  /* Slightly smaller font size */
  color: #3e2723;
  /* Dark brown color for text */
  text-align: right;
  border-bottom: 1px solid #bcaaa4;
  /* Light border color */
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.menu-links li a:hover {
  background-color: #f0a563;
  /* Darker orange on hover */
  border-radius: 8px;

}

.menu-links li:first-child a {
  border-top: 1px solid #8d6e63;
  /* Darker border for the first item */
}

.nav-item {
  position: relative;
  margin: 0 15px;
  /* Adjust margin for spacing */
}

.nav-item a {
  color: #3e2723;
  /* Dark brown color for text */
  text-decoration: none;
  padding: 10px 15px;
  display: block;
}

.nav-item a:hover {
  background-color: #ffa1139b;
  /* Lighter orange on hover */
}

.dropdown {
  display: none;
  position: absolute;
  background-color: #f0a563;
  /* Match dropdown background with menu */
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 150px;
  z-index: 1;
  border-radius: 8px;
  /* Add rounded corners to dropdown */
}

.dropdown li {
  border-bottom: 1px solid #bcaaa4;
  /* Light border color */
}

.dropdown li a {
  padding: 10px;
  color: #3e2723;
  /* Dark brown color for text */
}

.dropdown li a:hover {
  background-color: #ffecb3;
  /* Light yellow on hover */
}

.nav-item:hover .dropdown {
  display: block;
}

/*Footer*/


/* General Styles */
.main-footer body {
  font-family: Arial, sans-serif;
}

.main-footer {
  background: #222;
  color: #fff;
  padding: 2rem 0;
}

.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation Links */
.footer-nav-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.footer-nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.nav-column {
  flex: 1;
  min-width: 200px;
  margin: 0 1rem;
  text-align: center;
}

.nav-column h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.nav-column a {
  display: block;
  font-size: 1.5rem;
  margin: 0.5rem 0;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-column a:hover {
  color: #90c7f6;
}

/* Upper Footer Section */
.footer-upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-row {
  flex: 1;
  text-align: center;
  margin: 1rem 0;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
}

/* Contact Information */
.footer-contact p {
  margin: 0.5rem 0;
  font-size: 1.5rem;
}

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

.footer-contact a:hover {
  color: #90c7f6;
}

/* Social Icons */
.footer-social {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-social h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icons a {
  color: #fff;
  font-size: 2.5rem;
  transition: color 0.3s;
}

.social-icons a:hover,
.social-icons a:active {
  color: #90c7f6;
}

/* Lower Footer Section */
.footer-lower {
  text-align: center;
  border-top: 1px solid #444;
  padding: 1rem 0;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-nav-links {
    justify-content: center;
    gap: 1rem;
  }

  .nav-column {
    min-width: 150px;
  }

  .footer-upper {
    flex-direction: row;
  }

  .footer-contact,
  .footer-logo {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-nav-title {
    font-size: 2rem;
  }

  .footer-nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .nav-column {
    flex: 1 0 100px;
    max-width: 150px;
  }

  .footer-contact p {
    font-size: 1.5rem;
  }

  .footer-logo {
    width: 50%;
  }

  .social-icons a {
    font-size: 2rem;
  }

  .nav-column {
    flex: 1 0 33%;
    max-width: 100%;
  }
}

.footer-info {
  text-align: center;
  margin: 1rem 0;
  font-size: 1.5rem;
  font-style: italic;
  color: #f9b600;
}

/*Calendar Styling*/

@media (max-width: 550px) {
  .calendar-desktop {
    display: none;
  }
}

/* Responsive calendar */
@media (min-width: 550px) {
  .calendar-mobile {
    display: none;
  }
}

.calendar-desktop {
  position: relative;
  overflow: auto;
}

.calendar-desktop iframe {
  width: 100%;
  border: none;
}

.calendar-mobile {
  position: relative;
  padding-bottom: 0%;
  height: fitcontent;
  overflow: auto;
  border-radius: 1rem;
  border: 5px solid #faebd7;
}

.calendar object,
.calendar embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* GRID SYSTEM */

.uiet--grid {
  display: grid;
}

.uiet--grid-cols-1 {
  grid-template-columns: 1;
}

.uiet--grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.uiet--grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.uiet--grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.uiet--grid-cards {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3rem;
  row-gap: 3rem;
}

.uiet--animated-grid {
  transition: all 0.3s;
  animation: uiet--move-up 1s ease-out;
}

.uiet--faculty-card {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  max-width: 100%;
  width: 100%;
  height: 44rem;
  padding: 1.2rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s;
  line-height: 1.4;
}

@media only screen and (max-width: 56.25em) {
  .uiet--grid-cards {
    grid-template-columns: 1fr;
    margin: auto;
  }
}

.uiet--faculty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2);
}

.uiet--faculty-card * {
  margin-bottom: 0.3rem;
}

.uiet--faculty-info {
  display: flex;
  flex-direction: column;
  gap: -1px;
  color: white;
}

.uiet--faculty-info h4 {
  margin-top: 3rem;
  font-size: 2rem;
  font-weight: 600;
  color: white;
}

.uiet--faculty-info span {
  font-size: 1.6rem;
  color: white;
}

.uiet--faculty-bio {
  font-size: 1.2rem;
  font-weight: 400;
}

.uiet--faculty-qualifications {
  font-weight: 600;
}

.faculty-social-media-handles {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s;
  background-color: rgba(225, 225, 225, 0.8);
  width: max-content;
  border-radius: 30px;
  margin-top: 0.3rem;
}

.faculty-social-media-handles a i {
  font-size: 2rem;
  transition: all 0.2s;
  margin-bottom: 0 !important;
}

.faculty-social-media-handles a i:hover {
  transform: scale(1.2);
}

.uiet--faculty-heading {
  font-size: 3rem;
  margin-bottom: 5rem;
  margin-top: 3rem;
  font-weight: 500;
}

.uiet--faculty-heading::before {
  content: '🎓';
  margin-right: 0.5rem;
  display: inline-block;
  transform: translateY(3px);
}

#content {
  display: none;
  visibility: hidden;
  width: 0;
  height: 0;
}

.coeju--links {
  color: rgb(60, 60, 200);
  display: inline-block;
  padding: 0.5rem;
  font-size: 2rem;
  text-decoration: none;
}

.coeju--links::before {
  content: '👉🏻';
  margin-right: 0.5rem;
  display: inline-block;
}

.coeju--links:hover {
  cursor: pointer;
  color: rgb(200, 0, 0);
  text-decoration: underline;
}

.coeju--list {
  font-weight: unset;
  font-weight: 500;
  width: 75vw;
  height: 50vh;
  margin: auto;
  margin-top: 6rem;
  margin-bottom: 5rem;
  overflow: scroll;
  background-color: #fff;
  border: 2px solid #333;
  border-radius: 10px;
}

.coeju--list--title {
  padding: 1rem;
  font-size: 2rem;
}

/* LEADERSHIP Page */

.uiet-leadership--box {
  display: flex;
  flex-direction: column;
}

.uiet-leadership--card {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
  height: 60vh;
  /* background-color: rgb(235, 241, 244); */
  border-radius: 1rem;
  margin: 3.5rem 0;
}

.uiet-leadership-card--img {
  flex: 1;
  border-radius: 1rem;
  overflow: hidden;
}

.uiet-leadership-card--img img {
  width: 100%;
  height: 100%;
}

.uiet-leadership-card--info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;

  font-family: Lucida Handwriting;
}

.uiet-leadership-info--title {
  font-size: 4rem;
  color: #444;
  line-height: 1.25;
}

.uiet-leadership-info--name {
  font-size: 3.5rem;
  padding: 0.2rem;
  color: #333;
  display: inline-block;
  line-height: 1.5;
}

.uiet-leadership-info--desc {
  color: #555;
  font-size: 2.5rem;
  font-style: italic;
  text-align: justify;
}

.uiet-leadership-subbox {
  text-align: start;
}

.uiet-leadership--contactbox {
  margin-top: 1.5rem;
  margin-left: 1rem;
  display: flex;
  gap: 1.4rem;
  align-self: flex-start;
}

.uiet-leadership--contactbox a i {
  font-size: 3rem;
  transition: all 0.3s;
  opacity: 0.9;
}

.uiet-leadership--contactbox a i:hover {
  transform: scale(1.1);
  opacity: 1;
}

.uiet-leadership--card:nth-child(even) {
  flex-direction: row-reverse;
}

@media only screen and (max-width: 1040px) {
  .uiet-leadership--card {
    flex-direction: column;
    height: 90vh;
  }

  .uiet-leadership-card--img {
    flex: 3;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
  }

  .uiet-leadership-card--info {
    flex: 1;
    padding: 1rem;
    line-height: 1.25;
  }

  .uiet-leadership-info--title {
    font-size: 3rem;
  }

  .uiet-leadership-info--desc {
    font-size: 2rem;
  }

  .uiet-leadership--card:nth-child(even) {
    flex-direction: column;
  }
}

@media only screen and (max-width: 37.5em) {
  .coeju--links {
    font-size: 1.5rem;
  }

  .coeju--list {
    width: 85vw;
  }
}

@keyframes uiet--move-up {
  from {
    opacity: 0.5;
    transform: translateY(30rem);
  }

  to {
    opacity: 1;
    transform: translateY(0rem);
  }
}

#bus {
  color: rgb(17, 16, 16);
  font-size: 1.8rem;
  font-style: italic;
}

.disclaimer {
  font-size: 1.5em;
  text-align: center;
  margin-top: 50px;
  padding: 20px;
  border-top: 1px solid #faad5a;
  background-color: #faad5a;
  color: #ffffff;
  font-style: italic;
}

.disclaimer:before {

  font-style: normal;
  font-weight: bold;
  font-size: 1em;
}

.disclaimer p {
  quotes: '“' '”' '‘' '’';
}

.disclaimer p:before {
  content: open-quote;
}

.disclaimer p:after {
  content: close-quote;
}

.document-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding: 15px;
  border-bottom: 1px solid #ccc;
  border-color: #ea8614af;
}

.document-row:nth-child(odd) {
  background-color: hwb(28 87% 3%);
}

.document-row .description {
  max-width: 300px;
  font-size: 1.5rem;
}

.document-row .image {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

@media (max-width: 620px) {
  .document-row {
    flex-direction: column;
  }

  .document-row .description {
    margin: 1.5rem 0;
    max-width: 250px;
    text-align: center;
    font-size: 1.2rem;
  }

  .document-row .image {
    width: 100px;
    height: 100px;
    object-fit: contain;
  }
}

/* Committees */

.committees {
  padding: 2rem 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 3rem;
  column-gap: 1rem;
}

.committee-card {
  width: 100%;
  height: 100%;
  background-color: rgb(247, 245, 243);
  box-shadow: 10px 10px 20px rgba(244, 198, 158, 0.125);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 3rem;
  border-radius: 50px;
  justify-content: space-between;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.committee-card:hover,
.committee-card:active {
  transform: translateY(-10px);
  box-shadow: 20px 20px 30px rgba(244, 198, 158, 0.2),
    -20px -20px 30px rgba(244, 198, 158, 0.2);
}

.committee-title {
  font-size: 2.8rem;
  line-height: 1;
}

.committee-description {
  font-size: 1.6rem;
  color: #777;
}

@media (max-width: 640px) {
  .committees {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 430px) {
  .committees {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Modal Styling Begins */

/* The Modal (background) */
.modal {
  display: hidden;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 10;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100vh;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  margin: 15% auto;
  /* 5% from the top and centered */
  padding: 20px;
  width: 100%;
  /* Could be more or less, depending on screen size */
  max-width: 100vh;
  /* Maximum width */
  text-align: center;
  position: relative;
}

@media (min-width: 1024px) {
  .modal-content {
    margin: 5% auto;
    width: 80%;
    max-width: 60vh;
  }
}

/* Close Button */
.close {
  color: #f1f1f1;
  background-color: red;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  float: right;
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  top: 9px;
  right: 7px;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #fff;
  text-decoration: none;
}

/* Carousel styling */
.carousel {
  position: relative;
  margin-top: 5px;
  width: 100%;
  height: 100%;
}

.carousel-inner {
  display: flex;
  overflow: hidden;
}

.flyer-image {
  width: 100%;
  height: 100%;
  display: none;
  /* Hide all images initially */
}

.flyer-image.active {
  display: block;
  /* Show the active image */
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  user-select: none;
  border-radius: 5px;
  z-index: 1;
}

.prev {
  left: -50px;
  /* Move left button outside the image */
  border-radius: 0 3px 3px 0;
}

.next {
  right: -50px;
  /* Move right button outside the image */
  border-radius: 3px 0 0 3px;
}

@media (max-width: 640px) {
  .prev {
    left: -30px;
    /* Move left button outside the image */
    border-radius: 0 3px 3px 0;
  }

  .next {
    right: -30px;
    /* Move right button outside the image */
    border-radius: 3px 0 0 3px;
  }
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/*NotificationsSystem*/

.notification-wrapper body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 5px;
}

.notifications-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  height: auto;
}

.notifications-container {
  display: flex;
  justify-content: space-between;
  width: 80%;
}

.notification-column {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 30%;
  display: flex;
  flex-direction: column;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-height: 70vh;
}

.notification-column h2 {
  margin: 0 0 10px;
  padding: 10px;
  background-color: #f0f0f0;
  border-bottom: 1px solid #ccc;
  border-radius: 8px 8px 0 0;
  text-align: center;
}

.notifications {
  overflow-y: auto;
  flex-grow: 1;
}

.notifications p {
  padding: 10px;
  margin: 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}

.notifications p:last-child {
  border-bottom: none;
}

.notification-date {
  font-size: 0.8em;
  color: #888;
}

/*Button*/
.alt-btn {
  background-color: #f7bc7d;
  color: white;
  padding: 10px;
  align-self: flex-end;
  box-shadow: 0px 5px 0 #faad5a;
}

@media (max-width: 768px) {
  .notifications-container {
    flex-direction: column;
    align-items: center;
  }

  .notification-column {
    width: 100%;
    margin-bottom: 20px;
  }
}


/*Contact Page*/

/*General Styles*/
.contact-page {
  font-family: 'Roboto', ;
  line-height: 1.6;
  color: #333;
  background-color: hsl(0, 0%, 100%);
  padding-bottom: 0.5rem;
}

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

/* Typography */
h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}


/* Contact Info Section */
.contact-info {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-card {
  background-color: rgb(247, 245, 243);
  border-radius: 50px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 250px;
}

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

.contact-card__icon {
  font-size: 3.5rem;
  color: #f7bc7d;
  margin-bottom: 1.5rem;
}

.contact-card__icon.fa-phone.fa-hashtag.fa-envelope {
  color: #f7bc7d;
}

.contact-card__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-card__link {
  display: block;
  color: #725d7f;
  text-decoration: none;
  font-size: 1.5rem;
  margin-bottom: 0.7rem;

}

.contact-card__link:active {
  transform: translateY(5px);
  color: #f7bc7d;
  opacity: 0.8;
}

.social-links {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
  gap: 1rem;
}

.social-links__item {
  font-size: 4rem;
  transition: color 0.3s ease;
}

.social-links__item:active {
  transform: translateY(5px);
  color: #f7bc7d;
  opacity: 0.8;
}

.fa-instagram {
  color: #E1306C;
}

.fa-facebook {
  color: #1877F2;
}

.fa-youtube {
  color: #FF0000;
}

.fa-linkedin {
  color: #0A66C2;
}

.fa-twitter {
  color: #1DA1F2;
}

.fa-github {
  color: #ffffff;
}

/* Address and Map Section */
.address-map {
  padding: 4rem 0;
  background-color: hwb(28 87% 3%);
}


.address-map__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.address {
  font-weight: bold;
  margin-bottom: 2rem;
}

.reach-info {
  margin-bottom: 2rem;
  padding-top: 10px;
  padding-left: 10px;
  font-size: 1.5rem;
  font-family: 'playfair';
  text-align: justify;

}

.reach-info li {
  margin-bottom: 10px;
}

.sub-head {
  font-weight: bold;
}

.reach-button {
  display: block;
  margin-top: 5px;
  padding: 5px 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .address-map__grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .address-map__grid {
    grid-template-columns: 1fr;
  }

  .contact-card__icon {
    font-size: 3rem;
  }
}

/*Misc Styling*/
.highlight {
  font-weight: bold;
  color: #40a4ec;
}

.highlight:hover,
:active {
  color: #f0732b;
  ;
}

.fa-at {
  color: skyblue;
}

.fa-globe {
  color: green;

}