/**
* Template Name: Groovin
* Template URL: https://bootstrapmade.com/groovin-free-bootstrap-theme/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: Montserrat;
    /*font-family: "Open Sans", sans-serif;*/
    color: #444444;
}

a {
    /*color: #5c9f24;*/
    text-decoration: none !important;
}

    a:hover {
        /*color: #74c92d;*/
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 4px;
    bottom: 15px;
    z-index: 996;
    /*background: #5c9f24;*/
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
    border: 1px solid;
}
.carousel-control-next {
    right: 35px;
}
.carousel-control-prev {
    left: 35px;
}

    .back-to-top i {
        font-size: 28px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        /*background: #6fc02c;*/
        /*color: #fff;*/
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: rgba(0, 0, 0, 0.75);
    transition: all 0.5s;
    z-index: 997;
    height: 60px;
}

    #header .logo {
        font-size: 28px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 1px;
        /*text-transform: uppercase;*/
    }

        #header .logo a {
            color: #fff;
        }

        #header .logo img {
            max-height: 40px;
        }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar > ul > li {
        white-space: nowrap;
        padding: 10px 0 10px 22px;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 4px;
        font-family: "Roboto", sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.7);
        white-space: nowrap;
        transition: 0.3s;
        /*text-transform: uppercase;*/
        position: relative;
    }

        .navbar a i,
        .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

    .navbar > ul > li > a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        /*background-color: #5c9f24;*/
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navbar a:hover:before,
    .navbar li:hover > a:before,
    .navbar .active:before {
        visibility: visible;
        width: 100%;
    }

    /*.navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover > a {
        color: #fff;
    }*/

    .navbar .getstarted,
    .navbar .getstarted:focus {
        padding: 8px 25px;
        margin-left: 12px;
        border-radius: 4px;
        color: #fff;
        font-weight: 400;
        font-family: "Poppins", sans-serif;
    }

        .navbar .getstarted:hover,
        .navbar .getstarted:focus:hover {
            color: #fff;
            /*background: #5c9f24;*/
        }

            .navbar .getstarted:hover:before,
            .navbar li:hover > .getstarted:before {
                visibility: hidden;
            }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 22px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 500;
            text-transform: none;
            color: #2a2a2a;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: #5c9f24;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #5c9f24;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(17, 17, 17, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
        border-radius: 10px;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #2a2a2a;
    }

    /*.navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: #5c9f24;
        }*/

    .navbar-mobile > ul > li {
        white-space: nowrap;
        padding: 0;
    }

    .navbar-mobile a:hover:before,
    .navbar-mobile li:hover > a:before,
    .navbar-mobile .active:before {
        visibility: hidden;
    }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
        color: #000;
        padding-left: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: #5c9f24;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# home Section
--------------------------------------------------------------*/
#home {
    width: 100%;
    height: auto;
    background-color: rgba(17, 17, 17, 0.8);
    overflow: hidden;
    padding: 0;
    margin-top: 60px;
}

.carousel {
    /* Consider removing position: unset; unless necessary */
    /*position: unset;*/
}

.carousel-fade .carousel-item {
    opacity: 1;
}

#home .carousel-item {
    display: block; /* Ensure carousel items are visible */
    width: 100%;
    /*min-height: 60vh;*/
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: 0.3s;
}

.carousel-indicators {
    bottom: 60px !important;
}

#home .carousel-item::before {
    content: "";
    /*background-color: rgba(0, 0, 0, 0.5);*/ /* Adjust opacity as needed */
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#home .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#home .carousel-content {
    text-align: center;
}

#home h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
}

    #home h2 span {
        color: #5c9f24;
    }

#home p {
    width: 80%;
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
    font-weight: 600;
}

@media (max-width: 600px) {
    .maintag {
        font-size: 30px !important;
    }

    .desctag {
        font-size: 15px;
    }

    /*#home .carousel-container {
        margin-top: -120px;
    }*/

    #header .logo {
        font-size: 20px;
    }

    #home .carousel-content {
        margin-top: 45%;
    }
}

