
/*** Spinner Start ***/
#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;
    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);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/
/* .navbar-nav .nav-link.active {
    color: blue !important;
    font-weight: bold;
    text-decoration: underline;
  } */


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.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 .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .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 .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 500px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}


@media (max-width: 991px) {
    .header-carousel .header-carousel-item {
        height: 500px;
    }

    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 30px;
    }
    
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}


@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), url(../img/bg-breadcrumb-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}
.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Feature End ***/


/*** Service Start ***/
/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.5s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* subtle default shadow */
    background-color: white; /* Ensure background for shadow visibility */
}

.service .service-item:hover,
.service .service-item:active,
.service-item.touch-hover {
    box-shadow: 0 12px 20px rgba(0,0,0,0.2); /* stronger shadow on hover/touch */
}

/* rest of your styles remain unchanged */

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    flex-shrink: 0;
}

.service .service-item .service-img img {
    transition: 0.5s;
    width: 100%;
    height: auto;
}

.service .service-item:hover .service-img img,
.service .service-item:active .service-img img,
.service-item.touch-hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after,
.service .service-item:active .service-img::after,
.service-item.touch-hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i,
.service .service-item:active .service-img .service-icon i,
.service-item.touch-hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon,
.service .service-item:active .service-img .service-icon,
.service-item.touch-hover .service-img .service-icon {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.5s;
    padding: 20px;
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p,
.service .service-item:active .service-content .service-content-inner .h4,
.service .service-item:active .service-content .service-content-inner p,
.service-item.touch-hover .service-content .service-content-inner .h4,
.service-item.touch-hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .btn.btn-primary,
.service .service-item:active .btn.btn-primary,
.service-item.touch-hover .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
    align-self: center;
    margin-top: auto;
}

.service .service-item:hover .btn.btn-primary:hover,
.service .service-item:active .btn.btn-primary:hover,
.service-item.touch-hover .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .h4:hover,
.service .service-item:active .h4:hover,
.service-item.touch-hover .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after,
.service .service-item:active .service-content::after,
.service-item.touch-hover .service-content::after {
    height: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .service .service-item {
        height: auto;
    }
}

@media (max-width: 992px) {
    .service .service-item {
        height: auto;
    }
    .service .service-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .service .service-item {
        height: auto;
    }
    .service .service-content {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .service .service-item {
        height: auto;
    }
    .service .service-content {
        padding: 10px;
    }
}

/*** Service End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, .8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}
/*** FAQs End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
} 

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}
/*** Team End ***/


/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Testimonial End ***/


/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0%  {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}

    25% {border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;}

    50% {border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;}

    75% {border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;}

    100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.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);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}
/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}
/*** copyright end ***/

/* Style for nested dropdown */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -36px;
}

.service-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog {
    padding-top: 15px; /* Adjust as needed */
    margin-top: -60px; /* Reduce margin further if needed */
}

.blog .text-center {
    margin-bottom: -55px; /* Adjust this value as needed */
}

  .product-item {
                position: relative;
                transition: transform 0.3s ease-in-out; /* Smooth transition for zoom */
            }

            .product-circle img {
                transition: transform 0.3s ease-in-out; /* Smooth transition for zooming */
            }

            .product-item:hover .product-circle img {
                transform: scale(0.9); /* Zoom out the image */
            }

            .product-item:hover {
                transform: scale(0.95); /* Optional: You can also zoom out the whole product container */
            }
                 .responsive-heading {
        font-size: 3vw; /* Scales with screen size */
        font-weight: bold;
        word-wrap: break-word;
        white-space: normal; /* Allows text wrapping */
    }

    /* Adjust font size for smaller screens */
    @media (max-width: 768px) {
        .responsive-heading {
            font-size: 6vw; /* Increase font size on small screens */
        }
    }

    @media (max-width: 480px) {
        .responsive-heading {
            font-size: 7vw; /* Further increase for extra small screens */
        }
    }
        
           
 /* Ensure the carousel container is relative */
.header-carousel {
    position: relative;
}

/* Stats section should overlap the carousel */
.position-absolute {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10; /* Ensure stats are on top */
}

