@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap);

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  text-decoration: none;
  /* font-size: 14px; */
}

:root {
  /* --font: "Poppins", sans-serif; */
  --font: "Outfit", serif;
  --font-Bebas: "Bebas Neue", sans-serif;

  --strong-font: 600;
  --light-font: 400;

  --width: 80%;
  --max-width: 1280px;

  --font-header: 1.55rem;
  --font-medium: 16px;
  --font-small: 14px;
  --font-super: 8rem;

  --primary-color: #b80057;

  --section-title-fontSize: 2rem;
  --section-padding: 60px 0;
}

body {
  font-family: var(--font);
}

body.no_scroll {
  overflow: hidden;
}

header {
  /* border-bottom: 3px solid #f58220; */
  background: #fff;
}

/* .header-content {
    width: var(--width);
    max-width: var(--max-width);
    justify-content: space-between;
    padding: 20px 0;
    margin: auto;
} */
.header-content {
  width: var(--width);
  max-width: var(--max-width);
  justify-content: space-between;
  padding: 10px 0;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-content img {
  /* margin-left: auto;
      display: block */
  /* max-width: 150px; */
  max-height: 85px;
}

.topul {
  font-size: 1.5rem;
  line-height: 2.8rem;
  color: #ffffff;
  margin-top: -10px;
  margin-left: -30px;
  list-style-type: none;
}
.btn1 a {
  background-color: #ca0847;
  color: white;
  padding: 12px 24px;
  border-radius: 2px;
  /* margin-right: 10px; */
  font-weight: 600;
}
.btn1 a:hover {
  color: #fff;
}
.banner-section {
  /* background-image: url(./assets/images/bg2.png); */
  background-repeat: no-repeat;
  background-position: center center;
  padding: 30px 0px 20px;
  background-size: cover;
  background-color: #b5144e;
  background-image: linear-gradient(
      to right,
      hsl(240deg 1.94% 7.79%) 0%,
      hsl(336.92deg 14.77% 1.93% / 0%) 55%
    ),
    url(./assets/images/bg3.jpg);
}

.banner-section .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  /* align-items: center; */
  width: var(--width);
  margin: auto;
  max-width: var(--max-width);
  /* place-items: center; */
}

.images-of-accre {
  display: grid;
  gap: 4px;
  flex-wrap: nowrap;
  grid-template-columns: 1fr 1fr 1fr;
  width: 300px;
}
.images-of-accre img {
  background: #fff;
  width: 140px;
  /* padding: 5px; */
}

ul {
  margin-bottom: 0 !important;
}

.banner-section .wrapper .child-1 .hero-text {
  /* font-size: var(--font-super); */
  /* font-family: var(--font-Bebas); */
  color: #fff;
  /* line-height: 0rem; */
  /* font-weight: var(--light-font); */
  width: max-content;
  /* padding-bottom: 10px; */
  /* border-bottom: 3px solid #fff; */
  letter-spacing: 0px;
  font-weight: bold;
  font-size: 50px;
}

.hero-text-h1 {
  font-size: 25px;
  color: #fff;
  margin-bottom: 0;
}

.text-para {
  font-size: 16px !important;
}

.banner-section .wrapper .child-1 .hero-text__smallText {
  padding-top: 0px;
  color: #fff;
  font-style: italic;
  margin-bottom: -15px;
}

.stcicky_area {
  background-image: linear-gradient(
    to right,
    #b60649,
    #d10946,
    #ff286b,
    #b90e4f
  );
  padding: 10px 0 15px 0;
  width: 100%;
  transition: top 550ms ease;
  top: -300px;
}

.stcicky_area.stick {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
}

.sticky_section {
  display: grid;
  align-items: start;
  width: var(--width);
  max-width: 950px;
  margin: auto;
  grid-template-columns: repeat(4, 1fr);
}

.sticky_section > div {
  padding: 10px 20px;
  height: 100%;
  color: #fff;
  font-size: 1rem;
  position: relative;
}

.sticky_section > div .label_heading {
  font-weight: var(--strong-font);
  font-size: 1.3rem;
  margin-bottom: 0;
  text-align: center;
}