.maintag {
    color: white;
    font-size: 68px;
    font-weight: 600;
}

.desctag {
    color: white;
    line-height: 1.5;
    margin: 1em 6em;
}

#home .carousel-control-next-icon,
#home .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #home .carousel-control-next-icon:hover,
    #home .carousel-control-prev-icon:hover {
        background: rgba(255, 255, 255, 0.3);
        color: rgba(255, 255, 255, 0.8);
    }

#home .carousel-indicators li {
    list-style-type: none;
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
}

    #home .carousel-indicators li.active {
        opacity: 1;
        background: #5c9f24;
    }

#home .btn-get-started {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 15px 8px 15px;
    border-radius: 10px;
    transition: 0.5s;
    line-height: 1;
    margin: 9px 5px 5px 5px;
    color: #fff;
    animation-delay: 0.8s;
    text-transform: uppercase;
    border: 2px solid #5c9f24;
    /*background: #5c9f24;*/
}

    #home .btn-get-started:hover {
        background: #6ab82a;
        border-color: #6ab82a;
        color: #fff;
    }

@media (max-width: 768px) {
    #home h2 {
        font-size: 28px;
    }
}

@media (min-width: 1024px) {
    #home p {
        width: 60%;
    }

    #home .carousel-control-prev,
    #home .carousel-control-next {
        width: 5%;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 30px 0;
}

.section-bg {
    background-color: #f1f1f1;
}

.section-title {
    text-align: center;
    padding: 10px;
    /*padding-bottom: 30px;*/
}

    .section-title h2 {
        font-size: 30px;
        font-weight: bold;
        /*text-transform: uppercase;*/
        margin-bottom: 0px;
        padding-bottom: 0;
        /*color: #5c9f24;*/
    }

    .section-title p {
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
    padding: 30px 0;
}

    .about .content h3 {
        font-weight: 700;
        font-size: 34px;
    }

    .about .content p {
        margin-bottom: 0;
    }

    .about .content .icon-box {
        margin-top: 25px;
    }

        .about .content .icon-box h4 {
            font-size: 20px;
            font-weight: 700;
            margin: 5px 0 10px 60px;
        }

        .about .content .icon-box i {
            font-size: 48px;
            float: left;
            color: #5c9f24;
        }

        .about .content .icon-box p {
            font-size: 15px;
            color: #848484;
            margin-left: 60px;
        }

.about .image {
    background: url("../img/about.jpg") center center no-repeat;
    background-size: cover;
    min-height: 400px;
}

@media (max-width: 991px) {
    .about .image {
        text-align: center;
    }

        .about .image img {
            max-width: 80%;
        }
}

@media (max-width: 667px) {
    .about .image img {
        max-width: 100%;
    }
}
/*#visionp{
    color: white;
    }*/

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    padding: 0 0 30px 0;
}

    .counts .count-box {
        padding: 30px;
        width: 100%;
    }

        .counts .count-box i {
            display: block;
            font-size: 44px;
            color: #5c9f24;
            float: left;
            line-height: 0;
        }

        .counts .count-box span {
            font-size: 48px;
            line-height: 40px;
            display: block;
            font-weight: 700;
            color: #2a2a2a;
            margin-left: 60px;
        }

        .counts .count-box p {
            padding: 15px 0 0 0;
            margin: 0 0 0 60px;
            font-family: "Roboto", sans-serif;
            font-size: 14px;
            color: #505050;
        }

        .counts .count-box a {
            font-weight: 600;
            display: block;
            margin-top: 20px;
            color: #505050;
            font-size: 15px;
            font-family: "Poppins", sans-serif;
            transition: ease-in-out 0.3s;
        }

            .counts .count-box a:hover {
                color: #777777;
            }

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    padding: 15px 0;
    text-align: center;
}

    .clients img {
        max-width: 45%;
        transition: all 0.4s ease-in-out;
        display: inline-block;
        padding: 15px 0;
        filter: grayscale(100);
    }

        .clients img:hover {
            filter: none;
            transform: scale(1.15);
        }

