/**
 * Landing Page Main Stylesheet
 * Professional CSS with BEM methodology and modern standards
 * Version: 1.0.0
 */

/* Import Variables */
@import url("./variables.css");

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* border: 1px solid red; */
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-normal);
  color: var(--color-primary-black);
  background-color: var(--color-primary-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

html.mobileMenuOpen,
body.mobileMenuOpen {
  overflow: hidden;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ==========================================================================
   Layout Components
   ========================================================================== */

main {
  position: relative;
  background-image: url('../images/bottom-bg.png');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.container {
  width: 100%;
  padding: 0 var(--container-padding);
  margin: 0 auto;
}

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

.button.mobileStickyButton {
  display: none;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px !important;
}

/* ==========================================================================
   Header Styles
   ========================================================================== */

   .accoladeSection__title-mobile {
    display: none;
   }

.mainHeader {
  position: fixed;
  left: 0;
  width: 100vw;
  z-index: 1000;
  opacity: 1;
  background: var(--color-primary-white);
  backdrop-filter: blur(23.186933517456055px);
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}


.headerLogoRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100px;
  max-height: 100px;
  padding: 10px 0;
}

.headerLogo {
  display: flex;
  align-items: center;
}

.headerLogo__img {
  width: 357px;
  height: 77px;
  object-fit: contain;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.heroSection {
  display: flex;
  align-items: flex-start;
  background-color: #000;
  background-size: 64% auto, cover;
  background-position: right bottom, center;
  background-repeat: no-repeat, no-repeat;
  color: var(--color-primary-text);
  position: relative;
  overflow: hidden;
  /* min-height: 100vh; */
  padding-top: 100px;
  /* border: 1px solid var(--color-primary); */
}

.button__arrow {
  background-color: var(--color-primary-white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius-2xl);
  margin-left: 50px;
  width: 50px;
  height: 50px;
}

h1.heroSection__title {
    margin-top: 51px;
    text-align: center;
    margin-bottom: 20px;
    font-size: var(--font-size-5xl);
    font-weight: 300;
    line-height: 108%;
    letter-spacing: 0%;
    font-family: var(--font-family-primary);
    color: var(--color-primary-white);
}

.heroSection__title--highlight {
  color: var(--color-primary-white);
  font-weight: var(--font-weight-bold);
}

.heroSection__content {
    /* border: 1px solid blue; */
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.admission_open {
    clip-path: polygon(100% 0, 90% 50%, 100% 100%, 0% 100%, 10% 50%, 0% 0%);
    /* border-radius: 12px; */
    background-color: var(--color-primary);
    /* height: 50px;
    max-height: 50px; */
    padding: 14px 50px;
    /* width: 290px;
    max-width: 290px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.admission_open h5 {
    font-family: var(--font-family-primary);
    color: var(--color-primary-white);
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    line-height: 108%;
    letter-spacing: 0%;
}

.admission_open_data {
    display: flex;
    width: 80%;
    max-width: 80%;
    gap: 20px;
}

.admission_open_data_mobile {
    display: none;
    position: relative; /* Make this a positioning context for absolute children */
}

.admission_open_data_item {
    display: flex;
    flex: 1;
    justify-content: flex-start;
    /* border: 1px solid red; */
    /* justify-content: center; */
    flex-direction: column;
}



.admission_open_data_icon--desktop {
    width: 50vw;
    max-width: 948px;
    margin-bottom: 15px;
}

.admission_open_data_icon--mobile {
    display: none;
    max-width: 220px;
    width: 100%;
    height: auto;
    margin: 0px auto 0px;
}

.admission_open_data_mobile_content_item .admission_open_data_mobile_content_item_subtitle h6 {
    /* border: 1px solid #fff ; */
    margin-top: 8px;
    font-size: 14px;
    color: var(--color-primary-white) !important;
    font-weight: 400;
}

.admission_open_data_item {
    text-align: center;
}

.admission_open_data_item h6 {
    font-family: var(--font-family-primary);
    color: #FDBF06;
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    line-height: 150%;
    letter-spacing: 0%;
}

.admission_open_subtitle h6 {
    font-size: var(--font-size-2xl);
    color: var(--color-primary-white);
    font-weight: var(--font-weight-regular);
    line-height: 150%;
    letter-spacing: 0%;
    margin-top: 14px;
}

.admission_open_data_item_highlight {
    display: block;
}

/* Video Section */
.heroSection__video {
    width: 100%;
    /* border: 1px solid #fff; */
    text-align: center;
    height: 45vh; /* Adjust this value to show more or less of the video */
    overflow: hidden;
    position: relative;
}

.heroSection__video::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    /* background: linear-gradient(0deg, #0A0617 0%, rgba(10, 6, 23, 0) 100%); */
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 12;
}

.heroSection__video video {
    width: 100%;
    height: 100vh; /* Make video taller than container to ensure cropping */
    min-height: 100vh;
    object-fit: cover;
    object-position: top; /* This ensures we show the top portion */
}

/* Side Images */
.heroSection__video-left,
.heroSection__video-right {
    position: absolute;
    height: 100%;
    width: auto;
    object-fit: contain;
    z-index: 10;
    pointer-events: none;
}

/* Mobile Side Images - Hidden by default */
.heroSection__video-left-mobile,
.heroSection__video-right-mobile {
    display: none;
    position: absolute;
    height: 100%;
    width: auto;
    object-fit: contain;
    z-index: 10;
    pointer-events: none;
    width: 176px;
    max-width: 176px;
}

.heroSection__video-left {
    left: 0;
    top: 10%;
    max-width: 437px;
    width: 437px;
    max-height: 230px;
}

.heroSection__video-right {
    max-width: 437px;
    width: 437px;
    max-height: 230px;
    right: 0;
    top: 10%;
}

.heroSection__video-left-mobile {
    left: 0;
    top: 0%;
}

.heroSection__video-right-mobile {
    right: 0;
    top: 0%;
}

/* Video Text Overlay */
.heroSection__video-text {
    background-color: #FDBF06;
    color: #0B0617;
    position: absolute;
    bottom: 59px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-3xl);
    text-transform: uppercase;
    font-weight: var(--font-weight-bold);
    text-align: center;
    z-index: 15;
    white-space: nowrap;
    pointer-events: none;
    padding: 21px 50px;
    line-height: 100%;
}

/* Hero Mobile Section */


.admission_open_data_mobile_content {
    display: flex;
}

.admission_open_data_mobile_content_item {
    /* width: 160px;
    max-width: 160px; */
    /* border: 1px solid #fff; */
    position: relative; /* Keep relative for items 2 and 3 */
}

.admission_open_data_mobile_content_item h6 {
    color: #FDBF06;
    font-weight: var(--font-weight-bold);
    font-size: 16px;
    line-height: 130%;
    text-align: center;
}

/* Position 1st item at top of parent container */
.admission_open_data_mobile_content_item:nth-child(1) {
    position: absolute; /* Position relative to .admission_open_data_mobile parent */
    top: 32%;
    left: 11%;
}

/* 2nd item stays as is (no additional styling needed) */

/* Position 3rd item at top */
.admission_open_data_mobile_content_item:nth-child(3) {
    right: 11%;
    position: absolute;
    top: 32%;
}


/* Recruitment Section Carousel Section */
.recruitmentSection__content {
    /* border: 1px solid green; */
    height: 678px;
    max-height: 678px;
    /* border: 1px solid yellow; */
  display: flex;
  gap: 16px;
  justify-content: center;
  /* flex-wrap: wrap; */
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.recruitmentSection__line {
    position: absolute;
    top: 0;
    width: 73vw;
    max-width: 1447px;
}

.recruitmentSection__slider .swiper-wrapper {
    /* border: 1px solid yellow; */
    align-items: center;
}

.recruitmentSection__slider {
    /* border: 1px solid yellow; */
  --recruitment-slide-height: 103px;
  --recruitment-slide-gap: 60px;
  width: 200px;
  height: calc((var(--recruitment-slide-height) * 3) + (var(--recruitment-slide-gap) * 2));
  max-height: calc((var(--recruitment-slide-height) * 3) + (var(--recruitment-slide-gap) * 2));
  /* border: 1px solid red; */
  justify-content: center;
  overflow: hidden;
}

.recruitmentSection__slider:nth-of-type(2) {
  transform: translateX(-64px);
}

.recruitmentSection__slider:nth-of-type(4) {
  transform: translateX(64px);
}

.recruitmentSection__slider .swiper-button-next,
.recruitmentSection__slider .swiper-button-prev,
.recruitmentSection__slider .swiper-pagination {
  display: none;
}

.recruitmentSection__slide {
  /* border: 1px solid blue; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #f5f5f5; */
  max-width: 177px;
  height: 103px;
  max-height: 103px;
  flex: 0 0 103px;
}

@media (min-width: 1400px) {
  .recruitmentSection__slider {
    --recruitment-slide-gap: 80px;
  }

 
}

@media (max-width: 1399px) {
  .recruitmentSection__slider {
    --recruitment-slide-gap: 30px;
  }
}

@media (max-width: 1279px) {
  .recruitmentSection__slider {
    --recruitment-slide-gap: 20px;
  }
}

@media (max-width: 1023px) {
  .recruitmentSection__slider {
    --recruitment-slide-gap: 30px;
  }
}

@media (max-width: 767px) {
  .recruitmentSection__slider {
    --recruitment-slide-gap: 5px;
  }
}

.recruitmentSection__top-carousel {
    background: rgba(192, 4, 21, 1);
    padding-top: 22px;
    padding-bottom: 21px;
    position: relative;
}

.recruitmentSection__top-carousel::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 60px solid rgba(192, 4, 21, 1);
    z-index: 1;
}

@media (min-width: 769px) {
    .recruitmentSection__top-carousel-slider {
        display: none !important;
    }
}

.middle-image__icon {
    width: 377px;
    height: 57px;
    object-fit: contain;
}

.recruitmentSection__wrapper {
    /* border: 1px solid #fff; */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 20px; */
}

.carousel-slide-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #fff;
    font-size: 32px;
    font-weight: 300;
}

.recruitmentSection__left-carousel-slider .swiper-slide,
.recruitmentSection__right-carousel-slider .swiper-slide,
.recruitmentSection__top-carousel-slider .swiper-slide {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 5px;
}

.recruitmentSection__left-carousel-slider {
    /* border: 1px solid yellow; */
    position: relative;
    overflow: hidden;
}

.recruitmentSection__left-carousel-slider::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: linear-gradient(to left, rgba(192, 4, 21, 1) 0%, rgba(192, 4, 21, 0.8) 30%, rgba(192, 4, 21, 0) 100%);
    pointer-events: none;
    z-index: 10;
}

