
/*** 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 ***/

.whatsapp_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    top: 75%;
    left: 94.3%;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 888;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    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-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    BACKGROUND: #56ab10;
    border: none;
}

    .btn.btn-primary:hover {
        background: #ffffff;
        color: black;
    }

.btn.btn-secondary {
    color: #052341;
    background: #56ab10;
}

    .btn.btn-secondary:hover {
        background: #19409a;
    }
/*** Topbar Start ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 4px;
    padding: 20px 0px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    /* color: #ffffff;*/
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    /* max-height: 45px;*/
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: #56ab10;
    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.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid #56ab10;
        color: #56ab10;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, .08);
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-brand img {
        max-height: 155px;
    }
}

@media (min-width: 992px) {



    .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;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-top: 0;
        border-right: 0;
        border-bottom: 1px solid;
        border-left: 0;
        border-style: dotted;
        z-index: 999;
        background: #b6b0b073;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #ffffff;
        border: none;
    }

    .navbar-light .navbar-nav .nav-item::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #1d5a92;
        transition: .5s;
    }

    .sticky-top.navbar-light .navbar-nav .nav-item::before {
        bottom: 0;
    }

    .navbar-light .navbar-nav .nav-item::after {
        content: "";
        position: absolute;
        bottom: 1px;
        left: 50%;
        transform: translateX(-50%);
        border: 10px solid;
        border-color: transparent transparent #56ab10 transparent;
        opacity: 0;
        transition: 0.5s;
    }

    .navbar-light .navbar-nav .nav-item:hover::after,
    .navbar-light .navbar-nav .nav-item.active::after {
        bottom: 1px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-item:hover::before,
    .navbar-light .navbar-nav .nav-item.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}
/*** Carousel Hero Header Start ***/
.carousel-header {
    position: relative;
    overflow: hidden;
}

.carousel-indicators {
    display: none;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: 0;
}

    .carousel .carousel-control-prev .carousel-control-prev-icon,
    .carousel .carousel-control-next .carousel-control-next-icon {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        padding: 25px 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #001442;
        transition: 0.5s;
    }

    .carousel .carousel-control-prev .carousel-control-prev-icon {
        left: 0;
        border-left: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 50px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 50px;
    }

    .carousel .carousel-control-next .carousel-control-next-icon {
        right: 0;
        border-right: 0;
        border-top-left-radius: 50px;
        border-top-right-radius: 0;
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 0;
    }

        .carousel .carousel-control-prev .carousel-control-prev-icon:hover,
        .carousel .carousel-control-next .carousel-control-next-icon:hover {
            background: var(--bs-secondary);
        }

.carousel .carousel-inner .carousel-item {
    position: relative;
}

    .carousel .carousel-inner .carousel-item .carousel-caption-1 {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        padding-top: 100px;
        display: flex;
        align-items: center;
        justify-content: end;
        background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
        background-size: cover;
    }

.carousel-caption-1-content {
    text-align: end;
    padding-right: 100px;
}

    .carousel-caption-1-content .carousel-caption-1-content-btn {
        display: flex;
        justify-content: end;
    }

.carousel .carousel-inner .carousel-item .carousel-caption-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

.carousel-caption-2-content {
    text-align: start;
    padding-left: 100px;
}

    .carousel-caption-2-content .carousel-caption-2-content-btn {
        display: flex;
        justify-content: start;
    }


@media (max-width: 992px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px;
        margin-top: -100px;
    }

        .carousel .carousel-inner .carousel-item img {
            height: 700px;
            object-fit: cover;
        }


        .carousel .carousel-inner .carousel-item .carousel-caption-1 {
            max-width: 100% !important;
            justify-content: center;
        }

    .carousel-caption-1-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

        .carousel-caption-1-content .carousel-caption-1-content-btn {
            justify-content: center;
        }


    .carousel .carousel-inner .carousel-item .carousel-caption-2 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-2-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

        .carousel-caption-2-content .carousel-caption-2-content-btn {
            justify-content: center;
        }



    .carousel .carousel-control-prev .carousel-control-prev-icon,
    .carousel .carousel-control-next .carousel-control-next-icon {
        display: none;
    }
}