@media (max-width: 768px) {
    .clients img {
        max-width: 40%;
    }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    margin-bottom: 20px;
    text-align: center;
}

.services .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 50%;
    transition: 0.5s;
    color: #5c9f24;
    overflow: hidden;
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}

    .services .icon i {
        font-size: 36px;
        line-height: 0;
    }

.services:hover .icon {
    box-shadow: 0px 0 25px rgba(92, 159, 36, 0.3);
}

.services .title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
    padding-bottom: 15px;
}

    .services .title a {
        color: #444444;
        transition: 0.3s;
    }

        .services .title a:hover {
            color: #5c9f24;
        }

    .services .title::after {
        content: "";
        position: absolute;
        display: block;
        width: 50px;
        height: 2px;
        background: #5c9f24;
        bottom: 0;
        left: calc(50% - 25px);
    }

.services .description {
    line-height: 24px;
    font-size: 14px;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
    padding: 50px 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.3s;
}

    .why-us .box span {
        display: block;
        font-size: 28px;
        font-weight: 700;
        color: #8ed851;
    }

    .why-us .box h4 {
        font-size: 24px;
        font-weight: 600;
        padding: 0;
        margin: 20px 0;
        color: #2a2a2a;
    }

    .why-us .box p {
        color: #aaaaaa;
        font-size: 15px;
        margin: 0;
        padding: 0;
    }

    .why-us .box:hover {
        background: #5c9f24;
        padding: 30px 30px 70px 30px;
        box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
    }

        .why-us .box:hover span,
        .why-us .box:hover h4,
        .why-us .box:hover p {
            color: #fff;
        }

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

    .portfolio #portfolio-flters li {
        cursor: pointer;
        display: inline-block;
        padding: 8px 15px 10px 15px;
        font-size: 14px;
        font-weight: 600;
        line-height: 1;
        text-transform: uppercase;
        color: #444444;
        margin-bottom: 5px;
        transition: all 0.3s ease-in-out;
        border-radius: 3px;
    }

        .portfolio #portfolio-flters li:hover,
        .portfolio #portfolio-flters li.filter-active {
            color: #fff;
            background: #5c9f24;
        }

        .portfolio #portfolio-flters li:last-child {
            margin-right: 0;
        }

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 0;
    background: rgba(42, 42, 42, 0.7);
    border-radius: 12px;
}

    .portfolio .portfolio-wrap::before {
        content: "";
        background: rgba(42, 42, 42, 0.7);
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        transition: all ease-in-out 0.3s;
        z-index: 2;
        opacity: 0;
    }

    .portfolio .portfolio-wrap img {
        transition: all ease-in-out 0.3s;
    }

    .portfolio .portfolio-wrap .portfolio-info {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 3;
        transition: all ease-in-out 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        padding: 20px;
    }

        .portfolio .portfolio-wrap .portfolio-info h4 {
            font-size: 20px;
            color: #fff;
            font-weight: 600;
        }

        .portfolio .portfolio-wrap .portfolio-info p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            text-transform: uppercase;
            padding: 0;
            margin: 0;
            font-style: italic;
        }

    .portfolio .portfolio-wrap .portfolio-links {
        text-align: center;
        z-index: 4;
    }

        .portfolio .portfolio-wrap .portfolio-links a {
            color: #fff;
            margin: 0 5px 0 0;
            font-size: 28px;
            display: inline-block;
            transition: 0.3s;
        }

            .portfolio .portfolio-wrap .portfolio-links a:hover {
                color: #8ed851;
            }

    .portfolio .portfolio-wrap:hover::before {
        opacity: 1;
    }

    .portfolio .portfolio-wrap:hover img {
        transform: scale(1.2);
    }

    .portfolio .portfolio-wrap:hover .portfolio-info {
        opacity: 1;
    }

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

    .portfolio-details .portfolio-details-slider img {
        width: 100%;
    }

    .portfolio-details .portfolio-details-slider .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: #fff;
            opacity: 1;
            border: 1px solid #5c9f24;
        }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
            background-color: #5c9f24;
        }

    .portfolio-details .portfolio-info {
        padding: 30px;
        box-shadow: 0px 0 30px rgba(42, 42, 42, 0.08);
    }

        .portfolio-details .portfolio-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .portfolio-details .portfolio-info ul {
            list-style: none;
            padding: 0;
            font-size: 15px;
        }

            .portfolio-details .portfolio-info ul li + li {
                margin-top: 10px;
            }

    .portfolio-details .portfolio-description {
        padding-top: 30px;
    }

        .portfolio-details .portfolio-description h2 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .portfolio-details .portfolio-description p {
            padding: 0;
        }

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
/*.team {
    background: #fff;
    padding: 60px 0;
}*/

    .team .member {
        text-align: center;
        margin-bottom: 20px;
        background: #343a40;
        position: relative;
    }

        .team .member .member-info {
            opacity: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            bottom: 0;
            top: 0;
            left: 0;
            right: 0;
            transition: 0.2s;
        }

        .team .member .member-info-content {
            margin-top: -50px;
            transition: margin 0.2s;
        }

        .team .member:hover .member-info {
            background: rgba(0, 0, 0, 0.7);
            opacity: 1;
            transition: 0.4s;
        }

        .team .member:hover .member-info-content {
            margin-top: 0;
            transition: margin 0.4s;
        }

        .team .member h4 {
            font-weight: 700;
            margin-bottom: 2px;
            font-size: 18px;
            color: #fff;
        }

        .team .member span {
            font-style: italic;
            display: block;
            font-size: 13px;
            color: #fff;
        }

        .team .member .social {
            margin-top: 15px;
        }

            .team .member .social a {
                transition: color 0.3s;
                color: #fff;
            }

                .team .member .social a:hover {
                    color: #5c9f24;
                }

            .team .member .social i {
                font-size: 18px;
                margin: 0 2px;
            }

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 20px;
    background: #f7f7f7;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

    .pricing .box h3 {
        font-weight: 400;
        padding: 15px;
        margin-top: 15px;
        font-size: 18px;
        font-weight: 600;
        color: #2a2a2a;
    }

    .pricing .box h4 {
        font-size: 42px;
        color: #5c9f24;
        font-weight: 500;
        font-family: "Open Sans", sans-serif;
        margin-bottom: 20px;
    }

        .pricing .box h4 sup {
            font-size: 20px;
            top: -15px;
            left: -3px;
        }

        .pricing .box h4 span {
            color: #bababa;
            font-size: 16px;
            font-weight: 300;
        }

    .pricing .box ul {
        padding: 0;
        list-style: none;
        color: #2a2a2a;
        text-align: center;
        line-height: 20px;
        font-size: 14px;
    }

        .pricing .box ul li {
            padding-bottom: 16px;
        }

        .pricing .box ul i {
            color: #5c9f24;
            font-size: 18px;
            padding-right: 4px;
        }

        .pricing .box ul .na {
            color: #ccc;
            text-decoration: line-through;
        }

    .pricing .box .btn-wrap {
        padding: 15px;
        text-align: center;
    }

    .pricing .box .btn-buy {
        display: inline-block;
        padding: 10px 40px 12px 40px;
        border-radius: 4px;
        border: 2px solid #5c9f24;
        color: #5c9f24;
        font-size: 14px;
        font-weight: 400;
        font-family: "Roboto", sans-serif;
        font-weight: 600;
        transition: 0.3s;
    }

        .pricing .box .btn-buy:hover {
            background: #5c9f24;
            color: #fff;
        }