/* Gradient Background for Carousel Items */
.header-carousel-item {
    background: linear-gradient(to right, #00c6ff, #0072ff); /* Blue gradient */
    height: 100vh; /* Ensure the carousel item takes full height */
    display: flex;
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
}

/* Text Alignment in Carousel */
.carousel-caption {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
}

.text-sm-center {
    text-align: center;
}

.text-md-start, .text-md-end {
    text-align: start; /* Align text to the left or right based on screen size */
}

/* Mobile Responsiveness - Adjust text alignment */
@media (max-width: 767px) {
    .carousel-caption {
        text-align: center !important; /* Ensure mobile screens have centered text */
    }
}

/* Style the buttons for better visibility */
.btn-light {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
}

.btn-dark {
    background-color: rgba(0, 0, 0, 0.8);
    border: none;
}

/* Position dots at the bottom of the carousel */
.owl-carousel .owl-dots {
    position: absolute;        /* Absolute positioning */
    bottom: 20px;              /* Distance from the bottom (adjust as needed) */
    left: 0;
    width: 100%;
    text-align: center;        /* Center the dots horizontally */
    z-index: 10;               /* Ensure dots are above the carousel items */
}

/* Bigger dots styling */
.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    background-color: #ccc;    /* Default color for the dots */
    width: 20px;               /* Increase the size of the dots */
    height: 20px;              /* Increase the size of the dots */
    margin: 0 10px;            /* Space between dots */
    border-radius: 50%;        /* Make them round */
    transition: background-color 0.3s ease; /* Smooth transition for color change */
}

/* Active dot color */
.owl-carousel .owl-dots .owl-dot.active {
    background-color: #007bff; /* Color for active dot */
}

.owl-carousel .owl-nav {
    display: none !important;
}
.carousel-caption h2.display-3 {
    white-space: normal;
    font-size: 6vw;   /* Base responsive font size */
    line-height: 1.2;
}

/* Medium screens (Tablets) */
@media (min-width: 768px) {
    .carousel-caption h2.display-3 {
        font-size: 4vw;
    }
}

/* Large screens (Desktops) */
@media (min-width: 1200px) {
    .carousel-caption h2.display-3 {
        font-size: 48px; /* Fixed max size */
    }
}

/* Small screens (Phones) */
@media (max-width: 576px) {
    .carousel-caption h2.display-3 {
        font-size: 8vw;
    }
}
/* .carousel-caption h1.display-3 {
    white-space: nowrap;
    font-size: 6vw; 
    line-height: 1.2;
} */

  /* Testimonial Section */
.testimonial-section {
  background-color: #f8f9fa;
}

/* .testimonial-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-text {
  font-style: italic;
  color: #555;
  font-size: 16px;
  margin-bottom: 15px;
} */
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-height: 250px; /* You can adjust this based on your content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
  }

 

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-text {
  font-style: italic;
  color: #555;
  font-size: 16px;
  margin-bottom: 20px;
  
}

.student-name {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.student-title {
  font-size: 14px;
  color: #888;
}

.owl-carousel .item {
  padding: 20px;
}

.owl-carousel .active .testimonial-card {
  border: 2px solid #007bff;
  transform: scale(1.05);
}

.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.owl-carousel .owl-dot {
  background: #ccc;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 50%;
}

.owl-carousel .owl-dot.active {
  background: #007bff;
}

/* Center Testimonial */
.owl-carousel .owl-item.active.center .testimonial-card {
  border: 3px solid #007bff; /* Highlight border */
  transform: scale(1.1); /* Scale up the active one */
}

      

    .partners-container {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .partner-item {
        font-size: 14px;
        font-weight: bold;
        color: #007BFF;
        text-transform: uppercase;
        transition: transform 0.3s ease-in-out;
        text-align: center;
    }

    .partner-item h5 {
        margin-top: 10px;
    }

    .partner-circle {
        width: 100px;
        height: 100px;
        overflow: hidden;
        border-radius: 50%;
        margin: 0 auto;
        transition: transform 0.3s ease-in-out;
    }

    .partner-item:hover .partner-circle {
        transform: scale(1.1);
    }

    .partner-item:hover h5 {
        color: #0056b3;
    }

    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }

    .partners-container {
        animation: slide 20s linear infinite;
    }
    /* OEM Card Styling */