.recruitmentSection__right-carousel-slider {
    /* border: 1px solid blue; */
    position: relative;
    overflow: hidden;
}

.recruitmentSection__right-carousel-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 100%;
    background: linear-gradient(to right, rgba(192, 4, 21, 1) 0%, rgba(192, 4, 21, 0.8) 30%, rgba(192, 4, 21, 0) 100%);
    pointer-events: none;
    z-index: 10;
}

/* Accolade Section */
.accoladeSection {
    position: relative;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 85px;
}

.accoladeSection::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background-image: url('../images/Square.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    z-index: 0;
    pointer-events: none;
}

.accoladeSection__wrapper {
    /* border: 1px solid yellow; */
    position: relative;
    z-index: 1;
}

.accoladeSection__left-image {
    width: 100%;
    /* max-width: 849px; */
    height: 100%;
    /* object-fit: contain; */
    position: relative;
    z-index: 1;
}

.accoladeSection__left {
    flex: 0 0 50%;
    text-align: right;
    position: relative;
    overflow: hidden;
}

.accoladeSection__left-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.accoladeSection__right {
    flex: 0 0 50%;
    text-align: center;
}

.accoladeSection__wrapper {
    display: flex;
    gap: 20px;
}

.accoladeSection__timline {
    max-height: 623px;
    /* border: 1px solid red; */
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    scroll-behavior: smooth;
    /* Hide scrollbar for Chrome, Safari and Opera */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.accoladeSection__timline::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.accoladeSection__title {
    font-size: 48px;
    font-weight: 300;
    line-height: 108%;
    letter-spacing: 0%;
    margin-bottom: 20px;
}


/* ==========================================================================
   Timeline Component
   ========================================================================== */

   .timeline-container {
    /* max-width: 900px; */
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 134px;
    bottom: 180px;
    width: 3px;
    background: #e0e0e0;
    transform: translateX(-50%);
}

.timeline-line-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    background: #ff4757;
    height: 0%;
    transition: height 0.3s ease;
}

.timeline-items {
    position: relative;
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    /* opacity: 0.6; */
    transition: opacity 0.4s ease;
}

.timeline-item.active {
    opacity: 1;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
    padding-right: 55%;
    text-align: right;
}

.timeline-item:nth-child(even) img.timeline-content-icon {
    left: 46px;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
    padding-left: 55%;
    text-align: left;
}

.timeline-content {
    border: 2px solid rgba(201, 201, 201, 1);
    position: relative;
    background: white;
    padding: 16px;
    padding-top: 55px;
    padding-bottom: 51px;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
    transition: all 0.4s ease;
}