.pricing .recommended {
    background: #5c9f24;
}

    .pricing .recommended h3,
    .pricing .recommended h4,
    .pricing .recommended h4 span,
    .pricing .recommended ul,
    .pricing .recommended ul .na {
        color: #fff;
    }

    .pricing .recommended .btn-buy {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
        color: #fff;
    }

        .pricing .recommended .btn-buy:hover {
            background: #fff;
            border-color: #fff;
            color: #5c9f24;
        }

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
    padding: 0 100px;
}

    .faq .faq-list ul {
        padding: 0;
        list-style: none;
    }

    .faq .faq-list li + li {
        margin-top: 15px;
    }

    .faq .faq-list li {
        padding: 20px;
        background: #fff;
        border-radius: 4px;
        position: relative;
    }

    .faq .faq-list a {
        display: block;
        position: relative;
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
        padding: 0 30px;
        outline: none;
        cursor: pointer;
    }

    .faq .faq-list .icon-help {
        font-size: 24px;
        position: absolute;
        right: 0;
        left: 20px;
        color: #9cdc66;
    }

    .faq .faq-list .icon-show,
    .faq .faq-list .icon-close {
        font-size: 24px;
        position: absolute;
        right: 0;
        top: 0;
    }

    .faq .faq-list p {
        margin-bottom: 0;
        padding: 10px 0 0 0;
    }

    .faq .faq-list .icon-show {
        display: none;
    }

    .faq .faq-list a.collapsed {
        color: #343a40;
    }

        .faq .faq-list a.collapsed:hover {
            color: #5c9f24;
        }

        .faq .faq-list a.collapsed .icon-show {
            display: inline-block;
        }

        .faq .faq-list a.collapsed .icon-close {
            display: none;
        }

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .contact-info {
    margin-bottom: 20px;
    text-align: center;
}

    .contact .contact-info i {
        font-size: 48px;
        display: inline-block;
        margin-bottom: 10px;
        color: #5c9f24;
    }

    .contact .contact-info address,
    .contact .contact-info p {
        margin-bottom: 0;
        color: #000;
    }

    .contact .contact-info h3 {
        font-size: 18px;
        margin-bottom: 15px;
        font-weight: bold;
        text-transform: uppercase;
        color: #999;
    }

    .contact .contact-info a {
        color: #000;
    }

        .contact .contact-info a:hover {
            color: #5c9f24;
        }

