body {
    font-family: 'Poppins' !important;
}


.bams-navbar-tag {

    font-size: 18px;
    color: #000;
    font-weight: 500;
    background-color: white !important;
}

.bams-navbar-tag:hover {
    cursor: pointer !important;
    border-bottom: 2px solid #e1473f !important;

}

.bams-main {
    background-color: white;
}

@media (max-width: 991.98px) {

    .navbar-bams-top #navbarNav {
        background-color: white;
        width: 100%;
        padding: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .navbar-bams-top .navbar-nav .nav-link {
        color: #000;
        font-size: 1rem;
        font-weight: 500;
        padding: 0.75rem 1rem;
    }

    .navbar-bams-top .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-bams-top .navbar-nav .nav-item {
        background-color: white;
    }
}

.hero {
    padding: 70px 24px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;

    background-image:
        linear-gradient(90deg, rgb(255, 255, 255) 20%, rgba(255, 0, 0, 0) 60%),
        url('/images/cumba/herobanner3.webp');

    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    margin-top: 50px !important;
    min-height: 520px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-card {
    background: transparent;
    color: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 700px;
}

.hero-card p {
    font-size: 20px !important;
    color: #000000;
    font-weight: 500;
    font-family: 'Poppins';
}


.hero-card h1 {
    color: #000000;
    font-size: 33px !important;
    font-weight: 700;
    margin-bottom: 22px !important;
    margin-top: 10px;
}

.hero-card i {
    font-size: 24px;
    font-weight: 800;
}


.hero-card span {
    color: #e1473f;
    font-size: 36px;
    text-decoration: 2px underline;
    text-underline-offset: 5px;

}

.kpis .kpi {
    background: rgba(216, 0, 0, 0.223);
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 6px 18px rgba(10, 30, 60, 0.05);
    display: flex;
    gap: 10px;
    align-items: center;
    border: 2px solid #e1473f;
    color: #000000;
}


.hero-badge {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    padding: 2px 12px;
    border-radius: 50px;
    position: relative;
    display: inline-block;
    background: #003a734f;
    z-index: 2;
    animation: softPulse 2.2s ease-in-out infinite;
    border: 2px solid #003a73;
}

@keyframes softPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 6, 6, 0.999);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 15px 4px rgba(0, 58, 115, 0.25);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgb(250, 27, 27);
    }
}

.hero-badge::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(0deg,
            #ffffff,
            #884c4c,
            #ffffff);
    background-size: 200% 200%;
    animation: rotateBorder 3s linear infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

@keyframes rotateBorder {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 200%;
    }
}

.request-btn {
    border-color: #e1473f !important;
    color: white !important;
    background: #e1473f !important;
    transition: 0.3s !important;
    font-weight: 500 !important;
    transition: all .4s ease !important;
}

.request-btn:hover {
    background: #ffffff !important;
    color: #e1473f !important;
    border: 2px solid #e1473f !important;
    font-weight: 500 !important;
}

.btn-brochure {
    position: relative;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    border: 2px solid #e1473f !important;
}


.btn-brochure::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 3px;
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%);
    background: #e1473f !important;
    border-radius: 8px;
    transition: width .36s cubic-bezier(.2, .9, .25, 1);
    opacity: 0.95;
}

.btn-brochure:hover::after {
    width: 78%;
}

.btn-brochure:focus {
    box-shadow: 0 8px 28px rgba(0, 58, 115, 0.06);
    outline: none;
}


.searchForm {
    background-color: #221e1ea9 !important;

    border-bottom-left-radius: 50px !important;
    border-top-right-radius: 50px !important;
}

.textcolortenm {
    color: rgb(255, 193, 7);
    font-size: 16px !important;
    text-decoration: underline !important;
}

.fs24 {
    font-size: 24px !important;
}

.sub-btn {
    border: 3px solid #e1473f !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    background-color: #e1473f !important;
    transition: all 0.5s ease !important;
    width: 100% !important;
}

.sub-btn:hover {
    border: 3px solid #e1473f !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    background-color: #e1473f !important;
    letter-spacing: 3px !important;
}


.section-title {
    font-size: 2.2rem;
    font-weight: 700;

}

.textmbbs {
    font-size: 18px !important;
    color: black;
}

.tag i {
    color: #e1473f;
}

.tag:hover i {
    color: #000000 !important;
}

.specializations-wrap {
    background: linear-gradient(135deg, #ffffff, #f6f6f6);

    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 10px;
}

.spec-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
}

