@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=Bebas+Neue&display=swap');


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
}

:root {
    --font: "Poppins", sans-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 img {
    /* margin-left: auto;
      display: block */
    /* max-width: 150px; */
    max-height: 85px;
}



.banner-section {
    background-image: url(./assets/images/bg2.png);
    background-repeat: no-repeat;
    background-position: center center;
    padding: 30px 0;
    /* background-size: cover; */
    background-color: #b5144e;
}

.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);
}



.banner-section .wrapper .child-1 .hero-text {
    font-size: var(--font-super);
    font-family: var(--font-Bebas);
    color: #fff;
    line-height: 8rem;
    font-weight: var(--light-font);
    width: max-content;
    /* padding-bottom: 10px; */
    border-bottom: 3px solid #fff;
}

.banner-section .wrapper .child-1 .hero-text__smallText {
    font-size: 1.2rem;
    padding-top: 10px;
    color: #fff;
    font-style: italic;
}

/* 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: 20px;
    padding: 20px;
    width: 100%;
    /* margin-left: auto; */
    max-width: 450px;
    position: relative;
    display: flex;

}

.banner-section .child-2 .form-wrapper .heading {
    font-size: 1.25rem;
    color: #b80b4d;
    font-weight: var(--strong-font);
    margin-bottom: 10px;
}

.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;
}

.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: #328a1c;
    color: #fff;
    border: none;
    border-radius: 6px;
    /* text-transform: uppercase; */
    font-size: 0.8rem;
    font-weight: var(--strong-font);
    cursor: pointer;
}

.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;
}
.badge-container{
    
}

.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{
    width: 100%;
  }




  .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: #2e2e2e;
    padding: var(--section-padding);
}

.industry-pedagogy__title {
    color: white;
    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;

}

.programme--container {
    width: var(--width);
    max-width: var(--max-width);
    margin: 0 auto;
    /* height: 1000px; */
}

.programme__title {
    font-size: var(--section-title-fontSize);
    color: #b3095f;
    text-align: center;
    margin-bottom: 20px;
}

.programme__section {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.programme__header {
    background-color: #dfdfdf;
    padding: 15px;
    font-size: var(--font-medium);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.programme__header::after {
    content: '+';
    font-weight: bold;
}

.programme__header.active::after {
    content: '-';
}

.programme__content {
    display: none;
    padding: 15px;
    background-color: #fff;
    font-size: 16px;
    border-top: 1px solid #ddd;
}

.DownloadBroucher__button {
    margin: 40px auto auto auto;
    padding: 16px;
    background-color: rgb(0, 173, 52);
    color: white;
    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 4px 6px rgba(0, 0, 0, 0.8);
    display: block;

}

.admission {
    background-color: #b80b4d;
    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: space-between; */
    align-items: center;
    gap:20px;
}
.admission__emi-topContainer{
    padding: 40px;
}
.admission__emiLogos--container{
    background-color: #f0f0f0;
    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: #3b3b38;
    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%, #dfdfdf 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;
  }
  
  .certification__image {
    width: 60%;
    max-width: 600px;
    height: auto;
    border: 1px solid #ddd;
    margin-bottom: 20px;
  }
  
  .certification__description {
    font-size: var(--font-medium);
    color: #333;
    /* max-width: 800px; */
    text-align: center;
    line-height: 1.5;
  }





  .mba-banner {
    background-color: #b80b4d;
    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: 25px;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
    background-color: #bc1655;
}
  
  .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);
  }

  .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 20px;
  color: #000;
  /* font-weight: var(--strong-font); */
  background: #e7e7e7;
  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;
}

.admission__payment-button a{
color:white;
}