/**
 * 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;
}

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
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
    padding: 0;
}

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

.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;
}

.headerContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.heroTitle__highlight {
    display: block;
}

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

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

.headerLogo .headerLogo__img {
    width: 263px;
    height: 100px;
}

.headerLogo__img {
    width: 453px;
    height: 104px;
    object-fit: contain;
}

.headerCounter {
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    width: 100%;
    gap: 30px;
}

.headerCounter__title {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary-black);
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
    font-family: var(--font-family-secondary);
}

.countdownTimer {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-family-secondary);
}

.countdownTimer__item {
    display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        border: 1px solid #C04D00;
        /* flex: 1; */
        padding: 8px;
        border-radius: 6px;
}

.countdownTimer__value {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary-black);
    line-height: 1;
}

.countdownTimer__label {
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    color: var(--color-primary-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdownTimer__separator {
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary-black);
    line-height: 1;
    margin: 0 2px;
}

.headerNavigation {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 60px;
    max-height: 60px;
    background-color: var(--color-primary);
    position: relative;
}

.headerNavigation__container {
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.navigationMenu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 19px 0 21px 0;
    width: 100%;
    justify-content: space-between;
}

.programBox__top__link {
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.programBox__top__link .programBox__top__left,
.programBox__top__link .programBox__top__right {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: background-color 0.5s ease;
}

.programBox__top__link .programBox__top__left::before,
.programBox__top__link .programBox__top__right::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    transition: left 0.5s ease-in-out;
    z-index: -1;
}

.programBox__top__link:hover .programBox__top__left::before,
.programBox__top__link:hover .programBox__top__right::before {
    left: 0;
}

.programBox__top__link:hover .programBox__top__left,
.programBox__top__link:hover .programBox__top__right {
    background-color: transparent;
}

.navigationMenu__item {
    position: relative;
    padding: 0 48px;
    border-right: 1px solid var(--color-primary-white);
}

.navigationMenu__item:first-child {
    padding-left: 0;
}

.navigationMenu__item:last-child {
    padding-right: 0;
    border-right: none;
}

.navigationMenu__link {
    color: var(--color-primary-white);
    text-decoration: none;
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    transition: color 0.3s ease;
    position: relative;
}

.navigationMenu__link:hover {
    color: var(--color-secondary);
}

.navigationMenu__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-button);
    transition: width 0.3s ease;
}

.navigationMenu__link:hover::after,
.navigationMenu__link--active::after {
    width: 100%;
}

.navigationMenu__link--active {
    color: var(--color-secondary);
    font-weight: var(--font-weight-semibold);
}

/* ==========================================================================
   Hamburger Menu Styles
   ========================================================================== */

.hamburgerMenu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    gap: 5.25px;
    width: 42px;
    height: 42px;
    background: var(--color-secondary);
    border: none;
    cursor: pointer;
    padding: 10.5px 7px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburgerMenu__line {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary-white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburgerMenu__line:nth-child(1) {
    width: 17.5px;
    height: 3.5px;
    align-self: flex-end;
}

.hamburgerMenu__line:nth-child(2) {
    width: 100%;
}

.hamburgerMenu__line:nth-child(3) {
    width: 60%;
}

.hamburgerMenu:hover .hamburgerMenu__line {
    background-color: var(--color-primary-white);
}

.hamburgerMenu--active .hamburgerMenu__line {
    width: 100%;
}

.hamburgerMenu--active .hamburgerMenu__line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburgerMenu--active .hamburgerMenu__line:nth-child(2) {
    opacity: 0;
}

.hamburgerMenu--active .hamburgerMenu__line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

.heroSection {
    display: flex;
    align-items: flex-start;
    background: url('../images/students.png'), url('../images/hero.webp');
    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: 180px;
    border: 1px solid var(--color-primary);
}

.heroContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: flex-start;
    position: relative;
    padding-top: 80px;
    padding-bottom: 125px;
}

.heroTitle {
    font-family: 'Lora', serif;
    font-size: 48px;
    font-weight: var(--font-weight-medium);
    color: var(--color-primary-white);
    text-align: left;
    line-height: 140%;
    max-width: 800px;
    /* margin-bottom: var(--space-4); */
}

.heroSubtitle {
    font-family: var(--font-family-secondary);
    font-size: 42px;
    font-weight: var(--font-weight-extrabold);
    color: var(--color-primary-white);
    text-align: left;
    margin: 0;
}

.heroSubtitle:not(.heroSubtitle--date) {
    animation: blink 1.5s ease-in-out infinite;
}

.heroSubtitle--date {
    font-family: var(--font-family-secondary);
    font-size: 32px;
    font-weight: var(--font-weight-regular);
    line-height: 150%;
    font-family: var(--font-family-secondary);
}

.heroSubtitle__date {
    color: var(--color-secondary);
    font-weight: var(--font-weight-extrabold);
    font-family: var(--font-family-secondary);
}

.programBox__top__left__title {
    color: var(--color-primary-black);
    font-family: var(--font-family-primary);
    font-size: 42px;
    font-weight: var(--font-weight-medium);
    transition: color 0.5s ease;
}

.programBox__top__right__title {
    font-family: var(--font-family-primary);
    font-size: 42px;
    font-weight: var(--font-weight-medium);
    color: var(--color-primary-white);
    transition: color 0.5s ease;
}

.programBox__top__link:hover .programBox__top__left__title,
.programBox__top__link:hover .programBox__top__right__title {
    color: var(--color-primary-white);
}



.programBox__bottom__description {
    color: var(--color-primary-white);
    font-family: var(--font-family-secondary);
    font-size: 24px;
    font-weight: var(--font-weight-medium);
}

.programBox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 16px;
}

.programBox__top__left {
    background-color: var(--color-primary-white);
    padding: 8.5px 28px;
}

.programBox__top__right {
    background-color: var(--color-secondary);
    padding: 8.5px 36.5px;
}

.programBox__bottom {
    border: 1px solid  var(--color-primary-white);
    padding: 12px 30.5px;
}

.programBox__top {
    display: flex;
}

.heroBottomContent {
    display: flex;
    /* gap: 20px; */
    align-items: center;
    grid-column: 1 / -1;
    justify-content: center;
    padding-bottom: 30px;
    /* margin-top: var(--space-16); */
}



.herfeatureCard {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: 0 50px;
    border-right: 1px solid var(--color-primary-white);
}

.herfeatureCard:first-child {
    padding-left: 0;
}


.herfeatureCard:last-child {
    padding-right: 0;
    border-right: none;
}

/* .herfeatureCard:last-child {
    padding-right: 0px;
}

.herfeatureCard:first-child {
    padding-right: 0px;
} */

.herfeatureCard__img {
    display: flex;
    align-items: center;
    width: 50px;
    height: 50px;
}

.heroBottomContent__img {
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.herfeatureCard__content {
    display: flex;
    align-items: center;
    gap: 8px;
}


.herfeatureCard__title {
    font-family: var(--font-family-secondary);
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary-white);
    line-height: 1;
}

.herfeatureCard__description {
    font-family: var(--font-family-secondary);
    font-size: 20px;
    font-weight: var(--font-weight-regular);
    color: var(--color-primary-white);
}

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

   .heroForm {
    display: flex;
    justify-content: flex-end;
    
   }

.heroForm__form {

    /* visibility: hidden; */

    display: flex;
    flex-direction: column;
    /* gap: var(--space-4); */
    max-width: 409px;
    width: 409px;
    padding-top: 23px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 22px;
    backdrop-filter: blur(25px);
    border-radius: 12px;
    border: 1px solid #A2A2A2;
}

.heroForm__form__input {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.heroForm__title {
    color: var(--color-primary-white);
    font-size: 32px;
    font-weight: var(--font-weight-medium);
    font-family: 'Polymath', sans-serif;
    margin-bottom: 30px;
}

.heroForm__form input {
    width: 100%;
    padding: 12px 29.5px;
    border-radius: 4px;
    height: 50px;
    max-height: 50px;
    background: #FFFFFF0D;
    color: var(--color-primary-white);
    border: none;
    font-family: 'Polymath', sans-serif;
}

.heroForm__form input::placeholder {
    color: var(--color-primary-white);
    font-size: 18px;
}

.heroForm__form textarea::placeholder {
    color: var(--color-primary-white);
    font-size: 18px;

}

.heroForm__form textarea {
    font-family: 'Polymath', sans-serif;
    width: 100%;
    padding: 12px 29.5px;
    border: 1px solid var(--color-primary-white);
    border-radius: 4px;
    height: 100px;
    max-height: 100px;
    background: #FFFFFF0D;
    color: var(--color-primary-white);
    border: none;
}

.heroForm__form textarea#message {
    font-size: 18px;
}