.spec-title span {
    color: #e1473f;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;

    max-height: none !important;
    overflow: hidden !important;
}

/* TAG STYLE */
.tag {
    background: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);

    opacity: 0;
    animation: fadeIn 0.6s forwards ease-out;
    animation-delay: calc(var(--i) * 0.07s);

    transition: 0.3s ease;
}

.tag:hover {
    background: #e1473f;
    color: white;
    transform: translateY(-4px);

}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .tag {
        /* font-size: 13px;
        padding: 8px 16px;
         flex: 0 0 calc(50% - 12px);   
    text-align: center;
    justify-content: center; */


        font-size: 13px;
        padding: 8px 16px;
        flex: 0 0 calc(50% - 12px);
        text-align: center;
        justify-content: center !important;
        display: flex;
        align-items: center;
        gap: 7px !important;
    }

    .spec-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .spec-title {
        font-size: 22px;
    }

    .tag-cloud {
        gap: 10px;
    }
}







.Eligibility-btn:hover {
    background-color: #e1473f !important;
    color: white !important;
}

.Eligibility-btn {
    background-color: #ffffff !important;
    color: #e1473f !important;
    font-size: 20px !important;
    font-weight: 600 !important;
}

.eligibility {
    background:
        linear-gradient(to right,
            rgb(53, 47, 47) 0%,
            rgba(53, 47, 47, 0.99) 30%,
            rgba(53, 47, 47, 0.9) 50%,
            rgba(53, 47, 47, 0.6) 60%,
            rgba(53, 47, 47, .2) 75%,
            rgba(53, 47, 47, 0.8) 85%,
            rgba(53, 47, 47, 0.99) 95%,
            rgb(53, 47, 47) 100%),
        url('/images/cumba/academic-caps-air-graduation-selective-focus.webp') center/cover no-repeat;


    padding: 30px 20px;
    border-radius: 20px;
    color: #fff;
}

/* Mobile override */
@media (max-width: 768px) {
    .eligibility {
        background: rgb(53, 47, 47);
        border-radius: 0px !important;
    }

    .Eligibility-btn {
        margin-top: 10px;
    }
}

.eligibility h4 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-left: 92px !important;
    color: #e1473f !important;
    font-weight: 600;
}

.eligibility-item {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    /* limit width */
    margin: 0 auto;

    text-align: left;
    flex-wrap: wrap;

}

.icon-wrap {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fc3939;
    border-radius: 50%;
    animation: pulseIcon 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 #ff0707;
    }

    50% {
        transform: scale(1.12);
        box-shadow: 0 0 12px 3px #ff07077c;
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 #ff0707;
    }
}

.eligibility-item p {
    line-height: 1.4;
    flex: 1;
    min-width: 200px;
}

.eligibility svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .eligibility-item {
        gap: 15px;
    }

    .icon-wrap {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .eligibility svg {
        width: 20px;
        height: 20px;

    }
}

@media (max-width: 576px) {
    .eligibility h4 {
        font-size: 1.8rem;
    }

    .eligibility-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .eligibility-item p {
        min-width: unset;

    }
}





.accordion-button {
    color: black !important;
    font-weight: 500 !important;
    font-size: 18px !important;
}

.accordion-button.collapsed {
    color: black !important;
}

.accordion-button:not(.collapsed) {
    background-color: #e1473f !important;
    color: #fff !important;
}

.accordion-button::after {
    filter: invert(22%) sepia(99%) saturate(2153%) hue-rotate(190deg) brightness(91%) contrast(89%);
}

.accordion-button:not(.collapsed)::after {
    filter: invert(100%);
    transform: rotate(180deg);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.accordion-button:focus {
    box-shadow: none;
}

.card {
    border-radius: 10px;
}

.accordion-body {
    padding-left: 20px;
    font-size: 16px !important;
}

.accordion-body ul li {
    font-size: 16px !important;
}



.advantage-section {
    background: #ffffff;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;

}

.section-title span {
    color: #0a1a3a;
}

.adv-card {
    background: #ffffff;
    padding: 15px 1px;
    border-radius: 18px;
    transition: 0.3s ease;
    height: 100%;
    box-shadow: none !important;
}

.adv-card:hover {
    transform: translateY(-5px);
    box-shadow: none !important;
}

.adv-icon {
    width: 70px;
    height: 70px;

    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    font-size: 28px;
}

.advcardinsideodd .adv-card {
    transform: translateY(-40px) !important;
}

.advcardinsideeven .adv-card {
    transform: translateY(60px) !important;
}

.adv-title {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 19px;
    color: #e1473f !important;
}

.adv-text {
    font-size: 18px;
    color: #555;
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.6rem;
    }

    .adv-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .advcardinsideodd .adv-card {
        transform: translateY(0px) !important;
    }

    .advcardinsideeven .adv-card {
        transform: translateY(0px) !important;
    }

}

