html,
body {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-style: normal;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 2rem;
}

/* Base css */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Unna", serif;
    font-weight: 300;
    font-style: normal;
    /* border-bottom: 4px solid #ffc000 !important;
    color: #0e4c92;
    display: inline-block; */
}

a {
    font-family: "Montserrat", serif;
}

p {
    text-align: justify !important;
}


.primary-heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #333;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    text-align: center;
    margin: 0 auto;
    border-bottom: 5px solid #f1c40f;
}

/* .primary-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 80%;
    transform: translateX(-50%);
    height: 5px;
    background: linear-gradient(90deg, #ff5733, #ff8c00, #f1c40f, #3498db, #8e44ad);
    background-size: 400% 100%;
    animation: underline-animation 3s linear infinite;
}

.primary-heading:hover::after {
    background-size: 100% 100%;
} */

@keyframes underline-animation {
    0% {
        background-position: 0% 100%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 100%;
    }
}

/* Navigation Css */
/* ==============
            Navbar CSS 
        ==================================== */
.header-sticky.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .4);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.navbar-toggler {
    box-shadow: unset;
}

.navbar-toggler:focus {
    box-shadow: unset;
}

.edu-navbar {
    background-color: #fff;
    margin: 0;
    padding-top: 6px;
    padding-bottom: 6px;
}

.navbar-light .navbar-brand {
    padding: 0;
}

.navbar-light .navbar-brand img {
    width: 150px;
}

.edu-navbar .navbar-nav .nav-link {
    text-transform: capitalize;
    /* padding: 10px 15px; */
    color: #1f2d30;
    font-weight: 600;
    font-size: 14px;
}

.edu-navbar .navbar-nav .dropdown-item {
    padding: 2px 15px;
}

/*
        .edu-navbar .active a, 
        .edu-navbar .active a:focus, 
        .edu-navbar .active a:hover, 
        .edu-navbar li a:hover, 
        .edu-navbar li a:focus, 
        .edu-navbar .navbar>.show>a, 
        .edu-navbar .navbar>.show>a:focus, 
        .edu-navbar .navbar>.show>a:hover{
            color: #000;
            background: transparent;
            outline: 0;
        }*/
.edu-navbar .navbar-nav .active>.nav-link,
.edu-navbar .navbar-nav .nav-link.active,
.edu-navbar .navbar-nav .nav-link.show,
.edu-navbar .navbar-nav .show>.nav-link {
    color: #0e4c92;
}

.edu-navbar .dropdown-item.active,
.edu-navbar .dropdown-item:active {
    color: #0e4c92;
    background-color: #fff;
}

.edu-navbar i.icofont-search {
    font-size: 18px;
}

.edu-navbar i.icofont-cart-alt {
    font-size: 20px;
}

/*submenu style start from here*/
.dropdown-menu {
    padding: 0px 0;
    margin: 0 0 0;
    border: 0px solid transition !important;
    border: 0px solid rgba(0, 0, 0, .15);
    border-radius: 0px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

/* Submenu Dropdown */
.navbar-nav .dropdown-menu {
    position: absolute !important;
    left: 0 !important;
    display: none !important;
    min-width: 200px !important;
}

/* Show dropdown on hover (for desktops) */
.navbar-nav .dropdown:hover>.dropdown-menu {
    display: block !important;
}

/* Style for second-level dropdown */
.dropdown-submenu {
    position: relative !important;
}

.dropdown-submenu .dropdown-menu {
    display: none !important;
    height: 0 !important;
}

.dropdown-submenu:hover>.dropdown-menu {
    position: absolute;
    top: 0 !important;
    left: 0 !important;
    height: 100% !important;
    min-width: 200px !important;
    /* Push it to the right */
    margin-left: 0.1rem !important;
    display: block !important;
}

/* Show nested dropdown on hover (for desktops) */
.dropdown-submenu:hover>.dropdown-menu {
    display: block !important;
}

/* Responsive - Show dropdown on click for mobile */
@media (max-width: 991px) {
    .navbar-nav .dropdown-menu {
        position: static !important;
        width: 100% !important;
    }

    .dropdown-submenu .dropdown-menu {
        left: 0 !important;
        display: block !important;
        width: 100% !important;
    }
}

@media (min-width: 994px) {
    .navbar-nav .dropdown-submenu:hover>.dropdown-menu {
        left: 100% !important;
        height: inherit !important;
    }
}

/* Submenu Dropdown */

/*first level*/
.edu-navbar .collapse ul>li:hover>a {
    background: #f5f5f5;
    color:rgb(13 110 253);
}

.edu-navbar .collapse ul ul>li:hover>a,
.navbar .show .dropdown-menu>li>a:focus,
.navbar .show .dropdown-menu>li>a:hover {
    background: #fff;
    color: #0e4c92;
}

/*second level*/
.edu-navbar .collapse ul ul ul>li:hover>a {
    background: #fff;
    color: #0e4c92;
}

/*third level*/
.edu-navbar .collapse ul ul,
.edu-navbar .collapse ul ul.dropdown-menu {
    background: #f5f5f5;
}

.edu-navbar .collapse ul ul ul,
.edu-navbar .collapse ul ul ul.dropdown-menu {
    background: #f5f5f5;
}

.edu-navbar .collapse ul ul ul ul,
.edu-navbar .collapse ul ul ul ul.dropdown-menu {
    background: #f5f5f5
}


.backcolor {
    height: 25px;
    position: relative !important;
}

.backcolor marquee {
    font-weight: bold;
    margin-top: -4px;
}

#header {
    height: 100%;
}