.sticky_section > div .label_sub_heading {
  font-weight: var(--light-font);
  font-size: 0.75em;
  text-align: center;
}

/* .sticky_section>div:first-child::before {
    content: '';
    width: 1px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #fff;
} */

.sticky_section div:nth-child(1)::after,
.sticky_section div:nth-child(2)::after,
.sticky_section div:nth-child(3)::after {
  content: "";
  width: 2px;
  height: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #fff;
}

.grid-item.center-content img {
  width: 500px;
}

/* Updated Grid Container */
.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Three-column layout */
  gap: 10px;
  /* align-items: center; */
  justify-items: center;
  max-width: 1200px;
  /* margin: 0 auto; */
  color: #fff;
  margin: 30px 0;
  position: relative;
  /* Added to ensure child absolute positioning works */
  width: 250px;
  max-width: 450px;
}
.grid-item__logoText {
  text-align: center;
  font-size: var(--font-small);
}

/* Text Content */
.text-content {
  text-align: left;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-left: 10px;
}

/* Center Content */
.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rank-icon {
  width: 100px;
  /* Adjust the size as needed */
  margin-bottom: 5px;
}

/* Logo Content */
.logo-content {
  text-align: right;
}

.equis-logo {
  width: 80px;
  /* Adjust the size as needed */
}

.banner-section .child-2 {
  display: flex;
  align-items: center;
  height: 100%;
}

.banner-section .child-2 .form-wrapper {
  background: #fff;
  border-radius: 0px;
  padding: 20px;
  width: 100%;
  /* margin-left: auto; */
  max-width: 450px;
  position: relative;
  display: flex;
  /* background-image: linear-gradient(
    to bottom,
    hsl(0deg 0% 100% / 80%) 0%,
    hsl(0deg 0% 100%) 55%
  ); */
}

.banner-section .child-2 .form-wrapper .heading {
  font-size: 1.5rem;
  color: #000000;
  font-weight: var(--strong-font);
  margin-bottom: 20px;
  font-weight: bold;
}

.form-group {
  margin-bottom: 10px;
}

.form-control,
.form-control:focus,
.form-control:focus-visible,
.form-control:visited {
  width: 100%;
  padding: 0.45rem 0.55rem;
  border: 1px solid #a1a1a1;
  /* border-radius: 0.35rem; */
  font-size: 0.9rem;
  box-shadow: none;
  outline: 0;
  font-family: "Outfit";
}

.form-control::placeholder {
  color: #000;
}

.d-flex {
  display: flex;
  align-items: start;
}

.ml-2 {
  margin-left: 0.4rem;
}

.same-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.banner-section .child-2 .heading {
  font-size: 1.3rem;
  font-weight: var(--light-font);
  margin-bottom: 10px;
  text-align: center;
}

.banner-section .child-2 .sub-heading {
  font-size: 0.9rem;
  font-weight: var(--light-font);
  margin-bottom: 10px;
  text-align: center;
}

.form-group label {
  font-size: 0.7rem;
}

.btn {
  padding: 0.75rem 0.25rem;
  background: #ffd92a;
  color: #000000;
  border: none;
  border-radius: 0px;
  /* text-transform: uppercase; */
  font-size: 1rem;
  font-weight: var(--strong-font);
  cursor: pointer;
  font-family: "Outfit";
}

.btn2 {
  padding: 0.5rem 0.7rem;
  background: #b81452;
  color: #fff;
  border: none;
  border-radius: 6px;
  /* text-transform: uppercase; */
  font-size: 0.8rem;
  font-weight: var(--strong-font);
  cursor: pointer;
}

article section {
  width: var(--width);
  max-width: var(--max-width);
  margin: auto;
}

section {
  padding: 0.5rem 0;
}