.mba-cta-section {
    width: 100%;
    overflow: hidden !important;
}



.mba-cta-section {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: linear-gradient(to right, rgb(0, 0, 0), 40%, rgba(255, 255, 255, 0) 100%), url('/images/cumba/happygraduate.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-content {
    display: inline-block;
    padding: 20px;
    border-radius: 15px;
    max-width: 1200px;
    width: 90%;
}

.cta-content h3 {
    font-size: 19px !important;
}

.cta-content h2 {
    font-size: 1.8rem;
}

@media (min-width: 768px) {
    .cta-content h3 {
        font-size: 1.6rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-content {
        padding: 40px;
    }
}

@media (min-width: 1200px) {
    .cta-content h3 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }
}



.btnmain {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    padding: 9px 24px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff !important;
    background: #e1473f !important;
    border: 2px solid #e1473f !important;
    transition: transform .18s ease;
}


.btnmain::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.05));
    transform: skewX(-18deg);
    transition: all 0.6s cubic-bezier(.2, .9, .25, 1);
    pointer-events: none;
}

.btnmain:hover::before {
    left: 140%;
}

.btnmain:active {
    transform: scale(.985);
}



.footer-right p,
.f18footer {
    font-size: 18px !important;
    color: black !important;
    font-family: "Poppins" !important;
}

.footerlogo {
    width: 400px !important;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    display: block;
}

footer p,
footer h6 {
    margin: 0;
    color: black;
}

.fs16 {
    font-size: 18px !important;
    color: black !important;
    font-family: "Poppins" !important;
}

@media (max-width: 576px) {

    .footerlogo {
        max-width: 100%;
        margin-bottom: 20px;
    }

    footer .col-md-6 {
        text-align: left;
        margin-bottom: 10px;
    }

    .footer-right p {
        font-size: 16px !important;
        font-weight: 500;
    }

    .fs16 {
        font-size: 16px !important;
        color: black !important;
        font-family: "Poppins" !important;
    }
}


/* ---------------------------- */


.accredi-section {
    padding: 10px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.accredi-container {
    width: 90%;
    margin: auto;
}

.accredi-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}

.accredi-item img {
    max-width: 120px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.accredi-item img:hover {
    transform: scale(1.05);
}

.react-multiple-carousel__arrow {
    background-color: #ff6f61 !important;
}

.react-multiple-carousel__arrow::before {
    color: white !important;
}

.react-multiple-carousel__arrow {
    border-radius: 50% !important;
}

.react-multiple-carousel__arrow--left {
    left: 4px !important;
}

.react-multiple-carousel__arrow--right {
    right: 4px !important;
}

.react-multiple-carousel__arrow {
    width: 40px !important;
    height: 40px !important;
    background-color: #ff6f61 !important;
    border-radius: 50% !important;
}

.react-multiple-carousel__arrow::before {
    font-size: 18px !important;
    color: #fff !important;
}

.react-multiple-carousel__arrow:hover {
    background-color: red !important;
}








.phone-iconphone {
    background-color: #f84365 !important;
    border-radius: 50% !important;
    padding: 14px 11px !important;
    border: none !important;
    width: 60px !important;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.45) !important;
    position: fixed !important;
    z-index: 100 !important;
    bottom: 10px !important;
    left: 22px !important;
}

.phone-iconphone i {
    font-size: 29px;
    padding-left: 10px;
    color: white;
}

@media only screen and (max-width:500px) {

    .phone-iconphone {
        bottom: 4px !important;
        left: 8px !important;
    }

}


