/* This CSS file is for EXED project */

.row, .col, h1, h2, h3, h4, h5, h6, p, blockquote, body {
    /*margin: 0 !important;*/
    /*padding: 0 !important;*/
}
p{
    margin: 0 !important;
    padding: 0 !important;
}

/* ======== temporary ===========*/

body {
    /*background: #b5b5b5;*/
}

/* ================= Common things ====================*/
/* =====================================================*/


/* ======= Header Home page ========*/

.headerFullWidth {
}

.headerFullWidth img {
    height: 70px;
}

.headerFullWidth .navbar {
    padding: 16px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.21);
    z-index: 1;

}

.headerFullWidth .nav-link {
    color: var(--white);
}

.headerFullWidth .navbar-toggler{
    border: none;
}

.headerFullWidth .navbar-toggler:focus {
    /*outline: none;*/
    box-shadow: none;
}

.headerFullWidth .navbar-nav .nav-link.active, .headerFullWidth .navbar-nav .nav-link.show {
    color: var(--white);
}



/* Target the megamenu when it's actively shown */
.dropdown-menu.megamenu {
    opacity: 0; /* Start hidden */
    visibility: hidden; /* Hide completely */
    transform: translateY(20px); /* Start slightly below its final position */
    transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0.3s ease-out; /* Smooth transition for these properties */
}

/* When the dropdown is shown, apply these styles */

/* Bootstrap adds 'show' class to the dropdown-menu when open */
.dropdown-menu.megamenu.show {
    opacity: 1; /* Fully visible */
    visibility: visible; /* Make visible */
    transform: translateY(0); /* Move to final position */
    border-radius: 0 0 8px 8px;
    border: none;
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 18px 0 rgba(0, 0, 0, 0.20);
}

/* Custom CSS to open dropdowns on hover */
.navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Ensure no default margin pushes it down */
    /* Add positioning to align it just below the header */
    position: absolute; /* Allows precise positioning relative to its positioned ancestor */
    top: 100%; /* Positions the top of the dropdown at the bottom of its parent nav-item */
    left: 0; /* Align to the left edge of its parent nav-item */

    /* width: 100vw; /* Example: make it full viewport width if that's desired */
}

/* For the megamenu specific styling */
.navbar .has-megamenu:hover .megamenu {
    display: block;
    margin-top: 0;
    position: absolute;
    top: 100%;
    left: 0;
    /* Often megamenus need more specific width control */
    width: 100%; /* Or specify a fixed width, e.g., 800px */
    /* If you want it to stretch across the whole header, you might need to adjust `left` and `width` */
    /* For example, if the .navbar-collapse is the reference for full width: */
    /* left: calc(-1 * var(--bs-gutter-x, 0.75rem)); // Aligns to the far left of the container */
    /* width: calc(100vw - (2 * var(--bs-gutter-x, 0.75rem))); // Fills the container width */
}

/* Ensure the parent nav-item is relatively positioned for 'top: 100%' to work correctly */
.navbar-nav .nav-item {
    position: relative;
}

.headerLgSmall {
    display: none;
}

.icoBorder {
    /*border-radius: 333px;*/
    /*border: 1px solid var(--white);*/
    padding: 4px 8px;
    transition: 0.3s;
}


.icoBorder:hover {
    /*border-radius: 333px;*/
    /*border: 1px solid var(--white);*/
    background-color: var(--primaryBlue);
    padding: 4px 8px;
}

.icoBorderLight{
    background-color: var(--primaryBlue);
    border-radius: 3px;
    padding: 3px 8px;
    transition: 0.3s;
}

.icoBorderLight:hover {
    background-color: var(--primaryBlue-100);
}

.OEP a {
    text-decoration: none;
    color: var(--primaryBlue);
}

.OEP li {
    padding: 8px 0;
}

.OEP li:hover {
    background-color: var(--primaryBlue-400);
}

.OEP a:hover {
    color: var(--primaryBlue);
    width: max-content;
}

.moreProgramme {
    color: var(--brickRed);
    /*text-align: center;*/
}

.areaFilter i, .monthFilter i{
    width: 30px;
}

.monthsCheckBox{
    display: flex;
    /*flex-wrap: wrap;*/
    gap: 4px;
    flex-direction: column;
}


/* ====== sectionHeadTxt =====*/

