/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}

/*** Topbar End ***/


.logo_text {
    line-height: 24px;
    font-weight: 600;
    padding: 5px 9px;
    color: white;
    border-left: 1px solid white;
}

.sticky-top.navbar-light .navbar-brand .logo_text {
    line-height: 24px;
    font-weight: 600;
    padding: 5px 9px;
    color: black;
    border-left: 1px solid black;
}

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 24px 10px;
    color: var(--bs-white) !important;
    font-size: 15px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 30px 15px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    margin: 0px 4px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 60px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--bs-primary) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-primary);
        transition: .5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 250px;
    padding-right: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)); */
    background: linear-gradient(rgb(0 0 0 / 43%), rgb(0 0 0 / 13%));
    background-size: cover;
}

@media (max-width: 768px) {

    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 700px;
        margin-top: -100px;
    }

    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        padding-top: 250px;
        padding-right: 0px;
    }

    .carousel-header .carousel-inner .carousel-item .carousel-caption h1 {
        font-size: 20px;
    }

    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }

    .search-bar {
        margin-top: -100px;
        transition: 0.5s;
    }
}

/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(59, 16, 65, 0.897), rgba(70, 10, 78, 0.377)), url('../images/bg_header1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 130px 0 20px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}

/*** Single Page Hero Header End ***/


/*** About Start ***/

.about {
    background: linear-gradient(rgba(255, 255, 255, .8), rgba(255, 255, 255, 0.498)), url('../images/bg_about.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

/*** About End ***/


/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .testimonial-item img {
    border: 1px dashed var(--bs-primary);
    padding: 1px;
    border-radius: 30px 0px 30px 0px;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 100px;
    height: 100px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--bs-primary);
    border-style: dotted;
    border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-img {
    border: 3px solid var(--bs-white);
    border-style: dotted;
    transition: 0.5s;
}

/*** Testimonial End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

/*** Contact End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}

/*** copyright end ***/


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    /* background: #030f27; */
    background: linear-gradient(rgba(43, 7, 42, 0.788), rgba(0, 0, 0, 0.728)), url('../images/bg_footer.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff;
}

.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
    position: relative;
    margin-bottom: 45px;
}

.footer h2 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #fdbe33;
}

.footer h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #fdbe33;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #fdbe33;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 7px 0;
    text-align: center;
    border: 1px solid rgba(256, 256, 256, .3);
    border-radius: 60px;
    transition: .3s;
}

.footer .footer-social a i {
    font-size: 15px;
    color: #ffffff;
}

.footer .footer-social a:hover {
    background: #fdbe33;
    border-color: #fdbe33;
}

.footer .footer-social a:hover i {
    color: #030f27;
}

.footer .newsletter .form {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.footer .newsletter input {
    height: 50px;
    border: 2px solid #121518;
    border-radius: 0;
}

.footer .newsletter .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fdbe33;
    background: #121518;
    border-radius: 0;
    border: 2px solid #fdbe33;
    transition: .3s;
}

.footer .newsletter .btn:hover {
    color: #121518;
    background: #fdbe33;
}

.footer .footer-menu .f-menu {
    position: relative;
    padding: 15px 0;
    font-size: 0;
    text-align: center;
    border-top: 1px solid rgba(256, 256, 256, .1);
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.footer .footer-menu .f-menu a {
    color: #ffffff;
    font-size: 16px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.719);
}