.card {
   
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.oemcard {
   margin-bottom: 25px;
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.oemcard:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* .card .card-body {
    padding: 30px;
} */
.card .card-body {
    padding: 8vw; /* Base: flexible padding for smaller screens */
}

/* Small devices (phones) */
@media (max-width: 576px) {
    .card .card-body {
        padding: 3px;
    }
}

/* Medium devices (tablets) */
@media (min-width: 577px) and (max-width: 768px) {
    .card .card-body {
        padding: 20px;
    }
}

/* Large devices (laptops, desktops) */
@media (min-width: 769px) and (max-width: 1200px) {
    .card .card-body {
        padding: 25px;
    }
}

/* Extra large devices (large desktops) */
@media (min-width: 1201px) {
    .card .card-body {
        padding: 26px;
    }
}

.course-img {
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.course-label {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.zoom-card {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.card:hover .zoom-card {
    transform: scale(1.05);
}

/* Button Styling */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 5px;
    padding: 10px 20px;
    color: #fff;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}
.stat-row{
    margin: 15px;
}
/* Ensure badge buttons are not hidden on mobile */
.badge-button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    margin: 5px;
    border-radius: 25px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    white-space: nowrap; /* Ensure text doesn't get cut off */
    overflow: hidden; /* Prevent text overflow */
    visibility: visible; /* Explicitly ensure the button is visible */
}

/* Adjust the button size and margin for smaller screens */
@media (max-width: 767px) {
    .badge-button {
        font-size: 12px; /* Smaller font size for mobile */
        padding: 10px 15px; /* Adjust padding */
        margin: 10px 5px; /* Adjust margin */
    }
}

/* Ensure parent containers like .interactive-buttons and others are not hiding content */
@media (max-width: 767px) {
    .interactive-buttons {
        width: 100%; /* Ensure the container takes full width */
        display: flex;
        justify-content: center; /* Center align buttons */
        flex-wrap: wrap; /* Allow wrapping */
    }

    /* If necessary, adjust visibility or position of specific buttons */
    .interactive-buttons .badge-button {
        display: inline-block; /* Ensure buttons show properly */
        margin: 10px;
    }
}



/* Style for collapsible course buttons */
.collapsible {
    background-color: #2196F3;
    color: white;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    border-radius: 5px;
    margin-bottom: 5px;
    transition: background-color 0.3s ease;
}

.collapsible:hover {
    background-color: #1e88e5;
}

.collapsible-content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
    border-radius: 5px;
    margin-top: 10px;
}

/* Style for "Select This Course" button */
.select-course-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    border-radius: 8px;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.select-course-btn:hover {
    background-color: #45a049;
}

    
@media (max-width: 767px) {
        #coursesGrid {
            display: none;
        }
    }
/* Scoped CSS for Navbar Course Cards */
.navbar-course-card {
    /* Example styling for the course card in the navbar */
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.navbar-course-card .card-body {
    padding: 15px;
}

.navbar-course-card .card-title {
    font-size: 4vw;  /* Responsive base size */
    font-weight: bold;
    color: #333;
}

/* Small devices (phones, less than 576px) */
@media (max-width: 576px) {
    .navbar-course-card .card-title {
        font-size: 1rem;
    }
}

/* Medium devices (tablets, >= 576px and < 768px) */
@media (min-width: 576px) and (max-width: 768px) {
    .navbar-course-card .card-title {
        font-size: 1.1rem;
    }
}

/* Large devices (desktops, >= 768px and < 1200px) */
@media (min-width: 768px) and (max-width: 1200px) {
    .navbar-course-card .card-title {
        font-size: 1.2rem;
    }
}

/* Extra large devices (large desktops) */
@media (min-width: 1200px) {
    .navbar-course-card .card-title {
        font-size: 1.3rem;
    }
}
/* .navbar-course-card .card-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
} */

/* You can add specific styles for navbar cards to make them look unique */
.navbar-course-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Ensure the card link inside does not affect layout */
.navbar-course-card .card-link {
    text-decoration: none;
    color: inherit;
}
/* Ensure the accordion is responsive and doesn't overflow */
.oem-scroll-container {
    max-height: 500px; /* Set a maximum height for the scrollable container */
    overflow-y: auto;  /* Allow vertical scrolling */
    overflow-x: hidden; /* Prevent horizontal overflow */
}

/* Optional: Add styling for the accordion card */
.card {
    border-radius: 10px;
    overflow: hidden; /* Prevent overflow outside the card */
}

/* Optional: Add some padding to ensure the content is not too close to the edges */
.card-body {
    padding: 1.25rem;
}

/* Make sure the accordion buttons are appropriately sized */
.accordion-button {
    white-space: nowrap; /* Prevent the text from wrapping */
    text-overflow: ellipsis; /* Add ellipsis if the text is too long */
    overflow: hidden;
}

/* Make sure card items don't overflow on mobile */
.navbar-course-card {
    max-width: 100%; /* Ensure cards take full width */
    word-wrap: break-word;
}
/* CSS to handle mobile view overflow */
@media (max-width: 767px) {
    .accordion-button {
        white-space: nowrap; /* Prevent the OEM name from wrapping onto the next line */
        overflow: hidden;    /* Ensure text doesn't overflow out of the container */
        text-overflow: ellipsis; /* Add ellipsis for overflow text */
        max-width: 100%; /* Ensure the button doesn't exceed the width */
    }

    .accordion-item {
        width: 50%; /* Ensure the accordion item takes full width */
    }

    .oem-scroll-container {
        max-height: 400px; /* Optional: limit the height of the scrollable container */
        overflow-y: auto;  /* Allow vertical scrolling */
    }
}
.course-card {
    text-decoration: none;
    color: inherit;
    
}

.course-card img {
    object-fit: contain;
    height: 150px;
}
.course-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* .course-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
} */
 .course-card .card-title {
    font-size: 4vw;      /* Base responsive size */
    font-weight: 600;
    color: #333;
    margin: 0; /* Optional: keep consistent spacing */
}

/* Small devices (phones) */
@media (max-width: 576px) {
    .course-card .card-title {
        font-size: 1rem;
    }
}

/* Medium devices (tablets) */
@media (min-width: 577px) and (max-width: 768px) {
    .course-card .card-title {
        font-size: 1.1rem;
    }
}

/* Large devices (laptops, desktops) */
@media (min-width: 769px) and (max-width: 1200px) {
    .course-card .card-title {
        font-size: 1.25rem;
    }
}

/* Extra large devices (big desktops) */
@media (min-width: 1201px) {
    .course-card .card-title {
        font-size: 1.4rem;
    }
}
.course-card .card-text {
    font-size: 1rem;
    color: #777;
}
.course-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #007bff;
}
.course-card .duration {
    font-size: 1rem;
    color: #6c757d;
}
.course-card .badge {
    background-color: #28a745;
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 12px;
    color: #fff;
}
/* .popular-courses-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
}
.card-img-top {
    object-fit: contain;
    width: 100%;
    height: 100%;
} */
.popular-card{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-bottom: 50px;
        height: 280px;
        text-decoration: none;
        border-radius: 12px;
        overflow: hidden;
        background: #ffffff;
        padding: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* stronger 3D shadow */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Base styles for all devices */
#oemList {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 15px;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
    scrollbar-width: thin;             /* Firefox */
    scrollbar-color: #888 #f1f1f1;     /* Firefox */
}

/* Scrollbar styling for WebKit (Chrome, Safari) */
#oemList::-webkit-scrollbar {
    width: 8px;
}

