/********** Template CSS **********/
:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
}

.dropdown-submenu .dropdown-menu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    margin-top: -1px;
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > a::after {
        content: " \f0da";
        float: right;
        font-family: FontAwesome;
        padding-left: 10px;
    }

.marquee-area {
    background: var(--tg-secondary-color);
    transform: rotate(-3deg);
    padding: 28px 0;
    overflow: hidden;
    white-space: nowrap;
}


.marquee-wrap {
    display: inline-block;
    animation: scroll-left 18s linear infinite;
}

.marquee-text {
    padding: 0 50px;
    font-size: 1.5rem;
    color: #fff; 
    font-weight: bold;
}

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

    100% {
        transform: translateX(-100%);
    }
}


.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** 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;
    }


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

    .btn.btn-primary,
    .btn.btn-secondary {
        color: #FFFFFF;
    }

.btn-square {
    width: 45px;
    height: 45px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}
/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background-color: #040d1d;
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}
/*** Topbar End ***/

/*** Navbar ***/
.sticky-top,
.sticky-top .container {
    transition: 0.5s !important;
}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
    color: var(--bs-dark) !important;
}

.navbar .navbar-nav .nav-item {
    position: relative;
    margin: 0 5px !important;
}

    .navbar .navbar-nav .nav-item::before,
    .navbar .navbar-nav .nav-item::after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        border: 0px solid var(--bs-primary);
        transition: 0.5s;
    }

    .navbar .navbar-nav .nav-item::before {
        top: 0;
        left: 0;
    }

    .navbar .navbar-nav .nav-item::after {
        bottom: 0;
        right: 0;
    }

    .navbar .navbar-nav .nav-item:hover::after,
    .navbar .navbar-nav .nav-item:hover::before,
    .navbar .navbar-nav .nav-item.active::after,
    .navbar .navbar-nav .nav-item.active::before {
        width: 100%;
        border-width: 1px;
    }

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@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;
        margin-top: 20px !important;
        transition: .5s;
        opacity: 0;
        z-index: 9;
    }
}

@media (max-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        margin-top: 15px !important;
        transition: 0.5s;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-nav .nav-item.nav-link {
        margin: 15px 0 !important;
    }
}

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

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    margin-top: 20px !important;
    transition: .5s;
    opacity: 1;
}

.navbar .navbar-toggler {
    padding: 8px 15px;
    color: var(--bs-dark);
    background: var(--bs-primary);
}

#searchModal .modal-content {
    background: rgba(250, 250, 250, .6);
}
/*** Navbar End ***/

/*** About Start ***/
.about .text {
    position: relative;
}

    .about .text::after {
        content: "";
        width: 4px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: var(--bs-primary);
    }
/*** About End ***/

/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.3);
}

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

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

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

    .service .service-item .service-img::after {
        content: "";
        width: 0;
        height: 0;
        position: absolute;
        top: 0;
        right: 0;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        background: rgba(68, 210, 246, 0.4);
        transition: 0.5s;
    }

    .service .service-item:hover .service-img::after {
        width: 100% !important;
        height: 100% !important;
    }

    .service .service-item .service-content {
        position: relative;
    }

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

    .service .service-item:hover .service-content::after {
        width: 100% !important;
        height: 100% !important;
    }

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

    .service .service-item:hover .service-content .service-content-inner {
        position: relative;
        color: var(--bs-white) !important;
        transition: 0.5s;
        z-index: 2;
    }

        .service .service-item:hover .service-content .service-content-inner a.h4 {
            color: var(--bs-white) !important;
            transition: 0.5s;
        }

            .service .service-item:hover .service-content .service-content-inner a.h4:hover {
                color: var(--bs-primary) !important;
                color: #0b7983;
            }
            .service .service-item:hover .service-content .service-content-inner a:hover {
                color: #0b7983;
            }
/*** Service End ***/

/*** Projects Start ***/
.project .project-item .project-img {
    position: relative;
}

    .project .project-item .project-img::after {
        content: "";
        position: absolute;
        width: 70%;
        height: 70%;
        top: 0;
        left: 0;
        background: #f7620b;
        z-index: -1;
    }

.project .project-item .project-content a.h4 {
    transition: 0.5s;
    color: var(--primary);
}

.project .project-item:hover .project-content a.h4:hover {
    color: #0b7983;
}
.project .project-item a:hover {
    color: #0b7983;
}
/*** Projects End ***/


/*** Blog Start ***/
.blog .blog-item .project-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}

    .blog .blog-item .project-img .blog-plus-icon {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: rgba(68, 210, 246, 0.2);
        transition: 0.5s;
        opacity: 0;
    }

.blog .blog-item:hover .project-img .blog-plus-icon {
    opacity: 1;
}

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

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