@media (max-width: 778px) {
    .whatsapp-chat {
        font-size: 0.6rem !important;
        border-radius: 4px;
    }

    .logo-section {
        padding-top: 0 !important;
    }

    #header {
        height: 100% !important;
        padding: 0 !important;
    }
}


/*Drop-down menu work on hover*/

@media only screen and (max-width: 991px) {
    .edu-navbar .show>.dropdown-toggle::after {
        transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
    }

    .navbar ul {
        display: block !important;
    }

    .edu-navbar .collapse ul ul.dropdown-menu.show {
        width: 100% !important;
        position: relative !important;
    }
}

@media only screen and (min-width: 991px) {

    .edu-navbar .dropdown>.dropdown-menu,
    .edu-navbar .cart-item .dropdown-menu {
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        /* overflow: hidden; */
        transform-origin: top center;
        -webkit-transform-origin: top center;
        transform: scale(1, 0);
        -webkit-transform: scale(1, 0);
        display: block;
    }

    .edu-navbar .dropdown:hover>.dropdown-menu,
    .edu-navbar .cart-item:hover .dropdown-menu {
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    .edu-navbar .collapse ul li {
        position: relative;
    }

    .edu-navbar .dropdown ul li:hover>ul {
        display: block
    }

    .edu-navbar .collapse ul ul {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 250px;
        display: none;
    }

    .edu-navbar .collapse ul .cart-item ul {
        right: 0;
        left: auto;
        width: 300px;
    }

    .edu-navbar .collapse ul ul li {
        position: relative
    }

    .edu-navbar .collapse ul ul li:hover>ul {
        display: block
    }

    .edu-navbar .collapse ul ul ul {
        position: absolute;
        top: 0;
        left: 100%;
        min-width: 250px;
        display: none
    }

    .edu-navbar .collapse ul ul ul li {
        position: relative
    }

    .edu-navbar .collapse ul ul ul li:hover ul {
        display: block
    }

    .edu-navbar .collapse ul ul ul ul {
        position: absolute;
        top: 0;
        left: -100%;
        min-width: 250px;
        display: none;
        z-index: 1
    }
}



/**/
.edu-navbar2 .navbar-brand {
    z-index: 20;
}

.edu-navbar2:before {
    content: "";
    position: absolute;
    background-color: #0e4c92;
    -webkit-clip-path: polygon(0 0, 100% 0%, 83% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 83% 100%, 0% 100%);
    width: 400px;
    left: 0;
    height: 100%;
    z-index: 0;
    top: 0;
}

.edu-navbar3 .navbar-brand {
    z-index: 20;
}

.edu-navbar3:before {
    content: "";
    position: absolute;
    background-color: #0e4c92;
    -webkit-clip-path: polygon(0 0, 83% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 83% 0, 100% 100%, 0% 100%);
    width: 400px;
    left: 0;
    height: 100%;
    z-index: 0;
    top: 0;
}

.edu-navbar4 .navbar-brand {
    z-index: 20;
}

.edu-navbar4:before {
    content: "";
    position: absolute;
    background-color: #0e4c92;
    -webkit-clip-path: polygon(0% 0%, 100% 0, 91% 50%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0, 91% 50%, 100% 100%, 0% 100%);
    width: 340px;
    left: 0;
    height: 100%;
    z-index: 0;
    top: 0;
}

@media only screen and (min-width: 1480px) {
    .edu-navbar2:before {
        width: 500px;
    }

    .edu-navbar3:before {
        width: 500px;
    }

    .edu-navbar4:before {
        width: 500px;
    }
}

@media only screen and (min-width: 1700px) {
    .edu-navbar2:before {
        width: 700px;
    }

    .edu-navbar3:before {
        width: 700px;
    }

    .edu-navbar4:before {
        width: 650px;
    }
}

/**/
#header {
    position: relative;
    width: 100%;
    background-color: #fff;
    z-index: 2;
    top: 0;
}