.contact .contact-address,
.contact .contact-phone,
.contact .contact-email {
    margin-bottom: 20px;
}

.contact .php-submit-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

    .contact .php-submit-form .error-message br + br {
        margin-top: 25px;
    }

.contact .php-submit-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-submit-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

    .contact .php-submit-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid #18d26e;
        border-top-color: #eee;
        animation: animate-loading 1s linear infinite;
    }

.contact .php-submit-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    height: auto;
    padding: 10px 15px;
    border-radius: 4px;
}

    .contact .php-email-form input:focus,
    .contact .php-email-form textarea:focus {
        border-color: #5c9f24;
    }

.contact .php-email-form button[type=submit] {
    /*background: #5c9f24;*/
    border: 0;
    padding: 10px 30px 12px 30px;
    /*color: #fff;*/
    transition: 0.4s;
    border-radius: 4px;
    border: 2px solid;
}

/*.contact .php-submit-form button[type=submit]:hover {
        background: #6ab82a;
    }*/

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (min-width: 768px) {
    .contact .contact-phone {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }

    .contact .contact-address,
    .contact .contact-phone,
    .contact .contact-email {
        padding: 20px 0;
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #f6f6f6;
    min-height: 40px;
    margin-top: 80px;
}

    .breadcrumbs h2 {
        font-size: 28px;
        font-weight: 400;
    }

    .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .breadcrumbs ol li + li::before {
                display: inline-block;
                padding-right: 10px;
                color: #444444;
                content: "/";
            }

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

        .breadcrumbs ol li {
            display: inline-block;
        }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #111111;
    padding: 0 0 25px 0;
    color: #fff;
    font-size: 14px;
}

    #footer .footer-top {
        background: #1d1d1d;
        border-bottom: 1px solid #2f2f2f;
        padding: 60px 0 30px 0;
    }

        #footer .footer-top .footer-info {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-info h3 {
                font-size: 24px;
                margin: 0 0 20px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 700;
            }

            #footer .footer-top .footer-info p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                font-family: "Roboto", sans-serif;
                color: #fff;
            }

        #footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            /*background: #2a2a2a;*/
            color: #fff;
            line-height: 1.1;
            padding: 8px 0;
            margin-right: 0px;
            border-radius: 50%;
            text-align: center;
            width: 34px;
            height: 34px;
            transition: 0.3s;
            /*border: 2px solid;*/
        }

            #footer .footer-top .social-links a:hover {
                /*background: #5c9f24;*/
                color: #fff;
                text-decoration: none;
            }

        #footer .footer-top h4 {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            position: relative;
            padding-bottom: 12px;
        }

        #footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul i {
                    padding-right: 2px;
                    /*color: #8ed851;*/
                    font-size: 18px;
                    line-height: 1;
                }

                #footer .footer-top .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: #fff;
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                }

        /*#footer .footer-top .footer-links ul a:hover {
                        color: #81d33d;
                    }*/

        #footer .footer-top .footer-newsletter form {
            margin-top: 30px;
            background: #fff;
            padding: 6px 10px;
            position: relative;
            border-radius: 4px;
        }

            #footer .footer-top .footer-newsletter form input[type=email] {
                border: 0;
                padding: 4px;
                width: calc(100% - 110px);
            }

            #footer .footer-top .footer-newsletter form input[type=submit] {
                position: absolute;
                top: 0;
                right: -2px;
                bottom: 0;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 20px;
                background: #5c9f24;
                color: #fff;
                transition: 0.3s;
                border-radius: 0 4px 4px 0;
            }

                #footer .footer-top .footer-newsletter form input[type=submit]:hover {
                    background: #6ab82a;
                }

    #footer .copyright {
        text-align: center;
        padding-top: 30px;
    }

    #footer .credits {
        padding-top: 10px;
        text-align: center;
        font-size: 13px;
        color: #fff;
    }