/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

    .section-title::before {
        position: absolute;
        content: "";
        width: calc(100% + 80px);
        height: 2px;
        top: 4px;
        left: -40px;
        background: var(--primary);
        z-index: -1;
    }

    .section-title::after {
        position: absolute;
        content: "";
        width: calc(100% + 120px);
        height: 2px;
        bottom: 5px;
        left: -60px;
        background: var(--primary);
        z-index: -1;
    }

    .section-title.text-start::before {
        width: calc(100% + 40px);
        left: 0;
    }

    .section-title.text-start::after {
        width: calc(100% + 60px);
        left: 0;
    }

/*** Team Start ***/
.team .team-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--bs-dark);
    transition: 0.5s;
}

    .team .team-item:hover {
        border: none !important;
    }

    .team .team-item::after {
        content: "";
        width: 0;
        height: 0;
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 10px;
        border: 1px solid;
        border-color: var(--bs-primary) transparent transparent var(--bs-primary) !important;
        z-index: 5;
        transition: 1s;
        opacity: 0;
    }

    .team .team-item::before {
        content: "";
        width: 0;
        height: 0;
        position: absolute;
        bottom: 0;
        right: 0;
        border-radius: 10px;
        border: 1px solid;
        border-color: transparent var(--bs-primary) var(--bs-primary) transparent !important;
        z-index: 5;
        transition: 1s;
        opacity: 0;
    }

    .team .team-item:hover:after,
    .team .team-item:hover::before {
        width: 100% !important;
        height: 100% !important;
        opacity: 1;
    }

    .team .team-item .team-img {
        position: relative;
        overflow: hidden;
    }

        .team .team-item .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(68, 210, 246, 0.2);
            transition: 0.5s;
        }

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

    .team .team-item .team-img .team-icon {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 8;
        transition: 0.5s;
    }

        .team .team-item .team-img .team-icon .team-icon-share {
            position: relative;
            margin-top: -200px;
            transition: 0.5s;
            z-index: 9;
        }

    .team .team-item:hover .team-img .team-icon .team-icon-share {
        margin-top: 0 !important;
    }

    .team .team-item .team-content {
        position: relative;
    }

        .team .team-item .team-content::after {
            content: "";
            width: 0;
            height: 0;
            position: absolute;
            top: 0;
            left: 0;
            background: var(--bs-primary) !important;
            transition: 0.5s;
        }

        .team .team-item .team-content::before {
            content: "";
            width: 0;
            height: 0;
            position: absolute;
            bottom: 0;
            right: 0;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
            background: var(--bs-primary) !important;
            transition: 0.5s;
        }

    .team .team-item:hover .team-content::after,
    .team .team-item:hover .team-content::before {
        width: 100% !important;
        height: 50% !important;
    }

    .team .team-item:hover .team-content .team-content-inner {
        position: relative;
        color: var(--bs-white);
        z-index: 2;
    }

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

    .team .team-item:hover .team-content .team-content-inner p {
        color: var(--bs-white) !important;
    }

    .team .team-item:hover .team-content .team-content-inner h4 {
        color: var(--bs-dark) !important;
    }
/*** Team End ***/

/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

    .testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
        position: relative;
        border-radius: 10px;
        background: var(--bs-light);
    }

        .testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
            position: absolute;
            content: "";
            width: 45px;
            height: 45px;
            bottom: -20px;
            left: 30px;
            transform: rotate(45deg);
            background: var(--bs-light);
            z-index: -1;
        }

    .testimonial .owl-carousel.testimonial-carousel .owl-nav {
        position: absolute;
        top: -60px;
        right: 0;
        display: flex;
        font-size: 40px;
        color: var(--bs-primary);
    }

        .testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
            margin-right: 40px;
        }

        .testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
        .testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
            transition: 0.5s;
        }

            .testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
            .testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
                color: var(--bs-secondary);
            }
/*** testimonial end ***/



/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

    .footer .btn.btn-social:hover {
        color: var(--primary);
    }

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

    .footer .btn.btn-link::before {
        position: relative;
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 10px;
    }

    .footer .btn.btn-link:hover {
        letter-spacing: 1px;
        box-shadow: none;
    }

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

    .footer .copyright a {
        color: var(--light);
    }

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

    .footer .footer-menu a:last-child {
        margin-right: 0;
        padding-right: 0;
        border-right: none;
    }

.icon-emergency {
    color: #dc3545; /* Bootstrap danger color */
}

.icon-support {
    color: #17a2b8; /* Bootstrap info color */
}

.icon-sales {
    color: #28a745; /* Bootstrap success color */
}

.icon-office-hours {
    color: #ffc107; /* Bootstrap warning color */
}

.icon-feedback {
    color: #fd7e14; /* Bootstrap orange color */
}