.edu-navbar {
    background-color: #f5f5f5;
    margin-top: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
    box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.6);
}

#banner {
    margin-top: 0px;
}

/* notification and update banner */
.notification-swiper {
    width: 100%;
    height: 100%;
    max-height: 270px;
    overflow-y: hidden;
}

.swiper-wrapper {
    height: 300px;
    position: relative;
}

.swiper-slide {
    height: auto !important;
}

.home_notices .swiper-slide a {
    display: block;
    color: #fff;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ffffff4f;
    font-size: 16px;
    transition: ease 0.3s all;
    line-height: 1.4 !important;
}

.home_notices .swiper-slide a:hover {
    color: #ffc000;
    padding-left: 15px;
    border-color: #ffc000;
}

.swiper-button-prev i,
.swiper-button-next i {
    color: #ffc000;
}

@media(max-width: 980px) {
    .size-banner {
        padding: 1rem 1rem 1rem 1rem !important;
    }
    .home_notices{
        margin-bottom: 0 !important;
    }
}

/* End notification and update banner */

section#footer-bottom {
    background: #0e4c92;
    padding: 10px;
}

section#footer-bottom .dropdown-item {
    text-wrap: balance !important;
}

#course-offer .nav-pills button {
    box-shadow: 0px 0px 20px #003D5833;
    padding: 13px 50px 13px 20px;
    background-color: #fff;
    color: #000;
    margin-right: 10px;
}

.c-gray {
    background: #f5f5f5;
    margin: 50px 0;
}

#feedback {
    height: 0px;
    width: 65px;
    position: fixed;
    right: 0;
    top: 65%;
    z-index: 1000;
    transform: rotate(-90deg) translateY(-50%);
    -webkit-transform: rotate(-90deg) translateX(-50%);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

#feedback a {
    display: block;
    background: #a58255;
    height: auto;
    width: 310px;
    padding: 4px 12px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: solid 1px #333;
    border-left: solid 1px #333;
    border-right: solid 1px #fff;
    text-align: center;
    transition: ease 0.3s all;
}

#feedback a:hover {
    background: #CCC;
    color: #000;
}

/*====================================
        CUSTOM STYLE START 
        ====================================*/
.navbar .dropdown ul {
    display: none;
}

.navbar .dropdown ul a {
    border-bottom: 1px solid #0e4c922e;
}

@media (min-width: 1366px) {
    .size-banner {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        padding: 1% !important;
    }

    .details-heading {
        font-size: 17px;
        margin-bottom: 35px;
    }

    ul.about-online-mba.about_points>li {
        width: calc(100% / 2);
        padding: 0 !important;
        flex-basis: 50%;
    }

    .about_points {
        display: flex;
        flex-wrap: wrap;
        max-width: 400px;
    }
}

a.view_allHome {
    background-color: #ffc000;
    color: #000;
    padding: 10px 40px;
    border-radius: 5px;
    margin-bottom: 0;
    transition: ease 0.3s all;
    display: inline-block;
}

a.view_allHome:hover {
    background-color: #4caf50;
    color: #fff;
}

.adm_pro.c-gray {
    margin: 0 !important;
}

.adm_pro.c-gray+section {
    border-top: 1.5px dashed #505050;
}

.home_notices>a {
    display: block;
    color: #fff;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ffffff4f;
    font-size: 16px;
    transition: ease 0.3s all;
}

.home_notices {
    margin-bottom: 30px;
}

.home_notices>a:hover {
    color: #ffc000;
    padding-left: 15px;
    border-color: #ffc000;
}