@media (max-width: 768px) {
    .hero {
        background-image:
            /* linear-gradient(130deg, rgb(247, 247, 247), rgba(255, 255, 255, 0) 50%),
              url('/images/cumba/mobilebanner.webp'); */
            linear-gradient(116deg, #d2d2d2 0%, rgb(251 238 238 / 90%) 25%, rgb(171 171 171 / 50%) 60%, rgb(224 224 224 / 0%) 100%), url('/images/cumba/mobilebanner.webp');




        background-size: cover !important;
        background-position: center top;
        padding: 50px 16px;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
    }
}

@media (max-width: 768px) {
    .hero {
        clip-path: none;
    }
}

@media (max-width: 576px) {
    .hero-card {
        margin-top: -24px;
        padding: 1.5rem;
    }
}

@media (max-width: 991px) {
    .hero {
        padding: 40px 0;
    }

    .text-blur {
        display: block;
        padding: 0.4rem 0.6rem;
        margin-bottom: 0.5rem;
    }

    .kpis {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .hero-card p {
        font-weight: 700;
    }

    .hero-badge {
        background: #e3e3e3b3;
        font-weight: 700;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .lead {
        font-size: 0.95rem;
    }

    .hero-badge {
        padding: 10px;
        font-size: 18px;
    }

    .btn-brochure,
    .btn-apply {
        width: 100%;
        text-align: center;
    }

    .outcome-card {
        height: 100% !important;
    }

    .outcome-content {
        position: relative;
        z-index: 2;
        max-width: 99%;
    }

    .blur-wrapper {
        justify-content: center;
    }
}






.form-control {
    border-radius: 5px !important;
}





.pop-up {
    font-size: 22px;
    font-weight: 600;
}

form fieldset {
    width: 100%;
    display: inline-flex;
    gap: 3rem;
}

form fieldset input,
form fieldset select,
form fieldset .textarea {
    width: 100%;
    border-radius: 6px;
    padding: 17px 30px;
    margin-top: 15px;
    border: none;
    box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
    background: #fff;
    outline: none;
    color: #525151;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins' !important;
}

form .group_field {
    display: block;
}

form .group_field {
    display: block;
}

form fieldset {
    width: 100%;
    display: inline-flex;
    gap: 3rem;
}


.btn-model {
    width: 100% !important;
}

.bams-form-field {
    width: 100%;
    border-radius: 6px;
    padding: 17px 30px;
    margin-top: 15px;
    border: none;
    box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
    background: #fff;
    outline: none;
    color: #525151;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins' !important;
}

.white-bg-black-text {
    background-color: white !important;
    color: #212529 !important;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "\f282";
    /* bootstrap 'chevron-down' */
    font-family: "bootstrap-icons";
    position: absolute;
    right: 20px;
    top: 51%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #333;
    pointer-events: none;
}

.no-click {
    pointer-events: none;
}



/* Embla carousel base */
.embla {
    overflow: hidden;
}

.embla__container {
    display: flex;
    gap: 10px;

}

.embla__slide {
    flex: 0 0 calc(50% - 10px);
    /* 2 items per row (desktop) */


}

.embla__slide:last-child {
    margin-right: 8px;
}

.embla__slide:first-child {
    margin-left: 8px;
}

@media (max-width: 1024px) {
    .embla__slide {
        flex: 0 0 100%;
        /* 1 item on tablet/mobile */
    }


}

/* ------- Your original card styles -------- */

.outcomes-container {
    width: 90%;
    margin: auto;
    position: relative;

}

.outcome-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 420px;
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 0;
}

.outcome-card:hover .bg-layer {
    transform: scale(1.1);
}

.news-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.85) 35%,
            rgba(0, 0, 0, 0.1) 80%,
            rgba(0, 0, 0, 0) 100%);
    transition: 0.4s ease;
    z-index: 1;
}

.outcome-content {
    position: relative;
    z-index: 2;
    max-width: 75%;
}

.outcome-title {
    font-size: 26px;
    font-weight: 700;
    color: #e6453d;
    margin-bottom: 15px;
}

.hover-line {
    width: 0;
    height: 3px;
    margin-top: 15px;
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    transition: 0.4s ease;
}

.outcome-card:hover .hover-line {
    width: 80%;
}

/* ------- CUSTOM ARROWS -------- */

.custom-arrow {
    position: absolute;
    bottom: -60px;
    z-index: 50;
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    color: #e6453d;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.custom-left-arrow {
    right: 70px;
}

.custom-right-arrow {
    right: 0px;
}

.custom-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
    .custom-left-arrow {
        right: 70px;
    }

    .custom-right-arrow {
        right: 0px;
    }

    .outcome-content {
        max-width: 100% !important;
    }

    .btn-brochure {
        background-color: white !important;
    }
}