@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #fdcc09;
  --secondary-color: #3f4a75;
  --blue: #40aab8;
  --black: #000;
  --white: #fff;
  --footer-gradient: linear-gradient(180deg,
      #00315b 8.23%,
      #00315b 9.13%,
      #003b67 27.11%,
      #025789 61.27%,
      #047db6 98.13%);
  --copyrights: #077db7;
  --grey: #f9f9f9;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
}

/* common styles */
.container {
  width: 80%;
  margin: auto;
}

.padding {
  padding: 6rem 0;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 98px;
  font-weight: 600;
  line-height: 1;
}

h2 {
  font-size: 70px;
  margin-bottom: 1rem;
}

h3 {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

p {
  font-size: 18px;
}

.para {
  font-size: 20px;
}

.btn {
  border: 1px solid #000;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  padding: 0.8rem 2rem;
  color: var(--black);
  background: transparent;
  transition: all 0.5s ease;
  cursor: pointer;
  display: inline-block;
}

.btn:hover {
  background: var(--black);
  color: var(--white);
}

.innerhead3 {
  font-weight: 400;
  font-size: 35px;
  text-transform: capitalize;
}

.top-dropdown-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 0;
  width: 100%;
  background: url("../assets/images/footer-bg.svg") no-repeat 85% center,
    linear-gradient(to bottom, #002c5f, #0073b1);
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 2;
  color: var(--white);
  box-sizing: border-box;
  transition: height 0.5s ease;
}

.top-dropdown-menu.open {
  height: 100vh;
  overflow-y: scroll;
}

.dropdown-inner {
  display: flex;
  justify-content: flex-start;
  gap: 15rem;
  margin: 0 auto;
}

.dropdown-inner ul {
  list-style: none;
  padding: 0;
}

.dropdown-inner li {
  margin: 15px 0;
}

.dropdown-inner a {
  text-decoration: none;
  color: var(--white);
  font-weight: 400;
  font-size: 64px;
  display: flex;
  align-items: flex-end;
}

#menuClose p {
  color: var(--white);
}

/* header */

.header {
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  background: transparent;
  /* Default background */
  transition: background 0.3s ease, border-bottom 0.3s ease;
}

/* When Scrolled */
.header.scrolled {
  background: var(--white);
  border-bottom: 5px solid var(--primary-color);
  padding: 1rem 0;
}

/* Logo Visibility */
.header .blue-logo {
  display: none;
}

.header.scrolled .white-logo {
  display: none;
}

.header.scrolled .blue-logo {
  display: block;
}

.header.scrolled .menu-text {
  color: var(--black);
}

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

.close-flex {
  padding: 1rem 0;
}

.header-logo {
  width: 20%;
}

.header-menu {
  width: 80%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.header-logo img {
  width: 230px;
  cursor: pointer;
}

.menu-flex {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
  align-items: center;
  width: max-content;
  cursor: pointer;
}

.menu-text {
  color: var(--white);
}

.header-sm {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  margin-top: 2.5rem;
}

.header-sm a {
  display: inline-block;
}

.header-sm img {
  width: 25px;
  height: 25px;
  filter: invert(1);
}

.main-menu,
.secondary-menu {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.menu-item {
  position: relative;
}

.menu-link {
  text-decoration: none;
  color: #333;
  padding: 10px;
  display: block;
}

/* Arrow styling */
.submenu-arrow {
  font-size: 12px;
  margin-left: 10px;
}

span.submenu-arrow img {
  width: 40px;
  filter: invert(1);
}

/* Styling for the submenu */
.submenu {
  display: none;
  padding-left: 20px;
  list-style-type: none;
}

.submenu-item.active>.submenu {
  display: block;
  animation: slideDown 0.3s ease-out;
  padding-left: 3rem;
}

.submenu-item.active .submenu-arrow {
  transform: rotate(180deg);
  /* Rotate the arrow when active */
}

/* Optional: Animation for submenu */
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

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

/* Styling for submenu links */
li.submenu-item .submenu-link {
  text-decoration: none;
  display: block;
  font-size: 32px;
}

.menu-icon {
  animation: rotate 4s infinite ease-in-out;
  transform-origin: center;
}

@keyframes rotate {
  0% {
    transform: rotate(140deg);
  }

  20% {
    transform: rotate(220deg);
  }

  40% {
    transform: rotate(300deg);
  }

  60% {
    transform: rotate(360deg);
  }

  70% {
    transform: rotate(400deg);
  }

  80% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(500deg);
  }
}

.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* aspect-ratio: 16 / 9; */
}

.banner-text {
  position: absolute;
  top: 80%;
  left: 75%;
  transform: translate(-75%, -80%);
  text-align: right;
  color: var(--white);
  z-index: 2;
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.banner-text h1 {
  font-size: 98px;
  font-weight: 600;
}

.banner-text p {
  font-weight: 300;
  font-size: 27px;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg,
      rgb(0 0 0 / 73%) 2.5%,
      rgb(0 0 0 / 0%) 66.7%);
  z-index: 1;
}

.admissions-home {
  position: relative;
  width: 100%;
  color: var(--white);
  overflow: hidden;
}

.admissions-home::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0) 0%,
      #ffffff 72.03%);
  z-index: 5;
  pointer-events: none;
}