span.Empower.notice_heady {
    color: #ffc000;
    font-size: 1.2rem;
}

@media(max-width: 764px){
    span.Empower.notice_heady {
        font-size: 1rem;
    }
}

/*====================================
        CUSTOM STYLE END
        ====================================*/

/* End of the Navigation Css */

/* Home page css */
.notice-section {
    background-color: #f8f9fa;
    /* Light background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.notice-header {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0d6efd;
    border-bottom: 2px solid #0d6efd;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.notice-item {
    border-left: 4px solid #0d6efd;
    padding-left: 15px;
    margin-bottom: 15px;
}

.notice-item:hover {
    background-color: #e9f7fd;
}

.notice-date {
    font-size: 0.9rem;
    color: #6c757d;
}

.program-wrapper {
    position: relative;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8));
    /* background-color: #001C54; */
    padding: 20px;
    width: 100%;
    height: 100%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 0;
}

/* Glowing border using ::before */
.program-wrapper::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: rgb(0, 64, 141);
    /* background: linear-gradient(45deg, rgba(0, 64, 141, 1) 0%, rgba(85, 13, 253, 1) 50%); */
    background:#00408D;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Shimmer effect using ::after */
.program-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 150%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transform: skewX(-45deg);
    transition: left 0.5s ease;
    z-index: -1;
}

/* Hover effects */
.program-wrapper:hover::before {
    opacity: 1;
}

.program-wrapper:hover::after {
    left: 100%;
}

.program-wrapper:hover {
    transform: scale(1.05);
}

.program-wrapper h2 {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}

.program-wrapper p {
    color: #ffffff;
}

.programs-list {
    list-style: none;
    padding: 0;
}

.programs-list li {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    margin: 4px 0;
    padding: 0px 10px;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
    overflow: hidden;
    color: #e2dfdf;
}

.programs-list li a {
    color: #ffffff !important;
    line-height: 2;
}


/* Adding animated bar effect on hover */
.programs-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #ffc000;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.programs-list li:hover::before {
    transform: scaleY(1);
}

.programs-list li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    color: #ffffff;
}

.checkmark {
    color: #ffc000;
    font-size: 16px;
    margin-right: 10px;
}

/* admission other information */
.admission-card {
    display: flex;
    width: 100%;
    min-height: 200px;
    background-color: white;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 5px;
}

@media(max-width: 620px) {
    .admission-card {
        flex-direction: column;
    }
}

.image-section {
    flex: 1;
    padding: 1rem;
}

.image-section img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.text-section {
    flex: 1;
    background-color: #c79b6e;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    color: white;
}


.text-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #f2f2f2;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 20px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.cta-button:hover {
    background-color: white;
    color: #2c2b2b;
}

/* End of Home page css */

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Info */
.contact-info {
    background: linear-gradient(135deg, #0e4c92 60%, #b02a37 40%);
    color: white;
    padding: 30px;
    border-radius: 10px;
}

.contact-info h2 {
    font-size: 24px;
    font-weight: bold;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    font-size: 18px;
    margin: 10px 0;
}

.contact-info i {
    margin-right: 10px;
}

/* Contact Form */
.contact-form {
    padding: 20px;
}

.contact-form h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px;
    width: 100%;
    color: #000000 !important;
}

/* Form Input Focus Effect */
.form-control:focus {
    border-color: #0e4c92;
    /* Change border color on focus */
    box-shadow: 0px 0px 5px rgba(0, 64, 141, 0.4);
    /* Soft glowing effect */
    outline: none;
    /* Remove default outline */
    transition: all 0.3s ease-in-out;
    /* Smooth transition */
}


.btn-primary {
    background: #0e4c92;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #b02a37;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        margin-bottom: 20px;
    }
}

/* End of Contact Section */


/* Footer Css */
.footer {
    background-color: #0e4c92;
    color: white;
    padding: 40px 0;
    padding-bottom: 0;
}

.footer h5 {
    display: inline-block;
    border-bottom: 3px solid #f1c40f;
}

.footer li {
    list-style: disc;
    margin-left: 1.2rem;
}

.footer li::marker {
    color: #f1c40f;
}

.footer a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .list-unstyled {
    line-height: 2rem;
}

.footer-logo {
    max-width: 90%;
    font-size: 1.5rem;
    font-weight: bold;
    /* margin-bottom: 20px; */
    padding: 1rem;
    background-color: #073059;
}