.section-heading {
  text-align: center;
  font-size: 1.7rem;
  font-weight: var(--strong-font);
  color: #203e99;
  position: relative;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.section-heading::after {
  content: "";
  width: 30%;
  background: #f58220;
  height: 0.25rem;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  max-width: 150px;
}

.section-description {
  text-align: justify;
  font-size: 1rem;
  font-weight: var(--light-font);
}

/* .check-box-row {
        align-items: start
    } */

.check-box-row input[type="checkbox"] {
  margin-top: 0.3rem;
  cursor: pointer;
}

.custom-popup {
  position: fixed;
  width: 450px;
  top: -150%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 450ms ease-in-out;
  z-index: 9999;
}

.custom-popup.show {
  top: 50%;
}

.custom-popup iframe {
  width: 100%;
  height: 300px;
}

.form-popup {
  position: fixed;
  width: 100%;
  max-width: 450px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 450ms ease-in-out;
  background: #fff;
  padding: 20px;
  z-index: 1009;
  border-radius: 20px;
  opacity: 0;
}

.form-popup.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.form-popup .heading {
  text-align: center;
  font-size: 1.3rem;
  font-weight: var(--strong-font);
  margin-bottom: 10px;
}

.form-popup .sub-heading {
  text-align: center;
  font-size: 1rem;
  font-weight: var(--light-font);
  margin-bottom: 10px;
}

.close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  cursor: pointer;
  color: #fff;
  z-index: 999;
}

.popup-overlay {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 100;
}