.footer .footer-menu .f-menu a:hover {
    color: #fdbe33;
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


.footer .copyright {
    padding: 30px 15px;
}

.footer .copyright p {
    margin: 0;
    color: #ffffff;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #fdbe33;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {

    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}






/*====================  GALLERY SECTION CSS START ====================*/

.Gallery_Main_section {
    background: linear-gradient(rgba(6, 155, 181, 0.263), rgba(37, 142, 165, 0.527)), url('../images/bg_eventGallery.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.Gallery_section_div {
    background: linear-gradient(rgba(244, 244, 242, 0.877), rgba(254, 255, 255, 0.237)), url('../image/bg26.jpg');
    height: 100%;
    position: relative;
    background-size: cover;
    border-radius: 1px 1px 7px 7px;
    background-repeat: no-repeat;
    background-position: center;
    padding: 30px;
}

.Gallery_section_div h5 {
    color: white;
    border-radius: 0px 30px 0px 30px;
}

.GallerySwiper {
    width: 100%;
}

.Gallery_section_div .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Gallery_section_div .card {
    background-color: var(--bs-white);
    border-radius: 10px;
}

.Gallery_section_div .card-img-top {
    width: 100%;
    height: 180px !important;
    height: auto;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
}

.Gallery_section_div .card-body {
    padding: 10px;
}

.Gallery_section_div .card-text {
    font-size: 12px;
    color: #333;
}

/* Control Buttons */
.Gallery_control_button {
    height: 55px;
    width: 100%;
    background-color: var(--bs-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    position: absolute;
    bottom: 0;
    border-top: 1px dashed var(--bs-primary);
    left: 0;
    z-index: 99;
    border-radius: 0 0 10px 10px;
}

.Gallery_control_button .btn {
    background: var(--bs-primary);
    color: var(--bs-white);
    border: none;
    padding: 7px 10px;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 12px;
    font-weight: 700;
    box-shadow: none !important;
}


.Gallery_control_button .view_all_btn {
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .Gallery_section_div .card {
        max-width: 100%;
    }
}

/*====================  GALLERY SECTION CSS END ====================*/




/*====================  NOTIFICATION SECTION CSS START ====================*/

.Notification_main_card {
    /* background-color: rgb(203, 190, 190); */
    padding: 10px;
}

.Notification_main_card .Notification_header {
    background-color: var(--bs-light);
    padding: 45px 0px;
    position: relative;
}

.Notification_main_card .Notification_content {
    background: linear-gradient(rgba(247, 246, 246, 0.758), rgba(247, 249, 249, 0.47)), url('../image/notification_bg11.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 20px 10px 20px 20px;
    height: 320px;
}

.Notification_main_card .Notification_content a {
    font-size: 13px;
    color: var(--bs-primary);
    font-weight: 500;
}

.Notification_main_card .Notification_content img {
    height: 17px;
    width: 25px;
    margin-left: 5px;
}

.Notification_main_card .notification_Language span {
    font-size: 12px;
    color: var(--bs-dark);
    font-weight: 700;
}

.Notification_main_card .notification_date span {
    font-size: 12px;
    color: var(--bs-secondary);
    font-weight: 500;
}

.Notification_main_card .Notification_content .NotificationSwiper {
    height: 320px;
    overflow: hidden;
    padding: 0px;
    margin: -19px -3px 0px -13px;
}

.Notification_main_card .Notification_content .NotificationSwiper .swiper-slide {
    position: relative;
    align-items: center;
    padding: 0px 0px 0px 17px;
    margin: 2px 0px 0px 2px;
    border-bottom: 1px dashed var(--bs-dark);
    border-left: 4px solid var(--bs-primary);
}

.Notification_main_card .Notification_content .NotificationSwiper .swiper-slide::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 20px;
    background: var(--bs-primary);
    clip-path: polygon(100% 50%, 0% 0%, 0% 100%);
}

.Notification_main_card .Notification_footer {
    padding: 12px 18px;
    background: var(--bs-light);
    border-radius: 0px 0px 5px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed var(--bs-primary);
}

.Notification_main_card .Notification_footer_btn .btn {
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 9px;
    margin-right: 6px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s ease;
    box-shadow: none !important;
}

.Notification_main_card .Notification_footer_btn .btn:hover {
    background: #2d9089;
    box-shadow: none !important;
}

.Notification_main_card .Notification_footer_btn_link a {
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 9px;
    font-size: 12px;
    border-radius: 4px;
    transition: 0.3s ease;
    box-shadow: none !important;
}

.Notification_footer_btn_link a:hover {
    background: #2d9089;
    box-shadow: none !important;
}


.Notification_main_card .Notification_Ribbon {
    padding: 0px 25px;
}

.Notification_main_card .Notification_Ribbon span {
    font-size: 20px;
    font-weight: 700;
    color: var(--bs-white);
}

.Notification_main_card .Notification_Ribbon i {
    font-size: 20px;
    font-weight: bold;
    color: var(--bs-white);
}

.Notification_main_card .Notification_Ribbon {
    --d: .8em;
    /* the depth */

    position: absolute;
    top: 65%;
    translate: 0 -40%;
    inset-inline: calc(-1*var(--d));
    padding-block: var(--d);
    line-height: 1.8;
    clip-path: polygon(0 var(--d), calc(100% - var(--d)) var(--d), calc(100% - var(--d)) 0, 100% var(--d), 100% calc(100% - var(--d)), var(--d) calc(100% - var(--d)), var(--d) 100%, 0 calc(100% - var(--d)));
    border-image: conic-gradient(#0008 0 0) 50%/var(--d);
    background-color: var(--bs-primary);
}


/*====================  NOTIFICATION SECTION CSS END ====================*/





/***======================== news css start ================= ***/
.news_head {
    border-radius: 10px 0px 0px 10px;
    font-size: 15px;
    padding: 10px 20px;
    background: var(--bs-primary);
    clip-path: polygon(0 0, 79% 0, 90% 50%, 80% 100%, 0 100%);
}

.news-ticker {
    border-radius: 0px 10px 10px 0px;
    position: relative;
    overflow: hidden;
    height: 35px !important;
    display: flex;
    align-items: center;
    padding-right: 90px;
}

.news_button {
    position: relative;
    align-items: center;
    padding-right: 90px;
}

/* target the actual swiper container class */
.NewsSwiper {
    height: 30px !important;
    width: 100%;
    white-space: nowrap !important;
}

.newsSwiper .swiper-wrapper {
    display: flex;
    white-space: nowrap !important;
}

.NewsSwiper .swiper-slide {
    white-space: nowrap;
    font-weight: 600;
    font-size: 13px;
    align-items: center;
    margin-right: 40px;
    white-space: nowrap !important;
    padding: 5px 0px 0px 0px;
}

.NewsSwiper .swiper-slide i {
    margin-right: 8px;
    color: var(--bs-secondary);
}

/* Buttons */
.news-controls {
    position: absolute;
    right: 21px;
    bottom: -14px;
    z-index: 10;
}


/* Mobile view (up to 767px wide) */
@media screen and (max-width: 767px) {
    .news-controls {
        position: absolute;
        right: 4px;
        bottom: -14px;
        z-index: 10;
    }
}


.news-controls button {
    background: var(--bs-primary) !important;
    border: none;
    color: var(--bs-white);
    padding: 4px 6px;
    margin-left: 2px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.news-controls button:hover {
    background: #d45e00;
}

@media (max-width: 767px) {
    .NewsSwiper .swiper-slide {
        font-size: 14px;
        margin-right: 30px;
    }

    .news-ticker {
        border-radius: 0px 20px 20px 0px;
        position: relative;
        overflow: hidden;
        height: 35px !important;
        display: flex;
        align-items: center;
        padding-right: 0px;
    }
}

/***======================== news css end ================= ***/


/***======================== leadership-section css start ================= ***/

.leadership-section {
    padding: 0px 0px;
    background: linear-gradient(rgba(255, 255, 255, 0.228), rgba(255, 255, 255, 0.918)), url('../images/bg_white.jpg');
    background-size: contain;
    position: relative;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.leader-card {
    text-align: center;
}

.leader-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 6px solid #fff;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
}

.leader-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0a2d7a;
    margin-bottom: 6px;
}

.leader-card p {
    font-size: 12px;
    color: #000;
    line-height: 1.5;
    margin: 0;
}

/***======================== leadership-section css end ================= ***/





/***======================== upper header navbar start================= ***/

.Main_header_nav a {
    font-size: 11px;
    padding: 1px 4px 1px 4px !important;
    border-right: 1px solid rgb(254, 254, 254);
    margin: 6px 0px 6px 0px;
    color: white !important;
    font-weight: 600;
}

.Main_header_nav img {
    height: 21px !important;
}

.Main_header_nav_icon a img {
    height: 23px;
    width: 23px;
    line-height: -24px;
    background-color: var(--bs-primary);
    margin: 6px 5px 0px 1px;
    font-size: 0.8em;
    padding: 4px 4px;
    border-radius: 8%;
    font-weight: 200;
    text-align: center;
}

.Main_header_nav_icon span {
    border-left: 1px solid rgb(255, 255, 255);
    height: 24px;
    margin: 5px 4px 5px 1px;
}

.Main_header_nav_dateTime span {
    color: white;
    font-weight: 600;
    font-size: 13px;
}

.navbar-brand .navbar_icon_text {
    font-size: 16px;
    margin: 0px;
    padding: 0px;
    margin-top: 8px;
    margin-left: 3px;
}

/***======================== upper header navbar end================= ***/


/* ===== =---------------    Sitemap Tree code Start  ---------========== ===== */
.siteMa_Section {
    background: #ffffff;
    border-radius: 10px;
}

.sitemap-tree {
    list-style: none;
    padding-left: 20px;
    margin: 0;
    position: relative;
}

/* ROOT vertical line */
.sitemap-tree::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8px;
    height: 100%;
    border-left: 2px dotted #999;
}

/* Root LI */
.sitemap-tree>li {
    position: relative;
    margin: 14px 0;
    padding-left: 29px;
}

/* Root horizontal connector */
.sitemap-tree>li::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 8px;
    width: 20px;
    border-top: 2px dotted #999;
}

/* Child UL */
.sitemap-tree li ul {
    list-style: none;
    margin-top: 10px;
    margin-left: 25px;
    padding-left: 25px;
    border-left: 2px dotted #999;
}

/* Child LI */
.sitemap-tree li ul li {
    position: relative;
    margin: 10px 0;
}

/* Child horizontal connector */
.sitemap-tree li ul li::before {
    content: "";
    position: absolute;
    top: 18px;
    left: -25px;
    width: 25px;
    border-top: 2px dotted #999;
}

/* Pill Style */
.sitemap-tree a,
.sitemap-tree span {
    display: inline-block;
    padding: 8px 18px;
    background: #f4eeff;
    border-radius: 25px;
    font-size: 13px;
    color: #000;
    text-decoration: none;
    max-width: 100%;
}

/* Hover */
.sitemap-tree a:hover {
    background: var(--bs-primary) !important;
    color: #fff;
}

@media (max-width: 768px) {

    /* Container padding reduce */
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* Sitemap tree adjust */
    .sitemap-tree {
        padding-left: 10px;
    }

    /* Root vertical line thodi andar */
    .sitemap-tree::before {
        left: 4px;
    }

    /* Root LI */
    .sitemap-tree>li {
        padding-left: 15px;
    }

    .sitemap-tree>li::before {
        left: 4px;
        width: 15px;
    }

    /* Child UL */
    .sitemap-tree li ul {
        margin-left: 15px;
        padding-left: 15px;
    }

    /* Child connector */
    .sitemap-tree li ul li::before {
        left: -15px;
        width: 15px;
    }

    /* Pills full width on mobile */
    .sitemap-tree a,
    .sitemap-tree span {
        display: block;
        width: 100%;
        font-size: 14px;
        padding: 8px 14px;
    }
}

/* ===== =---------------    Sitemap Tree code End  ---------========== ===== */


/***======== Gallery Start=========== ***/
.project-item {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 30px 30px 30px 30px;
    overflow: hidden;
}

.project-item::before {
    content: "";
    width: 100%;
    height: 40%;
    background: var(--bs-dark);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}


.project-item::after {
    content: "";
    width: 100%;
    height: 60%;
    background: var(--bs-primary);
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}

.project-left {
    width: 180px;
    height: 70px;
    position: absolute;
    top: 22%;
    left: -18%;
    rotate: 30deg;
    z-index: 2;
}

.project-right {
    width: 180px;
    height: 70px;
    position: absolute;
    top: 22%;
    right: -18%;
    rotate: -30deg;
    z-index: 2;
}

.project-item img {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-item a {
    position: absolute;
    padding: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(-360deg);
    border-radius: 10px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    opacity: 0;
    font-size: 17px;
    align-items: justify;
}

.project-item:hover a {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    background: var(--bs-primary);
    color: var(--bs-white) !important;
    opacity: 1;

}


/***======== Gallery End=========== ***/


/***======== Video Gallery Start=========== ***/
.video-item {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 30px;
    overflow: hidden;
}
.video_section_inner {
    position: relative;
    overflow: hidden;
}

.video-item::before {
    content: "";
    width: 100%;
    height: 40%;
    background: var(--bs-dark);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 10px;
}

.video-item::after {
    content: "";
    width: 100%;
    height: 60%;
    background: var(--bs-primary);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    border-radius: 10px;
}

.project-left {
    width: 180px;
    height: 70px;
    position: absolute;
    top: 22%;
    left: -18%;
    rotate: 30deg;
    z-index: 2;
}

.project-right {
    width: 180px;
    height: 70px;
    position: absolute;
    top: 22%;
    right: -18%;
    rotate: -30deg;
    z-index: 2;
}

.video-item video {
    position: relative;
    width: 100%;
    height: 260px;
    z-index: 2;
    border-radius: 10px;
    object-fit: cover;
}

.video-caption {
    position: absolute;
    bottom: 45%;
    width: 80%;
    left: 10%;
    border-radius: 8px;
    background: rgb(0 0 0 / 9%);
    color: #fff;
    font-weight: 600;
    padding: 10px;
    text-align: center;
    font-size: 15px;
    z-index: 2;
}

/***======== Video Gallery End=========== ***/

/* ===== Board Member Section ===== */
/* Heading */
.title-tag {
    display: inline-flex;
    align-items: center;
    background: #f1f5ff;
    color: var(--bs-primary);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    border: 1px dashed var(--bs-primary);
    box-shadow: 0 4px 10px var(--bs-light);
}

/* Card wrapper */
.board-card {
    background: var(--bs-white);
    border-radius: 7px;
    padding: 30px;
    box-shadow: 0px 0px 15px 0px rgba(71, 57, 83, 0.288);
}

/* Table styling */
.board-table table {
    width: 100%;
    white-space: nowrap;
}

.board-table td {
    vertical-align: top;
    white-space: normal;
    font-size: 14px;
}

/* =====  DataTable CSS Start===== */
.dataTables_wrapper {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: var(--bs-primary) !important;
}

.dataTables_filter input {
    border: 1px solid var(--bs-primary) !important;
    border-radius: 6px;
    padding: 6px 10px;
    background-color: var(--bs-white) !important;
    color: var(--bs-primary) !important;
    box-shadow: none !important;
}

.dataTables_filter label {
    font-weight: 600;
    color: var(--bs-primary) !important;
}

.dataTables_length select {
    border: 1px solid var(--bs-primary) !important;
    box-shadow: none !important;
    border-radius: 3px !important;
    background-color: var(--bs-white) !important;
    color: var(--bs-primary) !important;
}

.dataTables_length label {
    font-weight: 600;
    color: var(--bs-primary) !important;
}

.dataTables_info {
    font-weight: 600;
    color: var(--bs-primary) !important;
    margin-top: 10px;
}

.dataTables_paginate .previous {
    border: 1px solid var(--bs-primary) !important;
    background: var(--bs-primary) !important;
    color: var(--bs-primary) !important;
    border-radius: 10px 0px 0px 10px;
    margin-right: 5px;
    font-weight: 600;
    box-shadow: none !important;
}

.dataTables_paginate .next {
    border: 1px solid var(--bs-primary) !important;
    background: var(--bs-primary) !important;
    color: var(--bs-primary) !important;
    border-radius: 0px 10px 10px 0px;
    margin-left: 5px;
    font-weight: 600;
    padding: 0px 0px 0px 1px;
    box-shadow: none !important;
}

/* Active page */
.dataTables_paginate .page-item.active .page-link {
    background: var(--bs-dark) !important;
    border-color: var(--bs-primary) !important;
    color: #fff !important;
    margin: 0px 3px;
    font-weight: 600;
    box-shadow: none !important;
}

/* Active page */
.dataTables_paginate .page-item .page-link {
    background: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    color: #fff !important;
    font-weight: 600;
    border-radius: 50% !important;
    box-shadow: none !important;
}


table.dataTable thead {
    background: var(--bs-primary);
    color: var(--bs-white);
}

table.dataTable {
    table-layout: auto !important;
    width: 100% !important;
}

table.dataTable td,
table.dataTable th {
    white-space: normal !important;
    word-break: break-word !important;
}

table.dataTable {
    table-layout: fixed;
}

/* ===== Mobile column width fix ===== */
@media (max-width: 768px) {
    table.dataTable {
        table-layout: fixed !important;
        width: 800px !important;
    }

    table.dataTable th:nth-child(1),
    table.dataTable td:nth-child(1) {
        width: 15% !important;
    }

    table.dataTable th:nth-child(2),
    table.dataTable td:nth-child(2) {
        width: 35% !important;
    }

    table.dataTable th:nth-child(3),
    table.dataTable td:nth-child(3) {
        width: 50% !important;
    }
}

/* =====  DataTable CSS End===== */



/* ===== Home Section Css Start===== */
.login-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Layer */
.login-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(130, 4, 193, 0.393), rgba(158, 2, 205, 0.457)), url('../images/Home_bg2.jpg') center/cover no-repeat;
    animation: bgZoom 12s ease-in-out infinite alternate;
    transform-origin: center;
    z-index: -1;
}

/* Zoom Animation */
@keyframes bgZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}