.modal .modal-header {
    height: 100px;
    /* background: #1e4770; */
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .6);
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), url(../img/lab.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 60px 0;
    transition: 0.5s;
}

    .bg-breadcrumb .breadcrumb {
        position: relative;
    }

        .bg-breadcrumb .breadcrumb .breadcrumb-item a {
            color: var(--bs-white);
        }

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}
/*** Single Page Hero Header End ***/


/*** Features Start ***/
.feature .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bs-white);
    border-radius: 10px;
    transition: 0.5s;
    height: 300px;
}

    .feature .feature-item:hover {
        box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    }

    .feature .feature-item .feature-icon {
        width: 100px;
        height: 100px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #56ab10;
    }

        .feature .feature-item .feature-icon i {
            transition: 0.5s;
        }

    .feature .feature-item:hover .feature-icon i {
        transform: rotate(360deg);
    }

    .feature .feature-item a.btn {
        transition: 0.5s;
    }

    .feature .feature-item:hover a.btn:hover {
        color: var(--bs-primary) !important;
    }
/*** Features End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
    padding-bottom: 30px;
    margin-top: 30px;
    margin-left: 30px;
    max-height: 535px;
}

    .about .about-img::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 10px;
        top: -30px;
        right: 0;
        border-radius: 10px;
        background: #56ab10;
    }

    .about .about-img::after {
        content: "";
        position: absolute;
        width: 10px;
        height: 100%;
        left: -30px;
        bottom: 30px;
        border-radius: 10px;
        background: #56ab10;
    }

    .about .about-img .about-exp {
        position: absolute;
        top: 0;
        left: 0;
        padding: 25px;
        font-size: 30px;
        font-weight: bold;
        background: var(--bs-secondary);
        color: var(--bs-white);
        border: 1px solid var(--bs-secondary);
        margin-top: -30px;
        margin-left: -30px;
        border-radius: 10px;
    }
/*** About End ***/

/*** Service Start ***/
.service-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

    .service-item::after {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        left: 0;
        bottom: 0;
        border-radius: 10px;
        background: #19409a;
        transition: 0.5s;
        z-index: 1;
    }

    .service-item:hover::after {
        width: 100%;
        height: 100%;
    }

    .service-item:hover .service-content,
    .service-item:hover .service-btn {
        position: relative;
        z-index: 2;
    }

    .service-item .service-content a,
    .service-item .service-content p {
        transition: 0.5s;
    }

    .service-item:hover .service-content a:hover {
        color: var(--bs-secondary);
    }

    .service-item:hover .service-content p {
        color: var(--bs-white);
    }

    .service-item .service-btn {
        width: 80px;
        height: 80px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #56ab10;
        transition: 0.5s;
    }

        .service-item .service-btn i {
            transition: 0.5s;
        }

    .service-item:hover .service-btn {
        background: var(--bs-white);
    }

        .service-item:hover .service-btn i {
            transform: rotate(360deg);
            color: var(--bs-primary) !important;
        }
/*** Service End ***/