.sec-explore {
  position: relative;
}
.sec-explore .explore-full-image {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #a4123f;
  position: relative;
  color: #fff;
  min-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sec-explore .explore-full-image:before {
  z-index: 2;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #af0c3e;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#b10f57),
    color-stop(#d10946),
    color-stop(#ff286b),
    to(#ae005e)
  );
  background-image: linear-gradient(
    to right,
    #b10f57,
    #d10946,
    #ff286b,
    #ae005e
  );
  opacity: 0.8;
}
.sec-explore .explore-full-image {
  min-height: 600px;
}
.sec-explore .explore-wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.sec-explore .explore-text .explore-left {
  width: 40%;
  text-align: center;
  margin-bottom: 25px;
}
.accordion-wrapper input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.accordion-wrapper {
  /* border-radius: 8px; */
  overflow: hidden;

  width: auto;
  margin: 0 auto;
}

.accordion {
  width: 100%;
  color: white;
  overflow: hidden;
  margin-bottom: 16px;
}

.accordion:last-child {
  margin-bottom: 0;
}

.accordion-label {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  cursor: pointer;
  font-size: 16px;
  color: #000;
  -webkit-transition: all 0.5s;
}

.accordion-label:hover {
  background: #b80b4d;
  color: #fff;
}

.accordion-label::after {
  content: "\276F";
  width: 16px;
  height: 16px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.accordion-content {
  max-height: 0;
  padding: 0 16px;
  color: rgba(4, 57, 94, 1);
  background: rgb(255 244 248);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.accordion-content p {
  margin: 0;
  color: #000;
  font-size: 14px;
}

.accordion-content li {
  margin: 0;
  color: #000;
  font-size: 14px;
  line-height: 1.7;
}

input:checked + .accordion-label {
  background-image: linear-gradient(
    to right,
    #b10f57,
    #ba0d52,
    #b90560,
    #ff286b
  );
  color: #fff;
}

input:checked + .accordion-label::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

input:checked ~ .accordion-content {
  max-height: 100vh;
  padding: 16px;
}

.badge {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px 5px 5px 5px;
  padding: 5px 2px;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  color: white;
  font-family: Arial, sans-serif;
  width: 135px;
  /* margin-top: 10px; */
  position: relative;
  height: 45px;
  margin-left: 15px;
}

.badge .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  /* background-color: transparent; */
  border-radius: 50%;
  position: absolute;
  transform: translateX(-50%);
}

/* .badge .icon::before {
    content: '\1F551'; 
    font-size: 20px;
    color: #d13d5e;
  } */

.badge .text {
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  display: flex;
  justify-content: center;
}

.badge-icon__img {
  width: 100%;
  padding: 4px;
}

.banner-programFee {
  padding-top: 28px;
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
}

.child-2-Eligibility__text {
  color: #ffffff;
  font-size: 20px;
  /* margin-left: auto; */
}
.child-2--container {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-form--buttonGroup_container {
  width: 100%;
  display: flex;
  gap: 20px;
}

.main-form--buttonGroup_container > button {
  background: #474747;
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 8px 40px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  text-align: center;
  /* justify-content: center; */
  margin: 10px auto;
}

.main-form--buttonGroup_container > button:hover {
  background: #474747;
  color: var(--contrast-color);
}

.accreditation {
  text-align: center;
  padding: var(--section-padding);
  width: var(--width);
  max-width: var(--max-width);
  margin: auto;
}

.accreditation__title {
  color: #c52a54;
  font-size: var(--section-title-fontSize);
  font-weight: bold;
  margin-bottom: 20px;
}

.accreditation__slider {
  /* max-width: 1000px; */
  /* margin-top: 30px; */
  width: 85%;
}

.accreditation__slider--wrapperContainer {
  margin: auto;
  width: var(--width);
}

.accreditation__slide {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 10px;
  height: 80px;
}

.accreditation__image {
  width: 100%;
  max-width: 150px;
  /* margin-bottom: 10px; */
}

.accreditation__heading {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0;
}

.accreditation__description {
  color: #666;
  font-size: 14px;
}

/* Swiper Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Adjust for vertical centering */
  color: #c52a54 !important;
  width: 40px; /* Adjust button size */
  height: 40px;
  z-index: 10; /* Make sure buttons are above content */
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

/* Programme Overview Section */
.programme-overview {
  background-color: #dfdfdf;
  padding: var(--section-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.programme-overview__container {
  width: var(--width);
  max-width: var(--max-width);
  margin: auto;
}

.programme-overview__title {
  font-family: var(--font-family);
  font-size: var(--section-title-fontSize);
  color: var(--primary-color);
  margin-bottom: 20px;
}

.programme-overview__description {
  font-family: var(--font);
  font-size: var(--font-medium);
  color: #333;
  line-height: 1.6;
  font-weight: 400;
}

/* Section Styles */
.highlights {
  text-align: center;
  padding: var(--section-padding);
}
.highlights--container {
  margin: auto;
  width: var(--width);
  max-width: var(--max-width);
}
.highlights__data {
  width: 100%;
}

.highlights__title {
  font-family: var(--font-family);
  font-size: var(--section-title-fontSize);
  color: var(--primary-color);
  margin-bottom: 30px;
}

.CareerProspects {
  text-align: center;
  padding: var(--section-padding);
}
.CareerProspects--container {
  margin: auto;
  width: var(--width);
  max-width: var(--max-width);
}

.CareerProspects__title {
  font-family: var(--font-family);
  font-size: var(--section-title-fontSize);
  color: var(--primary-color);
  margin-bottom: 30px;
}
.CareerProspects__data {
  width: 100%;
}

/* Button Styles */
.highlights__button {
  margin-top: 40px;
  padding: 15px 45px;
  background-color: #4f4f4f;
  color: white;
  border: none;
  border-radius: 30px;
  font-family: var(--font-family);
  font-size: 1rem;
  cursor: pointer;

  display: block;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

.highlights__button:hover {
  opacity: 0.9;
}

.industry-pedagogy {
  text-align: center;
  background-color: #ffffff;
  padding: var(--section-padding);
}

.industry-pedagogy__title {
  color: #b8094d;
  font-size: var(--section-title-fontSize);
  margin-bottom: 30px;
}

.industry-pedagogy__container {
  margin: auto;
  width: var(--width);
  max-width: var(--max-width);
}
.industry-pedagogy--data {
  width: 100%;
}

.programme {
  /* background-image: url(./assets/images/Untitled-0.png); */
  background-size: cover;
  /* Ensures the image covers the entire container */
  background-repeat: no-repeat;
  /* Prevents tiling of the background */
  background-position: center;
  /* Centers the background image */
  padding: var(--section-padding);
  height: fit-content;
  background-image: linear-gradient(
      to bottom,
      #ffffff 0%,
      hsl(0deg 0% 25.35% / 41%) 55%
    ),
    url(./assets/images/bg.jpg);
}

.programme--container {
  width: var(--width);
  max-width: var(--max-width);
  margin: 0 auto;
  /* height: 1000px; */
}

.programme__title {
  font-size: var(--section-title-fontSize);
  color: #b8094d;
  text-align: center;
  margin-bottom: 40px;
}

.programme__section {
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.programme__header {
  background-image: linear-gradient(
    to right,
    #b10f57,
    #ba0d52,
    #b90560,
    #ff286b
  );
  padding: 15px;
  font-size: var(--font-medium);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #fff;
}

.programme__header::after {
  content: "+";
  font-weight: bold;
}

.programme__header.active::after {
  content: "-";
}

.programme__content {
  display: none;
  padding: 15px;
  background-color: transparent;
  font-size: 16px;
  border-top: 1px solid #ddd;
}

.DownloadBroucher__button {
  margin: 40px auto auto auto;
  padding: 16px;
  background-color: #ffffff;
  color: #f52369;
  border: none;
  border-radius: 30px;
  font-family: var(--font-family);
  font-size: 18px;
  cursor: pointer;
  max-width: 230px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0px 2px 4px #5a0023;
  display: block;
}

.DownloadBroucher__button:hover {
  color: #000000;
}

.admission {
  background-image: linear-gradient(
    to right,
    #b10f57,
    #d10946,
    #ff286b,
    #ae005e
  );
  color: white;
  padding: var(--section-padding);
}

.admission--container {
  width: var(--width);
  max-width: var(--max-width);
  margin: auto;
}

.admission__title {
  text-align: center;
  font-size: var(--section-title-fontSize);
  margin-bottom: 30px;
}

.admission__emi {
  /* background-color: white; */
  /* color: black; */
  /* padding: 30px; */
  border-radius: 4px;
  margin-bottom: 30px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  border: 2px solid white;
}

.admission__emi-title {
  font-size: 22px;
  margin-bottom: 10px;
  /* color: #b3095f; */
  font-weight: bold;
}

.admission__emi-text {
  margin-bottom: 20px;
  font-size: var(--font-medium);
}

.admission__emi-logos {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  /* flex-wrap: wrap; */
  margin-top: 10px;
}
.admission__emi-topContainer {
  padding: 40px;
}
.admission__emiLogos--container {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 5px;
}
.admission__emi-logo {
  max-width: 150px;
  height: auto;
}

.admission__payment {
  background-color: white;
  color: black;
  padding: 30px;
}

.admission__payment-title {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: bold;
}

.admission__payment-text {
  margin-bottom: 20px;
  font-size: var(--font-medium);
}

.admission__payment-methods {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  gap: 40px;
}

.admission__payment-option {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.admission__payment-option img {
  max-width: 60px;
  margin-bottom: 10px;
}
.admission__payment-option--modeText {
  font-weight: 600;
}

.admission__payment-amount {
  display: flex;
  justify-content: center;
  align-items: center;
}

.admission__payment-button {
  padding: 12px 30px;
  background-color: #f8ba00;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  font-weight: bold;
}

.criteria {
  background-color: #2b2b2b;
  padding: var(--section-padding);
}

.criteria--mainContainer {
  width: var(--width);
  max-width: var(--max-width);
  margin: auto;
}

.criteria__title {
  color: #fff;
  font-size: var(--section-title-fontSize);
  margin-bottom: 20px;
  text-align: center;
}

.criteria__tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.criteria__tab {
  background-color: #fff;
  color: #333;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  width: 100%;
  border: 2px solid white;
  font-size: var(--font-medium);
}

.criteria__tab--active {
  background-color: #c52a54;
  color: #fff;
}

.criteria__content {
  text-align: left;
}

.criteria__list {
  list-style-type: disc;
  padding-left: 20px;
}

.criteria__item {
  margin-bottom: 10px;
  font-size: 15px;
  color: white;
}

.criteria__content--hidden {
  display: none;
}

/* 
  .criteria__tab:hover {
    background-color: #c52a54;
    color: #fff;
  } */

.faculty-slider {
  padding: var(--section-padding);
  /* background-color: #eae9ef; */
}
.faculty-slider__title {
  font-size: var(--section-title-fontSize);
  color: #b3095f;
  text-align: center;
  margin-bottom: 20px;
}
.faculty-slider__container {
  width: var(--width);
  max-width: var(--max-width);
  margin: auto;
}
.faculty-slider__item {
  text-align: center;
}

.faculty-slider__item img {
  width: 230px;
  height: 230px;
  border-radius: 20px;
  margin: auto;
  object-fit: cover;
  border: 1px solid var(--primary-color);
  background-color: #666;
}

.faculty-slider__item .faculty-slider__item-facultyName {
  font-size: var(--font-medium);
  margin-top: 10px;
  color: var(--primary-color);
  font-weight: var(--strong-font);
  text-decoration: underline;
  /* border-bottom: 1px solid #022a6f; */
}
.faculty-slider__item .faculty-slider__item-facultyDesc {
  /* margin-top: 10px; */
  font-size: var(--font-small);
  font-weight: 600;
  max-width: 250px;
  margin: 10px auto 0 auto;
}
.faculty-slider--secialNote {
  margin-top: 22px;
  font-size: var(--font-small);
  /* font-weight: 600; */
}

.certification {
  position: relative;
  background: linear-gradient(to bottom, white 50%, #f2f2f2 50%);
  padding: var(--section-padding);
  text-align: center;
  /* min-height: 500px; */
}
.certification--container {
  width: var(--width);
  max-width: var(--max-width);
  margin: auto;
}

.certification__title {
  font-size: var(--section-title-fontSize);
  color: #c52a54;
  margin-bottom: 30px;
}

.certification__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* width: var(--width);
    max-width: var(--max-width); */
  margin: auto;
}

p {
  font-size: 14 !important;
}

.certification__image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  position: relative;
  bottom: -35px;
}

.certification__description {
  font-size: var(--font-medium);
  color: #333;
  margin-top: 35px;
  /* max-width: 800px; */
  text-align: center;
  line-height: 1.5;
}

.mba-banner {
  background-image: linear-gradient(
    to right,
    #b10f57,
    #d10946,
    #ff286b,
    #ae005e
  );
  color: white;
  text-align: center;
  padding: var(--section-padding);
  min-height: 300px;
}
.mba-banner--container {
  width: var(--width);
  max-width: var(--max-width);
  margin: auto;
}
.mba-banner__title {
  /* font-size: var(--font-super); */
  font-size: 5rem;
  font-family: var(--font-Bebas);
  color: #fff;
  line-height: 5rem;
  font-weight: var(--light-font);
  padding-bottom: 10px;
}

.mba-banner__subtitle {
  font-size: 24px;
  padding: 15px 30px;
  /* border: 2px solid #b8055f; */
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 20px;
  background-color: #ffffff;
  color: #8e003e;
}

.mba-banner__description {
  font-size: var(--font-medium);
  /* max-width: 600px; */
  margin: 0 auto 40px;
  line-height: 1.6;
}

.mba-banner__btn {
  font-size: 18px;
  padding: 10px 30px;
  background-color: white;
  color: #c52a54;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.mba-banner__btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  color: #000000;
}

.accreditation--slider-con {
  position: relative;
}

.program-content-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.program-content-tab {
  position: relative;
}
.program-content-tab .program-tab-title {
  padding: 10px 10px;
  color: #000;
  /* font-weight: var(--strong-font); */
  background: #ffffff;
  text-align: center;
  border-radius: 10px;
  /* cursor: pointer; */
  transition: all 250ms ease-in-out;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  /* font-size: 0.85rem; */
  height: 100%;
  justify-content: center;
  /* text-align: center; */
}

.program-tab-title ul {
  padding-left: 20px; /* Adds space between the bullet points and text */
  margin: 0;
  /* list-style-position: inside; */
  width: 100%;
  text-align: left;
}

.program-tab-title ul li {
  /* margin-bottom: 8px; */
  /* font-size: 0.8rem; */
  color: #333;
  line-height: 1.6; /* Improves readability */
}
.program-tab-title--heading {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.slider-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 40px;
  margin-top: 45px;
}

.acc-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.acc-box img {
  width: 35%;
}

.acc-box h2 {
  font-size: 20px;
  font-weight: 500;
}

.accreditation--slider-con {
  display: none;
}