.footer-logo img {
    height: 120px;
    margin-right: 10px;
    width: 220px;
}

.footer-logo p {
    padding: 0;
    margin: 0;
    font-size: 1rem;
}

.social-icons {
    display: grid;
    margin-top: 1rem;
    grid-template-columns: repeat(2, 100px);
    gap: 1rem;
    justify-content: center;
}

.social-icons a {
    margin: 0 5px;
    color: #fff;
    font-size: 6rem;
}

.social-icons a:hover {
    color: #ffffff;
}

.social-icons img {
    height: 80px;
}

.copy-write {
    background-color: #073059;
    color: #ffffff;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copy-write p {
    padding-bottom: 0;
    font-size: 0.8rem;
    margin-bottom: 0 !important;
}

/* End of footer css */

/* Other Css */
.model_form_chat {
    z-index: 9999999999 !important;
}

.lpleadFormpopup .form-control {
    color: #000 !important;
    background-color: #bdb8b8;
    padding: 10px 15px !important;
}

.form-control {
    border-radius: 5px !important;
    border: 1px solid #ced4da !important;
}

.submitBtn-211 {
    border: 0;
    padding: 8px 35px;
    background-color: #001C54;
}

label.error {
    color: #e61117;
    font-size: 13px;
    position: absolute;
}

.nav-tabs .nav-link {
    border: none;
    font-weight: bold;
    color: #555;
    padding: 1rem;
}

.nav-tabs .nav-link.active {
    background-color: #0e4c92;
    color: white;
}

/*====================================
        CUSTOM STYLE START
        ====================================*/
.programType_main {
    width: 100%;
    display: flex;
}

.programType_main>a.program_type {
    width: calc(100% / 4);
    padding: 10px;
    background-color: #d4deec;
    color: #000;
    text-align: center;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    outline: 1px solid #fff;
    outline-offset: -1px;
    border-radius: 3px;
    transition: ease 0.3s all;
}

.programType_main>a.program_type.active {
    background-color: #0e4c92;
    color: #fff;
    outline-color: #0e4c92;
}

.programType_main>a.program_type:before {
    content: "";
    background-color: #0e4c92;
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: ease 0.3s all;
}

.programType_main>a.program_type>span {
    position: relative;
}

.programType_main>a.program_type:hover {
    color: #fff;

    &:before {
        width: 100%;
    }

}

.cms2_button {
    display: flex;
    text-transform: uppercase;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .2);
}

.cms2_button button {
    text-transform: uppercase;
}

.cms2_button>li {
    width: calc(100% / 2);
    margin: 0 !important;
    padding: 0;
}

.cms2_button>li>button {
    width: 100%;
    display: block;
    border-radius: 2px !important;
    margin: 0;
    padding: 10px;
    font-weight: normal !important;
    background-color: #d4deec;
    color: #000 !important;
}

.cms2_button>li>button:hover {
    color: #000 !important;
}

.cms2_button>li>button.active {
    color: #fff !important;
}

.content-area h2 {
    font-size: 23px;
    font-weight: normal;
    /* text-transform: capitalize; */
    padding-bottom: .5rem;
    border-bottom: 4px solid #ffc000 !important;
    color: #0e4c92;
}

.sidebar ul.nav>li>a {
    border-bottom: 1px solid #eee;
    font-weight: normal;
    color: #000;
}

.sidebar ul.nav>li>a.active {
    background-color: #0e4c92;
    border-radius: 0;
    border-left: 5px solid #ffc000;
}

.sidebar ul.nav>li>a:hover {
    background-color: #0e4c92;
    border-left: 5px solid #ffc000;
    color: #fff !important;
}

.navbar .dropdown ul a {
    border-bottom: 1px solid #0e4c922e;
}

/* Course Heading */
.course-heading {
    font-weight: bold !important;
    /* background: rgb(0, 64, 141); */
    /* background: linear-gradient(90deg, rgba(0, 64, 141, 1) 0%, rgba(0, 64, 141, 1) 10%, rgba(176, 42, 55, 1) 100%); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* Text with gradient color */
    margin: 20px 0;
    letter-spacing: 1px;
}

.content-area {
    box-shadow: 0 0 2px rgba(0, 0, 0, .2);
    padding: 10px 20px;
}

