body {
    background-color: #ffffff !important;
}

/* -------- nav--------- */
.nav-bg-1 {
    background-color: #111d5e;
}

.nav-logo {
    height: 65px;
    width: 100%;
}

.nav-menu {
    gap: 20px;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 8px 10px;
    transition: 0.2s ease;
    font-size: 0.9rem !important;
}

    .navbar-nav .nav-link:hover {
        color: #e32845 !important;
    }

    .navbar-nav .nav-link.active {
        color: #e32845 !important;
    }

.navbar-light .navbar-toggler {
    border-color: rgba(255,255,255,0.4);
}

.navbar-light .navbar-toggler-icon {
    filter: invert(1);
}

.nav-icon i {
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
}


.dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background-color: #111d5e;
}

    .dropdown-menu .dropdown-item {
        color: #fff;
        font-weight: 500;
    }

        .dropdown-menu .dropdown-item:hover,
        .dropdown-menu .dropdown-item:focus,
        .dropdown-menu .dropdown-item:active {
            background-color: rgba(255,255,255,0.05);
            color: #e32845;
        }

        .dropdown-menu .dropdown-item.active {
            background-color: transparent;
        }

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu .dropdown-menu {
        display: none;
    }

    .dropdown-submenu:hover > .dropdown-menu,
    .dropdown-submenu.show > .dropdown-menu {
        display: block;
    }

@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu .dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
        margin-left: 2px;
    }
}

@media (max-width: 991px) {
    .dropdown-submenu .dropdown-menu {
        position: static;
        margin-left: 15px;
    }

    .dropdown-submenu.show > .dropdown-menu {
        display: block;
    }
}

.dropdown-submenu > .dropdown-toggle::after {
    content: " ";
    float: right;
    margin-top: 5px;
    transition: 0.3s;
}

.dropdown-submenu.show > .dropdown-toggle::after {
    transform: rotate(90deg);
}

@media (max-width: 991px) {
    .nav-menu {
        gap: 10px;
        margin-top: 15px;
    }
}

/*--------- hero banner-----------*/

.hero-section {
    background: #111d5e;
    overflow: visible;
}

.carousel-item {
    position: relative;
}

    .carousel-item img {
        height: 600px;
        object-fit: cover;
    }

    .carousel-item::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(17, 29, 94, 0.3);
        z-index: 1;
    }

.carousel-caption.hero-content {
    z-index: 2;
    bottom: 20%;
    left: 8%;
    right: auto;
    text-align: left;
}

.hero-content h1 {
    font-size: 65px;
    line-height: 1.3;
}

.hero-bottom {
    position: relative;
    background: #111d5e;
    padding: 80px 50px 30px;
}

.hero-thumbs {
    position: absolute;
    top: -75px;
    right: 50px;
    display: flex;
    z-index: 5;
}

    .hero-thumbs img {
        width: 200px;
        height: 150px;
        object-fit: cover;
        margin-left: 10px;
        cursor: pointer;
        transition: 0.3s;
    }

        .hero-thumbs img:hover {
            transform: translateY(-5px);
        }

.btn-hero-banner {
    background-color: #e32845;
    color: white;
    border-radius: 0;
}

.btn-banner-bottom {
    background-color: white;
}

    .btn-banner-bottom:active,
    .btn-banner-bottom:focus {
        outline: none;
        border: 0;
        box-shadow: none;
    }

.btn:focus {
    box-shadow: none !important;
}

@media (max-width: 768px) {

    .carousel-item img {
        height: 400px;
    }

    .carousel-caption.hero-content {
        bottom: 15%;
        left: 0;
        right: 0;
        text-align: center;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn-hero-banner {
        font-size: 14px;
        padding: 8px 16px;
    }

    .hero-bottom {
        padding: 20px;
        flex-direction: column;
        gap: 10px;
    }

    .hero-nav {
        text-align: center;
    }
}

/* --------------------- quick link ------------------- */

.row-link {
    outline: 2px solid gray;
}

.links-panel {
    position: relative;
}

    .links-panel::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 40px;
        background: linear-gradient(to bottom, transparent, white);
    }

    .links-panel.expanded::after {
        display: none;
    }

.links-panel {
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    column-count: 1;
}

@media (min-width: 768px) {
    .link-list {
        column-count: 3;
    }
}

@media (min-width: 992px) {
    .link-list {
        column-count: 4;
    }
}

.link-list li {
    break-inside: avoid;
    margin-bottom: 10px;
}


    .link-list li::after {
        content: "";
        display: block;
        width: 80%;
        height: 2px;
        background: #ddd;
        margin-top: 6px;
    }