.dsno {
    display: none;
}


/*.clrthm::before {
    background-color: inherit;
}*/
.video-popup-content {
    width: 100%;
    height: 100%;
    margin-top: 5%;
}

#videoPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

    #videoPopup .close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 30px;
        cursor: pointer;
        color: white;
    }

#videoFrame {
    width: 80%;
    height: 80%;
    border-radius: 15px;
}

.portfolio-item {
    margin-bottom: 20px;
}

.portfolio-wrap img {
    width: 100%;
}

.video-info {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding-top: 10px;
    text-align: center;
}

.portfolio-links a {
    color: white;
    margin: 0 5px;
    font-size: 40px;
}
/*.bxl-youtube{
    color: #FF0000;
}*/
.mrtop10 {
    margin-top: 10px;
}

/*.bckclrbl {
    background-color: black;
}*/

/*.fntclrwh span, .fntclrwh div, .fntclrwh font {
    color: white !important;
}*/
/*.portfoli-container{
        position: relative !important;
    height: auto !important;
}*/
/*.align-items-center {
    align-items: center !important;
    margin-top: -8px;
}*/
.contact .info i {
    font-size: 32px;
    /*color: #009961;*/
    float: left;
    line-height: 1;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #282828;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #5b5b5b;
}

.contact .info .email, .contact .info .phone,.gst,.address {
    margin-top: 40px;
}

.contact .info .email, .contact .info .phone {
    margin-top: 40px;
}
.contact .info .gst, .contact .info .phone {
    margin-top: 40px;
}

#map {
    height: 350px;
    width: 100%;
}

/*.getstarted {
  gap: 8px;
  cursor: pointer;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.103);
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
}

.svgIcon {
  width: 16px;
}

.svgIcon path {
  fill: white;
}

.getstarted::before {
  width: 130px;
  height: 130px;
  position: absolute;
  content: "";
  background-color: white;
  border-radius: 50%;
  left: -100%;
  top: 0;
  transition-duration: .3s;
  mix-blend-mode: difference;
}

.getstarted:hover::before {
  transition-duration: .3s;
  transform: translate(100%,-50%);
  border-radius: 0;
}

.getstarted:active {
  transform: translate(5px,5px);
  transition-duration: .3s;
}*/

.req label:after, th.req:after {
    color: #e32;
    content: " *";
    display: inline;
}

.form-control::placeholder {
    opacity: 0.4; /* Adjust opacity as needed */
    color: #000; /* Optional: Change color */
}