/* Course table */
table thead {
    background-color: #0e4c92;
}

table thead th {
    color: #ffffff !important;
}

.course-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1.2rem;
    text-align: left;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow-x: auto;
}

.course-table thead {
    background: rgb(0, 64, 141);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

.course-table th,
.course-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
}

.course-table tbody tr {
    transition: background 0.3s ease;
}

.course-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.course-table tbody tr:hover {
    background-color: rgba(255, 138, 0, 0.1);
}

/* Pills for courses */
.city-pills {
    display: flex;
    flex-wrap: wrap;
    max-width: 80%;
    gap: 10px;
    margin-bottom: 20px;
}

.city-pills span {
    background-color: #0e9292;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 16px;
    border-radius: 20px;
    text-align: center;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.city-pills span:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* counties cities */
.country-cities {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: #0e4c92;
    font-weight: bold;
}

.country-cities div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.country-cities strong {
    min-width: 120px;
    color: #000;
}

.country-cities span {
    background: #0e9292;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 20px;
    text-align: center;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.country-cities span:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* End of the other css */

/* Sidebar CSS */

.sidebar {
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .2) !important;
    background-color: #fff;
}

/* Sidebar active state */
.nav-link.active {
    background-color: #0d6efd;
    /* Primary blue background */
    color: #fff !important;
    /* White text */
    font-weight: bold;
    border-radius: 5px;
    /* Rounded edges */
    transition: all 0.3s ease;
    /* Smooth transition */
}

/* Sidebar hover effect */
.nav-link:hover {
    background-color: #e9ecef;
    /* Light gray background */
    color: #0d6efd !important;
    /* Primary text color */
    text-decoration: none;
}

/* Sidebar styles */
.sidebar {
    background-color: #f8f9fa;
    /* Light background for sidebar */
    border: 1px solid #dee2e6;
    z-index: -1;
    /* Subtle border */
}

.sidebar h5 {
    color: #0d6efd;
    /* Primary color for the heading */
}

.sidebar-link {
    color: #495057;
    /* Neutral link color */
    transition: all 0.3s ease;
    /* Smooth hover effect */
    font-weight: 500;
}

.sidebar-link:hover {
    color: #0d6efd;
    /* Primary color on hover */
    text-decoration: none;
}

.sidebar-link.active {
    color: #0d6efd;
    /* Primary color for active link */
    font-weight: bold;
}

.nav-item+.nav-item {
    margin-top: 0.5rem;
    /* Spacing between nav items */
}

/* Content area spacing for readability */
.content-area p {
    line-height: 1.8;
    /* Improve text readability */
    color: #495057;
    /* Neutral text color */
}

/* End of the Sidebar CSS */

/* Home page Carousal */
.carousel-fade .carousel-item {
    opacity: 0.5;
    height: 100%;
    object-fit: contain;
    transition: opacity 500ms ease-in;
}

@media(max-width: 764px) {
    .carousel-fade .carousel-item {
        height: 100% !important;
    }
}

.carousel-item img {
    height: 100%;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Custom controls */
.carousel-control-prev,
.carousel-control-next {
    filter: invert(100%);
}

/* Caption Styling */
.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 10px;
}

/* Dots animation */
.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background-color: white;
    transition: transform 0.3s ease-in-out;
}

.carousel-indicators .active {
    transform: scale(1.3);
    background-color: #ffc000;
}


/* End of page Carousal */


/* Accordion bootstrap */
.accordion-button {
    font-weight: bold;
    font-size: 18px;
    color: #0d2545;
    background-color: white;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: white;
    color: #0d2545;
    box-shadow: none;
}

.accordion-button::after {
    content: "";
    /* FontAwesome down arrow */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #0d2545;
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    /* Rotate when open */
}

.accordion-body {
    font-size: 16px;
    color: #333;
}

.accordion-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}

/* End of Accordion */

/* Youtube Video overlay and play section */
.youtube-video-wrapper {
    padding: 80px 0;
    position: relative;
    /* background-image: url('../images/sau-campus.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed; */
}

.youtube-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f2f2f2;
    /* filter: blur(5px); */
    /* z-index: 1; */
    /* Ensure the overlay is above the background but below text */
}