.sectionHeadTxt{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.sectionHeadTxt p{
    max-width: 650px;
}


/* ======= Footer common ========*/

.ftrFull {
    background-color: var(--primaryBlue);
    padding: 48px 0 16px 0;
    text-align: center;
    display: grid;
    flex-direction: column;
    gap: 48px;
}

.ftrFull h6 {
    font-weight: lighter !important;
    /*letter-spacing: 1px;*/
    padding: 0 0 16px 0 !important;
}

.linksF a {
    text-decoration: none;
    color: var(--white);
}

.linksF {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ftrFullIcons i {
    color: var(--white);
    font-size: 2rem;
    padding: 0 4px;
    transition: .3s;

}

.ftrFullIcons i:hover {
    color: var(--primaryBlue-300);
}

.ftrLogoFullInLine {
    height: 80px;
}

.ftrLogoFull img {
    margin-bottom: 1rem;
}

.logoSmallFtr {
    display: none;
}


/* ================= ExEd Home page ====================*/
/* =====================================================*/


/* ========== Hero section ============*/

.carousel-item {
    height: 100vh;
    min-height: 300px;
    background: no-repeat center center scroll;
    background-size: cover;
    /*background-image: url(../image/heroBG.jpg);*/
}

.carousel-item1 {
    background-image: url(../image/heroBG.jpg);
}

.carousel-item2 {
    background-image: url(../image/slide2.jpg);
    background-position: top;
}

#heroCarousel {
    margin-top: -113px;
    z-index: 0;
}


.carousel-caption {
    /*bottom: 20%;*/
    position: initial !important;
    /*right: 15%;*/
    /*bottom: 1.25rem;*/
    /*left: 15%;*/
    /*padding-top: 1.25rem;*/
    /*padding-bottom: 1.25rem;*/
    /*color: var(--bs-carousel-caption-color);*/
    /*text-align: center;*/
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.carousel-caption p {
    font-size: 1.25rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-indicators {
    bottom: 10px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.carousel-control-prev, .carousel-control-next {
    opacity: 1;
    /*background-color: var(--primaryBlue);*/
    /*padding: 16px;*/
}

.upComingCourse .courseContent {
    margin-left: auto;
    margin-right: 64px;

}

.upComingCourse .carousel-caption {
    display: flex;
    height: 100%;
    align-items: center;
    text-align: left;
}

.upComingCourse .carousel-caption p, .upComingCourse .carousel-caption h1 {
    text-shadow: none;
}

.upComingCourse .carousel-caption p {
    font-size: 1rem;
}

.iNN {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.heroButton {
    display: flex;
    gap: 32px;
}

.heroButton a:hover {
    background-color: var(--primaryBlue-300) !important;
}


.hContent {
    padding-top: 10%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /*text-align: center;*/
    align-items: center;
}

.mainHeadingTxt h1, .gateWaytoIIM {
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.09);
}

.mainHeadingTxt h1 {
    /*font-size: 4rem;*/
}

.mainHeadingTxt h2 {
    /*font-size: 2.5rem;*/
}

.heroSectionExEd {
    background-image: url(../image/heroBG.jpg);
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -116px;
}

.heroSectionExEd h2 {
    font-family: Poppins, serif;
    font-size: 3rem;
    font-weight: 300;
}

.atTHereat {
    font-family: cabin, serif;
    font-size: 3.5rem;
}

.gateWaytoIIM {
    font-size: 2rem;
    font-weight: 500;
    color: var(--white);

}


/* ========== About section ============*/

.about .peoplePic {
    /*max-width: 650px;*/
    width: -webkit-fill-available;
    height: max-content;

}

.peoplePicParent {
    display: flex;
    justify-content: center;
    align-items: center;


}

.multiplePics {
    position: relative !important;
}

.dotsAbout {
    position: absolute;
    max-width: 180px;
    left: 140px;
    top: -30px;

}

.image1About {
    position: absolute;
    max-width: 220px;
    left: 180px;
    top: -10px;
}

.image2About {
    position: absolute !important;
    top: 50px;
    right: 210px;
    /* bottom: 0; */
    width: 280px;
}

.image3About {
    position: absolute;
    /*right: 39px;*/
    left: 68px;
    top: 230px;
    width: 330px;
}

.about {
    margin: 5rem 0;
    padding: 0 48px;
}

.programmsImageSide {
    padding: 16px;
    background-color: var(--brickRed);
    border-radius: 4px;
    width: fit-content;
    position: absolute;
    color: white;
    min-width: 200px;
    top: 350px;
    right: 290px;
}

.figures {
    display: flex;
    justify-content: space-between;

}

.figures i {
    font-size: 32px;
}

.aboutWelcome::before {
    display: inline-block;
    content: "";
    border-top: 3px solid black;
    width: 40px;
    margin: 0 16px 0 0;
    transform: translateY(-4px);
}

.boxCount {
    padding: 32px;
    background-color: var(--primaryBlue-400);
    border-radius: 8px;
}

.contentAvailable {
    height: 80px;
}

.boxCount .row {
    /*justify-self: auto;*/
}

.boxCount .col {
    /*max-width: 100px;*/
    text-align: center;
}

.lineSide {
    border-right: 2px solid var(--grey-400);
}


.contentAvailable {
    /*width: 33.33%;*/
}

.stats-row {
    display: flex;
    flex-direction: column; /* default = stacked */
    /*border: 1px solid #ddd;*/
    border-radius: 4px;
    overflow: hidden;
    max-width: 900px;
    margin: auto;
    padding: 24px;
    background-color: var(--primaryBlue-500);
}

.stat-card {
    flex: 1;
    text-align: center;
    padding: 20px;
    /*background: #fff;*/
}

/* horizontal divider (small screens) */
.stat-card + .stat-card {
    border-top: 1px solid #ddd;
}

.stat-value {
    /*font-size: 28px;*/
    /*font-weight: bold;*/
    color: var(--black);
}

.stat-label {
    /*color: #666;*/
    /*font-size: 14px;*/
    color: var(--black);

}

/* If width >= 576px → 3 cards in 1 row with vertical dividers */
@media (min-width: 576px) {
    .stats-row {
        flex-direction: row;
    }
    .stat-card + .stat-card {
        border-top: none;
        border-left: 1px solid #ddd;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    /* Home page*/
    .stats-row {
        flex-direction: column;

    }
    .stat-card:nth-child(1),
    .stat-card:nth-child(2) {
        border-bottom: 1px solid #ddd;
    }

    .stat-card + .stat-card {
        border-top: none;
        border-left: none;
    }
}


/* ====== Home page -> Current Programme section =====*/

.currentProgramme {
    /*padding: 5rem 0;*/
    padding: 5rem 0 5rem 3rem;
    /*background-color: var(--primaryBlue);*/
    background-image: url(../image/blueLineBG.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.upcomingProgramme {
    /*padding: 5rem 0;*/
    padding: 5rem 0 5rem 3rem;
    /*background-color: var(--primaryBlue);*/
    background-image: url(../image/redLineBG.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.slider-container {
    position: relative;
    max-width: 1820px;
    margin: auto;
    /*background: #fff;*/
    /*padding-top: 3rem;*/
    border-radius: 10px;
    /*box-shadow: 0 4px 20px rgba(0,0,0,0.1);*/
}

.slider-header {
    position: absolute;
    top: 30px;
    right: 2rem;
    display: flex;
    gap: 8px;
}

.nav-button {
    /*width: 35px;*/
    /*height: 35px;*/
    background: var(--white);
    color: var(--primaryBlue);
    border: none;
    /*border-radius: 50%;*/
    cursor: pointer;
    padding: 12px 16px;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-button:hover {
    background: var(--primaryBlue-400);
}

.slider-wrapper {
    display: flex;
    /*overflow-x: auto;*/
    scroll-behavior: smooth;
    gap: 2rem;
    padding: 1rem;
    scroll-snap-type: x mandatory;
    cursor: grab;
    overflow-x: hidden;
}

.slider-wrapper:active {
    cursor: grabbing;
}

.card {
    flex: 0 0 auto;
    width: 375px;
    /*height: 180px;*/
    /*background: white;*/
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    /*font-size: 1.2rem;*/
    user-select: none;
    border: none;
}

.uiCardCurrentProgramme .cardBody2, .uiCardUpcomingProgramme .cardBody2{
    height: 258px;
}

.uiCardCurrentProgramme {

}

.pagination {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: var(--brickRed-200);
}

.upcomingProgramme .nav-button {
    background-color: var(--brickRed);
}

.upcomingProgramme .nav-button i {
    color: var(--white);
}

.upcomingProgramme .uiCard2 {
    border-radius: 4px;
    /* background-color: var(--accent); */
    /* border: 1px solid var(--grey-400) */
    background-color: var(--primaryBlue);
    background-image: url(/image/uicard2bgBlue.png);
    /*background-position: bottom;*/
    /* border-radius: 4px 4px 0 0; */
    background-position: bottom;
    background-size: cover;
}

.upcomingProgramme .cardBody2 {
    background: none;
}

.upcomingProgramme .card {
    /*height: auto;*/
}

.upcomingProgramme .cardImage2 img {
    /*margin-top: -20px;*/
}

.btnTagsNew{
    background-color: var(--natureGreen-200);
    color: var(--black);
}

.btnTagsOngoing{
    background-color: var(--primaryBlue);
}

.btnTagsOngoing2{
    background-color: var(--primaryBlue-100);
}

.btnTagsTrending{
    background-color: red;
    /*color: #fff;*/
    /*cursor: pointer;*/
    /*background: linear-gradient(270deg, #ff0000, #1b2f6e, #bc0a0a, #177ac1);*/
    /*background-size: 800% 800%;*/
    /*animation: gradientShift 8s ease infinite;*/
    /*transition: transform 0.2s ease;*/
}
@keyframes gradientShift {
    /*0% { background-position: 0% 50%; }*/
    /*50% { background-position: 100% 50%; }*/
    /*100% { background-position: 0% 50%; }*/
}


/* ====== Home page -> testimonial =====*/

.testimonial {
    /*background-image: url(../../image/whiteLineBG.jpg);*/
    background-image: url(../image/whiteLineBG.png);

    padding: 5rem 0;
    /*text-align: center;*/
}

.testimonial .rating {
    color: var(--saffron);
}

.testimonial .card {
    padding: 32px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.testimonial .slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    /*background: #f8f9fa;*/
    padding: 0;
}

.slider-track {
    display: flex;
    width: fit-content;
    animation: scroll 20s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused;
}

.testimonial .slider-item {
    flex: 0 0 auto;
    width: 33.333vw; /* 3 cards per view */
    padding: 1rem;
}

.testimonial .card {
    height: 100%;
    width: auto;
    background-color: var(--primaryBlue-400);
}

.nameDesignation {
    display: flex;
    align-items: anchor-center;
    gap: 16px;
}

.cardImgBottom {
    width: 80px;
    height: 80px;
    border-radius: 333px;
    object-fit: cover;
    border: 1px solid var(--grey-300);
}

.testimonial i {
    font-family: "Font Awesome 6 Pro", serif;
    font-weight: 900;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .slider-item {
        width: 50vw; /* 2 cards visible */
    }
}

@media (max-width: 576px) {
    .slider-item {
        width: 80vw; /* 1 card visible */
    }
}

/* ====================== Home page -> FAQs =====================*/

.FAQs {
    padding: 5rem 0;
}

.FAQs .container {
    padding: 4rem;
    border-radius: 4px;
    background-image: url(../image/faqBG.png);
    box-shadow: 2px 2px 18px #f1f1f1;
    border: 1px solid #e6e6e6;
    background-size: cover;
    background-position: center;
    /*background-attachment: fixed;*/

}

.faqTitle {
    background-color: var(--grey-300);
    color: var(--white);
    padding: 4px 12px !important;
    width: fit-content;
    border-radius: 4px;
}

.calenderBtn {
    background-color: var(--primaryBlue);
    padding: 8px 16px;
    border-radius: 4px;
}

.calenderBtn {
    /*width: 200px;*/
}

.topicTags a {
    border: 1px solid var(--primaryBlue);
    background-color: rgba(0, 128, 0, 0);
    color: var(--primaryBlue);
}

.calenderBtn a {
    text-decoration: none !important;
    color: var(--white);

}

.calenderBtn i {
    /*color: var(--white);*/
    padding: 8px;
    border-radius: 4px;
    background-color: var(--primaryBlue-400);
    margin-right: 8px;
}

.topicTags {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 8px;
}

.FAQs .desc {
    gap: 32px;
    display: flex;
    flex-direction: column;
}

.dwnldButton {
    gap: 16px;
}

.FAQs .accordionBorder .accordion {
    background-color: rgba(255, 255, 255, 0);
}

/* ====== Home page -> Newsletter =====*/

.newLetterContact {
    padding: 80px;
}

.newsletterP {
    background-color: var(--offWhite);
    background-image: url(../image/newletter.png);
    border: 1px solid var(--primaryBlue-200);
    border-radius: 4px;
    padding: 80px 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    background-position: right;
    background-repeat: no-repeat;
    /*background-attachment: fixed;*/
    /*background-position-y: bottom;*/
    background-size: 370px auto;
}

.newsletterEmail {
    border-radius: 4px 0 0 4px;
}

.newsletterSubmit {
    border-radius: 0 4px 4px 0;
}

.newsletterSubmit:hover {
    background-color: var(--primaryBlue-100);
    color: var(--white);

}

.newsletterP form {
    max-width: 500px;
}

.contactUS {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contactDetails .call {
    display: flex;
    gap: 16px;
}

.iconContact i {
    padding: 16px;
    border-radius: 4px;
    border: 1px solid var(--primaryBlue);
    color: var(--primaryBlue);
    transition: 0.3s;
}

.iconContact i:hover {
    background-color: var(--primaryBlue-400);
}

.contactDetailM a {
    text-decoration: none;
    color: var(--primaryBlue);
}

.contactDetails {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ==================== Home page -> footer ===================*/


/* ================= ExEd Login page ====================*/
/* =====================================================*/

.EEESLogin2 {
    display: flex;
    height: 100vh;
}

.Login2 .row{
    margin:0;
}

.leftPartEEES {
    background-image: url(../image/loginBGEEES.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    width: 50%;
    /*padding: 40px 80px !important;*/
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.rightPartEEES {
    display: flex;
    width: 50%;
    /*padding: 40px 80px !important;*/
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.rightPartEEES .buttonGoogle {
    width: -webkit-fill-available;
    text-align: center;
}

.EEESinfo {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0 80px;;
}


.executiveEduLogo {
    filter: brightness(0) invert(1);

}

.ESSSTextPart p {
    max-width: 90%
}

.ESSSTextPart {
    color: var(--white);
}

.rightPartEEES {
    display: flex;
    justify-content: center;
}

.rightPartEEES .formSection {
    width: auto;
}

.ESSSContactPart .iconContact i {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid var(--primaryBlue);
    color: var(--primaryBlue);
    transition: 0.3s;
}


.ESSSlogoRow img {
    height: 70px;
}

.ESSSContactPart a {
    color: var(--white);
}

.ESSSContactPart .iconContact a i {
    color: var(--white);
    border: 1px solid var(--white);
}

.ESSSContactPart .iconContact a i:hover {
    background-color: var(--primaryBlue);
}


.EEESLogin .formSection {
    padding: 16px 32px;
}

.EEESLogin {
    display: flex;
    height: 100vh;
    align-items: center;
}

.EEESLogin {
    /*background-image: url(../../image/bgLoginEEES.jpg);*/
    /*background-image: url(../../image/backgroundpatterncurves.jpg);*/
    /*background-image: url(../image/heroBG.jpg);*/
    background-image: url(../image/loginBG2.jpg);
    /*background-image: url(../../image/bgSpiral.jpg);*/


    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.signIn2 {
    padding: 32px;
    /*background-image: url(../../image/backgroundpatterncurves.jpg);*/
    /*background-image: url(../../image/bgLoginEEES.jpg);*/
    /*background-image: url(../../image/lgnBG.jpg);*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    /*background-position: center;*/
    gap: 24px;
    flex-direction: column;
    border-radius: 8px;
    /*box-shadow: 4px 4px 8px 4px rgba(0, 0, 0, 0.09);*/
    /*border: 1px solid var(--grey-400);*/
    height: 100vh;
}

.signIn {
    padding: 32px;
    /*background-image: url(../../image/backgroundpatterncurves.jpg);*/
    /*background-image: url(../../image/bgLoginEEES.jpg);*/
    background-image: url(../../image/lgnBG.jpg);

    background-repeat: no-repeat;
    background-size: cover;
    /*background-position: center;*/
    gap: 24px;
    flex-direction: column;
    border-radius: 8px;
    /*box-shadow: 4px 4px 8px 4px rgba(0, 0, 0, 0.09);*/
    border: 1px solid var(--grey-400);
}

.signIn .formSection {
    gap: 8px;
    flex-direction: column;
    border-radius: 8px;
}

.signIn .logo {
    height: 80px;
}

.formInputField {
    gap: 16px;
    display: flex;
    flex-direction: column;
}

.formInputField button {
    margin-top: 8px;
}

.withGoogle {
    flex-direction: column;
    gap: 16px;
}

.signInwithTag {
    padding: 4px;
    /*background-color: var(--offWhite);*/
    position: relative;
    width: 300px;
    margin: auto;
}

.signInwithTag p {
    overflow: hidden;
    text-align: center;
    color: var(--grey-200);
}

.signInwithTag p:before, .signInwithTag p:after {
    background-color: var(--grey-400);
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 25%;
}

.signInwithTag p:before {
    margin-right: 12px
}

.signInwithTag p:after {
    margin-left: 12px
}

.navbar .megamenu {
    padding: 1rem;
}

/* ================= ExEd About us page ====================*/
/* =====================================================*/

/* ======= Header about page ========*/

#aboutHeader {
    border-bottom: 1px solid var(--grey-400);

}

#aboutHeader .nav-link {
    color: var(--primaryBlue);
}


/* ======= About section about page ========*/

.aboutExed {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ======= What sets us apart section about page ========*/

.whatSetsUsApart {
    padding: 5rem 0;
    /*background-image: url(../image/heroBG.jpg);*/
    background: linear-gradient(to bottom, rgba(255,248,248, 0.88), rgb(255, 248, 248), rgba(255,248,248, 0.88)), url(../image/bgLineSetUsApart.png) center/cover no-repeat;
}

.aboutPageBox {
    /*background: #f8f9fa;*/
    /*border: 1px solid #ccc;*/
    flex-direction: column;
    display: flex;
    align-items: first;
    justify-content: end;
    font-size: 1.5rem;
    min-height: 550px; /* adjustable fixed height for small screens */
    padding: 16px !important;
    color: var(--white);
}

.AboutUsPeers {
    border-radius: 4px;
    border: 1px solid var(--grey-400, #D5D5D5);
    background: linear-gradient(180deg, rgba(9, 28, 86, 0.00) 45.2%, #1B2F6E 73.76%), url(../image/peerChoice.jpg) lightgray 50% / cover no-repeat;
}

.AboutUsLearningExperience {
    border-radius: 4px;
    border: 1px solid var(--grey-400, #D5D5D5);
    background: linear-gradient(180deg, rgba(9, 28, 86, 0.00) 45.2%, #1B2F6E 73.76%), url(../image/learningExp.jpg) lightgray 50% / cover no-repeat;
}

.aboutUsStudyMethod {
    border-radius: 4px;
    border: 1px solid var(--grey-400, #D5D5D5);
    background: linear-gradient(180deg, rgba(9, 28, 86, 0.00) 22.2%, #1B2F6E 63.76%), url(../image/caseStudy.jpg) lightgray 50% / cover no-repeat;

}

.aboutUsFaculty {
    border-radius: 4px;
    border: 1px solid var(--grey-400, #D5D5D5);
    background: linear-gradient(180deg, rgba(9, 28, 86, 0.00) 45.2%, #1B2F6E 73.76%), url(../image/faculty.jpg) lightgray 50% / cover no-repeat;
}

/* ================= ExEd Contact us page ====================*/
/* =====================================================*/

.contactInfoParent{
    padding: 4rem 0;
    background: linear-gradient(to bottom, rgb(32 41 151 / 33%), rgb(255 248 248 / 88%), rgb(255 255 255 / 81%)), url(../image/bgLineSetUsApart.png) center / cover no-repeat;
    /*background: linear-gradient(to bottom, rgb(255 255 255), rgb(255 248 248 / 65%), rgb(255 255 255)), url(../image/bgLineSetUsApart.png) center / cover no-repeat;*/

}

.GetInTouchWithUs{
    border-radius: 8px;
    padding: 2rem 3rem;

}

.contactSection{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.GetInTouchWithUs label{
    color: var(--white);
}

.contactUsIconP{
    display: flex;
    gap: 16px;
}

.iconContactusPage{
    padding: 14px 16px;
    border: 1px solid var(--primaryBlue);
    border-radius: 4px;
    height: fit-content;
}

.contactUsIconP a{
    text-decoration: none;
}

.formBtn:hover{
    background-color: var(--primaryBlue-200)!important;
}

.mapArea iframe{
    display: block;
}

/* ============ OEP page open enrollment programme page ==========*/
/* =====================================================*/

.OnCampusProgramme{
    /*margin: 4rem 0;*/
    padding: 4rem;
    background-color: var(--primaryBlue-500);
}

.mobFilter{
    display: none;
}

.oepPage .filterSectionParent > .row{
    padding: 4rem;
}

.filterSectionParent{
    /*padding: 4rem 0;*/
    /*background-color: var(--primaryBlue-500);*/
}

.card-img-top {
    height: 180px;
    object-fit: cover;
}
.areaCHeckBox{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.filter-section {
    background-color: var(--offWhite);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--grey-400);
}
.sticky-sidebar {
    position: sticky;
    top: 20px; /* Adjust as needed */
}

.oepPage .card{
    width: 100%;
    border-radius: 8px;
}
.oepPage .card img{
    height: 250px;
}

.oepPage .card .card-body{
    padding: 2rem;
    background-color: var(--accent);
}

.oepPage .card-title{
    font-size: 1.625rem;   /*26px*/
    font-family: 'CanelaDeck Bold', serif !important;
    font-weight: bold !important;
    text-decoration: none;
}

/* ============ OEP programme detail page ==========*/
/* =====================================================*/

.stickyButtonProgrammeCalender{
    position: fixed;
    top: 220px;
    right: 0;
    z-index: 9999;
    border-radius: 50px 0 0 50px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    /*background-color: #0d6efd; !* bootstrap primary *!*/
    background: linear-gradient(94deg, #C1272D 2.8%, #FF000A 96.72%);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    width: 50px;       /* default: only icon */
    text-decoration: none;
}


.stickyButtonProgrammeCalender:hover {
    width: 140px;      /* expand on hover */
    padding-right: 16px;
}

.stickyButtonProgrammeCalender span {
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.stickyButtonProgrammeCalender:hover span {
    opacity: 1;
}

.titleAndSHareBtn{
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}



.oepDetailShareBtnSm{
    display: none;
}

.btnMdIcoBefore i{
    padding-right: 8px;
}


.programmeDetailsSection{url(../image/bglinecollege.jpg) rgba(4, 170, 109, -0.7)
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 4rem;
    /*background-image: url(../image/bglinecollege.jpg);*/
    /*background-size: cover;*/
    /*min-height: 85vh;*/
    /*display: flex;*/
    /*align-items: center;*/
    /*!*color: #fff;*!*/
    /*background-position: center;*/
}

.heroFormOepDetails{
    /*padding: 2rem;*/
    border-radius: 8px;
}

.formContent{
    padding: 2rem;
    /*border-radius: 8px;*/
    border: 1px solid var(--grey-400, #D5D5D5);
    background: linear-gradient(47deg, #FFF 5.13%, #F3F6FF 99.26%);
}

.brochureAndShareBtn a i{
    width: 24px;
}

.brochureAndShareBtn{
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
}

.courseImageThumbnail{
    width:-webkit-fill-available;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}
.applyAndFees{
    display: flex;
    gap: 1rem;
}

.formBtnOepHero{
    transition: 0.3s;
}

.formBtnOepHero:hover{
    background-color: var(--primaryBlue-100);
}

.date-box {
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 1rem;
    /*margin-bottom: 1.5rem;*/
    background-color: var(--white);
    height: 100%; /* Ensures all boxes in a row have the same height */
}

.event-side{
    /*text-align: left;*/
}

.date-box i{
    width: 16px;
}
.date-pair {
    /*display: flex;*/
    justify-content: space-between;
    align-items: center;
}
.date-info {
    text-align: center;
    flex-grow: 1; /* Allows it to take up available space */
}
.date-label {
    /*font-size: 1rem;*/
    /*color: #6c757d;*/
    margin-bottom: 0.25rem;
}
.date-value {
    /*font-size: 1.25rem;*/
    /*font-weight: bold;*/
    /*color: #212529;*/
}
.date-line {
    width: 100%;
    height: 1px;
    background-color: var(--grey-400);
    margin: 1rem 0;
}

.horizontalTabsParent{
    /*margin-top: -2rem;*/

    /*background: linear-gradient(to bottom, rgba(255,248,248, 0.88), rgb(255, 248, 248), rgba(255,248,248, 0.88)), url(../image/bgLineSetUsApart.png) center/cover no-repeat;*/
}

.horizontalTabs{
    /*margin-top: -2rem;*/
    padding: 3rem 0;
    background: linear-gradient(to bottom, rgba(248, 249, 255, 0.88), rgb(248, 254, 255), rgba(248, 249, 255, 0.88)), url(../image/bgLineSetUsApart.png) center/cover no-repeat;

}
/* Square tabs */
.oepProgrammeDetailPage .nav-tabs {
    display: flex;
    justify-content: center; /* center tabs */
    overflow-x: auto; /* scroll if too small */
    white-space: nowrap;
    /*border-bottom: 1px solid #dee2e6;*/
    padding: 8px;
    background: var(--white);
    width: fit-content;
    margin: auto;
    border-radius: 4px;
    border: 1px solid var(--grey-400);
    background: var(--white);
    box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.25);
}


.oepProgrammeDetailPage .nav-tabs .nav-item {
    flex: 0 0 auto;
}

.oepProgrammeDetailPage .nav-tabs .nav-link {
    /*border: 1px solid #dee2e6;*/
    color: var(--grey-200);
    padding: 16px 24px;
    text-align: center;
    min-width: 100px; /* ensure readable on small screens */
    border: none;
    border-radius: 2px;
}

.oepProgrammeDetailPage .nav-tabs .nav-link.active {
    background-color: var(--primaryBlue);
    color: var(--white);
}

.oepProgrammeDetailPage .nav-tabs .nav-link:not(.active) {
    background-color: transparent;
}

.oepProgrammeDetailPage .nav-tabs .nav-link:hover {
    background-color: var(--primaryBlue-100);
    color: var(--white);
}

/* Tab content border */

.horizontalTabs #myTabContent{
    padding: 2rem 0 0 0;
}

/*#myTab{*/
/*    max-width: inherit;*/

/*}*/

.tabsBoundary{
    padding: 2rem;
    border: 1px solid var(--grey-400);
    border-radius: 4px;
}

.oepProgrammeDetailPage .tab-content {
    /*border: 1px solid #dee2e6;*/
    /*padding: 2rem;*/
    /*margin-top: -1px; !* avoid double border with active tab *!*/
}

/* Optional: hide scrollbar in Webkit */
.oepProgrammeDetailPage .nav-tabs::-webkit-scrollbar {
    display: none;
}

.introductionTabList {
    list-style-type: none;
    /*padding: 0;*/
    /*border: 1px solid var(--grey-400);*/
    padding: 1rem;
    border-radius: 8px;
}
.introductionTabList li{
    padding: 8px 0;
}

.introductionTabList li i{
    font-size: 16px;
    padding: 4px;
    background-color: var(--primaryBlue);
    color: var(--white);
    margin-right: 8px;
}

.objectivesTabListParent, .highlightsTabListParent{
    /*border: 1px solid var(--grey-400);*/
    /*padding: 1rem;*/
    border-radius: 8px;
    /*margin-top: 1rem;*/
}

.forWhomeTabData{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}




#tab2 ul {
    list-style: none; /* remove default bullets */
    padding-left: 0;
}

.objectivesTabList li, .highlightsTabList li {
    position: relative;
    padding-left: 32px; /* space for icon */

}

.objectivesTabList li::before, .highlightsTabList li::after {
    content: "\f178"; /* Font Awesome unicode */
    /*font-family: "Font Awesome 6 Pro Light", serif; !* font family *!*/
    font-family: "Font Awesome 6 Pro"; /* font family */
    font-weight: 900; /* required for solid style */
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primaryBlue); /* change color */
    font-size: 16px; /* change size */
}

.pedagogyTabData{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/*faculty tab*/
.facultyChair{

}

/* ================= BLP page ====================*/
/* =====================================================*/

.blpProgramme{
    padding: 4rem;
    background-color: var(--primaryBlue-500);
}

.blpUIcardParent{
    padding: 4rem;
}
.blpUIcardParent .card{
    width: auto;
}

.blpPage .card-body{
    font-size: 1.625rem;
    font-family: 'CanelaDeck Bold', serif;
    background-color: var(--accent);
}

.blpPage .card-body a{
    text-decoration: none;

}

/* ================= customised programme page ====================*/
/* =====================================================*/

.cpParent{
    padding: 0 0 0 4rem;
}

.cpParent .row{
    margin: 0;
}

.heroCP {
    /*background: url('https://picsum.photos/1600/800') no-repeat center center;*/
    background-image: url(../image/customisedProgrammeBG.jpg);
    background-size: cover;
    min-height: 85vh;
    display: flex;
    align-items: center;
    /*color: #fff;*/
    background-position: center;
}
.hero-overlayCP {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem;
    border-radius: 10px;
}

.cpCOntactBtn{
    display: flex;
    gap: 2rem;
}

.aboutCp i{
    margin-right: 8px;
}

.cpCOntactBtn a:hover{
    color: var(--white);
}




/* ================= Media query ====================*/
/* =====================================================*/


/* ============ desktop view ============ */


@media all and (min-width: 992px) {

    .navbar .has-megamenu {
        position: static !important;
    }

    .navbar .megamenu {
        left: 0;
        right: 0;
        width: 100%;
        margin-top: 0;
    }
}

/* ============ mobile view ============ */
@media (max-width: 991px) {

    .navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse {
        overflow-y: auto;
        max-height: 90vh;
        margin-top: 10px;
    }
}

@media (max-width: 1399px) {

    /* ==========    about ========== */
    .about .peoplePic {
        max-width: 550px;
        height: max-content;
    }

        .programmsImageSide {
            right: 5vw;
        }

        .image3About {
            left: 0;
            width: 320px;
        }

        .image2About {
            right: 3vw;
        }

        .image1About {
            left: 3vw;
            top: -1vw;
        }

        .dotsAbout {
            left: 0;
        }

    /*    customised programme*/

    .cpParent {
        padding: 3rem 0 3rem 4rem;
    }

    .hero-overlayCP {
        padding: 3rem;
    }

    }

@media (min-width: 1200px) {
    .navbar-nav{
        gap: 1rem;
    }


}

@media (max-width: 1199px) {
    .about .peoplePic {
        max-width: 450px;
    }
}


@media (min-width: 992px) and (max-width: 1200px) {
    /* ====customized page ====*/

    .cpCOntactBtn {
        display: flex;
        gap: 1rem;
        flex-direction: column;
    }
}




@media (min-width: 992px) and (max-width: 1250px) {
    .headerFullWidth img {
        height: 50px;
    }
}


@media (min-width: 992px) {
    .headerLgSmall {
        display: none;
    }
}

@media (max-width: 991px) {

    /*========= Header =============*/

    .headerFullWidth{
        position: sticky;
        top: 0;
        z-index: 9999;

    }

    .headerLgLarge {
        display: none;
    }

    .headerLgSmall {
        display: block;
    }

    .headerFullWidth img {
        height: 60px;
    }

    .headerFullWidth .navbar {
        background-color: var(--primaryBlue);
    }

    .headerFullWidth .navbar-toggler {
        color: var(--white);
    }

    .buttonMenu {
        background-color: var(--white);
        justify-content: center;
        padding: 16px;
        border-radius: 4px;
        margin-top: 16px;
    }

    .headerFullWidth .navbar-expand-lg {
        /*padding-bottom: 0!important;*/
    }

    .headerFullWidth .navbar-brand{
        padding-left: 16px;
    }

    .headerFullWidth .icoBorder {
        background-color: var(--primaryBlue);
        border-radius: 0;

    }

    .headerFullWidth .navbar-collapse {
        margin: 16px;
    }

    .dropdownRowHeader{
        height: 60vh;
        overflow: scroll;
    }


    /* ==========    hero ========== */
    #heroCarousel {
        margin-top: 0;
    }

    /* ==========    about ========== */
    .programmsImageSide {
        right: 5vw;
    }

    .image3About {
        top: 30vw;
        width: 320px;
    }

    .image2About {
        right: 3vw;
    }

    .image1About {
        left: 0;
        top: 5vw;
    }

    .dotsAbout {
        left: -10vw;
    }


    /* Upcoming program*/
    .upcomingProgramme, .currentProgramme {
        /*padding: 5rem 0;*/
        padding: 3rem 0 3rem 3rem;
    }

    .titleCurrProg p {
        max-width: 500px;
    }

    .uiCardCurrentProgramme .cardBody2, .uiCardUpcomingProgramme .cardBody2{
        height: 240px;
    }


    /*======Testimonials=====*/
    .testimonial {
        padding: 3rem 0
    }

    .testimonialHeadTxt {
        padding: 24px;
    }

    .testimonial .slider-item {
        width: 50vw;
    }

    /*===========FAQs=========*/
    .FAQs .container {
        padding: 3rem;
    }


    /*    Newsletter =================*/
    .newsletterP {
        background-size: 250px auto;
        background-position-y: bottom;
    }

    .newLetterContact {
        padding: 48px;
    }

    .newLetterContact .row {
        align-items: center
    }

    /* ====about us page ====*/

    .AboutUsPeers {
        background: linear-gradient(180deg, rgba(9, 28, 86, 0.00) 30.0%, #1B2F6E 70.00%), url(../image/peerChoice.jpg) lightgray 50% / cover no-repeat;
    }

    .AboutUsLearningExperience {
        background: linear-gradient(180deg, rgba(9, 28, 86, 0.00) 5.0%, #1B2F6E 60.00%), url(../image/learningExp.jpg) lightgray 50% / cover no-repeat;
    }

    .aboutUsFaculty {
        background: linear-gradient(180deg, rgba(9, 28, 86, 0.00) 30.0%, #1B2F6E 60.00%), url(../image/faculty.jpg) lightgray 50% / cover no-repeat;
    }

    /*======= oep page =======*/
    .oepPage .filter-section {
        margin-bottom: 1.5rem;
    }

    .areaCHeckBox{
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /*======= oep detail page =======*/

    .brochureAndShareBtn{
        margin-bottom: 3rem;
    }




    /*======= customized page =======*/

    .cpCOntactBtn {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /*======= oep page =======*/

    .filterSectionParent .col-lg-3{
        display: none;
    }

    .mobFilter{
        display: block;
    }

    .mobFilter{
        justify-content: end;
        display: flex;
        padding: 8px 0;
        border-bottom: 1px solid var(--grey-400);
        position: sticky;
        top: 103px;
        z-index: 9998;
        background-color: var(--white);
        margin-top: 2rem;

    }

    .mobFilter button{
        background-color: var(--white);
        color: var(--primaryBlue);
    }

    #filterPanel{
        z-index: 9999;
        width: 100%;
        padding: 1rem;
    }

    .offcanvas-header-slider{
        border-bottom: 1px solid var(--grey-300);
    }

    #v-pills-tab{
        width: 33%;
        border-right: 1px solid var(--accent);
    }

    #v-pills-area-tab, #vv-pills-month-tab{
        background-color: var(--white);
        border-bottom: 1px solid var(--grey-400);
        border-radius: 0;
    }

    #v-pills-tab .active {
        background-color: var(--accent);
        color: var(--primaryBlue);
        border-radius: 0;
    }

    #v-pills-tab .nav-link{
        color: var(--primaryBlue);
    }




    .monthsCheckBox{
        /*display: flex;*/
        flex-wrap: wrap;
        /*gap: 1rem;*/
        flex-direction: row;
    }


}

@media (min-width: 768px) and (max-width: 1199px) {
    .GetInTouchWithUs {
        padding: 2rem 2rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {




    .dwnldButton {
        flex-direction: column;
        width: fit-content;
    }

    /*    login page*/
    .EEESinfo {
        padding: 48px;
    }

    /*    sign in login*/
    .leftPartEEES, .rightPartEEES {
        height: auto;
    }


}


@media (min-width: 768px) {

    /*news letter*/
    .newsletterP {
        background-size: 160px auto;
        background-position-y: bottom;
    }

    .logoFtrSmall {
        display: none;
    }


}

@media (max-width: 767px) {

    .logoSmallFtr {
        display: block;
        text-align: center;
        margin: 1rem auto 0 auto;
    }

    .logoLargeFtr {
        display: none;
    }


    /*====== Home page->Slider =======*/
    .carousel-item2 {
        background-position: right;
    }

    .slider-wrapper .card{
        height: max-content;
    }

    .hContent{
        padding: 6rem 2rem 0 2rem;
    }

    .uiCardCurrentProgramme .cardBody2, .uiCardUpcomingProgramme .cardBody2{
        height: 230px;
    }

    /*====== Home page->About =======*/
    .about .peoplePic {
        /*max-width: 650px;*/
        margin-bottom: 32px;

    /*    iphone image*/
        max-width: 100%;
        height: auto;   /* maintains aspect ratio */
        object-fit: contain; /* or cover if you want */
    }

    .upComingCourse .courseContent {
        margin-left: 64px;
    }

    /*====== Home page -> Upcoming Programme =======*/
    .titleCurrProg h3 {
        max-width: 450px;
    }

    /*====== Home page -> FAQs =======*/
    .FAQs .row {
        gap: 48px;
    }

    /* ================   Newsletter =============*/
    .newLetterContact .row {
        gap: 2rem;
    }


    .newsletterP {
        background-size: 160px auto;
        background-position-y: bottom;
    }


    /*    Login page*/
    .EEESLogin2 {
        flex-wrap: wrap;
        height: auto;
    }

    .Login2 .row {
        flex-wrap: wrap;
    }

    .leftPartEEES, .rightPartEEES {
        width: auto;
        height: auto;
    }

    .EEESinfo {
        min-width: 400px;
    }

    .EEESinfo {
        padding: 64px;
    }

    /* ======== oep page =======*/

    .OnCampusProgramme{
        padding: 3rem;
    }
    .oepPage .filterSectionParent > .row {
        padding: 3rem;
    }

    /* ======== oep detail page =======*/

    .oepProgrammeDetailPage .nav-tabs{
        justify-content: space-between;
    }

    .programmeFaculty fieldset{
        padding: 2rem 2rem 2rem 2rem;
    }

    .programmeFaculty legend{
        top: -40px;
    }

    /* ======== customised programme page =======*/
    .cpParent {
        padding: 3rem;
    }

    /* ======== contact us page =======*/

    .contactSection{
        padding: 0 !important;
    }

}


@media (min-width: 576px) {


}

@media (max-width: 575px) {

    .headerFullWidth img {
        height: 48px;
    }

    .headerFullWidth .navbar {
        padding: 8px 0 !important;
    }

        /*====== common Footer full =======*/
        .impLinks, .usfulLinks {
            margin: 0 0 2rem 0;
        }


        /*====== Home page -> header =======*/
        .headerFullWidth .navbar {

            background-color: var(--primaryBlue);
        }

        /*====== Home page -> Slider =======*/
        .upComingCourse .courseContent {
            margin-left: 32px;
            margin-right: 32px;
        }


        /*====== Home page->About =======*/
        .about .peoplePic {
            /*max-width: 350px;*/
        }

        .about {
            margin: 3rem 0;
            padding: 0 32px;
        }

        /*====== Home page -> Current program =======*/
        .slider-header {
            top: 0;
        }

        .upcomingProgramme, .currentProgramme {
            padding: 3rem 0 3rem 2rem;
        }


        /*====== Home page -> Testimonials =======*/
        .testimonial .slider-item {
            width: 80vw;
        }

        /*====== Home page -> FAQs =======*/
        /*====== Home page -> newsletter =======*/
        .newLetterContact {
            padding: 32px;
        }

        .inputFieldNewsletter {
            flex-wrap: wrap;
        }


        .newsletterP {
            background-image: none;
        }

        .newsletterEmail {
            max-width: 400px;
            margin-bottom: 16px;
        }

        .newsletterSubmit {
            border-radius: 0 4px 4px 0;
            width: 100%;
        }


        /*====== Login page =======*/
        .signIn {
            margin: 0 10px;
            padding: 16px;
        }

        .logoLgLGN {
            display: none;
        }

        .EEESLogin .formSection {
            padding: 16px 16px;
        }


        .signIn2 {
            height: auto;
            padding: 80px 32px;
        }

    /* ======== about page =======*/
    .whatSetsUsApartTxt{
        padding: 0 1rem;
    }
    .whatSetsUsApart{
        padding: 3rem 0;

    }


    /* ======== oep page =======*/
    .oepPage .OnCampusProgramme{
        padding: 2rem;
    }

    .oepPage .filterSectionParent > .row {
        padding: 2rem;
        margin: 0;
    }

    .mobFilter{
        top: 76px;
    }

    /* =======   blp page =======*/

    .blpProgramme{
        padding: 3rem 2rem;
    }

    .blpUIcardParent{
        padding: 2rem;
    }

    /* ======== oep detail programme page =======*/

    .oepDetailShareBtnLg{
        display: none;
    }

    .oepDetailShareBtnSm{
        display: block;
        padding: 8px 6px 8px 12px;
    }

    .programmeDetailsSection {
        padding: 2rem;
    }

    .brochureAndShareBtn {
        gap: 1rem;
    }

    .horizontalTabs {
        padding: 3rem 1rem;
    }

    .profile-card .card-inner {
        display: flex;
    }

    .oepProgrammeDetailPage .nav-tabs{
        justify-content: space-between;

    }

    /* ====customized page ====*/

    .cpCOntactBtn {
        display: flex;
        gap: 1rem;
        flex-direction: column;
    }



    /* ====contact us page ====*/

    .contactInfoParent{
        padding: 4rem 2rem;
    }



}

@media (max-width: 480px) {

/* ====home page ====*/
    .about .peoplePic {
        /*max-width: 100%;*/
    }

    .titleCurrProg h3 {
        max-width: min-content;
    }

    .FAQs .container {
        padding: 2rem;
    }

    .calenderBtn{
        width: -webkit-fill-available;
        text-align: center;
    }

    .calenderBtn a{
        font-size: 16px;
    }

    .calenderBtn i{
        display: none;

    }


    /* ====about us page ====*/

    .AboutUsLearningExperience {
        border-radius: 4px;
        border: 1px solid var(--grey-400, #D5D5D5);
        background: linear-gradient(180deg, rgba(9, 28, 86, 0.00) 30.0%, #1B2F6E 70.00%), url(../image/learningExp.jpg) lightgray 50% / cover no-repeat;
    }

    /* ======== oep detail programme page =======*/

    .facultyChair legend{
        font-size: 1.5rem;
    }

    .programmeFaculty fieldset{
        padding: 3rem 2rem 2rem 2rem;
    }

    .oepProgrammeDetailPage .nav-tabs{
        padding: unset;

    }

    /* ======== customised programme page =======*/
    .cpParent {
        padding: 2rem 1rem;
    }

    .hero-overlayCP {
        padding: 2rem;
    }

    .cpCOntactBtn{
        /*display: flex;*/
        /*!*flex-direction: column;*!*/
        /*gap: 2rem;*/
        /*flex-wrap: wrap;*/
    }

    /* ====contact us page ====*/

    .contactInfoParent {
        padding: 3rem 2rem;
    }

    .contactInfoParent .container{
        padding: 0;
    }

    .GetInTouchWithUs{
        padding: 2rem 2rem;

    }

    .contactSection{
        padding: 0!important;
    }




}

@media (max-width: 450px) {
    /*    login */
    .EEESinfo { padding: 32px; }


    /*oep page*/
    .oepHeroSection{
        padding: 0;
    }

    .filterSectionParent{
        padding: 0;
    }

    .oepPage .card .card-body {
        padding: 1rem;
    }
}

@media (max-width: 434px) {
    .facultyChair fieldset{
        padding: 3rem 2rem 2rem 2rem;
    }

    .facultyChair legend{
        top: -40px;
    }

}











