@font-face {
    font-family: "ProximaNova";
    font-weight: 400;
    font-style: normal;
    src: url(../font/ProximaNova-Regular.otf);
}

@font-face {
    font-family: "ProximaNova";
    font-weight: 500;
    font-style: normal;
    src: url(../font/ProximaNova-Medium.otf)
}

@font-face {
    font-family: "ProximaNova";
    font-weight: 600;
    font-style: normal;
    src: url(../font/ProximaNova-Semibold.otf)
}

@font-face {
    font-family: "ProximaNova";
    font-weight: 700;
    font-style: normal;
    src: url(../font/ProximaNova-Bold.otf)
}

@font-face {
    font-family: "ProximaNova";
    font-weight: 800;
    font-style: normal;
    src: url(../font/ProximaNova-Extrabold.otf)
}

@font-face {
    font-family: "ProximaNova";
    font-weight: 900;
    font-style: normal;
    src: url(../font/ProximaNova-Black.otf)
}

* {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: "ProximaNova", sans-serif;
}

.text-orange {
    color: #FF6B00
}

.text-green {
    color: #268d06;
}

.logo-text {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #fff !important;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 50px;
    color: #121212;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    color: #000;
    margin-bottom: 10px;
    text-align: center;
}

h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 18px;
    color: #121212;
}

.custom-nav-bar {
    position: sticky;
    top: 0;
    z-index: 10000;
}

.custom-navbar-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url(../img/mobile-menu-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.navbar-icon {
    border: 3px solid #fff;
}

.section-header p {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-bottom: 40px;
}

.logo-bg {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 0;
    justify-content: center;
    display: flex;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 2s ease !important; /* Smoother fade transition */
}
.carousel-fade .carousel-item.active {
    opacity: 1;
}

.green-bg {
    background-color: #02351C;
}

.light-green-bg {
    background-color: #E5FFF2;
}

.btn-orange {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background-color: #FF6B00;
    padding: 10px 20px;
}

.btn-orange:hover {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background-color: #c95400;
    padding: 10px 20px;
}

.navbar .navbar-collapse ul li a {
    color: #fff;
}

.feature-icon {
    background-color: #FFF5EC;
    padding: 10px;
    border-radius: 50%;
}

.feature p {
    font-size: 16px;
    font-weight: 600;
    color: #121212;
    margin-left: 15px;
    margin-bottom: 0px !important;
    display: flex;
    align-items: center;
}

.custom-card-body small {
    font-size: 12px;
    font-weight: 600;
    color: #121212;
    display: flex;
    justify-content: start;
    margin-top: 15px;
}

.custom-card-body h5 {
    font-size: 20px;
    font-weight: 700;
    color: #121212;
    text-align: left;
}

.image-container {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
}

.image-container:hover .zoom-icon {
    opacity: 1;
}

.swiper-container {
    width: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    width: 100%;
    box-sizing: border-box;
}

.carousel-gallery {
    margin: 50px 0;
    padding: 0 30px;



    .swiper-slide {
        a {
            display: block;
            width: 100%;
            height: 200px;
            border-radius: 4px;
            overflow: hidden;
            position: relative;

            -webkit-box-shadow: 3px 2px 20px 0px rgba(0, 0, 0, .2);
            -moz-box-shadow: 3px 2px 20px 0px rgba(0, 0, 0, .2);
            box-shadow: 3px 2px 20px 0px rgba(0, 0, 0, .2);

            &:hover {
                .image {
                    .overlay {
                        opacity: 1
                    }
                }
            }

            .image {
                width: 100%;
                height: 100%;
                background-size: cover;
                background-position: center center;

                .overlay {
                    width: 100%;
                    height: 100%;
                    background-color: rgba(20, 20, 20, .8);
                    text-align: center;
                    opacity: 0;

                    -webkit-transition: all .2s linear;
                    -o-transition: all .2s linear;
                    transition: all .2s linear;

                    em {
                        color: #fff;
                        font-size: 26px;
                        position: relative;
                        top: 50%;
                        -webkit-transform: translateY(-50%);
                        -ms-transform: translateY(-50%);
                        -o-transform: translateY(-50%);
                        transform: translateY(-50%);
                        display: inline-block;
                    }
                }
            }
        }
    }

    .swiper-pagination {
        position: relative;
        bottom: auto;
        text-align: center;
        margin-top: 25px;

        .swiper-pagination-bullet {
            -webkit-transition: all .2s linear;
            -o-transition: all .2s linear;
            transition: all .2s linear;

            &:hover {
                opacity: .7;
            }

            &.swiper-pagination-bullet-active {
                background-color: #FF6B00;
                transform: scale(1.1, 1.1)
            }
        }
    }
}

.pricing-card-body {
    background-color: #E5FFF2;
    padding: 30px;
    border-radius: 10px;
}

.pricing-card-body ul li {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 400;
    color: #717171;
}

.pricing-card-body ul li img {
    margin-right: 6px;
    padding-bottom: 4px;
}

hr {
    border: 1px dashed #B0FFD8;
}

.pricing-card-header {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;

}

.pricing-card-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #424040;
    margin-bottom: 10px;
}

.pricing-card-header h2 {
    font-size: 30px !important;
    font-weight: 700 !important;
    margin-bottom: 10px;
    text-align: start !important;
}

.pricing-card-header p {
    font-size: 16px;
    font-weight: 400;
    color: #717171;
    margin-bottom: 10px;
}

.icon-orange-bg {
    background-color: #e4fff0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 15px;
}

.box-border-orange {
    border: 1px solid #99ffbd;
    border-radius: 10px !important;
    height: 100%;
}

.contact-us-box {
    padding: 20px;
    align-items: flex-start !important;
    height: max-content !important;
}

.icon-box img,
.icon-box img {
    max-height: 70px !important;
}

.icon-box img {
    transition: 0.5s;
    transform: scale(0.8) !important;
}

.map-responsive {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    border-radius: 10px;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@media (min-width:320px) and (max-width: 767px) {

    h1 {
        font-size: 38px !important;
        line-height: 38px !important;
    }

    h2 {
        font-size: 32px;
        font-weight: 700;
        line-height: 30px;
        color: #000;
        margin-bottom: 10px;
        text-align: left;
    }

    .btn-orange {
        margin-bottom: 20px;
    }

    .custom-nav-bar .navbar-collapse ul {
        margin-top: 15px;
        gap: 5px !important
    }

    .section-header p {
        font-size: 18px;
        font-weight: 500;
        color: #000;
        text-align: left;
        margin-bottom: 20px !important;
    }

    .carousel-gallery {
        margin: 0px 0px 50px 0 !important;
        padding: 0 30px;
    }

    .logo-bg{
        display: none;
    }

}