#oemList::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

#oemList::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

#oemList::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* <!-- for mobile view--> */
       #oemAccordion::-webkit-scrollbar {
        width: 8px;
    }

    #oemAccordion::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    #oemAccordion::-webkit-scrollbar-thumb {
        background-color: #888;
        border-radius: 4px;
    }

    #oemAccordion::-webkit-scrollbar-thumb:hover {
        background-color: #555;
    }
    .nav-link.dropdown-toggle#courseDropdown {
        background: linear-gradient(270deg, #007cf0, #00c6ff, #1de9b6, #00c6ff, #007cf0);
        background-size: 600% 600%;
        color: white !important;
        border-radius: 6px;
        padding: 10px 20px;
        font-weight: bold;
        transition: all 0.3s ease-in-out;
        animation: blueGradientMove 8s ease infinite;
        position: relative;
        z-index: 1;
        border: none;
    }
    
    
    .nav-link.dropdown-toggle#courseDropdown::before {
        content: "🎓";
        margin-right: 8px;
    }
    
    
    .nav-link.dropdown-toggle#courseDropdown:hover {
        transform: scale(1.06);
        box-shadow: 0 10px 25px rgba(0, 198, 255, 0.35);
    }
    
    
    @keyframes blueGradientMove {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }
    



     

    


          
         