/* Main Card */
.login-card {
    background: rgba(254, 246, 255, 0.8);
    border-radius: 16px;
    padding: 20px 40px;
    max-width: 900px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    position: relative;
    overflow: hidden;
}

/* subtle top accent */
.login-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: linear-gradient(90deg, #c58b1e, #f3c15b);
}

/* Header */
.login-header {
    position: relative;
    padding: 10px 60px;
}

.login-header h3 {
    color: #9c6b12;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}

.logo {
    width: 64px;
    position: absolute;
    top: 5px;
}

.left-logo {
    left: 0;
}

.right-logo {
    right: 0;
}

hr {
    border-top: 1px solid #e2e2e2;
}

/* Subtitle */
.login-card h5 {
    font-size: 15px;
    color: #444;
}

/* ===== Option Cards ===== */
.option-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 26px 18px;
    text-align: center;
    height: 100%;
    cursor: pointer;
    border: 1px solid #e5e5e5;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* glow layer */
.option-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(197, 139, 30, 0.25), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s;
}

.option-card:hover::before {
    opacity: 1;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(197, 139, 30, 0.35);
    border-color: #c58b1e;
}

/* Icon animation */
.option-card i {
    font-size: 42px;
    margin-bottom: 12px;
    transition: transform 0.35s ease;
}

.option-card:hover i {
    transform: translateY(-6px) scale(1.15);
}

/* Text */
.option-card h6 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.option-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Footer */
.login-footer {
    margin-top: 25px;
    padding-top: 12px;
    border-top: 1px solid #e1e1e1;
}

.login-footer span {
    color: #9c6b12;
    font-weight: 700;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .login-card {
        padding: 25px 20px;
    }

    .login-header h3 {
        font-size: 18px;
    }

    .logo {
        width: 36px;
    }
}

/* ===== Home Section Css End===== */