.heroForm__form input[type="submit"] {
    background-color: var(--color-primary-white);
    color: var(--color-primary-black);
    font-family: var(--font-family-secondary);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    max-width: 130px;
    border-radius: 0;
}

/* ==========================================================================
   Mobile Form Section
   ========================================================================== */

.mobile_form_section {
    display: none;
    padding-top: 11px;
}

.mobileForm {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.mobileForm__form {
    /* visibility: hidden; */
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    padding: 30px 24px;
    background-color: var(--color-primary);
    border-radius: 12px;
    border: 1px solid #A2A2A2;
    backdrop-filter: blur(25px);
}

.mobileForm__form__input {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.mobileForm__title {
    color: var(--color-primary-white);
    font-size: 24px;
    font-weight: var(--font-weight-medium);
    font-family: 'Polymath', sans-serif;
    margin-bottom: 10px;
    text-align: left;
}

.mobileForm__form input {
    width: 100%;
    padding: 12px 29.5px;
    border-radius: 4px;
    height: 44px;
    max-height: 44px;
    background: #FFFFFF0D;
    color: var(--color-primary-white);
    border: none;
    font-family: 'Polymath', sans-serif;
    font-size: 14px;
    font-weight: var(--font-weight-regular);
}

.mobileForm__form input::placeholder {
    color: var(--color-primary-white);
    font-size: 14px;
}

.mobileForm__form textarea::placeholder {
    color: var(--color-primary-white);
    font-size: 14px;
}

.mobileForm__form textarea {
    font-family: 'Polymath', sans-serif;
    width: 100%;
    padding: 12px 29.5px;
    border: 1px solid var(--color-primary-white);
    border-radius: 4px;
    height: 100px;
    max-height: 100px;
    background: #FFFFFF0D;
    color: var(--color-primary-white);
    border: none;
    font-size: 14px;
    font-weight: var(--font-weight-regular);
}

.mobileForm__form textarea#mobile_message {
    font-size: 14px;
}

.mobileForm__form input[type="submit"] {
    background-color: var(--color-primary-white);
    color: var(--color-primary-black);
    font-family: var(--font-family-secondary);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    max-width: 130px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobileForm__form input[type="submit"]:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary-white);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */

.mainFooter {
    background-color: var(--color-primary);
    padding-top: 16px;
    padding-bottom: 16px;
}

.footerContent {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footerText {
    font-family: var(--font-family-secondary);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-primary-white);
    margin: 0;
    line-height: var(--line-height-normal);
}




/* Why Choose Section */
.whyChoose {
    padding-top: 120px;
    padding-bottom: 190px;
    background-image: url('../images/whychoose_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.whyChooseTitle {
    font-family: var(--font-family-primary);
    color: var(--color-primary-black);
    font-size: 48px;
    line-height: 140%;
    font-weight: var(--font-weight-medium);
    margin-bottom: 15px;
}

/* About SPJIMR Section */
.aboutSPJIMR {
    background: linear-gradient(0deg, rgba(183, 75, 37, 0.93) 0%, rgba(243, 106, 16, 0.93) 100%),
                url('../images/about2.png');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    border-radius: 120px 120px 0 0;
    margin-top: -100px;
    position: relative;
    z-index: 1;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 245px;
    padding-right: 245px;
}

.aboutSPJIMR__content {
    display: flex;
    align-items: center;
    gap: 157px;
}

.aboutSPJIMR__content__left {
    flex: 3;
}

.aboutSPJIMR__title {
    font-family: var(--font-family-primary);
    font-size: 48px;
    line-height: 140%;
    font-weight: var(--font-weight-medium);
    color: var(--color-primary-white);
    margin: 0;
    margin-bottom: 20px;
}

.aboutSPJIMR__description {
    font-family: var(--font-family-secondary);
    font-size: 20px;
    line-height: 150%;
    font-weight: 300;
    color: var(--color-primary-white);
    margin: 0;
    margin-bottom: 20px;
}

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

.aboutSPJIMR__content__right {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.aboutSPJIMR__content__right__img {
    width: 561px;
    height: 414px;
    object-fit: contain;
}

/* Programmes Offered Section */
.programmesOffered {
    padding-top: 120px;
    /* padding-bottom: 120px; */
}

.programmesOffered .owl-nav {
    right: 12% !important;
}

.programmesOfferedTitle {
    font-family: var(--font-family-primary);
    font-size: 48px;
    line-height: 140%;
    font-weight: var(--font-weight-medium);
    margin-bottom: 15px;
}

/* Programmes Offered Mobile Tabs */
.programmesOfferedMobile_tabs__header {
    display: flex;
    margin-bottom: 15px;
}

.programmesOfferedMobile_tabs__tab {
    flex: 1;
    padding: 15px;
    border: 1px solid #E0E0E0;
    background-color: transparent;
    cursor: pointer;
    font-family: var(--font-family-secondary);
    font-size: 16px;
    text-align: center;
    color: var(--color-primary-white);
}

.programmesOfferedMobile_tabs__tab--active {
    background-color: var(--color-secondary);
    color: var(--color-primary-white);
    border-color: var(--color-secondary);
}

.programmesOfferedMobile_tabs__panel {
    display: none;
}

.programmesOfferedMobile_tabs__panel--active {
    display: block;
}

.programmesOfferedMobile_tabs__imageWrapper {
    width: 100%;
    position: relative;
    height: 315px;
}

.programmesOfferedMobile_tabs__imageWrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(1.59deg, rgba(83, 31, 117, 0) 53%, #531F75 98.74%);
    z-index: 1;
    pointer-events: none;
}

.programmesOfferedMobile_tabs__imageWrapper img {
    width: 100%;
    height: 315px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0;
}

.programmesOfferedMobile_tabs__container {
    padding: 0;
}

/* ==========================================================================
   Career Outcomes Section
   ========================================================================== */

.careerOutcomes {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 0;
}

.careerOutcomes__imageWrapper {
    width: 100%;
    max-width: 1920px;
    height: auto;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.careerOutcomes__image {
    width: 100%;
    height: auto;
    max-height: 1103px;
    object-fit: cover;
    display: block;
}

.careerOutcomes__contentContainer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
    padding: 0;
    z-index: 2;
}

.careerOutcomes__content {
    padding-top: 172px;
}

.careerOutcomesTitle {
    font-family: var(--font-family-primary);
    font-size: 64px;
    line-height: 140%;
    font-weight: var(--font-weight-medium);
    margin: 0;
    margin-bottom: 7px;
    color: var(--color-primary-black);
}

.careerOutcomesTitle2 {
    font-family: var(--font-family-primary);
    font-size: 64px;
    line-height: 140%;
    font-weight: var(--font-weight-medium);
    margin: 0;
    margin-bottom: 7px;
    color: var(--color-primary-black);
    display: none;
}

.careerOutcomesTitle__class {
    font-size: 48px;
}

.careerOutcomes__subtitle {
    font-family: var(--font-family-primary);
    font-size: 48px;
    line-height: 140%;
    font-weight: var(--font-weight-medium);
    margin: 0;
    margin-bottom: 37px;
    color: var(--color-primary-black);
}

.careerOutcomes__buttonContainer {
    margin: 0;
}

.careerOutcomes__buttonContainer .button {
    font-size: 20px;
    font-family: var(--font-family-secondary);
}

.careerOutcomes__contentContainer_bottom {
    display: none;
}

/* ==========================================================================
   Graduate Work Section
   ========================================================================== */

.graduateWork {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #FFF9F6;
    border-top-left-radius: 120px;
    border-top-right-radius: 120px;
    overflow: hidden;
    margin-top: -100px;
    position: relative;
    z-index: 2;
    box-shadow: 0px -10px 47px 0px #00000017;
}

.graduateWorkTitle {
    font-family: var(--font-family-primary);
    font-size: 48px;
    line-height: 140%;
    font-weight: var(--font-weight-medium);
    margin-bottom: 40px;
    text-align: center;
    color: var(--color-primary-black);
}

.graduateWork_work_carousel {
    overflow: hidden;
}

.graduateWork_work_carousel__item {
    padding: 0 10px;
}

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

.graduateWork_work_carousel__box__image {
    width: 200px;
    /* min-width: 200px; */
    max-width: 200px;
    height: 100px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.graduateWork_work_carousel .owl-nav {
    display: none;
}

.graduateWork_work_carousel .owl-dots {
    display: none;
}

.graduateWork_work_carousel_reverse {
    overflow: hidden;
    margin-top: 20px;
}

.graduateWork_work_carousel_reverse .owl-nav {
    display: none;
}

.graduateWork_work_carousel_reverse .owl-dots {
    display: none;
}

/* ==========================================================================
   Admission Process Section
   ========================================================================== */

.admissionProcess {
    padding-top: 100px;
    padding-bottom: 150px;
}

.admissionProcessTitle {
    font-family: var(--font-family-primary);
    font-size: 48px;
    line-height: 140%;
    font-weight: var(--font-weight-medium);
    margin-bottom: 20px;
    text-align: center;
    color: var(--color-primary-black);
}

.admissionProcessTitle__divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.admissionProcessTitle__divider__image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.admissionProcess__eligibilityCriteria {
    text-align: center;
}

.eligibilityCriteriaTitle {
    font-family: 'Lora', serif;
    font-weight: 500;
    font-style: normal;
    font-size: 32px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-primary-black);
}

.eligibilityCriteria__carousel {
    padding: 0;
}

.eligibilityCriteria__carousel .owl-stage {
    display: flex;
}

.eligibilityCriteria__carousel .owl-item {
    display: flex;
    height: auto;
}

.eligibilityCriteria__card {
    border: 1px solid #E0E0E0;
    padding: 30px;
    background: var(--color-primary);
    transition: background-color 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.eligibilityCriteria__card:hover {
    background: var(--color-secondary);
}

.eligibilityCriteria__card__content {
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.aboutSPJIMR__description strong {
    font-weight: 700;
}

.eligibilityCriteria__card__imageWrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 1px solid;
    border-image-source: linear-gradient(180deg, #F58220 0%, #FFFFFF 100%);
    border-image-slice: 1;
    backdrop-filter: blur(20px);
    background: #FFFFFF33;
}

.eligibilityCriteria__card__image {
    width: 40px;
    height: 40px;
    display: block;
}

.eligibilityCriteria__card__title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 36px;
    line-height: 150%;
    letter-spacing: 0%;
    color: var(--color-primary-white);
    margin-bottom: 93px;
}

.eligibilityCriteria__card__description {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    color: var(--color-primary-white);
    margin-top: auto;
}

.eligibilityCriteria__carousel .owl-nav {
    display: none !important;
}

.eligibilityCriteria__carousel .owl-dots {
    display: none !important;
}

/* ==========================================================================
   Selection Process Section
   ========================================================================== */

.selectionProcess__content {
    padding-top: 100px;
}

.selectionProcessTitle {
    font-family: 'Lora', serif;
    font-weight: 500;
    font-style: normal;
    font-size: 32px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-primary-black);
}

.selectionProcess__boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 93px;
    flex-wrap: wrap;
}

.selectionProcess__box {
    background: url('../images/selectionp.png') center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 110px 141px 110px;
    /* min-width: 200px; */
    max-width: 415px;
    flex: 1;
    position: relative;
}

.selectionProcess__box:first-child::after {
    content: '';
    position: absolute;
    right: -19%;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background-image: url('../images/arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 60px;
    height: 60px;
    z-index: 1;
}

.selectionProcess__box:nth-child(2)::after {
    content: '';
    position: absolute;
    right: -19%;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background-image: url('../images/arrow2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 60px;
    height: 60px;
    z-index: 1;
}

.selectionProcess__box__content {
    text-align: center;
}

.selectionProcess__box__circle {
    width: 145px;
    height: 145px;
    position: absolute;
    bottom: -72.5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.selectionProcess__box:hover .selectionProcess__box__circle {
    bottom: 66%;
    transform: translateX(-50%) translateY(-20px);
    background: var(--color-secondary);
}

.selectionProcess__box__circle__image {
    width: 60px;
    height: 60px;
    display: block;
}

.selectionProcess__box__content__description {
    color: #555555;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.selectionProcess__box:hover .selectionProcess__box__content__description {
    transform: translateY(70px);
}

.selectionProcessMobile {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.selectionProcessMobile__item {
    box-shadow: 0px 0px 20px 0px #00000040;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 40px 0 0 40px;
    /* background-image: url('../images/process_bg.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.selectionProcessMobile__item:nth-child(2) {
    flex-direction: row-reverse;
    border-radius: 0 40px 40px 0;
}

.selectionProcessMobile__item:nth-child(2) .selectionProcessMobile__item__content__description {
    text-align: right;
}

.selectionProcessMobile__item__img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.selectionProcessMobile__item__img__image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.selectionProcessMobile__item__content__description {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #555555;
}

.lifeAtSPJIMR {
    padding-top: 100px;
    padding-bottom: 100px;
    background: var(--color-primary);
}

.lifeAtSPJIMRTitle {
    font-family: var(--font-family-primary);
    font-size: 48px;
    line-height: 140%;
    font-weight: var(--font-weight-medium);
    margin-bottom: 20px;
    text-align: center;
    color: var(--color-primary-white);
}

.notableAlumni {
    padding-top: 94px;
    padding-bottom: 436px;
    background: #FFF9F6;
    border-bottom-left-radius: 120px;
    border-bottom-right-radius: 120px;
    box-shadow: 0px 4px 134px 0px #0000001A;
}

.notableAlumniTitle {
    font-family: var(--font-family-primary);
    font-size: 48px;
    line-height: 140%;
    font-weight: var(--font-weight-medium);
    margin-bottom: 20px;
    text-align: center;
    color: var(--color-primary-black);
}

.assistance {
    margin-top: -250px;
    position: relative;
    z-index: 2;
}

.assistance__content {
    padding-top: 84px;
    padding-left: 59px;
    padding-bottom: 84px;
    background-image: url('../images/finance.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0px 120px;
    position: relative;
}

.assistance__content__image {
    position: absolute;
    bottom: 84px;
    right: 45px;
    width: 200px;
    height: 200px;
}

.assistanceTitle {
    font-family: var(--font-family-primary);
    font-size: 48px;
    line-height: 140%;
    font-weight: var(--font-weight-medium);
    margin-bottom: 20px;
    text-align: left;
    color: var(--color-primary-white);
}

.assistance_content_mobile {
    display: none;
}

.assistance__content__left {
    max-width: 534px;
}

.assistance__content__left__description {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    color: var(--color-primary-white);
    margin-bottom: 48px;
}

.assistance__content__left__buttons .button {
    padding: 15px 62px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
}

.frequentlyAskedQuestions {
    padding-top: 100px;
    padding-bottom: 740px;
    position: relative;
    background-image: url('../images/bottom.png');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

.frequentlyAskedQuestionsTitle {
    font-family: var(--font-family-primary);
    font-size: 48px;
    line-height: 140%;
    font-weight: var(--font-weight-medium);
    margin-bottom: 30px;
    text-align: center;
}

.frequentlyAskedQuestions__content {
    /* max-width: 900px; */
    margin: 0 120px;
}

.frequentlyAskedQuestions__buttonContainer {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.frequentlyAskedQuestions__buttonContainer button {
    font-family: Nunito Sans;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    padding: 15px 62px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.accordion__item {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-primary-white);
    box-shadow: 0px 0px 14px 0px #0000001A;
    backdrop-filter: blur(20px);
}

.accordion__item--active {
    background: var(--color-primary);
    border: none;
    border-radius: 0;
}


.accordion__item--hidden {
    display: none;
}

.accordion__header {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

.accordion__header:hover {
    background-color: #F5F5F5;
}

.accordion__item--active .accordion__header:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.accordion__title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #555;
    display: flex;
    align-items: center;
}

.accordion__title__q {
    font-family: 'Lora', serif;
    font-weight: 500;
    font-style: normal;
    font-size: 48px;
    line-height: 1;
    letter-spacing: 0%;
    margin-right: 47px;
    display: inline-block;
    vertical-align: middle;
    color: var(--color-primary-black);
}

.accordion__item--active .accordion__title {
    color: var(--color-primary-white);
}

.accordion__item--active .accordion__title__q {
    color: var(--color-primary-white);
}

.accordion__icon {
    background-image: url('../images/close.png');
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: center;
    width: 30px;
    height: 30px;
    font-size: 0;
    display: inline-block;
    transition: transform 0.3s ease;
}

.accordion__item--active .accordion__icon {
    background-image: url('../images/open.svg');
    background-size: 40px 40px;
    background-repeat: no-repeat;
    background-position: center;
    width: 40px;
    height: 40px;
    font-size: 0;
    display: inline-block;
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--color-primary-white);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding-left: 113px;
    padding-right: 57px;
}

.accordion__item--active .accordion__content {
    max-height: 600px;
}

.accordion__text {
    padding: 27px 0px 20px 0px;
    font-family: var(--font-family-secondary);
    font-size: 20px;
    line-height: 150%;
    color: var(--color-paragraph);
    margin: 0;
    max-width: 1017px;
    flex: 1;
    font-weight: 400;
    color: #555555;
}

.ans_icon {
    flex-shrink: 0;
    padding: 14px 0px;
    /* margin-top: 27px; */
}

.a_icon {
    flex-shrink: 0;
    display: none;
    align-self: flex-end;
    margin-left: auto;
}

.notableAlumni__content {
    position: relative;
    min-height: 480px;
}

.notableAlumni__content .circleWrapper {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.notableAlumni__content .circleLabel {
    font-family: var(--font-family-secondary);
    font-size: 20px;
    color: var(--color-primary-text);
    margin-top: 10px;
    text-align: center;
    white-space: nowrap;
    color: #555;
    font-weight: var(--font-weight-bold);
}

.notableAlumni__content .circleTitle {
    font-family: var(--font-family-secondary);
    font-size: 13px;
    color: var(--color-primary-text);
    margin-top: 4px;
    text-align: center;
    white-space: nowrap;
    /* opacity: 0.8; */
    color: #555;
}

.notableAlumni__content .circleUniversity {
    font-family: var(--font-family-secondary);
    font-size: 12px;
    color: var(--color-primary-text);
    margin-top: 3px;
    text-align: center;
    white-space: nowrap;
    /* opacity: 0.7; */
    color: #555;
}

.notableAlumni__content .circleImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.notableAlumni__content .circle1:hover .circleImage,
.notableAlumni__content .circle2:hover .circleImage,
.notableAlumni__content .circle3:hover .circleImage,
.notableAlumni__content .circle4:hover .circleImage,
.notableAlumni__content .circle5:hover .circleImage,
.notableAlumni__content .circle6:hover .circleImage,
.notableAlumni__content .circle7:hover .circleImage,
.notableAlumni__content .circle8:hover .circleImage,
.notableAlumni__content .circle9:hover .circleImage,
.notableAlumni__content .circle10:hover .circleImage,
.notableAlumni__content .circle11:hover .circleImage {
    filter: grayscale(0%);
}

.notableAlumni__content .circle1 {
    position: relative;
    width: 111px;
    height: 111px;
    border: none;
    border-radius: 50%;
    transition: width 0.3s ease, height 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    padding: 7px;
}

.notableAlumni__content .circleWrapper:first-child {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.notableAlumni__content .circleWrapper:first-child .circle1:hover {
    width: 131px;
    height: 131px;
    border: 1px solid #E0E0E0;
}

.notableAlumni__content .circle2 {
    position: relative;
    width: 90px;
    height: 90px;
    border: none;
    border-radius: 50%;
    transition: width 0.3s ease, height 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    padding: 7px;
}

.notableAlumni__content .circleWrapper:nth-child(2) {
    top: 0px;
    left: 10%;
}

.notableAlumni__content .circleWrapper:nth-child(2) .circle2:hover {
    width: 110px;
    height: 110px;
    border: 1px solid #E0E0E0;
}

.notableAlumni__content .circle3 {
    position: relative;
    width: 90px;
    height: 90px;
    border: none;
    border-radius: 50%;
    transition: width 0.3s ease, height 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    padding: 7px;
}

.notableAlumni__content .circleWrapper:nth-child(3) {
    top: 100px;
    right: 15%;
}

.notableAlumni__content .circleWrapper:nth-child(3) .circle3:hover {
    width: 110px;
    height: 110px;
    border: 1px solid #E0E0E0;
}

.notableAlumni__content .circle4 {
    position: relative;
    width: 111px;
    height: 111px;
    border: none;
    border-radius: 50%;
    transition: width 0.3s ease, height 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    padding: 7px;
}

.notableAlumni__content .circleWrapper:nth-child(4) {
    top: 240px;
    left: 40%;
}

.notableAlumni__content .circleWrapper:nth-child(4) .circle4:hover {
    width: 131px;
    height: 131px;
    border: 1px solid #E0E0E0;
}

.notableAlumni__content .circle10 {
    position: relative;
    width: 111px;
    height: 111px;
    border: none;
    border-radius: 50%;
    transition: width 0.3s ease, height 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    padding: 7px;
}

.notableAlumni__content .circleWrapper:nth-child(10) {
    top: 400px;
    left: 5%;
}

.notableAlumni__content .circleWrapper:nth-child(10) .circle10:hover {
    width: 131px;
    height: 131px;
    border: 1px solid #E0E0E0;
}

.notableAlumni__content .circle5 {
    position: relative;
    width: 90px;
    height: 90px;
    border: none;
    border-radius: 50%;
    transition: width 0.3s ease, height 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    padding: 7px;
}

.notableAlumni__content .circleWrapper:nth-child(5) {
    top: 341px;
    right: 27%;
}

.notableAlumni__content .circleWrapper:nth-child(5) .circle5:hover {
    width: 110px;
    height: 110px;
    border: 1px solid #E0E0E0;
}

.notableAlumni__content .circle11 {
    position: relative;
    width: 74px;
    height: 74px;
    border: none;
    border-radius: 50%;
    transition: width 0.3s ease, height 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    padding: 7px;
}

.notableAlumni__content .circleWrapper:nth-child(11) {
    top: 30px;
    right: 5%;
}

.notableAlumni__content .circleWrapper:nth-child(11) .circle11:hover {
    width: 94px;
    height: 94px;
    border: 1px solid #E0E0E0;
}

.notableAlumni__content .circle6 {
    position: relative;
    width: 74px;
    height: 74px;
    border: none;
    border-radius: 50%;
    transition: width 0.3s ease, height 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    padding: 7px;
}

.notableAlumni__content .circleWrapper:nth-child(6) {
    top: 430px;
    left: 22%;
}

.notableAlumni__content .circleWrapper:nth-child(6) .circle6:hover {
    width: 94px;
    height: 94px;
    border: 1px solid #E0E0E0;
}

.notableAlumni__content .circle7 {
    position: relative;
    width: 90px;
    height: 90px;
    border: none;
    border-radius: 50%;
    transition: width 0.3s ease, height 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    padding: 7px;
}

.notableAlumni__content .circleWrapper:nth-child(7) {
    top: 190px;
    left: 15%;
}

.notableAlumni__content .circleWrapper:nth-child(7) .circle7:hover {
    width: 110px;
    height: 110px;
    border: 1px solid #E0E0E0;
}

.notableAlumni__content .circle8 {
    position: relative;
    width: 111px;
    height: 111px;
    border: none;
    border-radius: 50%;
    transition: width 0.3s ease, height 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    padding: 7px;
}

.notableAlumni__content .circleWrapper:nth-child(8) {
    top: 360px;
    left: 50%;
}

.notableAlumni__content .circleWrapper:nth-child(8) .circle8:hover {
    width: 131px;
    height: 131px;
    border: 1px solid #E0E0E0;
}

.notableAlumni__content .circle9 {
    position: relative;
    width: 90px;
    height: 90px;
    border: none;
    border-radius: 50%;
    transition: width 0.3s ease, height 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    padding: 7px;
}

.notableAlumni__content .circleWrapper:nth-child(9) {
    top: 380px;
    right: 8%;
}

.notableAlumni__content .circleWrapper:nth-child(9) .circle9:hover {
    width: 110px;
    height: 110px;
    border: 1px solid #E0E0E0;
}

/* Notable Alumni Mobile Carousel */
.notableAlumni__content__mobile {
    display: none;
}

.notableAlumni__content__carousel {
    padding: 20px 0;
}

.notableAlumni__carousel__item {
    display: flex;
    justify-content: center;
}

.notableAlumni__content__carousel .circleWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.notableAlumni__content__carousel .circle1,
.notableAlumni__content__carousel .circle2,
.notableAlumni__content__carousel .circle3,
.notableAlumni__content__carousel .circle4,
.notableAlumni__content__carousel .circle5,
.notableAlumni__content__carousel .circle6,
.notableAlumni__content__carousel .circle7,
.notableAlumni__content__carousel .circle8,
.notableAlumni__content__carousel .circle9,
.notableAlumni__content__carousel .circle10,
.notableAlumni__content__carousel .circle11 {
    width: 120px;
    height: 120px;
    border: 1px solid #E0E0E0;
    border-radius: 50%;
    overflow: hidden;
}

.notableAlumni__content__carousel .circleLabel {
    font-family: var(--font-family-secondary);
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    font-weight: var(--font-weight-bold);
    text-align: center;
}

.notableAlumni__content__carousel .circleTitle {
    font-family: var(--font-family-secondary);
    font-size: 16px;
    color: #555;
    margin-top: 4px;
    font-weight: var(--font-weight-regular);
    text-align: center;
}

.notableAlumni__content__carousel .circleUniversity {
    font-family: var(--font-family-secondary);
    font-size: 14px;
    color: #555;
    margin-top: 3px;
    text-align: center;
}

.notableAlumni__content__carousel .circleImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.notableAlumni__content__carousel .circleImage:hover {
    filter: grayscale(0%);
}

.lifeAtSPJIMR_carousel {
    overflow: hidden;
}

.lifeAtSPJIMR_carousel__wrapper {
    position: relative;
}

.lifeAtSPJIMR_carousel .owl-nav {
    display: flex !important;
    gap: 10px;
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 !important;
    width: 100%;
    pointer-events: none;
}

.lifeAtSPJIMR_carousel .owl-prev,
.lifeAtSPJIMR_carousel .owl-next {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: absolute !important;
    width: 60px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -9999px;
    overflow: hidden;
    pointer-events: auto;
    top: 50%;
    margin-top: -30px;
}

.lifeAtSPJIMR_carousel .owl-prev {
    left: 23% !important;
    right: auto !important;
    background-image: url('../images/prevW.png') !important;
    background-color: transparent !important;
}

.lifeAtSPJIMR_carousel .owl-next {
    transform: rotate(360deg);
    right: 3% !important;
    left: auto !important;
    background-image: url('../images/nextW.png') !important;
    background-color: transparent !important;
}

.lifeAtSPJIMR_carousel .owl-prev:hover,
.lifeAtSPJIMR_carousel .owl-next:hover {
    opacity: 0.8 !important;
}

.lifeAtSPJIMR_carousel__item {
    padding: 0 10px;
}

.lifeAtSPJIMR_carousel__box {
    width: 100%;
    background: var(--color-primary-white);
    /* border: 1px solid #E0E0E0; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.lifeAtSPJIMR_carousel__image {
    width: 100%;
    height: auto;
    display: block;
}

.lifeAtSPJIMR_carousel__description {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    background: white;
    padding: 20px;
}

.lifeAtSPJIMR_carousel__description h4 {
    margin: 0;
    font-family: 'Polymath', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
}

.lifeAtSPJIMR_carousel__description p {
    margin: 10px 0 0 0;
    font-family: 'Polymath', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #333;
}

.mobile_countdown_timer {
    display: none;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

   @media (min-width: 1920px) {
    .careerOutcomes__imageWrapper{
        max-width: 2500px;
    }
   }

@media (max-width: 1800px) {

    .herfeatureCard {
        padding: 0px 44px;
    }

    .herfeatureCard__title {
        font-size: 34px;
    }

    .herfeatureCard__description {
        font-size: 19px;
    }

    .heroContent {
        grid-template-columns: 2fr 1fr;
    }


    .container {
        padding: 0 var(--container-padding);
    }

    .careerOutcomes__contentContainer {
        padding: 0 var(--container-padding);
    }

    .headerContainer {
        padding: 0 var(--container-padding);
    }

    .headerNavigation__container {
        padding: 0 var(--container-padding);
    }
    .navigationMenu__item {
        padding: 0px 30px;
    }
    
    .programmesOfferedMobile_tabs__container {
        padding: 0 var(--container-padding);
    }

    .frequentlyAskedQuestions__content {
        margin: 0 100px;
    }

    .accordion__content {
        padding-left: 90px;
        font-size: 17px;
    }

    .aboutSPJIMR {
        padding-left: 100px;
        padding-right: 100px;
    }

    .aboutSPJIMR__content {
        gap: 100px;
    }
    .lifeAtSPJIMR_carousel__description {
        width: 68%;
        top: 80%;
    }
}

@media (max-width: 1720px) {
    .herfeatureCard__img{
        width: 48px;
        height: 48px;
    }

    .herfeatureCard {
        padding: 0px 30px;
    }

    .herfeatureCard__title {
        font-size: 32px;
    }

    .herfeatureCard__description {
        font-size: 18px;
    }


    .mainHeader {
        width: 100vw;
    }
    .accordion__text {
        max-width: 900px;
    }
    .frequentlyAskedQuestions__content {
        margin: 0 80px;
    }

    .frequentlyAskedQuestionsTitle {
        font-size: 44px;
    }

    .selectionProcess__box {
        padding-left: 90px;
        padding-right: 90px;
    }

    .lifeAtSPJIMR_carousel__description {
        width: 100%;
        top: 78%;
    }
}

@media (max-width: 1600px) {
    .aboutSPJIMR {
        padding-left: 0px;
        padding-right: 0px;
    }

    .aboutSPJIMR__description {
        font-size: 18px;
    }

    .aboutSPJIMR__content {
        gap: 70px;
    }


.lifeAtSPJIMR_carousel .owl-prev { 
    left: 22% !important;
}
.lifeAtSPJIMR_carousel .owl-next {
    right: 2% !important;
}
}

@media (max-width: 1550px) {


    .heroTitle {
        font-size: 44px;
    }
    .heroSubtitle {
        font-size: 37px;
    }

    .heroSection {
        background-size: 64% auto, cover;
    }

    .programBox__top__left__title {
        font-size: 38px;
    }
    .programBox__top__right__title {
        font-size: 38px;
    }

    .programBox__bottom__description {
        font-size: 22px;
    }

    .heroSubtitle--date {
        font-size: 30px;
    }

    .heroSection {
        background-size: 70% auto, cover;
    }

    

/* 
    .notableAlumni__content .circleWrapper:nth-child(7) {
        top: 220px;
        right: 0%;
    }

    .notableAlumni__content .circleWrapper:nth-child(3) {
        top: 67px;
        right: 15%;
    }

    .notableAlumni__content .circleWrapper:nth-child(6) {
        top: 220px;
        right: 28%;
    } */





    .assistance__content {
        margin: 0 80px;
    }

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

    .eligibilityCriteria__card {
        padding: 20px;
    }

    .eligibilityCriteria__card__title {
        font-size: 32px;
    }

    .eligibilityCriteria__card__title {
        margin-bottom: 40px;
    }

    .eligibilityCriteria__card__description {
        font-size: 17px;
    }

    .herfeatureCard__img {
        width: 46px;
        height: 46px;
    }

    .herfeatureCard__title {
        font-size: 28px;
    }

    .herfeatureCard {
        padding: 0px 22px;
    }


    .herfeatureCard__description { 
        font-size: 17px;
    }

    .frequentlyAskedQuestionsTitle {
        font-size: 42px;
    }

    .navigationMenu__item {
        padding: 0px 20px;
    }
    .accordion__text {
        font-size: 18px;
        max-width: 800px;
    }

    .accordion__title {
        font-size: 23px;
    }

    .frequentlyAskedQuestions__content {
        margin: 0 60px;
    }
    .accordion__content {
        padding-left: 60px;
    }

    .frequentlyAskedQuestions {
        padding-bottom: 680px;
    }

    .lifeAtSPJIMR_carousel .owl-prev { 
        left: 21% !important;
    }
    .lifeAtSPJIMR_carousel .owl-next {
        right: 1% !important;
    }

    /* .ans_icon {
        width: 100px;
        height: 20px;
    } */

    
}

@media (max-width: 1440px) {

    .assistance__content {
        padding-left: 50px;
        margin: 0 80px;
    }


    
    .lifeAtSPJIMR_carousel__description {
        width: 100%;
        top: 75%;
    }

    .assistanceTitle {
        font-size: 44px;
    }


    .whyChooseTitle {
        font-size: 44px;
    }
    .heroSubtitle {
        font-size: 29px;
    }

    .heroTitle {
        font-size: 44px;
    }
    .heroSubtitle {
        font-size: 30px;
    }

    .programmesOfferedTitle {
        font-size: 44px;
    }

    .programBox__top__left__title {
        font-size: 36px;
    }

    .programBox__top__right__title {
        font-size: 36px;
    }
    .programBox__bottom__description {
        font-size: 21px;
    }

    
}

@media (max-width: 1400px) {

    .selectionProcess__box:nth-child(2)::after {
        right: -22%;
    }
    .selectionProcess__box:first-child::after {
        right: -22%;
    }

    .careerOutcomes__subtitle {
        font-size: 44px;
    }
    .careerOutcomesTitle {
font-size: 44px;
    }

    .careerOutcomesTitle__class {
        font-size: 30px;
    }

    .aboutSPJIMR__content {
        gap: 50px;
    }
    .aboutSPJIMR__description {
        font-size: 16px;
    }

    .herfeatureCard__title {
        font-size: 26px;
    }
    .herfeatureCard__description {
        font-size: 16px;
    }
    
    .frequentlyAskedQuestions__content{
        margin: 0 40px;
    }

    .frequentlyAskedQuestions {
        padding-bottom: 640px;
    }

    .frequentlyAskedQuestionsTitle {
        font-size: 40px;
    }
    
}

@media (max-width: 1366px) {

    .headerLogo .headerLogo__img {
        width: 187px;
        height: 71px;
    }

    .heroForm__form {
        /* display: none; */
    }

    .headerLogo__img {
        width: 322px;
        height: 70px;
    }

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

    .headerNavigation {
        height: 50px;
        max-height: 50px;
    }

    .navigationMenu {
        

    padding: 15px 0 17px 0;

    }

    .heroSection {
        padding-top: 135px;
        background-position: 118% 102%, center;
    }
 
    .selectionProcess__box__content__description {
        font-size: 22px;
    }

    .selectionProcess__box__circle__image {
        width: 45px;
        height: 45px;
    }

    .selectionProcess__box__circle {
        width: 120px;   
        height: 120px;
    }
    .selectionProcess__box__circle {
        bottom: -38.5px;
    }

    .eligibilityCriteria__card__title {
        font-size: 30px;
    }

    .eligibilityCriteria__card__description {
        font-size: 16px;
    }

    .assistanceTitle {
        font-size: 44px;
    }

    .graduateWorkTitle {
        font-size: 42px;
    }
    
    .careerOutcomesTitle {
        font-size: 42px;
    }

    .careerOutcomesTitle__class {
        font-size: 30px;
    }

    .careerOutcomes__subtitle {
        font-size: 42px;
        margin-bottom: 14px;
    }

    .programmesOffered_carousel {
        margin-left: 80px;
    }


    .whyChoose_carousel {
        margin-left: 80px;
    }
    .aboutSPJIMR__title {
        font-size: 42px;
    }

    .whyChooseTitle {
        font-size: 42px;
        margin-left: 80px;
    }

    .heroBottomContent {
        justify-content: space-between;
    }

    .herfeatureCard{
        gap: 10px;
    }

    .herfeatureCard {
        padding: 0px 20px;
    }

    .heroTitle {
        font-size: 42px;
        margin-bottom: 16px;
    }
    .heroSubtitle {
        margin-bottom: 10px;
    }
    .heroForm__title {
        font-size: 30px;
    }

    .programBox__top__left__title {
        font-size: 38px;
    }

    .programBox__top__right__title {
        font-size: 38px;
    }

    .programBox__bottom__description {
        font-size: 22px;
    }

    .assistance__content {
        margin: 0 50px;
    }

    .heroContent {
        padding-bottom: 80px;
        padding-top: 56px;
    }
}


@media (max-width: 1320px) {

    .eligibilityCriteria__card__title {
        font-size: 26px;
    }

    .programBox__bottom {
        padding: 12px 32.5px;
    }
/* 
    .notableAlumni__content .circleWrapper:nth-child(2) {
        top: 87px;
        left: 24%;
    }
    
    .notableAlumni__content .circleWrapper:nth-child(8) {
        top: 360px;
        left: 21%;
    }
    
    .notableAlumni__content .circleWrapper:nth-child(4) {
        top: 240px;
        left: 38%;
    } */

    .lifeAtSPJIMR_carousel__description {
        width: 100%;
        top: 75%;
    }

    .lifeAtSPJIMR_carousel__description h4 {
        font-size: 22px;
    }

    .lifeAtSPJIMR_carousel__description p {
        font-size: 17px;
    }

    .graduateWorkTitle {
        font-size: 32px;
    }

    .careerOutcomesTitle {
        font-size: 32px;
    }

    .assistanceTitle {
        font-size: 32px;
    }

    .careerOutcomesTitle__class {
        font-size: 24px;
    }

    .careerOutcomes__subtitle {
        font-size: 32px;
    }

    .careerOutcomes__buttonContainer .button {
        font-size: 16px;
    }

    .careerOutcomes__content {
        padding-top: 120px;
    }

    .aboutSPJIMR__content {
        gap: 20px;
    }

    .aboutSPJIMR__title {
        font-size: 32px;
    }

    .whyChooseTitle {
        font-size: 32px;
    }
    .heroTitle {
        font-size: 32px;
    }
    .heroSubtitle {
        font-size: 20px;
    }
    .programBox__top__right__title {
        font-size: 28px;
    }
    .programBox__top__left__title {
        font-size: 28px;
    }
    .programBox__bottom__description {
        font-size: 17px;
    }
    .heroForm__form {
        width: 340px;
    }
    .heroForm__title {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .heroForm__form input {
        padding: 8px 16.5px;
        font-size: 16px;
    }
    .heroForm__form textarea{
        padding: 8px 16.5px;
        font-size: 80px;
    }
    .heroContent{
        padding-bottom: 70px;
    }

    .heroSection {
        background-position: 123% 106%, center center;
    }

    .heroTitle__highlight {
        display: block;
    }

    .heroBottomContent {
        padding-bottom: 16px;
    }
}

@media (max-width: 1300px) {



    .assistance__content__image {
        bottom: 54px;
        right: 25px;
        width: 120px;
        height: 120px;
    }
    .navigationMenu__item {
        padding: 0px 12px;
    }

    .frequentlyAskedQuestions {
        padding-bottom: 570px;
    }

    .heroTitle {
        margin-bottom: 24px;
    }
    .heroSubtitle {
        font-size: 26px;
    }

    .ans_icon {
        width: 80px;
        /* height: 80px; */
    }

    .accordion__content {
        padding-left: 30px;
        padding-right: 30px;
    }

    .accordion__icon {
        width: 50px;
        height: 50px;
    }
}


@media (max-width: 1280px) {

    .assistance__content__image {
        width: 120px;
        height: 120px;
    }


    .lifeAtSPJIMR_carousel .owl-prev { 
        left: 20% !important;
    }
    .lifeAtSPJIMR_carousel .owl-next {
        right: 0% !important;
    }


    .herfeatureCard__img {
        width: 44px;
        height: 44px;
    }
    .heroBottomContent {
        justify-content: space-between;
    }

    .herfeatureCard__title {
        font-size: 20px;
    }
    .herfeatureCard {
        padding: 0px 18px;
    }
    
}

@media (min-width: 992px) and (max-width: 1130px) {
    .navigationMenu__item {
        padding: 0px 10px;
    }

    .navigationMenu__link {
        font-size: 12px;
    }
}


@media (max-width: 1200px) {

    .countdownTimer__item {
        padding: 5px;
    }

    .countdownTimer__label {
        font-size: 14px;
    }

    .countdownTimer__value {
        font-size: 20px;
    }

    .headerCounter {
        gap: 10px;
    }

    .headerCounter__title {
        font-size: 20px;
    }

    .lifeAtSPJIMR_carousel__description {
        width: 100%;
        top: 70%;
    }

    .lifeAtSPJIMR_carousel__description h4 {
        font-size: 20px;
    }

    .lifeAtSPJIMR_carousel__description p {
        font-size: 15px;
    }

    .selectionProcess__box:first-child::after {
        right: -27%;
    }

    .selectionProcess__box:nth-child(2)::after {
        right: -27%;
    }
    .graduateWork {
        margin-top: -60px;
    }
    .heroBottomContent {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-content: center;
    }

    .herfeatureCard {
        border-right: none;
        padding: 0;
        justify-content: flex-start;
    }

    .herfeatureCard:nth-child(1),
    .herfeatureCard:nth-child(3) {
        border-right: 1px solid var(--color-primary-white);
    }

    .frequentlyAskedQuestions {
        padding-bottom: 500px;
    }
    .selectionProcess__box__content__description {
        font-size: 20px;
    }

    .selectionProcess__box {
        padding-left: 40px;
        padding-right: 40px;
    }

    .assistance__content {
        margin: 0 40px;
    }

    .assistance__content__left__buttons .button {
        padding: 10px 20px;
        font-size: 16px;
    }
}

@media (max-width: 1100px) {

   .notableAlumni__content__mobile .owl-nav {
    

    right: unset;
        bottom: -80px;
        top: unset;
        left: 50%;
        transform: translateX(-50%);

    }
    
    .notableAlumni__content {
        display: none;
    }

    .notableAlumni__content__mobile {
        display: block;
    }

    .notableAlumni__content__carousel .circleLabel {

    }
    
}

@media (max-width: 1024px) {

    .d-none-1024 {
        display: none;
    }

    .countdownTimer {
        justify-content: center;
    }

    .mobile_countdown_timer {
        display: block;
    }

    .countdownTimer__value {
        color: var(--color-primary-white);
    }

    .countdownTimer__label {
        color: var(--color-primary-white);
    }

    .countdownTimer__separator {
        color: var(--color-primary-white);
    }

    .countdownTimer__item {
        border: 1px solid #fff;
    }

    .headerCounter__title {
        font-size: 18px;
        color: var(--color-primary-white);
        text-align: center;
    }

    .headerLogo .headerLogo__img {
        width: 140px;
        height: 53px;
      }

    .navigationMenu__item {
        border-right: none;
    }


    .assistance__content {
        margin: 0px;
    }

    

    .lifeAtSPJIMR_carousel__description p {
        font-size: 14px;
    }

    .lifeAtSPJIMR_carousel .owl-prev { 
        left: 18% !important;
    }
    .lifeAtSPJIMR_carousel .owl-next {
        right: -2% !important;
    }


    .selectionProcess__boxes {
        display: none;
    }

    .selectionProcessMobile {
        display: flex;
    }

    .aboutSPJIMR__content__right {
        width: 100%;
    }

    .aboutSPJIMR__content__right__img {
        width: 100%;
        height: auto;
    }

    .aboutSPJIMR__content {
        flex-direction: column;
    }

    .heroForm {
        justify-content: center;
    }


    .heroForm__form {
        width: 75%;
    }

    .frequentlyAskedQuestions {
        padding-bottom: 450px;
    }


    .accordion__item--active .accordion__icon { 
        background-size: 35px 35px;
    }

    .accordion__icon {
        background-size: 25px 25px;
    }

    .mainHeader {
        display: flex;
        align-items: center;
        width: 100vw;
        height: 60px;
        min-height: 60px;
        padding: 0;
        box-sizing: border-box;
        left: 0;
        transform: none;
    }

    .headerContainer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        padding: 0 var(--container-padding);
        position: relative;
    }

    .headerLogoRow {
        padding: 7px 0;
        width: auto;
        height: 60px;
        max-height: 60px;
        gap: 0;
    }

    .headerLogo__img {
        width: 120px;
        height: 47px;
    }

    .headerLogo--right .headerLogo__img {
        width: 170px;
        height: 36px;
    }

    .headerCounter.mobile_countdown_timer {
        display: flex;
        /* flex-direction: column; */
    }
    

    .headerCounter {
        background-color: var(--color-button);
        /* padding: 4px 0; */
        /* order: 2;
        flex: 1; */
        /* justify-content: center; */
        /* border: 1px solid #fff; */
        position: sticky;
        top: 60px;
        /* max-height: 48px; */
        z-index: 9;
        /* display: flex; */
        flex-direction: row;
        /* margin-top: 16px; */
    }

    .countdownTimer {
        gap: 4px;
        width: max-content;
    }

    .countdownTimer__value {
        font-size: 16px;
    }

    .countdownTimer__label {
        font-size: 14px;
    }

    .countdownTimer__separator {
        font-size: 12px;
        margin: 0 1px;
    }

    .headerNavigation {
        display: none !important;
        height: auto !important;
        max-height: none !important;
    }

    .hamburgerMenu {
        display: flex;
        z-index: 1002;
        position: absolute;
        right: var(--container-padding);
        top: 50%;
        transform: translateY(-50%);
    }

    .headerNavigation--active {
        position: fixed !important;
        top: 60px !important;
        left: 0 !important;
        width: 100% !important;
        height: calc(100vh - 60px) !important;
        max-height: calc(100vh - 60px) !important;
        background: var(--color-primary);
        backdrop-filter: blur(10px);
        transform: translateX(0);
        transition: transform 0.3s ease;
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
        visibility: visible;
        opacity: 1;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        touch-action: pan-y;
    }

    .headerNavigation--active .headerNavigation__container {
        max-width: 100%;
        padding: 0;
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        display: flex;
        flex-direction: column;
    }

    .headerNavigation--active .navigationMenu {
        width: 100%;
        flex-direction: column;
        overflow-y: auto;
    }

    .navigationMenu {
        flex-direction: column;
        gap: 0rem;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
    }

    .navigationMenu__link {
        font-size: var(--font-size-lg);
        font-weight: var(--font-weight-semibold);
        padding: 1rem 0;
        display: block;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .navigationMenu__link:hover {
        background-color: rgba(0, 37, 129, 0.1);
        border-radius: var(--border-radius-md);
    }

    .heroSection {
        padding-top: 60px;
    }

    .heroContent {
        grid-template-columns: 1fr;
        padding: var(--space-12) 0;
    }

    .careerOutcomes__content {
        padding-top: 59px;
    }

    /* .careerOutcomesTitle {
        font-size: 48px;
    } */

    .careerOutcomesTitle2 {
        font-size: 48px;
    }

    .careerOutcomes__subtitle {
        /* font-size: 40px; */
    }

    .careerOutcomes__buttonContainer .button {
        font-size: 18px;
    }

    .careerOutcomesTitle__class {
        font-size: 36px;
    }

    .graduateWorkTitle {
        font-size: 32px;
    }

    .admissionProcessTitle {
        font-size: 32px;
    }

    .lifeAtSPJIMRTitle {
        font-size: 32px;
    }

    .notableAlumniTitle {
        font-size: 32px;
    }

   
    
}

@media (max-width: 900px) {
    .careerOutcomes__buttonContainer .button {
        font-size: 16px;
    }

    .careerOutcomesTitle__class {
        font-size: 24px;
    }
}

@media (min-width: 993px) {
    .ans_icon {
        display: block;
    }
    .a_icon {
        display: none;
    }
}

@media (max-width: 992px) {

    .lifeAtSPJIMR_carousel .owl-prev { 
        left: 18% !important;
        width: 40px !important;
        height: 40px !important;
        margin-top: -20px !important;
        background-size: contain !important;
    }
    .lifeAtSPJIMR_carousel .owl-next {
        right: -2% !important;
        width: 40px !important;
        height: 40px !important;
        margin-top: -20px !important;
        background-size: contain !important;
    }


    .frequentlyAskedQuestions {
        padding-bottom: 400px;
    }
    .frequentlyAskedQuestions__content{
        margin: 0 20px;
    }

    .accordion__title {
        font-size: 20px;
    }
    .accordion__title__q {
        font-size: 36px;
        margin-right: 20px;
    }
    .accordion__content {
        padding-left: 40px;
        flex-direction: column;
        align-items: flex-end;
        gap: 0;
        /* padding-bottom: 17px; */
    }
    .ans_icon {
        display: none;
    }
    .a_icon {
        display: block;
        align-self: flex-end;
        margin-left: auto;
        padding-bottom: 17px;
    }


    .accordion__item--active .accordion__icon { 
        background-size: 32px 32px;
    }

    .accordion__icon {
        background-size: 22px 22px;
    }
    .accordion__header {
        padding: 15px;
    }
}



@media (max-width: 768px) {

    /* .heroBottomContent .herfeatureCard:nth-child(2),
.heroBottomContent .herfeatureCard:nth-child(4) {
    padding-left: 70px;
    padding-right: 70px;
} */

    

    .eligibilityCriteria__card__title {
        font-size: 24px;
    }

    .eligibilityCriteria__card__description {
        font-size: 14px;
    }

    /* Show Mobile Form Section */
    .mobile_form_section {
        display: block;
    }

    .assistance__content__left__description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .assistance .container {
        padding: 0px;
    }
    
    .assistance__content {
        display: none;
    }

    .careerOutcomesTitle__class {
        display: block;
    }



    .assistance_content_mobile {
        display: block;
        background-image: url('../images/mobile_bg.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 40px 20px;
        padding-top: 94px;
        height: 593px;
        max-height: 593px;
        position: relative;
        /* border-radius: 12px; */
    }

    .assistance_content_mobile__image {
        position: absolute;
        bottom: 20px;
        right: 20px;
        width: unset;
        height: unset;
    }

    .lifeAtSPJIMR {
        padding-top: 60px;
        padding-bottom: 20px;
    }

    .lifeAtSPJIMR_carousel__description {
        padding: 10px;
    }

    .lifeAtSPJIMR_carousel__description h4 {
        font-size: 16px;
        
    }

    

    .lifeAtSPJIMR_carousel__description p {
        font-size: 14px;
        font-weight: 400;
    } 

    .lifeAtSPJIMR_carousel__image {
        height: 250px;
        object-fit: cover;
    }

    .lifeAtSPJIMR_carousel {
        overflow: visible !important;
        padding-bottom: 80px !important;
    }

    .lifeAtSPJIMR_carousel .owl-stage-outer {
        overflow: visible !important;
    }

    .lifeAtSPJIMR_carousel .owl-nav {
        top: unset !important;
        bottom: 0px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }


    .lifeAtSPJIMR_carousel .owl-prev { 
        position: relative !important;
        left: unset !important;
        right: unset !important;
        width: 40px !important;
        height: 40px !important;
        margin-top: 0 !important;
        top: unset !important;
        background-image: url('../images/prevW.png') !important;
        background-size: contain !important;
    }
    .lifeAtSPJIMR_carousel .owl-next {
        position: relative !important;
        left: unset !important;
        right: unset !important;
        width: 40px !important;
        transform: rotate(360deg);
        height: 40px !important;
        margin-top: 0 !important;
        top: unset !important;
        background-image: url('../images/nextW.png') !important;
        background-size: contain !important;
    }

    .notableAlumni__content__carousel .owl-prev,
    .notableAlumni__content__carousel .owl-next {
        width: 40px !important;
        height: 40px !important;
        background-size: 40px 40px !important;
    }

    /* Make center slide colorful on mobile */
    .notableAlumni__content__carousel .owl-item.center .circleImage {
        filter: grayscale(0%) !important;
    }

    /* Keep non-center slides grayscale on mobile */
    .notableAlumni__content__carousel .owl-item:not(.center) .circleImage {
        filter: grayscale(100%) !important;
    }


    .graduateWork {
        margin-top: -100px;
        border-top-left-radius: 60px;
        border-top-right-radius: 60px;
    }


    .aboutSPJIMR {
        padding-top: 40px;
        border-radius: 30px 30px 0 0;
    }
    .aboutSPJIMR__title {
        font-size: 32px;
    }

    .frequentlyAskedQuestionsTitle {
        font-size: 32px;
    }

    .frequentlyAskedQuestions {
        padding-bottom: 350px;
    }

    .accordion__item--active .accordion__icon {
        background-size: 28px 28px;
    }

    .accordion__icon {
        background-size: 20px 20px;
    }
    .accordion__title {
        font-size: 16px;
    }

    .accordion__title__q {
        font-size: 32px;
    }
    .frequentlyAskedQuestions__content {
        margin: 0px;
    }
    .accordion__text {
        font-size: 14px;
        padding-bottom: 7px;
    }
    .mainHeader {
        display: flex;
        align-items: center;
        width: 100vw;
        height: 60px;
        min-height: 60px;
        padding: 0;
    }

    .accordion__content {
        padding-left: 13px;
        padding-right: 13px;
    }

    .headerContainer {
        padding: 0 var(--container-padding);
    }

    .headerLogo__img {
        width: 120px;
        height: 47px;
    }

    .headerLogo--right .headerLogo__img {
        width: 170px;
        height: 36px;
    }

    .hamburgerMenu {
        width: 42px;
        height: 42px;
    }

    .headerNavigation--active {
        top: 60px !important;
        height: calc(100vh - 60px) !important;
        max-height: calc(100vh - 60px) !important;
    }

    .heroSection {
        padding-top: 60px;
        min-height: auto;
        background-image: url('../images/mobilebanner.png');
        position: unset;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .programBox__top__right {
        padding: 8.5px 27.5px;
    }

    .heroForm__form {
        display: none;
    }

    .programmesOfferedMobile_tabs__tab {
        font-size: 12px;
        font-weight: 700;
    }

    

    .programmesOfferedMobile {
        padding-top: 40px;
    }

    .careerOutcomes__content {
        padding-top: 59px;
    }

    .careerOutcomesTitle {
        display: none;
    }

    .careerOutcomesTitle2 {
        font-size: 32px;
        max-width: 75%;
        display: block;
        line-height: 1;
        margin-bottom: 10px;
    }

    .careerOutcomesTitle__class {
        font-size: 16px;
    }

    .selectionProcessMobile__item__content__description {
        font-size: 16px;
    }

    .careerOutcomes__subtitle {
        font-size: 24px;
        max-width: 75%;
    }

    .careerOutcomes__buttonContainer {
        display: none;
    }

    .careerOutcomes__contentContainer_bottom {
        display: block;
        position: absolute;
        bottom: 12%;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 1720px;
        margin: 0 auto;
        padding: 0 var(--container-padding);
        padding-bottom: 30px;
        z-index: 2;
        text-align: center;
    }

    .careerOutcomes__image {
        max-height: none;
    }

    .graduateWork {
        padding-top: 40px;
        padding-bottom: 50px;
    }

    .graduateWorkTitle {
        font-size: 32px;
        margin-bottom: 32px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .graduateWork_work_carousel__box__image {
        width: 144px;
        height: 71px;
    }

    .admissionProcess {
        padding-top: 40px;
        padding-bottom: 50px;
    }

    .admissionProcessTitle {
        font-size: 32px;
    }

    .lifeAtSPJIMRTitle {
        font-size: 32px;
    }

    .notableAlumniTitle {
        font-size: 32px;
    }

    .eligibilityCriteriaTitle {
        font-size: 20px;
    }

    .eligibilityCriteria__card {
        padding: 20px;
    }

    .selectionProcessTitle {
        font-size: 20px;
    }

    .selectionProcess__boxes {
        flex-direction: column;
        align-items: stretch;
    }

    .selectionProcess__box {
        max-width: 100%;
        width: 100%;
    }
    .herfeatureCard__content {
        flex-direction: column;
        align-items: flex-start;
    }
    .herfeatureCard__title {
        font-size: 24px;
    }
    .herfeatureCard__description {
        font-size: 12px;
    }
    .herfeatureCard__content {
        gap: 0px;
    }
    .herfeatureCard__img {
        width: 32px;
        height: 32px;
    }
    .heroTitle__highlight {
        font-size: 28px;
    }
    .heroSubtitle {
        margin-top: 8px;
    }
    .heroSubtitle__date{
        font-size: 21px;
    }
    .heroSubtitle--date {
        font-size: 22px !important;
    }
    .heroContent {
        padding-bottom: 0px;
    }

    .whyChoose {
        padding-top: 11px;
        padding-bottom: 148px;
    }

    .selectionProcess__content {
        padding-top: 27px;
    }

    .selectionProcessTitle {
        margin-bottom: 17px;
    }

    .mobileForm {
        padding-bottom: 54px;
    }

    .notableAlumni {
        /* padding-bottom: 50px; */
        padding-top: 50px;
    }

    .notableAlumni {
       
        padding-bottom: 390px;
    }

    .programBox__bottom__description {
        font-size: 16px;
    }

    .lpa {
        font-size: 14px;
    }


    .aboutSPJIMR {
        padding-bottom: 51px;
    }

    .heroBottomContent {
        gap: 0px;
    }

    .heroBottomContent .herfeatureCard:nth-child(2),
    .heroBottomContent .herfeatureCard:nth-child(4) {
        padding-left: 8px;
    }

    .heroBottomContent .herfeatureCard:nth-child(1),
    .heroBottomContent .herfeatureCard:nth-child(3) {
        padding-right: 8px;
    }


       .heroBottomContent .herfeatureCard:nth-child(1),
.heroBottomContent .herfeatureCard:nth-child(2) {
    margin-bottom: 10px;
}
}

@media (max-width: 600px) {

    .programBox__top__right {
        padding: 8.5px 12.5px;
    }

    .programBox__top__left {
        padding: 8.5px 26px;
    }

    .programBox__bottom {
        padding: 10px 24px;
    }

    .programBox__bottom__description {
        font-size: 15px;
    }

    .accordion__icon {
        background-size: 17px 17px;
    }

    .careerOutcomes__contentContainer_bottom { 
        bottom: 15%;
    }

   
    /* .frequentlyAskedQuestions {
        padding-bottom: 290px;
    }

    .heroTitle {
        font-size: 42px;
        line-height: 130%;
    }
    .heroSubtitle {
        font-size: 28px;
    } */
    .headerCounter__title {
        font-size: 16px;
    }

    .countdownTimer__value {
        font-size: 14px;
    }

    .countdownTimer__label {
        font-size: 11px;
    }

    .countdownTimer__item {
        padding: 4px;
    }
    
}

@media (max-width: 500px) {

    .headerCounter__title {
        font-size: 14px;
        max-width: 100px;
        text-align: left;
    }

    .countdownTimer__value {
        font-size: 16px;
    }

    .countdownTimer__label {
        font-size: 13px;
    }

    .countdownTimer__item {
        padding: 3px;
    }

 

    .assistance_content_mobile {
        padding-top: 30px;
    }

    .lifeAtSPJIMR {
        padding-bottom: 50px;
    }

    .frequentlyAskedQuestions {
        padding-bottom: 240px;
    }

    .lifeAtSPJIMR_carousel__description {
        padding: 6px;
        top: 74%;
    }

    .frequentlyAskedQuestions {
        padding-top: 60px;
    }

    .herfeatureCard {
        gap: 5px;
    }

    .headerCounter {
        gap: 8px;
    }

    /* .headerCounter__title {
        font-size: 9px;
    }

    .countdownTimer__value {
        font-size: 11px;
    }

    .countdownTimer__label {
        font-size: 6px;
    } */
   
}

@media (max-width: 400px) {


    .heroTitle__highlight {
        font-size: 22px;
    } 

    .heroTitle {
        margin-bottom: 0px;
    }

    .heroSubtitle {
        font-size: 24px;
    }
    .heroSubtitle__date {
        display: block;
    }
    .herfeatureCard__img {
        width: 28px;
        height: 28px;
    }
    .careerOutcomes__subtitle {
        font-size: 22px;
    }

    .heroTitle {
        font-size: 27px;
    }
}


    

/* ==========================================================================
   Accessibility & Focus Styles
   ========================================================================== */

:focus {
    outline: 2px solid var(--color-accent-2);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

/* Prevent horizontal scroll on all sections */
section {
    overflow-x: hidden;
    box-sizing: border-box;
}