.parallex-img-effect {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sky {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.cloud1,
.cloud2 {
  position: absolute;
  transition: transform 1s ease-out;
  z-index: 2;
}

.cloud1 {
  left: 0;
  width: 28%;
  top: 20%;
}

.cloud2 {
  right: 0;
  width: 30%;
  top: 20%;
}

.building {
  width: 100%;
  position: absolute;
  bottom: -5%;
  left: 0;
  transition: transform 0.8s ease-out;
  z-index: 3;
}

.parallex-img-effect img {
  display: block;
}

.parallex-img-effect .bg-admission {
  display: none;
}

.admissions-text {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -15%);
  transition: transform 0.8s ease-out;
  z-index: 4;
  width: 100%;
  max-width: 40%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.admissions-text h2 {
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  margin: unset;
}

.admissions-text p {
  font-size: 22px;
  font-weight: 300;
}

.btn-holder.admissions-btn-home {
  text-align: center;
  margin-top: 0;
}

.btn-holder.admissions-btn-home .btn {
  display: inline-block;
  border: 1px solid var(--white);
  color: var(--white);
}

.btn-holder.admissions-btn-home .btn:hover {
  background: var(--white);
  color: var(--black);
}

.academics-home {
  background: var(--white);
}

.academics-home-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.academics-home-text {
  width: 35%;
}

.academics-home-text h3 {
  font-weight: 400;
}

.academics-home-text h2 {
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 2.5rem;
}

.academics-home-img {
  width: 60%;
}

.academics-home-img {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.academics-home-img div {
  width: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.academics-home-img .yellowcircle .yellowcircleimg {
  width: 50%;
}

.academics-img-hover1 {
  width: 100%;
  overflow: hidden;
  z-index: 1;
  position: relative;
  -webkit-mask: url(../assets/images/academics-section/mask1.svg) no-repeat center;
  -webkit-mask-size: 100%;
  mask: url(../assets/images/academics-section/mask1.svg) no-repeat center;
  mask-size: 100%;
  transform: translate(10%, 20%);
}

.academics-img-hover2 {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-mask: url(../assets/images/academics-section/mask2.svg) no-repeat center;
  -webkit-mask-size: 100%;
  mask: url(../assets/images/academics-section/mask2.svg) no-repeat center;
  mask-size: 100%;
  transform: translate(-10%, -20%);
}

.academics-home-img img:nth-of-type(1) {
  width: 100%;
  display: block;
  transition: all 0.5s ease;
}

.academics-img-hover1:hover img {
  transform: scale(1.5);
}

.academics-home-img img:nth-of-type(2) {
  width: 100%;
  display: block;
  transition: all 0.5s ease;
}

.academics-img-hover2:hover img {
  transform: scale(1.5);
}

.academics-school-home p {
  font-weight: 500;
}

.academics-school-home {
  width: 100%;
  text-align: left;
}

.academics-school-home p {
  font-size: 18px;
  font-weight: 500;
}

.academics-school-flex {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  align-items: stretch;
}

.academics-schools {
  width: calc(22% - 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.line {
  position: relative;
}

.line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #b7b7b7;
}

.academics-schools h2 {
  font-weight: 600;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.academics-schools p {
  font-weight: 400;
  font-size: 16px;
}

.academics-btn {
  margin-top: 2rem;
  text-align: center;
  width: 100%;
}

.message-home {
  background: var(--primary-color);
}

.message-home-flex {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.message-home-img {
  width: calc(48% - 2rem);
}

.message-home-img img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  -webkit-mask: url(../assets/images/bulb-mask.svg) no-repeat center;
  -webkit-mask-size: 100%;
  mask: url(../assets/images/bulb-mask.svg) no-repeat center;
  mask-size: 100%;
}

.message-home-img div h3 {
  text-align: center;
  margin-top: 2rem;
  font-weight: 500;
}

.message-home-text {
  width: calc(40% - 2rem);
}

.message-home-text h3 {
  font-weight: 400;
}

.message-home-text h2 {
  font-weight: 800;
}

.message-home-text div {
  margin-top: 1rem;
}

.facilities-home {
  background: var(--grey);
  padding: 4rem 0;
}

.facilities-flex {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.facilities-home-text {
  width: calc(50% - 1.5rem);
  color: var(--black);
}

.facilities-home-text h2 {
  font-weight: 800;
}

.facilities-home-text h3:nth-of-type(2) {
  font-weight: 500;
  font-size: 20px;
  text-transform: unset;
}

.facilities-para {
  font-weight: 400;
  font-size: 20px;
}

.facilities-items-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 5rem;
}

.facilities-items-flex p {
  background: #f1f1f1;
  font-size: 16px;
  font-weight: 500;
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
  text-transform: uppercase;
}

.facilities-items-flex p.active {
  background: var(--primary-color);
}

.facilities-home-img {
  width: calc(50% - 1.5rem);
  position: relative;
  text-align: center;
  min-height: 700px;
}

.facilities-home-img img {
  width: 79%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
  z-index: 1;
  -webkit-mask: url(../assets/images/facility-mask.svg) no-repeat center;
  -webkit-mask-size: contain;
  mask: url(../assets/images/facility-mask.svg) no-repeat center;
  mask-size: contain;
}

.facilities-home-img img.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.facilities-home-text>p:nth-of-type(2) {
  font-weight: 400;
  font-size: 20px;
  margin-top: 2rem;
}

.btn-holder {
  margin-top: 2rem;
}

.gallery-home-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 8rem 0;
}

.gallery-home-img {
  width: 60%;
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yellowlight {
  width: 100%;
  height: auto;
  z-index: 0;
  transform: translateX(-45%);
  pointer-events: auto;
}

.gallery-img-ab {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: rotate(0deg);
  transform-origin: center center;
  top: 0;
  left: -50%;
  pointer-events: none;
}

.gallery-img-ab img {
  position: absolute;
  width: 20%;
  height: 20%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.gallery-img-ab img:nth-child(1) {
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gallery-img-ab img:nth-child(2) {
  top: 20%;
  left: 85%;
  transform: translate(-50%, -50%);
}

.gallery-img-ab img:nth-child(3) {
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
}

.gallery-img-ab img:nth-child(4) {
  top: 80%;
  left: 85%;
  transform: translate(-50%, -50%);
}

.gallery-img-ab img:nth-child(5) {
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gallery-img-ab img:nth-child(6) {
  top: 80%;
  left: 15%;
  transform: translate(-50%, -50%);
}

.gallery-img-ab img:nth-child(7) {
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
}

@keyframes rotateGallery {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Optional styling */
.gallery-home-text {
  width: 40%;
  padding-right: 10%;
}

.gallery-home-text h2 {
  line-height: 1.3;
}

.gallery-home-text p {
  font-weight: 400;
  font-size: 18px;
}

.testimonial {
  width: 100%;
  overflow: hidden;
  background-color: var(--grey);
  background-image: url(../assets/images/hat.svg);
  background-repeat: no-repeat;
  background-position: center right;
}

.testimonial-div-flex {
  display: flex;
  justify-content: space-between;
}

.testimonial-text {
  width: 32%;
}

.testimonial-tab {
  width: 60%;
}

.testimonial-tab-head {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  cursor: pointer;
}

.testimonial-tab-head p {
  padding: 0.6rem 1.5rem;
  border: 1px solid #ccc;
  transition: 0.3s ease;
  border-radius: 30px;
  font-weight: 500;
  text-transform: uppercase;
}

.testimonial-tab-head p.active {
  background: var(--primary-color);
  border: 1px solid transparent;
}

.tab-slider {
  display: none;
  transition: all 0.3s ease;
}

.tab-slider.active {
  display: block;
}

.mySwiper .swiper {
  width: 100%;
  height: 100%;
}

.mySwiper .swiper-slide {
  background-position: center;
  background-size: cover;
}

.mySwiper .swiper-slide img {
  display: block;
  width: 100%;
}

.testimonial-tab-text-p img.quote {
  width: 34px;
}

.testimonial-flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
  position: relative;
}

.testimonial-tab-img {
  width: 32%;
}

.testimonial-tab-img img {
  border-radius: 50%;
  border: 5px solid #ffdd554d;
}

.testimonial-tab-text {
  width: 58%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 1rem;
}

.testimonial-tab-text hr {
  border: none;
  height: 1px;
  background-color: #c4c4c4;
}

.testimonial-tab-text-p img {
  width: 34px;
  transform: translate(-118%, 70%);
}

.testimonial-tab-text-p p {
  font-weight: 400;
  font-size: 36px;
  display: flex;
}

.testimonial-flex-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-flex-author p {
  font-weight: 500;
  font-size: 18px;
}

.testimonial-flex-author small {
  font-weight: 500;
  font-size: 18px;
  color: #757575;
}

/* latest news */

.custom-shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
  background-color: #00315b;
}

.custom-shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 10rem;
}

.custom-shape-divider .shape-fill {
  fill: #fff;
}

.line-article {
  display: none;
}

.latest-news {
  background: linear-gradient(180deg, #00315b 8.23%);
  position: relative;
  z-index: 1;
}

.latest-news-merge-bg {
  background-color: var(--white);
  padding-bottom: 10rem;
  padding-top: 6rem;
  border-bottom-left-radius: 300px;
  border-bottom-right-radius: 300px;
}

.latest-news-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.latest-news-head h3 {
  margin: 0;
}

.latest-news-head h2 {
  margin: unset;
  width: 60%;
}

/* .latest-news .btn {
  color: var(--white);
  background: var(--black);
}

.latest-news .btn:hover {
  background: transparent;
  color: var(--black);
} */

.latest-news hr {
  margin: 0.5rem 0;
  border: 0;
  height: 2px;
  background: #ddd;
}

.latest-news-items-flex {
  display: flex;
  gap: 2rem;
  width: 100%;
  justify-content: space-between;
}

/* Column Layout */
.news-featured {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 36%;
  height: max-content;
  padding: 3%;
  padding-bottom: 5%;
  background: transparent;
}

.news-featured:hover {
  background: var(--primary-color);
  border-top-left-radius: 280px;
  border-top-right-radius: 280px;
  border-bottom-right-radius: 330px;
}

.news-list {
  width: 55%;
}

/* Featured Image Style */
.news-featured img {
  width: 100%;
  height: auto;
  border-top-left-radius: 280px;
  border-top-right-radius: 280px;
  border-bottom-left-radius: 280px;
}

.news-featured-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--black);
}

.news-featured-text small {
  font-weight: 400;
  font-size: 14px;
}

.news-featured-text h2 {
  font-weight: 700;
  font-size: 20px;
  margin: unset;
}

.news-featured-text p {
  font-weight: 300;
  font-size: 24px;
  width: 75%;
  margin-top: 0.5rem;
}

/* Other News Items */
.news-item {
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: flex-start;
  padding: 3%;
  background: transparent;
  border-top-left-radius: 250px;
  border-bottom-right-radius: 400px;
  border-bottom-left-radius: 250px;
}

.news-item:hover {
  background: var(--primary-color);
  border-top-left-radius: 250px;
  border-bottom-right-radius: 400px;
  border-bottom-left-radius: 250px;
}

.news-item img {
  width: 30%;
  height: auto;
  max-width: 100%;
  border-radius: 50%;
}

.news-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
  width: 60%;
}

.news-text small {
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
}

.news-text h2 {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.news-text p {
  font-weight: 400;
  font-size: 17px;
  color: var(--black);
  width: 90%;
}

.read-more-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--black);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}

.read-more-flex a {
  color: var(--black);
}

.read-more-flex img {
  width: 24px;
  height: auto;
}

.events-read-more {
  text-align: center;
  width: max-content;
  margin: 4rem auto;
  display: none;
}

/* footer */
footer {
  background: linear-gradient(180deg,
      #00315b 8.23%,
      #00315b 9.13%,
      #003b67 27.11%,
      #025789 61.27%,
      #047db6 98.13%);
  color: var(--white);
  padding: 4rem 0;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 2rem;
}

.footer-flex-address {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact a {
  color: var(--white);
  font-size: 18px;
}

.footer-flex-address img.footer-bg-img {
  width: 100%;
  max-width: 600px;
}

.footer-flex-address img.footer-logo {
  max-width: 262px;
  height: auto;
  position: absolute;
  top: 16%;
  left: 8%;
}

.footer-address {
  position: absolute;
  bottom: 5vw;
  right: 6vw;
  width: 40%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-address address {
  font-style: normal;
  font-size: 18px;
}

.footer-social-media {
  display: flex;
  gap: 30px;
}

.footer-social-media a img {
  width: 20px;
  height: 20px;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
}

.footer-menu-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-menu-flex a {
  text-decoration: none;
  font-size: 18px;
  color: var(--white);
}

.footer-flex-menu {
  width: 50%;
}

.footer-flex-menu hr {
  border: none;
  height: 1px;
  background: #ffffff57;
  margin: 1.5rem 0;
}

.btn-holder-flex {
  display: flex;
  gap: 15px;
  margin-top: 1rem;
}

a.btn.connect {
  background: var(--primary-color);
  color: var(--black);
  font-weight: 500;
  border: unset;
}

a.btn.apply {
  background-color: var(--black);
  color: var(--white);
  border: unset;
}

.copyrights {
  background: #077db7f0;
  padding: 1rem 0;
  font-size: 18px;
  border-top: #047db6;
}

.copyrights-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--white);
}

.copyrights img {
  width: auto;
}

/* floater */
.image-container {
  position: fixed;
  display: inline-block;
  bottom: 32%;
  right: 1%;
  z-index: 9;
}

.floater-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floater {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  background: var(--black);
  border-radius: 50%;
  padding: 0.3rem;
}

.floater-icon {
  background: var(--black);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.3s ease;
}

/* .floater-icon img{
    width: 25px;
} */

.floater-text {
  background: var(--black);
  color: var(--white);
  padding: 16px 16px;
  border-radius: 50px;
  white-space: nowrap;
  transform: scaleX(0);
  transform-origin: right;
  opacity: 0;
  transition: all 0.3s ease;
  position: absolute;
  right: 0;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
  padding-right: 50px;
}

.floater:hover .floater-text {
  transform: scaleX(1);
  opacity: 1;
}

/* inner banner */
.inner-banner {
  position: relative;
  overflow: hidden;
}

.desktop-in-banner {
  width: 100%;
  display: block;
  height: auto;
}

.inner-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg,
      rgb(0 0 0 / 73%) 2.5%,
      rgb(0 0 0 / 0%) 66.7%);
  pointer-events: none;
  z-index: 1;
}

.inner-banner-text {
  position: absolute;
  bottom: 10%;
  right: 10%;
  color: var(--white);
  text-align: right;
  z-index: 2;
  width: 80%;
}

.inner-banner-text h1 {
  text-align: right;
  margin-bottom: 1rem;
}

.inner-banner-text p {
  font-weight: 300;
  font-size: 27px;
  text-align: right;
}

.desktop-in-banner {
  display: block;
}

.mobile-in-banner {
  display: none;
}

/* mandatory */

.md-documents {
  background: var(--white);
}

.md-document-head {
  background: url(../assets/images/roundedsquares-black.svg) no-repeat center right;
  background-size: 40%;
}

.md-document-head h3 {
  font-weight: 400;
}

.md-document-head h2 {
  font-weight: 800;
  color: var(--secondary-color);
  width: 60%;
}

.md-documents-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 0;
  border-top: none;
  margin-top: 5rem;
}

.md-documents-div {
  position: relative;
  width: 25%;
  padding: 30px;
  box-sizing: border-box;
  border-top: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.md-documents-div:nth-child(4n)::after,
.md-documents-div:last-child::after {
  display: none;
}

.md-documents-div::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #b7b7b7;
}

.md-documents-number {
  background-color: var(--primary-color);
  color: var(--black);
  border-radius: 50%;
  padding: 10px 15px;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 24px;
  width: 58px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.md-documents-div p {
  margin-bottom: 2rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  width: 100%;
}

.performance {
  background: linear-gradient(180deg, #00315b 8.23%);
  position: relative;
}

.performance-merge-bg {
  background-color: var(--primary-color);
  padding-bottom: 10rem;
  padding-top: 6rem;
  border-bottom-left-radius: 300px;
  border-bottom-right-radius: 300px;
}

.performance-head {
  background: url("/assets/images/roundedsquares-white.svg") no-repeat center right;
  background-size: 40%;
}

.performance-head h3 {
  font-weight: 400;
}

.performance-head h2 {
  font-weight: 800;
  color: var(--black);
  width: 58%;
}

.performance-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 0;
  border-top: none;
  margin-top: 5rem;
}

.performance-div {
  position: relative;
  width: 25%;
  padding: 30px;
  box-sizing: border-box;
  border-top: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.performance-div:nth-child(4n)::after,
.performance-div:last-child::after {
  display: none;
}

.performance-div::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #555555;
}

.performance-number {
  background-color: var(--black);
  color: var(--white);
  display: inline-block;
  border-radius: 50%;
  padding: 10px 15px;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 24px;
  width: 58px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.performance-div p {
  margin-bottom: 2rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  width: 80%;
}

/* language style start */

/* Hide Google Translate top bar */
body>.skiptranslate,
body.VIpgJd-ZVi9od-ORHb {
  display: none !important;
}

.custom-language-selector {
  position: relative;
  display: inline-block;
  background: #fdcc09;
  border-radius: 50px;
  padding: 5px 15px;
  cursor: pointer;
  border: 2px solid #eee;
}

.selected-language {
  display: flex;
  align-items: center;
  font-family: "Barlow", sans-serif;
  color: #000;
}

.language-icon {
  background: #000;
  color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: 8px;
}

.language-options {
  display: none;
  position: absolute;
  background: #fff;
  top: 100%;
  left: 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.language-option {
  padding: 8px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.language-option:hover {
  background: #f0f0f0;
}

/* language style end */

/* about page start */

.journey:target::before {
  content: "";
  display: block;
  height: 150px;
  /* same as header height */
  margin-top: -150px;
  /* negative height */
  visibility: hidden;
}

.more-text1 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.more-text1.show {
  max-height: 2000px;
}

.journey {
  background: var(--white);
}

.journey-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.journey-text {
  width: 55%;
}

.journey-text h3 {
  font-weight: 400;
}

.journey-text h2 {
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 2.5rem;
}

.journey-text p {
  margin-bottom: 1rem;
}

.why-gps {
  margin-top: 3rem;
}

.why-gps h2 {
  font-weight: 400;
  font-size: 35px;
  color: var(--black);
  margin-bottom: 1rem;
}

.journey-img {
  width: 45%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.journey-img div {
  width: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-img .yellowcircle .yellowcircleimg {
  width: 50%;
}

.journey-img-hover1 {
  width: 100%;
  overflow: hidden;
  z-index: 1;
  position: relative;
  -webkit-mask: url(../assets/images/academics-section/mask1.svg) no-repeat center;
  -webkit-mask-size: 100%;
  mask: url(../assets/images/academics-section/mask1.svg) no-repeat center;
  mask-size: 100%;
  transform: translate(10%, 20%);
}

.journey-img-hover2 {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-mask: url(../assets/images/academics-section/mask2.svg) no-repeat center;
  -webkit-mask-size: 100%;
  mask: url(../assets/images/academics-section/mask2.svg) no-repeat center;
  mask-size: 100%;
  transform: translate(-10%, -20%);
}

.journey-img img:nth-of-type(1) {
  width: 100%;
  display: block;
  transition: all 0.5s ease;
}

.journey-img-hover1:hover img {
  transform: scale(1.5);
}

.journey-img img:nth-of-type(2) {
  width: 100%;
  display: block;
  transition: all 0.5s ease;
}

.journey-img-hover2:hover img {
  transform: scale(1.5);
}

.journey-school {
  width: 100%;
  text-align: left;
}

.journey-school p {
  font-size: 18px;
  font-weight: 500;
}

.about-purpose {
  background: var(--white);
}

.about-purpose-flex {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.about-purpose-text {
  width: calc(50% - 1.5rem);
  color: var(--black);
}

.about-purpose-text h3 {
  margin: unset;
}

.about-purpose-text h2 {
  font-weight: 800;
  color: var(--secondary-color);
}

.about-vm-flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.about-vm-div h3 {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 0.5rem;
}

.about-vm-div p {
  font-size: 16px;
}

.about-purpose-img {
  width: calc(50% - 1.5rem);
  position: relative;
  text-align: right;
}

.about-purpose-img img {
  width: 79%;
  margin: auto;
  transition: opacity 0.8s ease;
  z-index: 1;
  -webkit-mask: url(../assets/images/facility-mask.svg) no-repeat center;
  -webkit-mask-size: contain;
  mask: url(../assets/images/facility-mask.svg) no-repeat center;
  mask-size: contain;
}

.class-apart {
  background: var(--grey);
}

.class-apart-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.class-apart-text {
  width: 60%;
}

.class-apart-text h3 {
  margin-bottom: 1rem;
}

.class-apart-list h3 {
  margin-bottom: 1rem;
  font-size: 24px;
  font-weight: 500;
}

.below-content-list h3 {
  margin-bottom: 1rem;
  font-size: 24px;
  font-weight: 500;
}

.class-apart-text h2 {
  margin-bottom: 2rem;
}

.class-apart-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-bottom: 1rem;
}

.class-apart-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.2rem;
  font-size: 20px;
}

.class-apart-list li::before {
  content: "";
  position: absolute;
  left: 2%;
  top: 15%;
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.below-content-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-bottom: 1rem;
}

.below-content-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.2rem;
  font-size: 20px;
}

.below-content-list li::before {
  content: "";
  position: absolute;
  left: 1.2%;
  top: 20%;
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.bg-blck li::before {
  background-color: var(--black) !important;
}

.class-apart-img {
  width: 35%;
}

.class-apart-img img {
  width: 100%;
  height: auto;
  display: block;
  border-top-left-radius: 280px;
  border-top-right-radius: 280px;
  border-bottom-left-radius: 280px;
  aspect-ratio: 1;
  object-fit: cover;
}

.faculty {
  background: var(--grey);
}

.faculty-container {
  background-image: url("/assets/images/roundedsquares-black.svg");
  background-repeat: no-repeat;
  background-position: top right;
}

.faculty-head {
  text-align: left;
  margin-bottom: 60px;
}

.faculty-head p {
  max-width: 60%;
}

.faculty-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem 1.2rem;
  justify-content: flex-start;
  margin-top: 8rem;
}

.faculty-member {
  width: calc(25% - 1.2rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faculty-img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #c4c4c4;
  border: 5px solid #ffdd554d;
  margin: 0 auto 15px;
}

.faculty-member h5 {
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.faculty-member p {
  font-weight: 400;
  font-size: 18px;
}

.partners {
  background-color: var(--primary-color);
  background-image: url("/assets/images/roundedsquares-white.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
}

.partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem;
  justify-content: space-between;
  gap: 1rem;
}

.partner:not(:nth-child(3n)) {
  border-right: 1px solid #ffffffb2;
}

.partner:not(:nth-last-child(-n + 3)) {
  border-bottom: 1px solid #ffffffb2;
}

.partner img {
  max-width: 100%;
  height: auto;
}

.partner p {
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

.empty {
  border-right: none;
}

.accreditation {
  background: linear-gradient(180deg, #00315b 8.23%);
  position: relative;
}

.accreditation-merge-bg {
  background-color: var(--white);
  padding-bottom: 10rem;
  padding-top: 6rem;
  border-bottom-left-radius: 300px;
  border-bottom-right-radius: 300px;
  background-image: url("/assets/images/roundedsquares-black.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
}

.accreditation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
}

.accreditation-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem;
  justify-content: flex-start;
  gap: 0.8rem;
}

.accreditation-div:not(:nth-child(3n)) {
  border-right: 1px solid #00000040;
}

.accreditation-div:not(:nth-last-child(-n + 3)) {
  border-bottom: 1px solid #00000040;
}

.accreditation-div p {
  font-weight: 400;
  font-size: 20px;
}

.accreditation-div h2 {
  font-weight: 500;
  font-size: 24px;
  text-transform: uppercase;
  max-width: 62%;
  margin: 0 auto;
}

.leadership-home-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 8rem 0;
}

.leadership-home-img {
  width: 60%;
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yellowlight {
  width: 100%;
  height: auto;
  z-index: 0;
  transform: translateX(-45%);
  pointer-events: auto;
}

.leadership-img-ab {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: -50%;
  pointer-events: none;
}

.img-wrapper {
  position: absolute;
  width: 16%;
  height: 16%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  pointer-events: none;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.img-wrapper p {
  margin-top: 0.5rem;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  pointer-events: none;
}

.img-wrapper small {
  font-size: 10px;
  pointer-events: none;
}

.leadership-img-ab .img-wrapper:nth-child(1) {
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.leadership-img-ab .img-wrapper:nth-child(2) {
  top: 25%;
  left: 75%;
  transform: translate(-50%, -50%);
}

.leadership-img-ab .img-wrapper:nth-child(3) {
  top: 50%;
  left: 90%;
  transform: translate(-50%, -50%);
}

.leadership-img-ab .img-wrapper:nth-child(4) {
  top: 75%;
  left: 75%;
  transform: translate(-50%, -50%);
}

.leadership-img-ab .img-wrapper:nth-child(5) {
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.leadership-img-ab .img-wrapper:nth-child(6) {
  top: 75%;
  left: 25%;
  transform: translate(-50%, -50%);
}

.leadership-img-ab .img-wrapper:nth-child(7) {
  top: 50%;
  left: 10%;
  transform: translate(-50%, -50%);
}

@keyframes rotateLeadership {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Optional styling */
.leadership-home-text {
  width: 40%;
  padding-right: 10%;
}

.leadership-home-text h2 {
  line-height: 1.3;
}

.leadership-home-text p {
  font-weight: 400;
  font-size: 18px;
}

.timeline {
  background: var(--primary-color);
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.timeline-height {
  min-height: 400px;
}

.timeline-years-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 5rem;
}

.timeline-years {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  flex: 1;
  padding: 1rem 0;
  justify-content: space-between;
}

.timeline-years::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar */
}

.arrow {
  cursor: pointer;
  user-select: none;
  margin: 0 10px;
}

.arrow.next img {
  width: 30px;
  filter: invert(1);
}

.arrow.prev img {
  width: 30px;
  filter: invert(1);
}

.timeline-next {
  transform: rotate(180deg);
}

.year-item {
  background: #ffffff40;
  padding: 1rem 2rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
  border: 1px solid #ffffff73;
  font-weight: 500;
  font-size: 26px;
  position: relative;
}

.year-item.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--white);
}

.year-item.active {
  background: var(--white);
  color: #000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-description {
  margin-top: 4rem;
}

.timeline-description .year-content {
  display: none;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 2rem;
}

.timeline-description .year-content p {
  background: var(--white);
  padding: 2rem;
  border-radius: 35px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: calc(50% - 2rem);
  text-align: left;
  font-weight: 400;
  font-size: 18px;
}

.timeline-description .year-content.active {
  display: flex;
}

/* academics page */
.academic-overview p {
  font-size: 24px;
}

.academic-list-m {
  margin-top: 2rem;
}

.academics {
  background: var(--white);
}

.academics-yellow {
  background: var(--primary-color) !important;
}

.academics-yellow h2 {
  color: var(--black) !important;
}

.academics-grey {
  background-color: var(--grey);
  background-image: url("/assets/images/roundedsquares-black.svg");
  background-repeat: no-repeat;
  background-position: center right;
}

.academics.academics-yellow h2 {
  color: var(--black);
}

.academics.academics-grey h2 {
  color: var(--black);
}

.academics .class-apart-list {
  margin-top: 2rem;
}

.academics.academics-yellow .class-apart-list li::before {
  background-color: var(--black);
}

.academics.academics-grey .class-apart-list li::before {
  background-color: var(--primary-color);
}

.academics-flex {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  background: url("/assets/images/roundedsquares-white.svg") no-repeat center right;
}

.academics-text {
  width: calc(50% - 1.5rem);
  color: var(--black);
}

.academics-text h3 {
  margin: unset;
}

.academics-text h2 {
  font-weight: 800;
  color: var(--secondary-color);
}

.academics-text p {
  font-size: 24px;
}

.academics-img {
  width: calc(50% - 1.5rem);
  position: relative;
  text-align: left;
}

.academics-img img {
  width: 79%;
  margin: auto;
  transition: opacity 0.8s ease;
  z-index: 1;
  -webkit-mask: url(../assets/images/facility-mask.svg) no-repeat center;
  -webkit-mask-size: contain;
  mask: url(../assets/images/facility-mask.svg) no-repeat center;
  mask-size: contain;
}

.academic-curve {
  background: var(--white);
}

.academic-curve-flex {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.academic-curve-text {
  width: calc(50% - 1.5rem);
  color: var(--black);
}

.academic-curve-text p {
  font-size: 24px;
}

.academic-curve-text .class-apart-list {
  margin-top: 2rem;
}

.academic-curve-text h3 {
  margin: unset;
}

.academic-curve-text h2 {
  font-weight: 800;
  color: var(--secondary-color);
}

.academic-curve-img {
  width: calc(50% - 1.5rem);
  position: relative;
  text-align: right;
}

.academic-curve-img img {
  width: 79%;
  margin: auto;
  border-top-right-radius: 280px;
  border-top-left-radius: 280px;
  border-bottom-left-radius: 280px;
}

.academics-faq {
  background: linear-gradient(180deg, #00315b 8.23%);
  position: relative;
  z-index: 1;
}

.academics-faq-merge-bg {
  background-color: var(--primary-color);
  padding-bottom: 10rem;
  padding-top: 6rem;
  border-bottom-left-radius: 300px;
  border-bottom-right-radius: 300px;
}

.academics-faq-div {
  background: url("/assets/images/roundedsquares-white.svg") no-repeat center right;
}

.accordion {
  max-width: 100%;
  min-height: 450px;
  margin: auto;
  margin-top: 4rem;
}

.accordion-item {
  margin-bottom: 2px;
  border-radius: 0;
  overflow: hidden;
}

.accordion-header {
  border: none;
  outline: none;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-weight: 500;
  font-size: 24px;
  position: relative;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.accordion-item:nth-child(odd) .accordion-header {
  background: #ffffff40;
}

.accordion-item:nth-child(even) .accordion-header {
  background: #ffffff1a;
}

.accordion-header.active {
  background: #ffffffbf !important;
}

.accordion-header::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  font-size: 26px;
  transition: transform 0.3s;
}

.accordion-header.active::after {
  content: "−";
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: transparent;
  font-weight: 400;
  font-size: 20px;
  padding: 0 1rem;
}

.accordion-body.show {
  max-height: 200px;
  padding: 1.5rem 1rem;
}

/* careers page */

.career-form {
  background: linear-gradient(180deg, #00315b 8.23%);
  position: relative;
  z-index: 1;
}

.career-merge-bg {
  background-color: var(--primary-color);
  padding-bottom: 10rem;
  padding-top: 6rem;
  border-bottom-left-radius: 300px;
  border-bottom-right-radius: 300px;
}

.career-form-flex {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  background: url("/assets/images/roundedsquares-white.svg") no-repeat top right;
}

.career-form-img {
  width: calc(50% - 1.5rem);
  position: relative;
  text-align: left;
}

.career-form-img img {
  width: 79%;
  margin: auto;
  transition: opacity 0.8s ease;
  z-index: 1;
  -webkit-mask: url(../assets/images/facility-mask.svg) no-repeat center;
  -webkit-mask-size: contain;
  mask: url(../assets/images/facility-mask.svg) no-repeat center;
  mask-size: contain;
}

.career-form-text {
  width: calc(50% - 1.5rem);
  color: var(--black);
}

.career-form-text h3 {
  margin: unset;
}

.career-form-text h2 {
  font-weight: 800;
}

.career-form-text p {
  font-size: 24px;
}

.career-yellowcircle .career-yellowcircleimg {
  width: 50%;
}

.careers-form-div h3 {
  margin-top: 3rem;
  font-weight: 400;
  font-size: 35px;
  text-transform: capitalize;
}

.apply-form {
  display: flex;
  flex-direction: column;
  /* gap: 1.5rem; */
  margin-top: 2rem;
}

.apply-form .form-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  position: relative;
}

.apply-form label {
  width: 180px;
  font-weight: 500;
  font-size: 20px;
}

.apply-form input {
  flex: 1;
  padding: 6px 8px;
  border: none;
  border-bottom: 1px solid #000;
  background-color: transparent;
  outline: none;
  font-size: 20px;
}

.file-input::-webkit-file-upload-button {
  background-color: var(--black);
  color: var(--white);
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 14px;
}

.file-input::file-selector-button {
  background-color: var(--black);
  color: var(--white);
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 14px;
}

.apply-btn {
  cursor: pointer;
  width: max-content;
  padding: 0.9rem 2.5rem;
  font-size: 16px;
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.error-message {
  color: red;
  font-size: 16px;
  margin-top: 0.5rem;
  display: none;
}

/* admission page */

.admission-page {
  background: var(--primary-color);
}

.admissions-lists li::before {
  background-color: var(--black);
}

.class-apart-list.admissions-lists {
  margin-top: 2rem;
}

.admissions-lists li strong {
  font-weight: 500;
}

.career-form-text .admissions-btn {
  text-align: left;
  margin-top: 2.5rem;
}

.admission-form-section {
  padding-bottom: 6rem;
}

.admission-form-section p {
  max-width: 80%;
  font-weight: 400;
  font-size: 24px;
}

.admission-form-flex {
  display: flex;
  gap: 4%;
  justify-content: space-between;
  margin-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #00000033;
}

.students-form-div h3,
.parents-form-div h3 {
  font-weight: 500;
  font-size: 40px;
  margin-bottom: 3rem;
  text-transform: capitalize;
}

.students-form-div,
.parents-form-div {
  width: 48%;
}

.form-row {
  display: flex;
  align-items: flex-end;
  margin-bottom: 25px;
  gap: 1rem;
  position: relative;
}

.form-row label {
  width: 40%;
  font-weight: 500;
  font-size: 20px;
}

.form-row input {
  flex: 1;
  border: none;
  background: transparent;
  border-bottom: 1px solid var(--black);
  outline: none;
  font-size: 15px;
  padding: 5px 0;
  color: var(--black);
}

.form-row label span {
  font-size: 14px;
}

.dob-fields {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dob-fields input {
  width: 40px;
  border: none;
  background: transparent;
  border-bottom: 1px solid var(--black);
  text-align: center;
  padding: 5px 0;
  font-size: 15px;
}

.gender-options {
  display: flex;
  gap: 15px;
}

.gender-options label {
  font-size: 15px;
  font-weight: normal;
  width: max-content;
  display: flex;
  gap: 0.5rem;
}

.btn-holder {
  text-align: left;
}

.submit-btn {
  cursor: pointer;
  font-size: 16px;
}

.admission-requirements-sec {
  background-color: var(--white);
  background-image: url(../assets/images/hat.svg);
  background-repeat: no-repeat;
  background-position: center right;
}

.admission-requirements-sec h3 {
  margin-bottom: 0;
}

.admission-requirements-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.documents-eligibilty,
.eligibility-criteria {
  width: 48%;
}

.documents-eligibilty h2,
.eligibility-criteria h2 {
  color: var(--secondary-color);
  width: 70%;
}

.documents-eligibilty p,
.eligibility-criteria p {
  color: var(--black);
  font-size: 24px;
  width: 80%;
}

.documents-eligibilty .class-apart-list,
.eligibility-criteria .class-apart-list {
  margin-top: 3rem;
}

.admission-requirements-flex .class-apart-list li::before {
  background: var(--black);
}

.class-apart-list li strong {
  font-weight: 500;
}

.eligibility-criteria em {
  font-size: 20px;
  font-style: italic;
  color: #5b5b5b;
  padding-left: 1.5rem;
  display: block;
  padding-top: 1rem;
  font-weight: 500;
}

.scholarships {
  background: linear-gradient(180deg, #00315b 8.23%);
  position: relative;
  z-index: 1;
}

.scholarships-merge-bg {
  background: var(--grey);
  padding-bottom: 10rem;
  padding-top: 6rem;
  border-bottom-left-radius: 300px;
  border-bottom-right-radius: 300px;
}

.scholarships-flex {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  background: url("/assets/images/roundedsquares-black.svg") no-repeat center right;
}

.scholarships-text {
  width: calc(50% - 1.5rem);
  color: var(--black);
}

.scholarships-text h3 {
  margin: unset;
}

.scholarships-text h2 {
  font-weight: 800;
}

.scholarships-text p {
  font-size: 24px;
}

.scholarships-img {
  width: calc(50% - 1.5rem);
  position: relative;
  text-align: left;
}

.scholarships-img img {
  width: 79%;
  margin: auto;
  transition: opacity 0.8s ease;
  z-index: 1;
  -webkit-mask: url(../assets/images/facility-mask.svg) no-repeat center;
  -webkit-mask-size: contain;
  mask: url(../assets/images/facility-mask.svg) no-repeat center;
  mask-size: contain;
}

.scholarships-list {
  margin-top: 2rem;
}

.scholarships-list h3 {
  margin-bottom: 1.5rem;
}

.scholarships-text em {
  font-weight: 500;
  font-style: italic;
  font-size: 20px;
  display: block;
  margin-top: 2rem;
  color: #5b5b5b;
}

.key--highlights {
  margin-top: 3rem;
}

.key--highlights ul li {
  font-weight: 500;
}

/* international student exchange program page */
.looking-ahead {
  background: linear-gradient(180deg, #00315b 8.23%);
  position: relative;
  z-index: 1;
}

.looking-ahead-merge-bg {
  background-color: var(--white);
  padding-bottom: 10rem;
  padding-top: 6rem;
  border-bottom-left-radius: 300px;
  border-bottom-right-radius: 300px;
  background-image: url("/assets/images/roundedsquares-black.svg");
  background-repeat: no-repeat;
  background-position: center right;
}

.looking-ahead h2 {
  color: var(--black);
}

.latest-news-page {
  background: var(--grey);
}

.latest-news-page-flex {
  display: flex;
  flex-wrap: nowrap;
  gap: 3rem;
  justify-content: space-between;
  margin-top: 5rem;
}

.latest-news-page-div {
  width: calc(50% - 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  color: var(--black);
}

.latest-news-page-div img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 1.2rem;
  border-top-left-radius: 280px;
  border-top-right-radius: 280px;
  border-bottom-left-radius: 280px;
}

.latest-news-page-div small {
  font-size: 12px;
  color: #555;
  display: block;
  margin-bottom: 5px;
}

.latest-news-page-div h2 {
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 8px;
}

.latest-news-page-div p {
  font-weight: 300;
  font-size: 24px;
}

.latest-news-page-div small {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 0.5rem;
  display: block;
}

.news--list {
  background: linear-gradient(180deg, #00315b 8.23%);
  position: relative;
  z-index: 1;
}

.news--list-merge-bg {
  background-color: var(--white);
  padding-bottom: 10rem;
  padding-top: 6rem;
  border-bottom-left-radius: 300px;
  border-bottom-right-radius: 300px;
}

.news--list-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  align-items: start;
}

.news--list-div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  background: transparent;
  transition: all 0.5s ease;
  padding: 1.5rem;
  border-top-left-radius: 250px;
  border-bottom-right-radius: 400px;
  border-bottom-left-radius: 250px;
  color: var(--black);
}

.news--list-div:hover {
  background: var(--primary-color);
}

.news--list-div img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
}

.news--div-text {
  color: var(--black);
}

.news--div-text small {
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
}

.news--div-text h2 {
  font-weight: 700;
  font-size: 18px;
}

.news--div-text p {
  font-weight: 400;
  font-size: 18px;
  width: 80%;
}

/* news and events inner page */

.inner-banner-dummy {
  background: var(--grey);
}

.newsdetail--wrapper {
  background: var(--grey);
}

.newsdetail--container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.newsdetail--content {
  width: 58%;
}

.newsdetail--container h1 {
  font-size: 80px;
  line-height: 1;
  width: 100%;
}

.newsdetail--content p {
  margin-bottom: 1rem;
}

.newsdetail--image {
  width: 38%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.newsdetail--image img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 1.2rem;
  border-top-left-radius: 280px;
  border-top-right-radius: 280px;
  border-bottom-left-radius: 280px;
}

/* alter */

.timeline-container {
  padding: 6rem 0 2rem 0;
}

/* Initially show only the first 8 members */
.faculty-flex.limit-view .faculty-member:nth-child(n + 9) {
  display: none;
}

.view-more-btn {
  margin: 3rem auto 0;
  display: block;
  border: 1px solid #000;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  padding: 0.8rem 2rem;
  color: var(--black);
  background: transparent;
  transition: all 0.5s ease;
  cursor: pointer;
}

.view-more-btn:hover {
  background: var(--black);
  color: var(--white);
}

.admission-form-section {
  display: none;
}

.form-row>div {
  width: 60%;
  position: relative;
}

.form-row>div input {
  width: 100%;
}

/* gallery page */

.gpsgallery-wrapper {
  background: linear-gradient(180deg, #00315b 8.23%);
  position: relative;
  z-index: 1;
}

.gpsgallery-merge-bg {
  background-color: var(--white);
  padding-bottom: 10rem;
  padding-top: 6rem;
  border-bottom-left-radius: 300px;
  border-bottom-right-radius: 300px;
}

.gpsgallery-header {
  text-align: left;
  margin-bottom: 5rem;
}

.gpsgallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5rem 2rem;
  justify-items: center;
}

.gpsgallery-item {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eee;
}

.gpsgallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Circle Shape */
.gpsgallery-shape-circle {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 1.2rem;
  border-top-left-radius: 280px;
  border-top-right-radius: 280px;
  border-bottom-left-radius: 280px;
}

/* Shield Shape */
.gpsgallery-shape-shield {
  width: 100%;
  max-width: 500px;
  margin: auto;
  transition: opacity 0.8s ease;
  z-index: 1;
  -webkit-mask: url(../assets/images/facility-mask.svg) no-repeat center;
  -webkit-mask-size: contain;
  mask: url(../assets/images/facility-mask.svg) no-repeat center;
  mask-size: contain;
}

/* contact page */

.contact-sec {
  background: var(--primary-color);
}

.contact-flex {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  background: url(/assets/images/roundedsquares-white.svg) no-repeat bottom left;
  background-size: contain;
}

.contact-details {
  width: calc(50% - 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-start;
}

.contact-details address {
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
}

.contact-details address strong {
  font-weight: 500;
  line-height: 1.3;
}

.contact-others {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-others a {
  display: block;
  font-weight: 400;
  font-size: 26px;
  color: var(--black);
}

.contact-sm a {
  display: inline-block;
}

.contact-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.contact-sm img {
  width: 25px;
  height: 25px;
}

.contact-img {
  width: calc(50% - 1.5rem);
  position: relative;
  text-align: right;
}

.contact-img img {
  width: 79%;
  margin: auto;
  transition: opacity 0.8s ease;
  z-index: 1;
  -webkit-mask: url(../assets/images/facility-mask.svg) no-repeat center;
  -webkit-mask-size: contain;
  mask: url(../assets/images/facility-mask.svg) no-repeat center;
  mask-size: contain;
}

/* Contact Form Section */
.contact-form-sec {
  background: linear-gradient(180deg, #00315b 8.23%);
  position: relative;
  z-index: 1;
}

.contact-merge-bg {
  background-color: var(--primary-color);
  padding-bottom: 10rem;
  padding-top: 6rem;
  border-bottom-left-radius: 300px;
  border-bottom-right-radius: 300px;
}

.contact-form-head h2 {
  font-weight: 500;
  font-size: 40px;
  margin-bottom: 0.2rem;
}

.contact-form-head p {
  font-weight: 400;
  font-size: 20px;
}

.assist-form-flex {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  margin-top: 4rem;
  background: url(/assets/images/roundedsquares-white.svg) no-repeat bottom left;
  background-size: contain;
}

.assist-form-wrap {
  width: calc(50% - 1.5rem);
}

.assist-form {
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
}

.assist-form input,
.assist-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-bottom: 1px solid var(--black);
  background: transparent;
  outline: none;
  font-size: 14px;
}

.assist-form textarea {
  resize: vertical;
  /* min-height: 80px; */
}

.assist-form button {
  width: max-content;
}

.assist-btn {
  display: flex;
  justify-content: flex-end;
}

.assist-form-img {
  width: calc(50% - 1.5rem);
  position: relative;
  text-align: right;
}

.assist-form-img img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 1.2rem;
  border-top-left-radius: 280px;
  border-top-right-radius: 280px;
  border-bottom-left-radius: 280px;
}

/* popup form */
/* Trigger Button */
.open-btn {
  padding: 10px 20px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
}

/* Overlay */
.popup-form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Popup Box */
.popup-form {
  background: var(--primary-color);
  width: 80vw;
  height: 80vh;
  display: flex;
  position: relative;
  border-radius: 0;
  overflow-y: scroll;
  padding: 30px;
  gap: 40px;
}

/* Left Section (Form) */
.popup-left {
  padding-left: 5%;
  width: calc(50% - 1.5rem);
  background: url(/assets/images/roundedsquares-white.svg) no-repeat bottom right;
}

.popup-left h2 {
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: 500;
}

.popup-left p {
  font-weight: 400;
  font-size: 20px;
}

.popup-left form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
  margin-top: 3rem;
}

.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  width: 100%;
  position: relative;
}

.form-group div {
  width: 100%;
  position: relative;
}

.verror-message {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

.form-group label {
  width: 260px;
  flex-shrink: 0;
  color: #000;
  font-weight: 500;
  font-size: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  flex: 1;
  border: none;
  border-bottom: 1px solid #000;
  background: transparent;
  padding: 6px 0;
  font-size: 14px;
  outline: none;
  width: 100%;
}

.form-group textarea {
  resize: vertical;
  height: 60px;
}

.form-group.submit-row {
  justify-content: flex-end;
}

.form-group span {
  font-size: 12px;
}

.choices {
  width: 100% !important;
  margin-bottom: unset !important;
}

.choices .choices__inner {
  flex: 1;
  border: none;
  background-color: transparent;
  padding: 6px 0;
  font-size: 14px;
  outline: none;
  width: 100%;
}

.choices input.choices__input.choices__input--cloned {
  width: 100% !important;
}

/* Right Section (Image) */
.popup-right {
  width: calc(50% - 1.5rem);
  position: relative;
  padding: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-right img {
  width: 79%;
  margin: auto;
  transition: opacity 0.8s ease;
  z-index: 0;
  -webkit-mask: url(../assets/images/facility-mask.svg) no-repeat center;
  -webkit-mask-size: contain;
  mask: url(../assets/images/facility-mask.svg) no-repeat center;
  mask-size: contain;
}

/* Close Button */
.close-btn {
  border-radius: 50%;
  position: absolute;
  top: 5%;
  right: 8%;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  z-index: 9;
  background: var(--black);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

span.close-btn img {
  width: 20px;
  filter: invert(1);
}

/* form styles */
/* preloader */
.formPreloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(47, 48, 49, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  z-index: 9999;
}

.spinner {
  width: 100px;
  height: 100px;
  border: 4px solid #fff0;
  border-top-color: #fff;
  animation: spin 1s linear infinite;
  border-radius: 50%;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.response_message_div {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: none;
  z-index: 2;
}

.response_message_div p {
  top: 50%;
  left: 50%;
  position: fixed;
  color: #000000;
  text-align: center;
  transform: translate(-50%, -50%);
  color: #008900;
  font-weight: 500;
  font-size: 1.4rem;
}

.response_message_div img {
  position: fixed;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -20%);
}

.dob-fields {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dob-fields input {
  padding: 4px 6px;
  /* Smaller padding */
  height: 30px;
  /* Reduced height */
  font-size: 14px;
  width: 60px;
  border-bottom: 1px solid #000;
  box-sizing: border-box;
}

.dob-fields input[name="dob_year"] {
  width: 80px;
}

/* Optional: reduce datalist suggestion font size */
input::-webkit-calendar-picker-indicator {
  display: none;
}

::-webkit-datalist-preview,
::-webkit-datalist-option {
  font-size: 14px;
  padding: 4px;
}

.more-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.more-text.show {
  max-height: 500px;
  /* Adjust depending on content size */
}

.message-home-text p {
  margin-bottom: 1rem;
}

.input-wrapper textarea {
  background: transparent;
  border-bottom: 1px solid var(--black) !important;
  border: unset;
  outline: none;
  font-size: 15px;
  color: var(--black);
}

.underline {
  text-decoration: underline;
}

/* banner nav */
.banner-nav-holder {
  background: #fffffff2;
  box-shadow: 0px 5px 4px 0px #0000001a;
  backdrop-filter: blur(15px);
  padding: 1.5rem;
  position: sticky;
  top: 134px;
  z-index: 2;
}

.banner-nav-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 0;
}

.banner-nav-link {
  position: relative;
  font-size: 18px;
  color: var(--black);
  text-decoration: none;
  transition: all 0.3s ease;
}

/* The sliding underline */
.banner-nav-indicator {
  position: absolute;
  bottom: 0;
  height: 4px;
  background: black;
  border-radius: 2px;
  transition: all 0.4s ease;
  width: 0;
  left: 0;
}

.banner-nav-flex a {
  position: relative;
  color: var(--black);
  font-weight: 500;
  border-right: 1px solid var(--black);
}

.banner-nav-flex a:last-child {
  border-right: unset;
}

.banner-nav-item {
  display: inline-block;
  margin-right: 10px;
  border-right: 1px solid black;
  padding: 0 1rem;
}

/* recent blog posts */

.blogsearch-container {
  width: 40%;
  margin: unset;
}

.blogsearch-searchbox {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 90%;
  margin: auto;
  padding-bottom: 3rem;
}

.blogsearch-input {
  flex: 1;
  padding: 10px;
  border: none;
  border-bottom: 2px solid #999;
  font-size: 16px;
  outline: none;
  background: transparent;
  outline: none;
}

.blogsearch-button {
  background: var(--black);
  color: var(--white);
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 20px;
  font-weight: bold;
}

/* Recently Viewed Section */
.recentlyviewed-container {
  background: var(--white);
  border-radius: 50px;
  box-shadow: 5px 5px 5px 0px #0000001a;
  padding: 3rem 2rem;
  width: 100%;
  margin: auto;
  height: 620px;
  overflow-y: scroll;
}

.recentlyviewed-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.recentlyviewed-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid #0000004d;
  background: transparent;
  transition: all 0.5s ease;
}

.recentlyviewed-item:hover {
  background: var(--grey);
}

.recentlyviewed-item:last-child {
  border-bottom: none;
}

.recentlyviewed-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}

.recentlyviewed-content {
  flex: 1;
}

.recentlyviewed-date {
  font-size: 12px;
  color: #777;
  margin-bottom: 5px;
}

.recentlyviewed-heading {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recentlyviewed-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.recentlyviewed-readmore {
  font-size: 14px;
  color: black;
  text-decoration: none;
  font-weight: bold;
}

.recentlyviewed-readmore:hover {
  text-decoration: underline;
}

/* home about */
.abt-sec h2 {
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  color: #000;
}

.abt-sec-flex {
  display: flex;
  gap: 5rem;
}

.abt-sec-left {
  width: calc(60% - 2.5rem);
}

.abt-sec-left h2 {
  font-weight: 800;
  font-size: 70px;
}

.abt-sec-left p {
  padding-bottom: 1rem;
}

.abt-sec-rit {
  width: calc(40% - 2.5rem);
  position: relative;
  text-align: center;
}

.mySwiper1 .swiper {
  width: 100%;
  height: 100%;
}

.mySwiper1 .swiper-slide {
  background-position: center;
  background-size: cover;
}

.mySwiper1 .swiper-slide img {
  display: block;
  width: 100%;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
  -webkit-mask: url(../assets/images/facility-mask.svg) no-repeat center;
  -webkit-mask-size: contain;
  mask: url(../assets/images/facility-mask.svg) no-repeat center;
  mask-size: contain;
}

/* Add this to your stylesheet */

/* .mySwiper1 .swiper-slide img {
    transform: translateY(20px); 
    opacity: 0;
    transition: all 1s ease;
}

.mySwiper1 .swiper-slide-active img {
    transform: translateY(0); 
    opacity: 1;
} */