.link-list a {
    text-decoration: none;
    color: #2a67b1;
    display: block;
    padding: 6px 0;
    font-size: 16px;
}

    .link-list a:hover {
        color: #e32845;
    }

/*------------------campus information --------------------*/

.text-primary-custom {
    color: #111d5e;
}

.campus-btn {
    background-color: #e32845;
    color: white;
    border-radius: 0;
}

/* ------------- cources ---------- */
.coures {
    border-radius: 0;
    transition: 0.3s;
}

    .coures:hover {
        transform: translateY(-5px);
    }
/* -------------------------------------- */
.coures-bg {
    /* background-image: url(../images/coures-img.png);
  background-position: center;
  background-size: cover; */
    height: 300px;
    background: rgba(17, 29, 94, 0.3);
}

.coures-card {
    margin-bottom: -250px;
    position: relative;
    z-index: 2;
}

.course-card {
    background: #fff;
    border-end-end-radius: 50px;
    border-top-left-radius: 50px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: 100%;
    border-top: 4px solid rgb(4, 4, 80);
    border-bottom: 4px solid rgb(4, 4, 80);
}

    .course-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }
/* 
.course-img{
  height: 230px;
  overflow: hidden;
} */

.course-img img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    transition: 0.5s ease;
}

.course-content {
    padding: 8px;
}

.course-tag {
    background: #edf4ff;
    color: #0d6efd;
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 14px;
}