.floating-button {
    position: fixed;
    right: 4px;
    bottom: 75px;
    background-color: transparent;
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.floating-andbutton {
    position: fixed;
    right: 4px;
    bottom: 130px;
    background-color: transparent;
    color: white;
    padding: 0px;
    border-radius: 50%;
    cursor: pointer;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
    z-index: 10;
}

.enquiry-form.active {
    right: 9px;
}

.floating-button i {
    font-size: 24px;
}

.floating-andbutton i {
    font-size: 40px;
}

.enquiry-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 999; /* Just below the enquiry form */
    display: none; /* Hide the overlay by default */
}

.enquiry-form {
    position: fixed;
    right: -630px;
    bottom: 70px;
    background: white;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 630px;
    transition: right 0.3s ease-in-out;
    border-radius: 10px;
    max-height: 90vh; /* Make sure the form height does not exceed 90% of the viewport height */
    height: auto; /* Allow the form to adjust height automatically */
    overflow: auto; /* Enable scrolling if content overflows */
}
    /*.enquiry-form {
    position: fixed;
    right: -630px;
    bottom: 70px;
    background: white;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 630px;
    transition: right 0.3s ease-in-out;
    border-radius: 10px;
    height: 550px;
    overflow: auto;
}*/

    .enquiry-form.active {
        right: 20px;
    }

.form-header {
    background-color: black;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.close-button {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: red;
    font-weight: bolder;
    margin-left: 10px;
}

.hdrcls {
    text-align: center;
    flex-grow: 1;
    font-size: 25px;
}

.submit-form {
    padding: 12px;
}

@media (max-width: 576px) {
    .enquiry-form {
        max-width: 95%;
        padding: 10px;
    }

    .form-header h3 {
        font-size: 16px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-control {
        font-size: 14px;
    }

    .close-button {
        font-size: 20px;
    }
}





/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 25px;
    border-radius: 10px;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

    .section-title h2 {
        /*background-color: aqua;*/
        width: 75%;
        text-align: center;
        border-radius: 20px;
        /*font-size: 2rem;
        font-weight: bold;
        color: #FF5733;*/ /* Adjust color as needed */
        color: white;
            border: 1px solid;
    }

/*.video {
    padding: 80px 0;
    background-color: #f9f9f9;
}*/

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.mt-5 {
    margin-top: 3rem; /* Adjust top margin as needed */
}

/* Portfolio Item Styles */
.portfolio-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.portfolio-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.img-fluid {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

    .img-fluid:hover {
        transform: scale(1.05);
    }

.video-info {
    padding: 15px;
    background-color: #fff; /* Adjust background color as needed */
    border-top: 1px solid #eee; /* Adjust border color as needed */
}

    .video-info h4 {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 10px;
    }

.portfolio-links {
    margin-top: 10px;
    text-align: center;
}

    .portfolio-links a {
        display: inline-block;
        margin-right: 10px;
        font-size: 24px;
        color: #333; /* Adjust link color as needed */
    }

        .portfolio-links a:hover {
            color: #FF5733; /* Adjust hover color as needed */
        }

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    text-align: center;
    line-height: 64px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}



    .play-button i {
        font-size: 80px;
        color: #fff;
    }

@media (max-width: 768px) {
    .portfolio-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/*.bx-play-circle:hover {
    color: rgba(255, 255, 255, 1) !important;
}*/
nav.navbar ul li {
    margin-left: 18px;
}

.navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 5px;
}

.navbar li {
    position: relative;
}


#getstarted {
    /*border: 2px solid rgb(217, 221, 19);*/
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
    background-size: 200% 100%;
    animation: run 2s linear infinite;
}

@keyframes run {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: 0 0;
    }
}

#getstarted:hover {
    animation: none;
}

.bnrbtns {
    font-size: 25px;
}

.prdbtns {
    font-size: 18px;
}

#setionfooter {
    margin-bottom: 80px;
}

/* General Card Styles */
.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
}