/*** Counter Start ***/
.counter {
    position: relative;
    overflow: hidden;
    background: linear-gradient(106deg, rgb(22 59 94), rgb(3 73 139)), url(../img/fact-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

    .counter .counter-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

        .counter .counter-item .counter-item-icon {
            width: 100px;
            height: 100px;
            border-radius: 50px;
            background: #afbec1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
/*** Counter End ***/


/*** Products Start ***/
.product .product-item {
    border: 1px solid rgba(196, 211, 211, 0.9);
    border-radius: 10px;
}

/*** Products End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
    height: 600px;
}

    .blog .blog-item:hover {
        box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    }

    .blog .blog-item .blog-img {
        position: relative;
        overflow: hidden;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

        .blog .blog-item .blog-img::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            transition: 0.5s;
            z-index: 1;
        }

        .blog .blog-item .blog-img img {
            transition: 0.5s;
            height: 350px;
        }

    .blog .blog-item:hover .blog-img img {
        transform: scale(1.2);
    }

    .blog .blog-item:hover .blog-img::after {
        background: rgba(0, 209, 249, 0.2);
    }

    .blog .blog-item .blog-date {
        position: absolute;
        top: 25px;
        left: 25px;
        border-radius: 10px;
        background: var(--bs-primary);
        color: var(--bs-white);
        z-index: 2;
    }

    .blog .blog-item .blog-content a {
        transition: 0.5s;
    }

    .blog .blog-item:hover .blog-content a:hover {
        color: var(--bs-primary) !important;
    }
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    overflow: hidden;
    background: var(--bs-white);
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
}

    .team .team-item .team-inner {
        transition: 0.5s;
    }

    .team .team-item:hover .team-inner {
        box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    }

    .team .team-item .team-inner .team-img {
        position: relative;
        z-index: 2;
    }

        .team .team-item .team-inner .team-img::after {
            content: "";
            width: 100%;
            height: 0;
            position: absolute;
            top: 0;
            left: 0;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            background: rgba(0, 209, 249, 0.2);
            transition: 0.5s;
            z-index: 3;
        }

    .team .team-item:hover .team-inner .team-img::after {
        height: 100%;
    }

    .team .team-item .team-inner .team-img .team-share {
        position: absolute;
        left: 10px;
        bottom: 10px;
        transition: 0.5s;
        z-index: 2;
    }

    .team .team-item:hover .team-inner .team-img .team-share {
        opacity: 0;
    }

    .team .team-item .team-inner .team-img .team-icon {
        position: absolute;
        bottom: 0;
        left: -100%;
        border-bottom-left-radius: 0 !important;
        border-top-left-radius: 0 !important;
        display: inline-flex;
        background: var(--bs-primary);
        transition: 0.5s;
        z-index: 4;
    }

    .team .team-item:hover .team-inner .team-img .team-icon {
        left: -25px;
    }
/*** Team End ***/


/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    background: #0f589e;
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

    .testimonial .owl-nav .owl-prev:hover {
        background: var(--bs-secondary);
        color: var(--bs-white);
    }

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    background: #0f589e;
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

    .testimonial .owl-nav .owl-next:hover {
        background: var(--bs-secondary);
        color: var(--bs-white);
    }

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-left: 20px;
    margin-top: 20px;
    gap: 5px;
}

    .testimonial-carousel .owl-dots .owl-dot {
        width: 20px;
        height: 20px;
        border-radius: 20px;
        border: 1px solid #0f5132;
        background: var(--bs-secondary) !important;
        transition: 0.5s;
    }

        .testimonial-carousel .owl-dots .owl-dot.active {
            width: 20px;
            height: 20px;
            border-radius: 20px;
            border: 1px solid var(--bs-primary);
            background: var(--bs-secondary) !important;
            transition: 0.5s;
        }

        .testimonial-carousel .owl-dots .owl-dot span {
            position: relative;
            margin-top: 50%;
            margin-left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

            .testimonial-carousel .owl-dots .owl-dot span::after {
                content: "";
                width: 8px;
                height: 8px;
                border-radius: 8px;
                position: absolute;
                top: 50%;
                left: 0;
                transform: translateY(-50%);
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                background: var(--bs-white);
            }

@media (max-width: 992px) {
    .owl-carousel.testimonial-carousel {
        padding-top: 30px;
    }

    .testimonial .owl-nav .owl-prev,
    .testimonial .owl-nav .owl-next {
        top: -30px;
    }
}
/*** testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

    .footer .footer-item a {
        line-height: 35px;
        color: white;
        transition: 0.5s;
    }

    .footer .footer-item p {
        line-height: 35px;
        color: white;
    }

    .footer .footer-item a:hover {
        color: #1ed580;
    }

    .footer .footer-item .footer-btn a,
    .footer .footer-item .footer-btn a i {
        transition: 0.5s;
    }

        .footer .footer-item .footer-btn a:hover {
            background: var(--bs-white);
        }

            .footer .footer-item .footer-btn a:hover i {
                color: var(--bs-primary) !important;
            }
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/




.left-column {
    background-color: #1d5a3d;
    color: white;
    padding: 15px;
    height: 100%;
}

    .left-column .heading {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .left-column .result-list {
        list-style-type: none;
        padding-left: 0;
    }

        .left-column .result-list li {
            margin-bottom: 8px;
        }

.right-column {
    /*background-color: #f8f9fa; */
    color: black;
    padding: 15px;
    height: 100%;
}

    .right-column .heading {
        font-size: 24px;
        color: black;
        margin-bottom: 10px;
    }

    .right-column .form-group {
        margin-top: 62px;
    }

    .right-column .form-control {
        border-top: none;
        border-left-color: white;
        border-right-color: white;
        border-bottom: 2px solid #2fc17c;
        background-color: #fff;
    }

.dpmi-btn {
    background-color: #1d5a3d;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
}

    .dpmi-btn:hover {
        background-color: #155a3d;
    }

.fixedbtn {
    width: auto;
    position: fixed;
    top: 45%;
    right: -61px;
    z-index: 22;
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
}

    .fixedbtn .btnrt {
        border: none;
        background-color: #19409a;
        width: auto;
        height: 50px;
        color: #fff;
        cursor: pointer;
        outline: none;
        text-transform: uppercase;
        font-size: 14px;
        padding: 10px 20px;
        letter-spacing: 1.5px;
        transition: all 0.5s ease;
    }

.logo-img {
    /* height: 50px;*/
    width: auto;
    margin-right: 5.5px;
}

.classlogo {
    font-size: 54px;
    color: #ffffff;
    font-weight: 900;
    margin: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.ms-2 {
    margin-left: -0.1em !important;
}

.classlogo {
    /* font-size: 44px;*/
    color: #ffffff;
    font-weight: 900;
    margin: 0;
    transition: color 0.3s ease-in-out;
}

    .classlogo span {
        display: block;
        font-size: 12px;
        margin-bottom: 12px;
        line-height: 4px;
    }

.scrolled-name {
    color: #006400;
}

.custom-close {
    position: absolute;
    top: -1px;
    right: -1px;
    background-color: green;
    color: white;
    /* border: none; */
    padding: 0px 9px;
    font-size: 16px;
    cursor: pointer;
    border-radius: revert;
    width: 30px;
    height: 30px;
    z-index: 8;
}


.custom-modal {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    position: relative;
}



.custom-close:hover {
    background-color: darkgreen;
}


.enquiry-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

/
.input-border-bottom {
    border: none;
    border-bottom: 2px solid grey;
    border-radius: 0;
    padding: 10px;
    font-size: 16px;
}

.input-border-bottom:focus {
    border-bottom: 2px solid blue;
    outline: none;
    box-shadow: none;
}


.form-label {
    font-weight: bold;
    color: #555;
}

.btn-submit {
    background-color: blue;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

    .btn-submit:hover {
        background-color: darkblue;
    }

.popup-overlay.show {
    visibility: visible;
    opacity: 1;
    z-index: 9999;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s;
}

    .popup-overlay.show .popup-content {
        transform: translateY(0);
        opacity: 1;
    }

.popup-content {
    position: relative;
    z-index: 9999;
    background: white;
    padding: 20px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    transform: translateY(-100%);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.close-btn {
    position: absolute;
    top: -9px;
    right: 3px;
    font-size: 25px;
    cursor: pointer;
    color: #ef6c00;
    z-index: 999;
}




@media screen and (min-width: 375px) and (max-width: 992px) {

    .btn.btn-primary {
        color: var(--bs-white);
        BACKGROUND: #56ab10;
        border: none;
        font-size: xx-large;
        border-radius: 50px;
        /* padding: 5px; */
    }

    .enquiry-title {
        text-align: center;
        font-size: 54px;
        font-weight: bold;
        margin-bottom: 20px;
        color: #333;
        padding: 10px;
    }

    .popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0s, opacity 0.3s;
    }

    .form-control {
        display: block;
        width: 100%;
        padding: 20px;
        font-size: 40px;
        font-weight: 400;
        line-height: 1.5;
        color: gray;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid #ced4da;
        appearance: none;
        border-radius: 10px;
        transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }

    .popup-overlay.show .popup-content {
        transform: translateY(0);
        opacity: 1;
        height: 1000px;
    }

    .popup-content {
        position: relative;
        top: -20%;
        z-index: 9999;
        background: white;
        padding: 20px;
        max-width: 800px;
        /* width: 100%; */
        height: 600px;
        text-align: center;
        transform: translateY(-100%);
        transition: transform 0.5s ease, opacity 0.5s ease;
        opacity: 0;
    }


    .close-btn {
        position: absolute;
        top: -9px;
        right: 3px;
        font-size: 25px;
        cursor: pointer;
        color: #ef6c00;
        z-index: 999;
    }



    .whatsapp_float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 40px;
        right: 40px;
        top: 75%;
        left: 91%;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        z-index: 888;
    }

    .classlogo {
        color: #499229;
        font-size: 100px;
    }

        .classlogo span {
            display: block;
            font-size: 22px;
            margin-bottom: 12px;
            line-height: 4px;
        }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: white;
    }

    .navbar-collapse {
        margin-top: 60px;
    }
}

@media screen and (min-width: 993px) and (max-width: 1281px) {



    .navbar-light .navbar-nav .nav-link {
        position: relative;
        margin-right: 10px;
        padding: 35px 0;
        color: #ffffff;
        font-size: 14px;
        font-weight: 600;
        outline: none;
        transition: .5s;
    }
}

.custom-green-btn {
    background-color: green;
    color: white;
    border: none;
    padding: 0px;
    font-size: 25px;
    cursor: pointer;
    border-radius: 0;
    transition: background-color 0.3s ease;
    position: fixed;
    top: -0px;
    right: 0px;
    width: 40px;
    height: 40px;
    z-index: 1000;
}

.btn:hover {
    color: #ffffff;
}





.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-image {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    object-fit: cover;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 41%;
    transform: translateY(-50%);
    background-color: #19409a;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    z-index: 1;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-prev {
    left: 50px;
}

.carousel-next {
    right: 50px;
}


    .carousel-prev:hover, .carousel-next:hover {
        background-color: darkblue;
        transform: translateY(-50%) scale(1.1);
    }


@media (max-width: 480px) {
    .carousel-prev, .carousel-next {
        font-size: 25px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .carousel-image {
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .carousel-prev, .carousel-next {
        font-size: 18px;
    }
}



.vrifcations {
    background: #1d5a3d;
}

.vrifcation {
    background: #19409a;
}

.btn.btn-primary {
    color: #19409a;
    BACKGROUND: #ffffff;
    border: none;
}

.icon {
    text-align: center;
    padding: 15px 0px 0px 0px;
}

.spanadress {
    color: black;
    text-align: center;
    font-size: 14px;
    font-family: "Rokkitt", serif;
}
/*.student_detail2 {
    padding: 50px 190px 50px 190px;

}*/

.student_detail1 {
    padding: 10px 100px 10px 100px;
}



@media screen and (min-width: 375px) and (max-width: 992px) {





    .custom-student-table th, .custom-student-table td {
        border: 2px solid #aaabaa;
        padding: 10px;
        text-align: left;
        font-size: x-large;
    }


    .student_detail1 {
        padding: 0;
    }


    .custom-header-cell, .custom-data-cell {
        padding: 10px;
        font-size: xx-large;
        text-align: left;
        border: 1px solid #ddd;
    }

    .custom-table td, .custom-summary-table td, .custom-marks-table td {
        padding: 12px;
        text-align: left;
        border: 1px solid #ddd;
        FONT-SIZE: xx-large;
    }

    .custom-table th, .custom-summary-table th, .custom-marks-table th {
        padding: 15px;
        text-align: left;
        background-color: #0044cc;
        color: white;
        FONT-SIZE: 20PX;
        LINE-HEIGHT: 40PX;
    }

    .sectionmarksheet th {
        font-size: 24px;
        padding: 15px; /* Increase padding */
    }

    .sectionmarksheet1 td {
        font-size: 24px; /* Even larger font for headers */
    }

    .tablehead th {
        font-size: xx-large;
    }
}


/* Custom Styles */
.custom-container {
    padding: 20px;
}

.custom-student-img {
    /*   width: 100%;*/
    height: 100%;
    object-fit: cover;
}

.image-container {
    height: 100%; /* Ensure the container is as tall as the column */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Table Styles */
.custom-detail-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-header-cell,
.custom-data-cell {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

.custom-summary-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

.custom-summary-cell {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.custom-summary-header-row th {
    background-color: #f2f2f2;
}

.custom-table th, .custom-summary-table th, .custom-marks-table th {
    /*padding: 15px;*/
    text-align: left;
    background-color: #0044cc;
    color: white;
    FONT-SIZE: 20PX;
    LINE-HEIGHT: 40PX;
}

.custom-table th, .custom-summary-table th, .custom-marks-table th {
    /* padding: 15px;*/
    text-align: left;
    background-color: #0044cc;
    color: white;
    FONT-SIZE: 15PX;
    LINE-HEIGHT: 40PX;
}

/* student result taBLE CSS*/



.container.custom-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
}

.custom-header {
    width: 100%;
    height: auto;
}

.custom-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
}

.custom-student-img {
    height: auto;
    margin-right: 20px;
}

.label-cell {
    font-weight: bold;
    padding-right: 15px;
    color: #555;
}

.value-cell {
    font-size: 16px;
    padding-left: 15px;
    color: #333;
}

.custom-table,
.custom-summary-table,
.custom-marks-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

    .custom-table td,
    .custom-summary-table td,
    .custom-marks-table td {
        padding: 12px;
        text-align: left;
        border: 1px solid #ddd;
    }



    /* Hover Effect */
    .custom-table tbody tr:hover,
    .custom-summary-table tbody tr:hover,
    .custom-marks-table tbody tr:hover {
        background-color: #f1f1f1;
    }


.custom-summary-table {
    border: 1px solid #00aaff;
}

.custom-marks-table {
    border: 1px solid #28a745;
}

    .custom-marks-table th {
        background-color: #28a745;
    }

    .custom-marks-table td {
        background-color: #f8f9fa;
    }

@media screen and (max-width: 768px) {
    .custom-student-img {
        max-width: 100px;
    }

    .custom-title {
        font-size: 28px;
    }

    .label-cell,
    .value-cell {
        font-size: 14px;
    }

    .custom-marks-table th,
    .custom-summary-table td {
        font-size: 12px;
    }
}

@keyframes colorChange {
    0% {
        color: blue;
    }

    50% {
        color: green;
    }

    100% {
        color: blue;
    }
}

@keyframes beep {
    0% {
        content: '';
    }

    50% {
        content: '\a';
    }

    100% {
        content: '';
    }
}

.student-details {
    font-size: 2rem;
    font-weight: bold;
    color: blue;
    animation: colorChange 2s infinite;
    position: relative;
}


    .student-details::after {
        content: '';
        animation: beep 2s infinite;
        position: absolute;
        top: 0;
        left: 0;
        width: 1px;
        height: 1px;
        overflow: hidden;
        opacity: 0;
    }




.custom-dropdown {
    position: relative;
}

.custom-submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #e9efef;
    border-radius: 10px;
    padding: 0px 40px 0px 40px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}


.submenu-item {
    display: block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
}

    .submenu-item:hover {
        background-color: #f1f1f1;
        color: #000;
    }

#healthcare-dropdown:hover .custom-submenu,
#paramedical-dropdown:hover .custom-submenu {
    display: block;
}


#paramedical-dropdown .custom-submenu {
    background-color: #e9efef;
}

/*
    css course deatil of submenu 
*/

.custom-navbar {
    background-color: #3498DB;
    padding: 10px;
}

    .custom-navbar a {
        color: white;
        padding: 10px 15px;
        text-decoration: none;
        display: inline-block;
    }

        .custom-navbar a:hover {
            background-color: #2980B9;
        }

.custom-dropdown {
    position: relative;
    display: block;
}

.custom-submenu {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

    .custom-submenu a {
        color: black;
        padding: 10px 15px;
        text-decoration: none;
        display: block;
    }

        .custom-submenu a:hover {
            background-color: #ddd;
        }

/* Desktop: Submenu on Hover */
@media screen and (min-width: 992px) {
    .custom-dropdown:hover .custom-submenu {
        display: block;
    }
}

/* Mobile: Submenu on Click */
@media screen and (max-width: 991px) {
    .custom-dropdown .custom-submenu {
        position: static; /* Block style for mobile */
        box-shadow: none;
    }

    .custom-dropdown.active .custom-submenu {
        display: block;
    }
}