.course-title {
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.course-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.course-info {
    display: flex;
    gap: 15px;
}

.info-box {
    flex: 1;
    background: #f8f9fa;
    border-radius: 12px;
    /* padding: 14px; */
    text-align: center;
}

    .info-box small {
        color: #777;
        display: block;
        margin-bottom: 4px;
    }

    .info-box h6 {
        margin: 0;
        font-weight: 700;
        color: #111;
    }









/* ----------- student review --------------------- */

.testimonial-card {
    border-radius: 0;
    transition: 0.3s;
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 8px rgba(17, 29, 94);
    }

/*===========================================================================================*/
/* ----------------- about ---------------------- */
.about-banner {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

    .about-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


@media (max-width: 768px) {
    .about-banner {
        max-width: 100%;
        height: auto;
    }

        .about-banner > img {
            height: 100%;
            object-fit: cover;
        }
}

/* ---------------------------contact ------------ */

.contact-banner {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

    .contact-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


@media (max-width: 768px) {
    .contact-banner {
        max-width: 100%;
        height: auto;
    }

        .contact-banner > img {
            height: 100%;
            object-fit: cover;
        }
}

.contact-input {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    box-shadow: none;
}

    .contact-input:focus {
        outline: none;
        box-shadow: none;
        border-bottom: 1px solid #000;
    }

.contact-card {
    border-radius: 6px;
    transition: 0.3s;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border: 2px solid #e32845;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

    .icon-circle i {
        color: #e32845;
        font-size: 20px;
    }

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #e32845;
}

    .social-icon:hover {
        background: #e32845;
        color: #fff;
    }

/* ------------- notice ---------- */

.notice-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.notice-list {
    max-height: 300px;
    overflow-y: auto;
}

    .notice-list li {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        transition: 0.3s;
    }

        .notice-list li:hover {
            background: rgba(0,0,0,0.03);
            padding-left: 8px;
        }

.notice-text {
    color: #2a67b1;
    font-weight: 700;
}

.warning-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.warning-img {
    border-radius: 0;
    transition: 0.3s;
}

    .warning-img:hover {
        transform: scale(1.03);
    }

/*-------------------------------- footer -------------------------------*/

.footer-section {
    background: #111d5ef1;
}

    .footer-section i {
        font-size: 18px;
    }

.footer-bottom {
    background: #111d5e;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-link {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-size: 14px;
}

    .footer-link:hover {
        color: #e32845;
    }

/*      demo review      */


.text-color {
    color: #111d5e;
}

.review-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    transition: .3s;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.swiper-slide-active .review-img {
    transform: scale(1.05);
    border-color: #111d5e;
}

.review-text {
    max-width: 900px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    color: #111d5e !important;
    transition: .3s;
}

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: #111d5e;
        color: #fff !important;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px !important;
        font-weight: bold;
    }

@media(max-width:768px) {

    .review-img {
        width: 70px;
        height: 70px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 12px;
        }
}


/*=====================================*/
.link-banner {
    background: linear-gradient(rgba(17, 29, 94, 0.7), rgba(17, 29, 94, 0.7)), url('../images/page-bnner-2.jpg') center/cover no-repeat;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .link-banner {
        height: 200px;
    }
}

.list-wrapper {
    position: relative;
    padding-right: 8rem;
}

.custom-list {
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0;
}

    .custom-list li {
        list-style: none;
        margin-bottom: 8px;
        border-bottom: 1px solid #9e9e9e;
    }

    .custom-list a {
        text-decoration: none;
        color: #2a67b1;
        font-size: 17px;
    }

    .custom-list.expanded {
        max-height: none;
    }

.btn-link {
    color: #e32845;
    font-weight: 600;
    text-decoration: none;
}

    .btn-link:hover {
        box-shadow: none;
        color: #e32845;
    }

    .btn-link:focus {
        box-shadow: none;
        color: #e32845;
    }

@media (max-width: 1117px) {
    .list-wrapper {
        padding-right: 1px;
    }
}
/*====================================================================*/

.wishes-section {
    background: #f9f9f9;
}

.wishes-img img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.wishes-content {
    padding: 10px;
    font-size: 15px;
    line-height: 1.7;
}

.text-primary-custom {
    color: #111d5e;
}
/*  ======== page link start =========*/

/*============= cource & fee structure ========================= */

.table {
    font-size: 14px;
}

    .table thead th {
        letter-spacing: 0.5px;
    }


/*=============== register ================== */

.clean-input {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding-left: 0;
    transition: 0.2s;
}

    .clean-input:focus {
        box-shadow: none;
        border-color: #111d5e;
    }

.form-label {
    font-size: 14px;
    font-weight: 500;
}

.btn-submit {
    background: #e32845;
    color: #fff;
    border-radius: 0;
}

    .btn-submit:hover {
        background: #e32845;
        color: #000000;
    }



@media (min-width: 768px) {
    .sticky-lg {
        position: sticky;
        top: 80px;
    }
}
/* ========= dashboard =========*/

.left-panel {
    background: #111d5e;
    color: #fff;
    min-height: 100vh;
    padding: 40px 25px;
}

.right-panel {
    padding: 40px;
}

.role-item {
    background: #fff;
    border-radius: 0px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.25s;
    border: 1px solid #e5e7eb;
    cursor: pointer;
}

    .role-item:hover {
        background: #f9fafb;
        transform: translateX(6px);
    }

.role-icon {
    font-size: 22px;
    margin-right: 12px;
}

.role-badge {
    font-size: 12px;
    background: #e0e7ff;
    color: #111d5e;
    padding: 4px 10px;
    border-radius: 20px;
}

.title {
    font-weight: 700;
}

@media (max-width: 768px) {
    .left-panel {
        background: #111d5e;
        color: #fff;
        min-height: 40vh;
        padding: 40px 25px;
    }
}
/*=============== page link end ===========*/

/* =========== Grievance start ===========*/

body {
    background-color: #eef1ff;
}

.contact-msg {
    border: 1px solid black;
}

.form-box {
    background: #fff;
    padding: 15px 35px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(17, 29, 94, 0.08);
    border-top: 4px solid #111d5e;
}

.top-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: rgba(17, 29, 94, 0.08);
    color: #111d5e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.form-title {
    color: #111d5e;
}

.form-control {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
}

    .form-control:focus {
        box-shadow: none;
        border-color: #111d5e;
    }

.login-btn {
    background: #111d5e;
    border: none;
    padding: 12px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

    .login-btn:hover {
        background: #0d174d;
        color: #fff;
    }

.forgot-link {
    color: #111d5e;
    text-decoration: none;
    font-weight: 500;
}

    .forgot-link:hover {
        text-decoration: underline;
    }

@media (max-width:768px) {

    .form-box {
        padding: 25px 20px;
    }
}

.contact-banner {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

    .contact-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


@media (max-width: 768px) {
    .contact-banner {
        max-width: 100%;
        height: auto;
    }

        .contact-banner > img {
            height: 100%;
            object-fit: cover;
        }
}

@media (min-width: 768px) {
    .contact-banner {
        max-width: 100%;
        height: auto;
    }

        .contact-banner > img {
            height: 100%;
            object-fit: cover;
        }
}

.register-form-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.247);
}

.clean-input {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding-left: 0;
    transition: 0.1s;
}

    .clean-input:focus {
        box-shadow: none;
        border-color: #111d5e;
    }

.red {
    color: red;
}

.saveregister {
    background: #111d5e;
    color: #fff;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
}

.register label {
    font-weight: 500;
    margin-bottom: 5px;
}

.error-msg {
    color: red;
    font-size: 12px;
    display: none;
}

.is-invalid {
    border: none;
    border-bottom: 1px solid red !important;
}

.form-control.is-invalid:focus {
    border: none;
    box-shadow: none;
}


/* =========== Grievance end ===========*/