.contents {
    margin-left: 0;
}

.iconsize {
    width: 60px;
    height: 60px;
}

.logos {
    /* height: 50px; */
    /* margin-left: -300px; */
    border-radius: 5px;
}

.logo2 {
    margin-left: -300px;
}

.navcont {
    font-size: 44px !important;
}

.logohead {
    height: 100px;
    width: 200px !important;
}

.box {
    padding-top: 100px;
    margin: 50px 0px 50px 60px;
    width: 100%;
}

.cont {
    color: #ffffff;
}

.conth4 {
    margin-top: 10px;
    font-weight: 600;
}

.contect {
    text-align: start;
    font-size: 22px;
    color: #000 !important;
}

.contecthead {
    font-size: 28px;
    text-align: start;
    color: #000 !important;
}

.contecthead2 {
    font-weight: 600;
    font-size: 30px;
    text-align: start;
    color: #000 !important;
}

.footerpadd {
    padding: 20px 80px 10px 80px;
}

.footcont {
    margin-left: -100px;
}

.highlightcard {
    padding: 10px 0;
}

.highlightcard2 {
    height: 100%;
}

.Mschada {
    height: 320px;
}

.scd img {
    width: 100%;

}


.scdpd {
    padding: 10px !important;
}

.scdpd img {
    border-radius: 5px;
}

.icon-box img {
    width: 100%;
}

/* Loader CSS */
.loader {
    border: 4px solid #f3f3f3;
    /* Light grey */
    border-top: 4px solid #025add;
    /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    /* Half of the width */
    margin-top: -25px;
    /* Half of the height */
}

.mainconthead {
    font-size: 58px !important;
    font-weight: 600;
}

.wcucont {
    padding: 0 200px;
}

.wArea {
    text-align: center;
    font-size: 44px !important;
    font-weight: 600;
    color: #025add;
}

/* Spinner animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




/* Apply custom scrollbar to the entire page */
body::-webkit-scrollbar {
    width: 5px;
    /* Width of the scrollbar */
}

/* Track (background of the scrollbar) */
body::-webkit-scrollbar-track {
    background: #f4f4f4;
    /* Light gray color */
    border-radius: 5px;
    /* Rounded corners */
}

/* Thumb (draggable part of the scrollbar) */
body::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    /* Gradient color */
    border-radius: 10px;
    /* Rounded corners */
    border: 1px solid #f4f4f4;
    /* Creates a gap between thumb and track */
}

/* Thumb hover (when hovered over the scrollbar) */
body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #8e44ad, #3498db);
    /* Darker gradient on hover */
}

/* Thumb active (when the scrollbar is being dragged) */
body::-webkit-scrollbar-thumb:active {
    background: linear-gradient(45deg, #9b59b6, #2980b9);
    /* Another shade when active */
}

/* Optional: For horizontal scrollbars */
body::-webkit-scrollbar-horizontal {
    height: 12px;
    /* Height of the horizontal scrollbar */
}


#service {
    padding: 10px 0px 30px 0px;
    position: relative;
    z-index: 9;
    /* background-color: #000000; */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#service::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../image/content/bg-5.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(20px);
    z-index: -1;
    opacity: 0.7;
}

#service .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#service .container-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    /* Ensures wrapping on smaller screens */
    gap: 20px;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

#service .content-heading h2 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-top: 20px;
    margin-bottom: 0px;
    color: #ffffff;
}

#service .flip-card {
    background-color: transparent;
    width: 254px;
    height: 254px;
    perspective: 1000px;
    font-family: sans-serif;
}

#service .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

#service .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

#service .flip-card-front,
#service .flip-card-back {
    box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.2);
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border: 1px solid coral;
    border-radius: 1rem;
}

#service .flip-card-front img {
    border-radius: 15px;
}

#service .flip-card-back .flip-card-back-link {
    display: flex;
    padding-top: 20px;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
}

#service .flip-card-back .flip-card-back-link img {
    height: 25px;
    width: 25px;
    cursor: pointer;
}

#service .flip-card-front {
    background: #ffffff;
}

#service .flip-card-back {
    background: #ffffff;
    transform: rotateY(180deg);
}

#service .flip-card-back p {
    color: #000;
}


@media (min-width: 1200px) and (max-width: 1600px) {

    .logo2 {
        margin-left: 0;
    }
}

/* Responsive */

/* For screens between 992px and 1200px (Tablets and larger screens) */
@media (min-width: 992px) and (max-width: 1200px) {
    #service .container-card {
        flex-wrap: wrap;
        padding-left: 120px;
        padding-right: 120px;
        /* Ensure cards wrap neatly */
    }

    #service .flip-card {
        width: 220px;
        /* Slightly reduce width */
        height: 220px;
        /* Adjust height proportionally */
    }
}