.timeline-item.active .timeline-content {
    /* box-shadow: 0 8px 30px rgba(255, 71, 87, 0.2); */
    /* transform: scale(1.05); */
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #000;
    /* border: 3px solid #e0e0e0; */
    border-radius: 50%;
    left: calc(50% - 8px);
    top: 30px;
    z-index: 2;
    transition: all 0.4s ease;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item.active .timeline-dot {
    background: #C00415;
    /* border-color: #ff4757; */
    width: 16px;
    height: 16px;
    left: calc(50% - 8px);
    top: 50%;
    transform: translateY(-50%);
    /* box-shadow: 0 0 0 6px rgba(255, 71, 87, 0.2); */
}

.timeline-title {
    font-size: 18px;
    font-weight: 300;
    color: #555555;
    line-height: 150%;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-item:nth-child(odd) .timeline-title {
    justify-content: flex-end;
}

.timeline-item:nth-child(even) .timeline-title {
    justify-content: flex-start;
}

.timeline-title .icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.timeline-date {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

img.timeline-content-icon {
    right: 46px;
    position: absolute;
    top: -26px;
    width: 70px;
    margin: 0 10p;
    height: 60px;
    padding: 0 10px;
    background-color: #fff;
}

@media (max-width: 768px) {
    /* .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-right: 0;
        padding-left: 0;
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

    .timeline-line {
        left: 20px;
        transform: none;
    }

    .timeline-line-progress {
        left: 0;
    }

    .timeline-dot {
        left: 11px;
    }
    
    .timeline-item.active .timeline-dot {
        left: 8px;
    }

    .timeline-content {
        margin-left: 60px;
    }

    .timeline-title {
        justify-content: flex-start !important;
    } */

    .recruitmentSection__wrapper {
      flex-direction: column;
      gap: 14px;
      /* border: 1px solid red; */
    }

    .recruitmentSection__top-carousel-slider {
      /* border: 1px solid blue; */
      width: 100%;
    }

    .recruitmentSection__top-carousel::after {
      bottom: -34px;
    }
}

/* aboutProgrammeSection */

.aboutProgrammeSection {
    padding-top: 50px;
}

.aboutProgrammeSection__cards {
    position: relative;
}

.aboutProgrammeSection__card {
    /* padding-top: 32px; */
    width: 100vw;
    color: #fff;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    overflow: hidden;
}

.aboutProgrammeSection__card:nth-child(1) {
    box-shadow: 0px -5px 4px 0px #0000000D;
    border-top: 1px solid #D3D3D3;
    height: 100vh;
    top: 100px;
    background: #fff;
    /* background: rgb(40, 130, 200); */
    /* background: #F9FDFF; */
}

.aboutProgrammeSection__card:nth-child(2) {
    box-shadow: 0px -5px 4px 0px #0000000D;
    border-top: 1px solid #D3D3D3;
    height: 90vh;
    top: calc(94px + 10vh);
    background: #fff;
    /* background: #F9FDFF; */

}

.aboutProgrammeSection__card:nth-child(3) {
    box-shadow: 0px -5px 4px 0px #0000000D;
    border-top: 1px solid #D3D3D3;
    height: 80vh;
    top: calc(100px + 20vh);
    background: #fff;
    /* background: #F9FDFF; */

}

.aboutProgrammeSection__card:nth-child(4) {
    box-shadow: 0px -5px 4px 0px #0000000D;
    border-top: 1px solid #D3D3D3;
    height: 70vh;
    top: calc(100px + 30vh);
    /* background: #F9FDFF; */
    background: #fff;

}

.aboutProgrammeSection__card:nth-child(4) .container {
  background: #F9FDFF;
}
.aboutProgrammeSection__card:nth-child(3) .container {
  background: #F9FDFF;
}
.aboutProgrammeSection__card:nth-child(2) .container {
  background: #F9FDFF;
}
.aboutProgrammeSection__card:nth-child(1) .container {
  background: #F9FDFF;
}


.aboutProgrammeSection__card-content-wrapper {
    width: 100%;
    height: 100%;
}

img.aboutProgrammeSection__card-right-image {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}





h4.aboutProgrammeSection__card-title {
    font-size: 32px;
    font-weight: 300;
    color: #C00415;
    line-height: 100%;
    margin-bottom: 30px;
    position: relative;
}

.aboutProgrammeSection__card-content-subtitle {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #333;
  margin-bottom: 44px;
}

.aboutProgrammeSection__card:nth-child(3) p.aboutProgrammeSection__card-content {
  margin-bottom: 20px;
}

.aboutProgrammeSection__card-title-number {
    position: absolute;
    left: -48px;
    top: 0;
    font-size: 20px;
    font-weight: 300;
    color: #000;
}

p.aboutProgrammeSection__card-content {
    font-weight: 300;
    font-size: 18px;
    line-height: 170%;
    margin-bottom: 53px;
    color: #555555;
}

.aboutProgrammeSection__card-wrapper {
    display: flex;
    /* border: 1px solid green; */
}

.aboutProgrammeSection__card-left {
    padding-top: 32px;
    /* width: 50%; */
    flex: 0 0 60%;
    padding-right: 86px;
    /* border: 1px solid red; */
}

.aboutProgrammeSection__card-right {
    /* width: 50%; */
    flex: 0 0 40%;
    /* border: 1px solid blue; */
}

.specialization-item-content P {
    font-weight: 300;
    font-size: 18px;
    line-height: 150%;
    color: #555555;
}

.specialization-item {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 21px;
}

.specialization-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* aboutProgrammeSectionMobile */
.aboutProgrammeSectionMobile {
    display: none;
    padding-top: 50px;
    padding-bottom: 50px;
}

.aboutProgrammeSectionMobile__tabs-wrapper {
    width: 100%;
}

.aboutProgrammeSectionMobile__tabs {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    margin-bottom: 10px;
    padding-bottom: 12px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.aboutProgrammeSectionMobile__tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.aboutProgrammeSectionMobile__tab {
    flex-shrink: 0;
    padding: 9px 24px;
    background: #fff;
    border: 1px solid #D4D4D4;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.aboutProgrammeSectionMobile__tab:hover {
    background: #e9e9e9;
}

.aboutProgrammeSectionMobile__tab.active {
    background: #C00415;
    color: #fff;
    border-color: #C00415;
}

.aboutProgrammeSectionMobile__tab.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #C00415;
}

.aboutProgrammeSectionMobile__content {
    position: relative;
    min-height: 200px;
}

.aboutProgrammeSectionMobile__panel {
    display: none;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #D3D3D3;
}

.aboutProgrammeSectionMobile__panel.active {
    display: block;
    background: #F9FDFF;
}
img.aboutProgrammeSectionMobile__panel-image-img {
    width: 100%;
}
.aboutProgrammeSectionMobile__panel-title {
    font-size: 18px;
    font-weight: 400;
    color: #C00415;
    margin-bottom: 20px;
    line-height: 100%;
}

.aboutProgrammeSectionMobile__panel-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    font-weight: 300;
    line-height: 150%;
    margin-bottom: 20px;
}

.aboutProgrammeSectionMobile__panel-specialisation-title {
  color: #C00415;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
  margin-bottom: 20px;
}

/* elegibilitySection */

.elegibilitySection {
    padding-top: 60px;
    padding-bottom: 60px;
}

.elegibilitySection__content-wrapper {
    display: flex;
    align-items: flex-start;
    /* border: 1px solid red; */
    /* gap: 20px; */
}

.elegibilitySection__content-item-left {
    flex: 0 0 58%;
    min-width: 0;
    max-width: 58%;
    /* border: 1px solid blue; */
    gap: 20px;
}

.img-left-wrapper {
  /* border: 1px solid red; */
  width: 50%;
}

.img-right-wrapper {
  /* border: 1px solid red; */
  width: 50%;
}

.elegibilitySection__content-item-right {
    flex: 0 0 42%;
    min-width: 0;
    max-width: 42%;
    padding-left: 20px;
    box-sizing: border-box;
    overflow: hidden;
    /* border: 1px solid green; */
}

.elegibilitySection__content-item-left {
    display: flex;
}

.img-right-wrapper {
    display: flex;
    flex-direction: column;
    /* width: 100%; */
    gap: 21px;
}

.img-right-content-top {
    padding: 30px;
    display: flex;
    /* max-height: 306px; */
    align-items: flex-end;
    /* justify-content: flex-end; */
    position: relative;
    width: 100%;
    flex: 0 0 calc(50% - 10.5px);
    background: radial-gradient(50% 50% at 50% 50%, #F8172B 0%, #C00415 100%);
}


img.img-right-image {
    right: 30px;
    top: 30px;
    position: absolute;
    height: 100px;
    width: 100px;
}

.img-right-content-bottom {
    padding: 30px;
    /* max-height: 306px; */
    position: relative;
    width: 100%;
    flex: 0 0 calc(50% - 10.5px);
    background: radial-gradient(50% 50% at 50% 50%, #0F3979 0%, #082A5D 100%);
    display: flex;
    align-items: flex-end;
}

img.img-left-image {
    /* height: 100%; */
    /* max-height: 633px; */
    /* width: 100%; */
    /* object-fit: cover; */
    height: 633px;
    max-height: 633px;
    width: 100%;
}




.img-left-content-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 150%;
    color: #FFFFFF;
}

p.img-left-content-subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: #FFFFFF;
}

.img-right-content-top .img-left-content {
    /* border: 1px solid yellow; */
    max-width: 201px;
}

/* ==========================================================================
   Accordion Styles
   ========================================================================== */

   .accordion-wrapper {
    /* border: 1px solid red; */
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    /* max-width: 600px; */
  }
  
  .accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    /* box-shadow: 0px 0px 14px 0px #00000040; */
    box-shadow: 0px 0px 14px 0px #0000000D;
  
  }
  
  .accordion-item.active .accordion-title {
      color: #000;
      font-weight: 700;
      font-size: 24px;
      line-height: 150%;
      letter-spacing: 0%;
  }
  
  .accordion-item.active .accordion-header {
      padding-top: 30px;
    margin-bottom: 15px;
  }
  
  .accordion-item.active .accordion-content {
      /* border: 1px solid red; */
      padding-bottom: 49px !important;
  }
  
  .accordion-header {
      height: 74px;
      max-height: 74px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 20px;
    cursor: pointer;
    background-color: #fff;
    transition: background-color 0.3s ease;
  }
  
  /* .accordion-header:hover {
    background-color: #f0f0f0;
  } */
  
  .accordion-title {
    font-size: 24px;
    font-weight: 400;
    color: #000;
    line-height: 150%;
    letter-spacing: 0%;
  }
  
  .accordion-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    display: block;
    transform: rotate(180deg);
    margin-left: 6px;
  }
  
  .accordion-item.active .accordion-icon {
    transform: rotate(0deg);
  }
  
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    background-color: #fff;
  }
  
  .accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 16px 20px;
    padding-left: 20px;
    padding-right: 33px;
    padding-top: 0px;
  }
  
  .accordion-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 18px;
    line-height: 140%;
    font-weight: 300;
  }
  
  

/* ===================================== procedureSection ===================== */