.video-section {
    padding: 1rem;
    border-radius: 10px;
    position: relative;
    background-color: #ffffff;
    z-index: 2;
    /* margin-top: 2rem; */
    padding: 2rem 2rem;
    /* color: #ffffff; */
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.video-section .outline {
    position: absolute;
    top: 0;
    left: 27px;
    width: 100%;
    height: 100%;
    border: 10px solid #0e4c92;
    background-color: #f1c40f;
    z-index: -1;
}

.video-section h1 {
    border-bottom: 5px solid #f1c40f;
    /* background-color: #0e4c92; */
    margin-bottom: 1rem;
    font-size: 2rem;
}

@media(max-width: 764px) {
    .video-section h1 {
        font-size: 1.8rem;
    }
}

.video-wrapper {
    background: url('https://images.pexels.com/photos/3762800/pexels-photo-3762800.jpeg') center/cover no-repeat;
    height: 250px;
}


/* Play Button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    animation: pulse 2s infinite;
}

.play-btn i {
    font-size: 32px;
    color: #0e4c92;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.play-btn:hover i {
    transform: scale(1.2);
}

/* Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    }

    100% {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
}

/* End of Youtube Video section */

/* Life at SAU */
.life-sau .img-fluid {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
}

/* End of life at SAU */

/* Masonry Grid */
.masonry {
    column-count: 4;
    /* Adjust for different screen sizes */
    column-gap: 15px;
}

.masonry-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    break-inside: avoid;
}

/* Responsive masonry adjustments */
@media (max-width: 992px) {
    .masonry {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .masonry {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .masonry {
        column-count: 1;
    }
}

/* Admission Apply */
.admission-section {
    height: 100%;
    display: flex;
    justify-content: stretch;
    flex-direction: column;
    background: #e0dddd;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.admission-section-title {
    background: #ffc000;
    color: #ffffff;
    padding: 1rem;
}

.admission-sub-section {
    background-color: #e0dddd;
}

.admission-footer {
    height: 5px;
}

/* Course page banner */

.course-page-banner {
    min-height: 400px;
    position: relative;
}

.course-page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.593);
}

.course-page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
}

.course-page-caption {
    z-index: 1;
    position: absolute;
    color: #ffffff;
    /* border-bottom: 5px solid #f1c40f; */
    font-size: clamp(1rem, 3vw, 2rem);
    line-height: 3.2rem;
    font-weight: bold;
    text-align: center;
    left: 50%;
    top: 50%;
    padding: 0.5rem;
    transform: translate(-50%, -50%);
    /* display: inline; */
    text-wrap: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.course-page-caption p {
    font-size: 1rem;
    border-bottom: 5px solid #f1c40f;
}

.course-page-caption p a {
    font-style: italic;
}

@media(max-width: 764px) {
    .course-page-banner {
        min-height: 200px;
    }
}

/* Course Banner */
.page-banner {
    background-image: url(../images/sau-campus-new.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, .6);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.page-banner .page-banner-heading {
    display: inline-block;
    margin: 0 auto;
    font-size: 3rem;
    color: #ffffff;
    font-weight: bold;
    border-bottom: 5px solid #ffc000;
    text-transform: capitalize;
}

/* Scroll to top */
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #f1c40f;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

#scrollToTopBtn:hover {
    background-color: #001C54;
}

/* Virtual Campus Cards */

.virtual-campus {
    /* background-color: #f2f2f2; */
    padding: 80px 0;
}

/* End Virtual Campus */



/* Marquee */

.home_notices a {
    display: block;
    color: #fff;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ffffff4f;
    font-size: 16px;
    transition: ease 0.3s all;
    line-height: 1.4 !important;
}

.home_notices a:hover {
    color: #ffc000;
    padding-left: 15px;
    border-color: #ffc000;
}

.marquee-container {
    width: 100%;
    height: 245px;
    /* Adjust height as needed */
    overflow: hidden;
    padding: 10px;
    position: relative;
}

.marquee-content {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    animation: scrollUp 18s linear infinite;
    /* Animation for bottom-to-top scroll */
}

@keyframes scrollUp {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
    /* Pause animation on hover */
}

.marquee-container a {
    display: block;
    margin-bottom: 10px;
    /* Space between items */
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    text-decoration: none;
}

@media(max-width: 764px){
    .marquee-container{
        height: 120px;
    }
    .marquee-container a{
        font-size: 14px;
    }
}

/* primary button */

.primary-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    font-size: 12px;
    height: 40px;
    font-weight: bold;
    color: #ffffff;
    background-color: #007bff;
    /* Primary Blue */
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
}