.card-img-top {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

.card-body {
    padding: 15px;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card-text {
    font-size: 1rem;
    margin-bottom: 15px;
}

.btn-primary, .btn-secondary {
    /*background-color: #007bff;*/
    border: none;
    color: white;
    padding: 10px 13px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    margin-top: 10px;
    border-radius: 4px;
}

.prdtbtns {
    font-size: 25px;
    padding: 1px 12px;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Product Card Styles */
.product-card .card {
    background-color: #fff;
}

.product-card .card-title {
    color: #333;
}

/*.product-card .btn-primary {
    background-color: #28a745;
}*/

.product-card .btn-primary:hover {
    background-color: #218838;
}

/* Team Card Styles */
.team-card .card {
    background-color: #f1f1f1;
}

.team-card .card-title {
    color: #555;
}

.team-card .btn-primary {
    background-color: #17a2b8;
}

    .team-card .btn-primary:hover {
        background-color: #117a8b;
    }

.button-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#qrCodeContainer {
    display: none;
    margin-top: 20px;
}

#qrCodeCanvas {
    border: 1px solid #ccc;
    height: 250px !important;
    width: 250px !important;
    border-radius: 20px;
}

#downloadLink {
    display: block;
    margin-top: 10px;
}

.contctbtns {
    position: relative;
    z-index: 1001;
    /*background-color: #000;*/
    padding-bottom: 0px;
    width: 100%;
    padding-left: 0px;
    margin-bottom: 0;
    /* box-shadow: 0 0 10px rgb(0 0 0 / 50%); */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-left: 0%;
    bottom: -208px;
    height: 62px;
    animation: slideInUp 1s ease-out;
    margin-left: 0%;
}

@media (max-width: 600px) {
    .contctbtns {
        position: fixed;
        z-index: 1001;
        background-color: #000;
        padding-bottom: 1px;
        width: 100%;
        padding-left: 0px;
        margin-bottom: 0;
        box-shadow: 0 0 10px rgb(0 0 0 / 50%);
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        margin-left: 0%;
        bottom: 0;
        height: 65px;
        animation: slideInUp 1s ease-out;
    }

    #home .carousel-container {
        display: block;
    }

    .floating-button {
        position: fixed;
        right: 5px;
        bottom: 144px;
        background-color: transparent;
        color: white;
        padding: 12px;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        z-index: 10;
    }

    .floating-andbutton {
        right: 5px;
        bottom: 205px;
    }

    .enquiry-form {
        height: 618px;
    }

    .container {
        padding: 2px 8px;
    }

    .back-to-top {
        bottom: 85px;
        right: 9px;
    }

    .section-title h2 {
        width: 180%;
        padding-right: 10px;
        padding-left: 10px;
    }
}

.mt-3 {
    padding: 5px;
    margin-top: 0rem !important;
    justify-content: center !important;
}

.prdbtn {
    border: 1px solid #d4d4d4;
}

.downloadapp a {
    color: #a4c639;
}


.h2line {
    width: 100%;
    border: 1px solid #e7e7e9;
    display: flex;
}



.social-links {
    position: fixed;
    top: 40%;
    right: 0;
    transform: translateY(-50%);
    background: #333;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
    transition: width 0.3s;
    width: 40px;
    z-index: 1;
    opacity: 0.3;
}

    .social-links:hover {
        opacity: 1;
    }

.social-icon {
    padding: 10px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

    .social-icon i {
        font-size: 20px;
    }

    .social-icon:hover {
        color: #333;
        background: #fff;
    }

.wh {
    background: #25D366;
}

.fb {
    background: #3b5998;
}

.tw {
    background: #1DA1F2;
}

.in {
    background: #E1306C;
}

.li {
    background: #0077b5;
}

.tu {
    background: #36465d;
}

.yo {
    background: #FF0000;
}

.sk {
    background: #00aff0;
}

.pn {
    background: #bd081c;
}

.social-links:hover .social-icon {
    text-align: left;
}

.social-icon i {
    margin-right: 10px;
    vertical-align: middle;
}


.no-gutters {
    padding: 10px;
}
canvas{
        border-radius: 10px;
}
.payimg{
        height: 184px;
    border-radius: 15px;
}