.procedureSection__wrapper {
  padding-left: 20px;
  padding-right: 20px;
    padding-top: 44px;
    padding-bottom: 58px;
    background: radial-gradient(50% 50% at 50% 50%, #0F3979 0%, #082A5D 100%);
}

.procedureSection__title {
    font-size: 48px;
    color: #FFFFFF;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 14px;
}

.procedureSection__content {
    font-weight: 300;
    font-size: 32px;
    line-height: 100%;
    color: #FFFFFF;
    letter-spacing: 0%;
}


/* ==========================================================================
   Alumni Section Carousel
   ========================================================================== */

   .alumniSection {
    padding: 102px 0;
  }
  
  .alumniSection__title-wrapper {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  
  .alumniSection__title-wrapper .accoladeSection__title {
    margin-bottom: 0;
  }
  
  .alumniSection__navigation {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .alumniSection__navigation--mobile {
    display: none;
  }
  
  .alumniSection__navigation .swiper-button-prev,
  .alumniSection__navigation .swiper-button-next {
    position: static;
    margin: 0;
    width: 60px;
    height: 60px;
    color: transparent;
    background: #fff;
    /* border: 1px solid #F0F0F0; */
    /* border-radius: 50%; */
    transition: all 0.3s ease;
    background-image: url('../images/carousel-arrow-left.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 49px 49px;
  }
  
  .alumniSection__navigation .swiper-button-prev::after,
  .alumniSection__navigation .swiper-button-next::after {
    display: none;
  }
  
  .alumniSection__navigation .swiper-button-next {
    transform: rotate(180deg);
  }
  
  .alumniSection__navigation .swiper-button-prev:hover {
    background-color: #f5f5f5;
    background-image: url('../images/carousel-arrow-left.svg');
    border-color: #ddd;
  }
  
  .alumniSection__navigation .swiper-button-next:hover {
    /* background-color: #f5f5f5; */
    background-image: url('../images/carousel-arrow-left.svg');
    /* border-color: #ddd; */
    transform: rotate(180deg);
  }
  
  .alumniSection__navigation .swiper-button-prev.swiper-button-disabled,
  .alumniSection__navigation .swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
  }
  
  .alumniSection__navigation .swiper-button-next.swiper-button-disabled {
    transform: rotate(180deg);
  }
  
  .alumniSection__content-carousel {
    position: relative;
    padding: 20px 0;
  }
  
  .alumniSection__carousel {
    overflow: visible;
  }
  
  .alumniSection__slide {
    height: auto;
  }
  
  .alumniSection__slide-content {
    /* padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    min-height: 150px;
     */
     border: 1px solid #F0F0F0;
      box-shadow: 0px 0px 14px 0px #0000000D;
      padding-left: 20px;
      padding-right: 20px;
      /* padding-top: 24px; */
      border-radius: 10px;
      padding-bottom: 24px;
      max-height: 400px;
      height: 400px;
  }

  .alumniSection__testimonial-scroll {
    /* border: 1px solid red; */
    max-height: 260px;
    overflow-y: auto;
    /* Firefox scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: #C00415 transparent;
  }

  /* Webkit scrollbar styling (Chrome, Safari, Edge) */
  .alumniSection__testimonial-scroll::-webkit-scrollbar {
    width: 8px;
  }

  .alumniSection__testimonial-scroll::-webkit-scrollbar-track {
    background: transparent;
  }

  .alumniSection__testimonial-scroll::-webkit-scrollbar-thumb {
    background: #C00415;
    border-radius: 4px;
  }

  .alumniSection__testimonial-scroll::-webkit-scrollbar-thumb:hover {
    background: #a00312;
  }
  
  .alumniSection__testimonial {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
  }
  
  .alumniSection__name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
  }

  .alumniSection__slide-image {
    padding: 7px 30px;
    background: #F9FDFF;
    border: 1px solid #F0F0F0;
    box-shadow: 0px 0px 14px 0px #0000000D;
    /* margin-top: 10px; */
  }

  .alumni-image-name-subtitle {
    font-weight: 400;
    font-size: 16px;
    color: #555555;
    line-height: 150%;
    letter-spacing: 0%;
  }

  .alumniSection__testimonial {
    font-weight: 300;
    font-size: 18px;
    color: #555555;
    line-height: 150%;
    letter-spacing: 0%;
  }

  .alumniSection__slide-image {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  img.alumni-image-img {
    width: 70px;
    height: 70px;
  }

  .alumniSection__slide-quote-icon {
    margin-bottom: 20px;
  }

  /* ==================== Global =============== */
  .globalSection {
    background-color: #0A0617;
    padding-bottom: 100px;
  }

  .contactSection__wrapper {
    display: flex;      
  }


  .contactSection__item-left {
    flex: 0 0 60%;
    min-width: 0;
    max-width: 60%;
    padding-top: 100px;
    /* border: 1px solid blue; */
  }

  .contactSection__item-right {
    flex: 0 0 40%;
    min-width: 0;
    max-width: 40%;
    /* border: 1px solid red; */
  }

  .contactSection__wrapper .procedureSection__title {
    margin-bottom: 30px;
  }

  .contactSection__item-left-content {
    font-weight: 300;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 150%;
    letter-spacing: 0%;
    margin-bottom: 16px;
  }

  img.contactSection__item-right-image {
    width: 100%;
    object-fit: contain;
    margin-top: -60px;
}

  .contactSection__item-left-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
    margin-bottom: 16px;
  }

  .contactSection__item-left-logos .logo-box {
    width: 167px;
    height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .contactSection__item-left-logos .logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
.hide-contactSection__item-left-logos-carousel-1 {
  display: none !important;
}
.hide-contactSection__item-left-logos-carousel-2 {
  display: none !important;
}
  .hide-contactSection__item-left-logos-carousel-1,
  .hide-contactSection__item-left-logos-carousel-2 {
    /* margin-top: 16px;
    margin-bottom: 16px; */
    overflow: hidden;
  }

  .hide-contactSection__item-left-logos-carousel-1 .swiper-slide,
  .hide-contactSection__item-left-logos-carousel-2 .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hide-contactSection__item-left-logos-carousel-1 .logo-box,
  .hide-contactSection__item-left-logos-carousel-2 .logo-box {
    width: 120px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hide-contactSection__item-left-logos-carousel-1 .logo-box img,
  .hide-contactSection__item-left-logos-carousel-2 .logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .mous-title {
    font-weight: 300;
    font-size: 20px;
    line-height: 170%;
    color: #fff;
    letter-spacing: 0%;
    margin-top: 40px;
  }


  /* ==================== Scholarship =============== */

  .scholarshipSection {
    padding: 100px 0;
    padding-bottom: 0;
    /* position: sticky;
    top: 0; */
  }

  .scholarshipSection__content {
    display: flex;
    gap: 16px;
    background: #F9FDFF;
    padding: 21px 30px;
    border: 1px solid #D9D9D9
  }

  .scholarshipSection__content-left-image {
    border: 1px solid blue;
    width: 100%;
    object-fit: contain;
    /* flex: 0 0 50%; */
    margin-bottom: 16px;
  }

  .scholarshipSection__content-wrapper {
    overflow: auto;
    max-height: 697px;
    /* Hide scrollbar for Chrome, Safari and Opera */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }

  .scholarshipSection__content-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  .scholarshipSection__content-right {
    /* border: 1px solid green; */
    flex: 0 0 50%;
  }

  .scholarshipSection__content-wrapper-item {
    border: 1px solid #D9D9D9;
    background: #F9FDFF;
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 47px;
    padding-right: 14px;
    margin-bottom: 20px;
  }

  .scholraship-icon-img {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    object-fit: contain;
  }

  h3.scholraship-content-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    margin-bottom: 20px;
  }

  p.scholraship-content-subtitle {
    font-weight: 300;
    font-size: 18px;
    color: #555555;
    line-height: 150%;
    letter-spacing: 0%;
    margin-bottom: 0;
  }

  /* importantDatesSection */

  .importantDatesSection {
    padding: 100px 0;
  }

  .importantDatesSection__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 10px;
  }

  .importantDatesSection__row {
    display: flex;
    gap: 20px;
    width: 100%;
  }

  .importantDatesSection__date-box {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    align-items: flex-start;
    gap: 10px;
  }

  .importantDatesSection__date-box-content-title {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #555555;
    transition: color 0.3s ease;
  }

  .importantDatesSection__box:hover .importantDatesSection__date-box-content-title {
    color: #fff;
  }

  .importantDatesSection__date-box-content {
    padding-top: 83px;
  }
 

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

  .importantDatesSection__box {
    flex: 1;
    padding: 30px;
    background-color: #fff;
    /* border-radius: 8px; */
    box-shadow: 0px 0px 14px 0px #00000040;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .importantDatesSection__row--center .importantDatesSection__box {
    flex: 0 0 calc((100% - 60px) / 4);
  }

  /* Blur all boxes when any box is hovered */
  .importantDatesSection:has(.importantDatesSection__box:hover) .importantDatesSection__box {
    filter: blur(3px);
  }

  /* Remove blur from the hovered box */
  .importantDatesSection:has(.importantDatesSection__box:hover) .importantDatesSection__box:hover {
    filter: blur(0);
  }

  .importantDatesSection__box:hover {
    transform: translateY(-5px) rotate(4deg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background: radial-gradient(50% 50% at 50% 50%, #F8172B 0%, #C00415 100%);
    z-index: 1;
  }

  .importantDatesSection__box h3 {
    font-weight: 300;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #000;
    transition: color 0.3s ease;
  }

  .importantDatesSection__box:hover h3 {
    color: #fff;
  }

  p.importantDatesSection__year-box-content {
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #fff;
    padding: 6px 18px;
    background: #000;
    border-radius: 24px;
    transition: color 0.3s ease, background 0.3s ease;
  }

  .importantDatesSection__box:hover p.importantDatesSection__year-box-content {
    color: #000;
    background: #fff;
  }

  .importantDatesSection__button {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }


  /* Explore the Future Section */
  .explorethefutureSection {
    /* background-image: url('../images/explorefuture-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    position: relative;
  }

  .explorethefutureSection .container {
    position: relative;
    padding-top: 153px;
    padding-bottom: 306px;
  }

  .explorethefutureSection .container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/explore-left.png');
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
  }

  .explorethefutureSection .container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/explore-right.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
  }

  .explorethefutureSection__middle-title {
    font-weight: 300;
    font-size: 64px;
    line-height: 150%;
    letter-spacing: 0%;
    margin-bottom: 60px;
    color: #000;
    text-transform: uppercase;
  }

  .explorethefutureSection__middle-title--highlight-1 {
    color: #C00415;
    font-weight: 700;
  }

  .explorethefutureSection__middle-title--highlight-2 {
    display: block;
    font-weight: 900;
  }

  .explorethefutureSection__wrapper {
    position: relative;
    z-index: 2;
  }

  .explorethefutureSection__middle {
    text-align: center;
  }

  .mainFooter {
    background-color: #C00415;
    padding: 17px 0;
  }

  .footerText {
    color: #fff;
    font-size: 20px;
    line-height: 130%;
    font-weight: 300;
    letter-spacing: 0%;
    text-align: center;
  }

  .img-content-area {
    display: none;
  }

  .scholarshipSection__content-left {
    flex: 0 0 50%;
    background-image: url('../images/scholarship-left-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .scholarshipSection__content-mobile-accrodion-hide {
    display: none !important;
  }

  .hide-importantDatesSection__content-mobile-carousel {
    display: none !important;
  }

  .key-benefits-list {
    display: flex;
    gap: 16px;
    width: 100%;
  }

  .key-benefits-list-item .scholraship-content-subtitle {
    max-width: 96%;
  }

  .key-benefits-list-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex: 0 0 33.33333333333333%;
  }
 
  


/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (min-width: 1920px) {
  .container {
    max-width: 1920px;
  }
}

@media (max-width: 1800px) {
    .heroSection__video-left {
        /* border: 2px solid red; */
        width: 380px;
    }

    .heroSection__video-right {
        /* border: 2px solid blue; */
        width: 380px;
    }
    
    .heroSection__video video {
        height: 90vh;
        min-height: 90vh;
    }

    .heroSection__video-text {
        font-size: 30px;
    }

    .accordion-title {
      font-size: 22px;
    }
    .accordion-item.active .accordion-title {
      font-size: 22px;
    }
    .accordion-content p {
      font-size: 17px;
    }

}


@media (max-width: 1700px) {

  .scholarshipSection__content-wrapper-item {
    padding: 40px 14px 40px 39px;
  }
  .carousel-slide-content {
    font-size: 30px;
  }

  .accoladeSection__timline {
    max-height: 510px;
  }

  .contactSection__item-left-logos {
    gap: 12px;
  }
}


@media (max-width: 1650px) {
  .contactSection__item-left-logos .logo-box {
    width: 147px;
  }
  .accordion-title {
    font-size: 21px;
  }
  .accordion-item.active .accordion-title {
    font-size: 21px;
  }
  .accordion-content p {
    font-size: 16px;
  }
    .heroSection__video video {
        height: 87vh;
        min-height: 87vh;
    }

    .heroSection__video-left {
        /* border: 2px solid red; */
        width: 340px;
    }

    .heroSection__video-right {
        /* border: 2px solid blue; */
        width: 340px;
    }

    img.contactSection__item-right-image {
      width: 111%;
    }

    .explorethefutureSection__middle-title {
      font-size: 60px;
    }
 
}


@media (max-width: 1600px) {

  .explorethefutureSection__middle-title {
    font-size: 57px;
  }

  .importantDatesSection__box h3 {
    font-size: 42px;
  }

  p.importantDatesSection__year-box-content {
    font-size: 20px;
  }

  .importantDatesSection__box {
    padding: 27px;
  }

  h3.scholraship-content-title {
    font-size: 22px;
  }

  .scholraship-icon-img {
    margin-bottom: 20px;
  }

  p.scholraship-content-subtitle {
    font-size: 17px;
  }

  .accordion-title {
    font-size: 20px;
  }
  .accordion-item.active .accordion-title {
    font-size: 20px;
  }
  .accordion-content p {
    font-size: 15px;
  }

  p.aboutProgrammeSection__card-content {
    font-size: 17px;
  }

  h4.aboutProgrammeSection__card-title {
    font-size: 28px;
  }

  .aboutProgrammeSection__card-left {
    padding-right: 80px;
  }

  .timeline {
    font-size: 15px;
  }

  .accoladeSection__title {
    font-size: 40px;
  }

  .accoladeSection__timline {
    /* border: 1px solid red; */
  }

  .carousel-slide-content {
    font-size: 27px;
  }
    h1.heroSection__title{
        font-size: 40px;
    }
    .admission_open_data_item h6 {
        font-size: 27px;
    }
    .admission_open_subtitle h6 {
        font-size: 20px;
    }

    .heroSection__video-left {
        width: 320px;
    }

    .heroSection__video-right {
        width: 320px;
    }

    .heroSection__video video {
        height: 82vh;
        min-height: 82vh;
    }

    .heroSection__video-text {
        font-size: 27px;
    }   
    .procedureSection__title {
      font-size: 40px;
    }
    .procedureSection__content {
      font-size: 30px;
    }
  
}

@media (max-width: 1500px) {

  .explorethefutureSection__middle-title {
    font-size: 54px;
  }

  .importantDatesSection__box h3 {
    font-size: 38px;
  }

  .importantDatesSection__date-box-content-title {
    font-size: 18px;
  }
  .contactSection__item-left-logos{
    gap: 10px;
  }

  .contactSection__item-left-logos .logo-box {
    width: 130px;
    height: 55px;
  }
 
  .elegibilitySection__content-item-left {
    flex: 0 0 52%;
    max-width: 52%;
  }

  .elegibilitySection__content-item-right {
    flex: 0 0 48%;
    max-width: 48%;
  }
 

  .accordion-title {
    font-size: 20px;
  }
  .accordion-item.active .accordion-title {
    font-size: 20px;
  }
  .accordion-content p {
    font-size: 15px;
  }
  .carousel-slide-content {
    font-size: 26px;
  }
  .timeline-content {
    padding: 16px;
    padding-top: 50px;
  }
}

@media (max-width: 1400px) {

  .recruitmentSection__content {
    /* border: 1px solid red; */
    height: 544px;
    max-height: 544px;  
  } 
 

  .recruitmentSection__slider:nth-of-type(2) {
    transform: translateX(-40px);
  }
  .recruitmentSection__slider:nth-of-type(4) {
    transform: translateX(40px);
  }
}


@media (max-width: 1440px) {

  .explorethefutureSection__middle-title {
    font-size: 48px;
  }

  .importantDatesSection__box h3 {
    font-size: 37px;
  }

  .importantDatesSection__date-box-content-title {
    font-size: 17px;
  }

  .scholarshipSection__content-wrapper-item {
    padding: 30px 12px 30px 29px;
} 

.scholarshipSection__content-left {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

  .contactSection__item-left-logos .logo-box img {
      width: 127px;
      height: 52px;
  }

  .contactSection__item-left {
    flex: 0 0 57%;
    max-width: 57%;
  }

  .contactSection__item-right {
    flex: 0 0 43%;
    max-width: 43%;
  }

  .contactSection__item-left {
    padding-top: 60px;
  }

  .globalSection {
    padding-bottom: 60px;
  }
  
  h4.aboutProgrammeSection__card-title {
    font-size: 29px;
  }

  p.aboutProgrammeSection__card-content {
    font-size: 15px;
  }

  .specialization-item-content P {
    font-size: 15px;
  }

  p.aboutProgrammeSection__card-content {
    
    margin-bottom: 34px;
}

.aboutProgrammeSection__card-left {
  padding-right: 60px;
}

  .timeline-line {
    top: 118px;
    bottom: 152px;
  }

  .timeline-title {
    font-size: 14px;
  }
  .carousel-slide-content {
    font-size: 24px;
  }


    .heroSection__video-left {
        width: 280px;
    }
    .heroSection__video-right {
        width: 280px;
    }

    .heroSection__video video {
        height: 78vh;
        min-height: 78vh;
    }

    h1.heroSection__title {
        font-size: 36px;
    }

    .admission_open_data_item h6 {
        font-size: 24px;
    }

    .admission_open_subtitle {
        font-size: 18px;
    }

    .heroSection__video-text {
        font-size: 24px;
    }

    h1.heroSection__title {
        margin-top: 40px;
    }

    .heroSection__video-text {
        bottom: 34px;
    }

    .procedureSection__content {
      font-size: 28px;
    }
}

@media (max-width: 1366px) {

  .explorethefutureSection__middle-title {
    font-size: 42px;
  }

  .explorethefutureSection .container {
    padding-top: 140px;
    padding-bottom: 280px;
  }

  .importantDatesSection__box {
    padding: 20px;
  }

  .importantDatesSection__box h3 {
    font-size: 36px;
  }

  .importantDatesSection__date-box-content-title {
    font-size: 17px;
  }

  .contactSection__wrapper .procedureSection__title{
    margin-bottom: 20px;
  }

  .mous-title {
    margin-top: 20px;
  }

  .procedureSection__content {
    font-size: 26px;
  }

  .accordion-title {
    font-size: 18px;
  }
  .accordion-item.active .accordion-title {
    font-size: 18px;
  }
  .accordion-content p {
    font-size: 15px;
  }
  p.img-left-content-subtitle {
    font-size: 18px;
  }

  .img-left-content-title {
    font-size: 38px;
  }

  .accordion-item.active .accordion-content {
    padding-bottom: 16px !important;
  }

  .aboutProgrammeSection__card:nth-child(1) {
    top: 80px;
  }
  h4.aboutProgrammeSection__card-title {
    font-size: 23px;
    margin-bottom: 17px;
  }
  p.aboutProgrammeSection__card-content {
    margin-bottom: 20px;
  }
  .recruitmentSection__line {
    width: 68vw;
  }

  .specialization-item {
    margin-bottom: 14px;
  }

  .recruitmentSection__slider:nth-of-type(2) {
    transform: translateX(-30px);
  }
  .recruitmentSection__slider:nth-of-type(4) {
    transform: translateX(30px);
  }

  .recruitmentSection__content {
    height: 535px;
    max-height: 535px;
  }

  .recruitmentSection__top-carousel {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .recruitmentSection__left-carousel-slider::after {
    width: 140px;
  }

  .recruitmentSection__right-carousel-slider::after {
    width: 140px;
  }

  .carousel-slide-content {
    font-size: 22px;
  }

    .headerLogo__img {
        width: 280px;
        height: 61px;
        object-fit: contain;
    }

    .headerLogoRow {
        height: 80px;
        max-height: 80px;
    }

    .heroSection {
        padding-top: 80px;
    }
    .accoladeSection__wrapper { 
      gap: 10px;
    }

}

@media (max-width: 1280px) {

  .explorethefutureSection__middle-title {
    font-size: 40px;
  }

  .explorethefutureSection .container {
    padding-top: 100px;
    padding-bottom: 200px;
  }

  .importantDatesSection__box h3 {
    font-size: 32px;
  }

  p.importantDatesSection__year-box-content {
    font-size: 17px;
  }

  .importantDatesSection__date-box-content-title {
    font-size: 16px;
  }

  .importantDatesSection__date-box-content {
    padding-top: 66px;
  }


  .scholarshipSection__content-wrapper {
    max-width: 512px;
  }
  h3.scholraship-content-title {
    font-size: 20px;
  }

  h3.scholraship-content-title {
    margin-bottom: 16px;
  }
  .procedureSection__title {
    font-size: 36px;
  }
  .contactSection__item-left-logos {
    gap: 7px;
  }

  .contactSection__item-left-logos .logo-box {
    width: 117px;
    height: 49px;
}

.contactSection__item-left-logos .logo-box img {
  width: 115px;
  height: 48px;
}

.contactSection__item-left-content {
  font-size: 14px;
}

  .contactSection__item-left {
    padding-top: 30px;
  }

  .globalSection {
    padding-bottom: 30px;
  }

  .accordion-title {
    font-size: 17px;
  }
  .accordion-item.active .accordion-title {
    font-size: 17px;
  }
  .accordion-content p {
    font-size: 14px;
  }

  .img-left-content-title {
    font-size: 34px;
  }

  .carousel-slide-content {
    font-size: 19px;
  }

    .heroSection__video {
        height: 45vh;
      }
      

    .heroSection__video video {
        height: 72vh;
        min-height: 72vh;
    }

    .heroSection__video-left {
        width: 240px;
    }


    .heroSection__video-right {
        width: 240px;
    }

    .heroSection {
        padding-top: 75px;
    }

    .headerLogo__img {
        width: 260px;
        height: 57px;
        object-fit: contain;
    }

    .headerLogoRow {
        height: 75px;
        max-height: 75px;
    }
    
    h1.heroSection__title {
        font-size: 32px;
        margin-top: 30px;
    }

    .admission_open h5 {
        font-size: 13px;
    }

    .admission_open_data_item h6 {
        font-size: 21px;
    }

    .admission_open_subtitle h6 {
        font-size: 16px;
    }

    .heroSection__video-text {
        font-size: 21px;
        padding-top: 14px;
        padding-bottom: 14px;
    }
}

@media (min-width: 1201px) {
  .recruitmentSection__content-d-none-desktop {
    display: none !important;
  }
}

/* Extra Large Devices (desktops) */
@media (max-width: 1200px) {
  /* Styles for medium to large desktop screens */
  .carousel-slide-content {
    font-size: 18px;
  }

  .recruitmentSection__content-d-none {

    display: none !important;
  }

  .contactSection__item-left-logos .logo-box {
    width: 97px;
    height: 43px;
}

.contactSection__item-left-logos .logo-box img {
  width: 100px;
  height: 37px;
}

.importantDatesSection__date-box-content {
  padding-top: 50px;
}


  
  /* .recruitmentSection__slider:nth-of-type(2) {
    transform: translateX(-40px);
    border: 1px solid red;
  } */
  /* .recruitmentSection__slider:nth-of-type(4) {
    transform: translateX(40px);
  } */

}


@media (max-width: 1024px) {

  
  

  .explorethefutureSection__middle-title {
    font-size: 36px;
  }

  .explorethefutureSection .container {
    /* border: 1px solid red; */
    padding-top: 70px;
    padding-bottom: 170px;
  }

  .importantDatesSection__box {
    padding: 20px 12px;
  }

  .importantDatesSection__box h3 {
    font-size: 24px;
  }

  p.importantDatesSection__year-box-content {
    font-size: 14px;
  }

  .importantDatesSection__date-box-content-title {
    font-size: 14px;
  }

  .importantDatesSection__date-box-content {
    padding-top: 30px;
  }

  .hide-importantDatesSection__content-mobile-carousel {
    display: block !important ;
  }
  .importantDatesSection__content-mobile-carousel-1 {
    /* margin-bottom: 16px; */
    padding-top: 16px !important;
    padding-bottom: 8px !important;
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  .importantDatesSection__content-mobile-carousel-2 {
    /* margin-bottom: 16px; */
    padding-top: 16px !important;
    padding-bottom: 4px !important;
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  .importantDatesSection__content-mobile-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }

  .importantDatesSection__content-mobile-navigation .swiper-button-prev,
  .importantDatesSection__content-mobile-navigation .swiper-button-next {
    position: static;
    margin: 0;
    width: 60px;
    height: 60px;
    color: transparent;
    background: #fff;
    transition: all 0.3s ease;
    background-image: url('../images/carousel-arrow-left.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 49px 49px;
  }

  .importantDatesSection__content-mobile-navigation .swiper-button-prev::after,
  .importantDatesSection__content-mobile-navigation .swiper-button-next::after {
    display: none;
  }

  .importantDatesSection__content-mobile-navigation .swiper-button-next {
    transform: rotate(180deg);
  }

  .importantDatesSection__content-mobile-navigation .swiper-button-prev:hover {
    /* background-color: #f5f5f5; */
    background-image: url('../images/carousel-arrow-left.svg');
  }

  .importantDatesSection__content-mobile-navigation .swiper-button-next:hover {
    background-image: url('../images/carousel-arrow-left.svg');
    transform: rotate(180deg);
  }

  .importantDatesSection__content-mobile-navigation .swiper-button-prev.swiper-button-disabled,
  .importantDatesSection__content-mobile-navigation .swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
  }

  .importantDatesSection__content-mobile-navigation .swiper-button-next.swiper-button-disabled {
    transform: rotate(180deg);
  }
  
  .importantDatesSection__box {
    height:200px;
    max-height: 200px;
  }

  .hide-importantDatesSection__content-for-mobile {
    display: none !important;
  }

  .accordion-wrapper.scholarshipSection__content-mobile-accrodion-wrapper .accordion-title {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accordion-wrapper.scholarshipSection__content-mobile-accrodion-wrapper .accordion-title span.accordion-title-icon {
  /* border: 1px solid red; */
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-wrapper.scholarshipSection__content-mobile-accrodion-wrapper .accordion-title span.accordion-title-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

  .accordion-wrapper.scholarshipSection__content-mobile-accrodion-wrapper {
    padding: 0 4px;
}

.scholarshipSection__content-mobile-accrodion-wrapper .accordion-item.active .accordion-header {
  padding: 20px 16px 10px 16px !important;
}

  .scholarshipSection__content-mobile-accrodion-wrapper .accordion-item.active .accordion-header, .accordion-content{
    /* background:  !important; */
  }

  .scholarshipSection__content-mobile-accrodion-wrapper .accordion-item {
    box-shadow: 0px 0px 14px 0px #00000040;
  }

  .scholarshipSection__content-mobile-accrodion-hide {
    display: block !important;
  }

  .hide-scholarshipSection__content {
    display: none !important;
  }

  .contactSection__item-left {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contactSection__item-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  img.contactSection__item-right-image {
    width: 100%;
    margin-top: 0px;
  }

  .contactSection__wrapper {
    flex-direction: column;
  }
  
  .accordion-item {
    margin-bottom: 16px;
  }
  img.img-right-image {
    width: 40px;
    height: 40px;
    top: 12px;
    right: 12px;
  }

  p.img-left-content-subtitle {
    color: #fff;
    font-weight: 500;
  }

  .img-right-content-top {
    padding: 12px;
    height: 150px;
    max-height: 150px;
  }

  .img-right-content-bottom {
    padding: 12px;
  }

  .img-content-area {
    display: block;
    margin-top: 15px;
  }

  .accordion-item.active .accordion-header {
    margin-bottom: 0px;
    padding-bottom: 10px;
  }

  .img-left-wrapper {
    width: 100%;
  }
  .img-right-wrapper {
    flex-direction: row;
    width: 100%;
  } 
  .elegibilitySection__content-item-left {
    display: none;
  }
  .elegibilitySection__content-item-right {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0px;
  }
  .accordion-item.active .accordion-content {
    max-height: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  img.img-left-image {
    height: 100%;
  }
  .img-right-wrapper {
    gap: 16px;
  }
  .img-wrapper-top {
    margin-bottom: 16px;
  }
  .accoladeSection__title-mobile {
    display: block;
  }
  .accoladeSection__wrapper {
    flex-direction: column;
    gap: 0px;
  }
  .accoladeSection__right .accoladeSection__title {
    display: none;
  }

  .aboutProgrammeSection {
    display: none;
  }

  .aboutProgrammeSectionMobile {
    display: block;
  }

  .aboutProgrammeSectionMobile__panel-specialisation-title {
    color: #C00415;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    margin-bottom: 20px;
  }
  .aboutProgrammeSectionMobile__panel-specialisation {
    margin-bottom: 6px;
    /* border: 1px solid red; */
  }

  .specialization-item-content P {
    font-size: 14px;
  }

  
}



/* Large Devices (tablets, landscape / small laptops) */
@media (max-width: 992px) {

  .explorethefutureSection__middle-title {
    font-size: 32px;
  }

  .explorethefutureSection .container::before {
    height: 346px;
    max-height: 346px;
    bottom: 0px;
    top: unset;
    left: 70px;
    max-width: -webkit-fill-available;
  }

  .explorethefutureSection .container::after {
    height: 346px;
    max-height: 346px;
    bottom: 0px;
    top: unset;
    right: 70px;
    max-width: -webkit-fill-available;
  }

  .explorethefutureSection .container {
    height: 458px;
    max-height: 458px;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .explorethefutureSection__middle-title {
    margin-bottom: 20px;
  }
  .carousel-slide-content {
    font-size: 16px;
  }

  .middle-image__icon {
    width: 240px;
  }

    .admission_open_data_item h6 {
        font-size: 17px;
    }

    .admission_open_subtitle h6 {
        font-size: 13px;
        margin-top: 8px;
    }

    .heroSection__video-text {
        font-size: 17px;
        padding: 10px 16px;
    }

  /* Styles for tablets in landscape or small laptops */
  .heroSection__video {
    height: 30vh;
  }
  
  .heroSection__video video {
    height: 70vh;
    min-height: 70vh;
  }
  
  .heroSection__video-left,
  .heroSection__video-right {
    /* border: 2px solid red; */
    height: 40%;
  }
}


@media (max-width: 800px) {
  
}

/* Medium Devices (tablets, portrait) */
@media (max-width: 768px) {

  /* body {
    padding-bottom: 112px;
  } */

  .button.mobileStickyButton {
    display: flex
;
        position: fixed;
        left: 0px;
        right: 0px;
        bottom: 0;
        transform: none;
        width: auto;
        border-radius: 0px;
        /* max-width
Allows authors to constrain content width to a certain range.

Widely available across major browsers (Baseline since January 2018)
Learn more

Don't show
: 480px; */
        z-index: 1100;
        box-shadow: 0 18px 45px rgba(7, 20, 44, 0.35);
        margin: 0 auto;
  }

  img.key-benefits-list-item-icon-img {
    width: 38px;
    height: 38px;
  }

  .key-benefits-list {
    gap: 8px;
  }

  .key-benefits-list-item .scholraship-content-subtitle {
    max-width: 100%;
    font-size: 12px !important;
  } 

  .headerLogo.headerLogo--right a.button.button--primary {
    display: none;
  }

  .timeline-line {
    top: 126px;
    bottom: 175px;
  }

  .explorethefutureSection .container::before {
    height: 246px;
    max-height: 246px;
    bottom: 0px;
    top: unset;
    left: 37px;
  }

  .explorethefutureSection .container::after {
    height: 246px;
    max-height: 246px;
    bottom: 0px;
    top: unset;
    right: 37px;
  }

  .importantDatesSection__date-box-content {
    padding-top: 16px;
  }

  .accordion-wrapper.scholarshipSection__content-mobile-accrodion-wrapper .accordion-title {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .accordion-wrapper.scholarshipSection__content-mobile-accrodion-wrapper .accordion-title span.accordion-title-icon {
    /* border: 1px solid red; */
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .accordion-wrapper.scholarshipSection__content-mobile-accrodion-wrapper .accordion-content p{
    font-size: 14px;
  }

  .accordion-wrapper.scholarshipSection__content-mobile-accrodion-wrapper .accordion-title span.accordion-title-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .hide-contactSection__item-left-logos {
    display: none;
  }


  .alumniSection__navigation .swiper-button-prev, .alumniSection__navigation .swiper-button-next {
    background-size: 39px 39px;
  }
  .headerLogo.headerLogo--right button.button.button--primary {
    display: none;
  }

  .img-left-content-title {
    font-size: 24px;
  }

  .recruitmentSection__line {
    width: 59vw;
  }

  .recruitmentSection__content {
    height: 442px !important;
    min-height: 442px !important;
  }

  .swiper-slide.recruitmentSection__slide {
    text-align: center;
  }

  .swiper-slide.recruitmentSection__slide img {
    width: 103px;
    height: 60px;
  }

  .recruitmentSection__slider {
    height: 324px !important;
    max-height: 324px !important;
  }
  
  .recruitmentSection__slide {
    height: 103px;
    flex: 0 0 103px;
  }
    .heroSection__video video {
        height: 60vh;
        min-height: 60vh;
    }

    .admission_open_data {
        display: none;
    }

    .admission_open_data_icon--desktop {
        display: none;
    }

    .admission_open_data_icon--mobile {
        display: block;
    }

    .recruitmentSection__left-carousel-slider,
    .recruitmentSection__right-carousel-slider {
        display: none !important;
    }

    .heroSection__video-text {
        bottom: unset;
        top: 0;
    }

    .heroSection__video::after {
        opacity: 1;
    }
    .heroSection__video-left, .heroSection__video-right {
        top: unset;
        bottom: 0;
    }

    .heroSection__video {
        margin-top: 48px;
        height: 288px;
    }

    .heroSection__video-left, .heroSection__video-right {
        display: none;
    }

    .heroSection__video-left-mobile, .heroSection__video-right-mobile {
        display: block;
        z-index: 15;
    }

    .admission_open_data_mobile {
        width: 100%;
        display: flex;
                flex-direction: column;
                align-items: center;
    }

    .admission_open_data_icon--mobile {
        max-width: 371px;
        width: 100%;
    }

    .alumniSection {
      padding: 40px 0;
    }
    
    .alumniSection__title-wrapper {
      align-items: center;
      gap: 15px;
    }
    
    .alumniSection__title-wrapper .accoladeSection__title {
      font-size: 36px;
    }
    
    .alumniSection__navigation .swiper-button-prev,
    .alumniSection__navigation .swiper-button-next {
      width: 40px;
      height: 40px;
    }
    
    .alumniSection__navigation .swiper-button-prev::after,
    .alumniSection__navigation .swiper-button-next::after {
      font-size: 16px;
    }
    
    .alumniSection__navigation--desktop {
      display: none;
    }
    
    .alumniSection__navigation--mobile {
      display: flex;
      justify-content: center;
      margin-top: 20px;
    }
    
    .alumniSection__slide-content {
      /* padding: 15px;
      min-height: 120px; */
      
    }
    
    .alumniSection__testimonial {
      font-size: 14px;
    }
    
    .alumniSection__name {
      font-size: 16px;
    }

    .accordion-wrapper {
      max-width: 100%;
    }
    
    .accordion-title {
      font-size: 16px;
    }
    
    .accordion-header {
      padding: 14px 16px;
    }
    
    .accordion-content p {
      font-size: 14px;
    }

    .procedureSection__title {
      font-size: 32px;
    }

    .procedureSection__content {

      font-size: 20px;
    }

    /* Mobile Tabs Responsive Styles */
    .aboutProgrammeSectionMobile__tab {
      padding: 10px 20px;
      font-size: 14px;
    }

    .aboutProgrammeSectionMobile__panel-title {
      font-size: 20px;
    }

    .aboutProgrammeSectionMobile__panel-text {
      font-size: 15px;
    }

    .procedureSection__title {
      margin-bottom: 18px;
    }

    .mous-title {
      margin-top: 16px;
    }

    .hide-contactSection__item-left-logos-carousel-1 {
      display: block !important;
      margin-bottom: 16px;
    }
    .hide-contactSection__item-left-logos-carousel-2 {
      display: block !important;
      margin-bottom: 16px;
    }

    .contactSection__item-left-logos {
      margin-top: 16px;
    }

    .accoladeSection__title {
      font-size: 32px;
    }
/* 
    .heroSection__video-left {
        top: 50%

    }
    .heroSection__video-right {
        top: 50%;
    } */
}

/* Small Devices (phones, landscape / small tablets) */
@media (max-width: 576px) {

  .accoladeSection {
    padding-top: 60px;
    padding-bottom: 30px;
  }

  .explorethefutureSection .container::before {
    
    left: 28px;
  }

  .explorethefutureSection .container::after {
    
    right: 28px;
  }

  p.importantDatesSection__year-box-content {
    padding: 2px 12px;
  }

  .alumniSection__testimonial-scroll {
    max-height: 180px;
  }

  .alumniSection__slide-content {
    /* border: 1px solid red; */
    max-height: 280px;
    height: 280px;
    padding: 14px;
  }

  .alumniSection__slide-quote-icon {
    margin-bottom: 0px;
  }

  /* .alumniSection__slide-content {
    border: 1px solid red;
    max-height: 280px;
    height: 280px;
  } */

    .admission_open_data_icon--mobile {
        width: 271px;
    }

    /* Mobile Tabs - Very Small Devices */
    .aboutProgrammeSectionMobile__tab {
      padding: 8px 16px;
      font-size: 13px;
    }

    .aboutProgrammeSectionMobile__tabs {
      gap: 8px;
    }

    .aboutProgrammeSectionMobile__panel-title {
      font-size: 18px;
    }

    .aboutProgrammeSectionMobile__panel-text {
      font-size: 14px;
    }

    .admission_open_data_mobile_content_item:nth-child(3) {
        right: 0;
    }

    .admission_open_data_mobile_content_item:nth-child(1) {
        left: 0;
    }

    .heroSection__title--highlight {
        display: block;
    }
  /* Styles for most modern phones */
  .heroSection__video {
    height: 48vh;
  }
  
  .heroSection__video video {
    height: 50vh;
    min-height: 50vh;
  }
  
  .heroSection__video-left,
  .heroSection__video-right {
    display: none;
  }

  .heroSection__video-left-mobile,
  .heroSection__video-right-mobile {
    display: block;
  }

  .carousel-slide-content{
    font-size: 20px;
  }

  .recruitmentSection__content {
    height: 400px !important;
    min-height: 400px !important;
}

.alumniSection__slide-image {
  padding-left: 11px;
}

  
}

/* Extra Small Devices (phones, portrait) */
@media (max-width: 480px) {
  .swiper-slide.recruitmentSection__slide img {
    width: 97px;
    height: 54px;
  }
  .explorethefutureSection .container {
    height: 400px;
    max-height: 400px;
  }
  .explorethefutureSection__middle-title {
    font-size: 26px;
  }

  .explorethefutureSection .container::before {
    height: 205px;
    max-height: 205px;
    left: 10px;
  }

  .explorethefutureSection .container::after {
    height: 205px;
    max-height: 205px;
    right: 10px;
  }

  p.importantDatesSection__year-box-content {
    font-size: 12px;
  }

  .importantDatesSection__box h3 {

      font-size: 20px;
  }

  .carousel-slide-content{
    font-size: 17px;
  }


    h1.heroSection__title {
        font-size: 28px;
    }
  /* Styles for small phones (e.g. iPhone SE, older Androids) */
  .heroSection__video {
    height: 40vh;
  }
  
  .heroSection__video video {
    height: 58vh;
    min-height: 58vh;
  }
  
  .heroSection__video-left,
  .heroSection__video-right {
    display: none;
  }

  .heroSection__video-left-mobile,
  .heroSection__video-right-mobile {
    display: block;
  }

  .admission_open_data_mobile_content_item h6 {
    font-size: 12px;
  }

  .admission_open_data_mobile_content_item .admission_open_data_mobile_content_item_subtitle h6 {
    font-size: 12px;
  }

  .heroSection__video-left-mobile, .heroSection__video-right-mobile {
    top: 14%;
    width: 150px;
  }

  .accordion-content p {
    font-size: 13px;
  }

  .img-left-content-title {
    font-size: 22px;
  }

  .alumniSection__testimonial {
    font-size: 13px;
  }
  .alumni-image-name-title {
    font-size: 14px;
  }

  .alumni-image-name-subtitle {
    font-size: 12px;
  }

  img.alumni-image-img {
    width: 40px;
    height: 40px;
  }

  .timeline-line {
    top: 150px;
    bottom: 217px;
}
}