.primary-button:hover {
    background-color: #0056b3;
    color: #fff;
    /* Darker Blue */
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.3);
}

.primary-button:active {
    background-color: #004085;
    /* Even Darker Blue */
    transform: scale(0.98);
}

.primary-button:focus {
    outline: 2px solid rgba(0, 123, 255, 0.5);
    outline-offset: 2px;
}

@media(max-width: 524px){
    .primary-button{
        font-size: 0.5rem;
        margin-right: 0 !important;
    }
}

/* Curtain */
.curtainBody{
    display: none !important;
}

.curtainBody.show .curtain-content{
    opacity: 0;
    transform: translate(-60%);
    transform-origin: center center;
    transition: all 1000ms;
}

.curtain-content{
    position: fixed;
    z-index: 10000;
    top: 50%;
    left: 50%;
    width: 60%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFD700;
    outline: 10px dotted #FFD700;
    outline-offset: 3rem;
}

.curtain-content h3{
    font-size: 3.5rem;
}

.curtainContainer {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    top: -10%;
    width: 100%;
    height: 110%;
    margin: auto;
    transform-style: preserve-3d;
    overflow: hidden;
    transition: transform 6s ease;
    z-index: 9999;
  }
  
  .curtainContainer:nth-child(1) {
    transform-origin: -120% top;
    justify-content: flex-start;
    transform: translatex(-5vw);
  }
  
  .curtainContainer:nth-child(2) {
    transform-origin: 120% top;
    justify-content: flex-end;
    transform: translatex(15vw);
  }
  
  .rollLeft {
    transform: translatex(-150vw) scaleX(0);
  }
  
  .rollRight {
    transform: translatex(150vw) scaleX(0);
  }
  
  .curtainBody.show .curtainContainer:nth-child(1) {
    transform: translatex(-150vw) scaleX(0);
  }
  
  .curtainBody.show .curtainContainer:nth-child(2) {
    transform: translatex(150vw) scaleX(0);
  }
  
  .unCurtain {
    display: inline-block;
    width: 15vw;
    margin: 0;
    padding: 0;
    height: 120vh;
    background-size: 100% 100%;
    background: repeating-linear-gradient(to left, #5b2191 4vw, #7129b4 12vw, #5b2191 15vw);
    transform-origin: 0 0%;
    transform: rotate(3deg);
    transition: transform 4s ease;
    animation: swing 2s ease infinite;
  }
  
  @keyframes swing {
    50% {
      transform: rotate(-3deg);
    }
  }
  .unCurtain:nth-child(2) {
    margin-left: -10vw;
    animation-delay: -0.1s;
  }
  
  .unCurtain:nth-child(3) {
    margin-left: -10vw;
    animation-delay: -0.2s;
  }
  
  .unCurtain:nth-child(4) {
    margin-left: -10vw;
    animation-delay: -0.3s;
  }
  
  .unCurtain:nth-child(5) {
    margin-left: -10vw;
    animation-delay: -0.4s;
  }
  
  .unCurtain:nth-child(6) {
    margin-left: -10vw;
    animation-delay: -0.5s;
  }
  
  .unCurtain:nth-child(7) {
    margin-left: -10vw;
    animation-delay: -0.6s;
  }
  
  .unCurtain:nth-child(8) {
    margin-left: -10vw;
    animation-delay: -0.7s;
  }
  
  .unCurtain:nth-child(9) {
    margin-left: -10vw;
    animation-delay: -0.8s;
  }
  
  .unCurtain:nth-child(10) {
    margin-left: -10vw;
    animation-delay: -0.9s;
  }
  
  .unCurtain:nth-child(11) {
    margin-left: -10vw;
    animation-delay: -1s;
  }
  
  .unCurtain:nth-child(12) {
    width: 10vw;
    background: repeating-linear-gradient(to left, #5b2191 4vw, #b428c6 8vw, #5b2191 10vw);
    margin-left: -10vw;
    animation-delay: -1.1s;
  }
  
  .curtainBody {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .overlay {
    display: block;
    position: absolute;
    color: white;
    top: 0%;
    left: 0%;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to top, rgba(2, 2, 2, 0) 0vh, black 100vh);
    transition: opacity 3s ease;
  }
  
  .curtainBody:hover .overlay {
    opacity: 0;
  }