/* For screens between 768px and 992px (Tablets and medium screens) */
@media (min-width: 768px) and (max-width: 992px) {
    #service .container-card {
        justify-content: center;
        padding-left: 60px;
        padding-right: 60px;
    }

    #service .flip-card {
        width: 200px;
        /* Further reduce width */
        height: 200px;
    }

    .logo2 {
        margin-left: 0;
    }
}

/* For screens between 576px and 768px (Smaller tablets and large phones) */
@media (min-width: 576px) and (max-width: 768px) {
    .logo2 {
        margin-left: 0;
    }

    #service .flip-card {
        width: 180px;
        height: 180px;
    }

    #service .container {
        padding: 15px;
    }

    #service .container-card {
        justify-content: center;
        padding-left: 60px;
        padding-right: 60px;
    }

    #service .content-heading h2 {
        font-size: 28px;
    }
}

/* For screens smaller than 576px (Mobile screens) */
@media (max-width: 576px) {
    #service .flip-card {
        width: 100%;
        /* Take full width */
        height: 200px;
        width: 200px;
        /* Maintain aspect ratio */
    }

    #service .content-heading h2 {
        font-size: 24px;
    }

    #service .container-card {
        flex-direction: column;
        /* Stack cards vertically */
        gap: 15px;
        /* Add space between stacked cards */
    }
}

/* For extra-large screens (above 1200px) */
@media (min-width: 1201px) {
    #service .flip-card {
        width: 254px;
        height: 254px !;
    }

    #service .container-card {
        gap: 20px;

    }
}


.navehead {
    padding: 0 6vw;
    background-color: #ffffff52;
}

/* .navehead2 {
    margin-right: 350px !important;

} */

.navbar {
    display: block;
    align-items: end;
}

@media (max-width: 1200px) {


    #service .container-card {
        flex-direction: column;
        height: auto;
    }
}


@media (max-width: 576px) {
    .logos {
        /* height: 50px; */
        margin-left: 0;
        border-radius: 5px;
    }

    .navehead2 {
        margin-right: 0;

    }

    .logo2 {
        display: none;
        margin-left: 0;
    }


    #service .content-heading h2 {
        font-size: 24px;
    }



    #service .container {
        padding: 15px;
    }

    .hero h2 {
        font-size: 25px !important;
    }

    .hero h3 {
        font-size: 20px !important;
    }

    .wcucont {
        padding: 0;
    }


}


.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 900px;
    text-align: center;
    position: relative;
    max-height: 80%;
    /* Sets the max height of the popup */
    overflow-y: auto;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}


#footer {
    /* padding: 30px 0; */
    color: #ffffff;
    background-color: #212529;
}

#footer .container1 {
    width: 100%;
    align-items: center;
    padding-right: 30px;
    padding-left: 30px;
    margin-right: auto;
    margin-left: auto
}

#footer h6 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: bold;
}

#footer p {
    font-size: 13px;
    line-height: 1.8;
    color: #fff;
}

#footer .about-link-foot {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer .about-link-foot:hover {
    color: #007bff;
}

#footer .list-xxs {
    list-style: none;
    padding: 0;
}

#footer .list-xxs li {
    margin-bottom: 10px;
}

#footer .nav-link {
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer .nav-link:hover {
    color: #007bff;
}

.row1 {

    display: flex;
    /* -ms-flex-wrap: wrap;
    flex-wrap: wrap; */
    margin-right: -15px;
    margin-left: -15px
}

@media (min-width: 1201px) and (max-width:1400px) {

    .footer-widget ul li,
    .footer-widget ul li a {
        font-size: 14px;
    }

    .h3,
    h3 {
        font-size: 1rem;
    }

    #footer p {
        font-size: 11px;
        line-height: 1.8;
        color: #fff;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    #footer .row1 {
        gap: 15px;
    }

    #footer .col-md-6 {
        flex: 1;
    }

    #footer img {
        height: 100px;
        width: 100px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    #footer .row1 {
        flex-wrap: wrap;
        text-align: center;
    }

    #footer img {
        height: 100px;
        width: 100px;
        margin: 0 auto;
    }

    #footer .col-md-6,
    #footer .col-lg-2,
    #footer .col-lg-4 {
        flex: 1 1 100%;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    #footer .row1 {
        flex-direction: column;
        align-items: center;
    }

    #footer img {
        height: 100px;
        width: 100px;
    }

    #footer .list-xxs li {
        font-size: 14px;
    }

    #footer .col-md-6,
    #footer .col-lg-2,
    #footer .col-lg-4 {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    #footer {
        padding: 20px 10px;
    }

    #footer h6 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    #footer img {
        height: 80px;
        width: 80px;
    }

    #footer p {
        font-size: 10px;
    }

    #footer .list-xxs li {
        font-size: 12px;
    }

    #footer .row1 {
        flex-direction: column;
        gap: 10px;
    }
}

@media (min-width: 1201px) {
    #footer .container1 {
        max-width: 1400px;
    }

    #footer img {
        height: 100px;
        width: 100px;
    }
}