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

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

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

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

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

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

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

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

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

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

.sticky-top .navbar-light .navbar-brand img {
    max-height: 60px;
}

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

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

@media (min-width: 992px) {
    .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: 8px !important;
        transition: .5s;
        opacity: 0;
    }
}

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

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}

/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
    object-fit: cover;
}


@media (min-width: 1200px) {

    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 700px;
    }
}

@media (max-width: 1199px) {

    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        /* height: 1200px; */
        height: 550px;
    }
}

.header-carousel .owl-nav .owl-prev {
    display: none;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: -60px;
    right: 50%;
    transform: translateY(-50%);
    margin-right: -60px;
    border-radius: 60px;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-light);
    color: var(--bs-primary);
}

.header-carousel .owl-nav .owl-next i {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-name: carousel-next-btn;
    animation-duration: 4s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    transition: 1s;
}

@keyframes carousel-next-btn {
    0% {
        margin-top: 35%;
    }

    50% {
        margin-bottom: 70%;
    }

    100% {
        margin-top: 35%;
    }
}

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

@media (max-width: 992px) {
    .header-carousel .header-carousel-item .carousel-caption h1 {
        font-size: 2.2rem;
    }
}

/* Mobile screens */
@media (max-width: 768px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding: 15px;
    }

    .header-carousel .header-carousel-item .carousel-caption h1 {
        font-size: 1.8rem;
    }
}

/* Small mobile screens */
@media (max-width: 480px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding: 10px;
    }

    .header-carousel .header-carousel-item .carousel-caption h1 {
        font-size: 1.4rem;
    }
}

.carousel-caption .ticket-form {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
}

.header-carousel .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0% {
        width: 100%;
        height: 100%;
    }

    25% {
        width: 115%;
        height: 115%;
    }

    50% {
        width: 130%;
        height: 130%;
    }

    75% {
        width: 120%;
        height: 120%;
    }

    100% {
        width: 100%;
        height: 100%;
    }
}

/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../newimage/about-heading.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 {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.feature-item .feature-content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    margin-top: 0;
    margin-right: 0;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    z-index: 2;
}

@media (max-width: 992px) {
    .feature-item .feature-content {
        padding: 1rem;
        border-radius: 8px;
    }
}

/* Mobile view */
@media (max-width: 576px) {
    .feature-item .feature-content {
        padding: 0.8rem;
        border-radius: 6px;
        font-size: 0.9rem;
        /* reduce text size */
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    .feature-item .feature-content {
        padding: 8px;
        border-radius: 5px;
        /* smaller rounding for small screens */
    }
}

.feature-item .feature-content .feature-content-inner {
    position: relative;
    z-index: 5;

}

@media (max-width: 992px) {
    .feature-item .feature-content .feature-content-inner {
        margin-top: 40px;
    }
}

/* Small devices (large phones) */
@media (max-width: 768px) {
    .feature-item .feature-content .feature-content-inner {
        margin-top: 150px;
    }
}

/* Extra small devices (small phones) */
@media (max-width: 576px) {
    .feature-item .feature-content .feature-content-inner {
        margin-top: 0px;
        font-size: 0.6rem;
    }
}

/*** Feature End ***/


/*** Service Start ***/
.service {
    position: relative;
    overflow: hidden;
    background-image: url(../newimage/service-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.service .service-section {
    position: relative;
    z-index: 5;
}

.service .service-days {
    border-radius: 10px;
    background: var(--bs-white);
}

.service .service-item {
    position: relative;
    height: 100%;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-white);
    z-index: 1;
}

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

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

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

.service .service-item:hover i {
    color: var(--bs-white);
}

.service .service-item .service-content {
    position: relative;
    z-index: 3;
}

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

.service .service-item:hover .service-content p {
    color: var(--bs-white);
}

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

.service .service-item:hover .service-content a.h4:hover {
    color: var(--bs-white);
}

/*** Service End ***/


/*** Attractions Start ***/
.attractions {
    position: relative;
    overflow: hidden;
}

.attractions::after {
    content: "";
    width: 100%;
    height: 70%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../newimage/product-bg.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes attraction-image-zoom {
    0% {
        width: 100%;
    }

    25% {
        width: 115%;
    }

    50% {
        width: 130%;
    }

    75% {
        width: 120%;
    }

    100% {
        width: 100%;
    }
}

.attractions .attractions-section {
    position: relative;
    z-index: 3;
}

.attractions .attractions-item {
    position: relative;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

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

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

.attractions .attractions-item .attractions-name {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    color: var(--bs-white);
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
}

.attractions .attractions-item:hover .attractions-name {
    opacity: 1;
}

.attractions-carousel .owl-stage-outer {
    margin-top: 58px;
}

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



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

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

.attractions .owl-nav .owl-next:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}

/*** Attractions End ***/


/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

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

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

.gallery .gallery-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    background: rgba(0, 0, 0, .4);
    transition: 0.5s;
    z-index: 1;
}

.gallery .gallery-item:hover::after {
    width: 100%;
    height: 100%;
}

.gallery .gallery-item .search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    z-index: 5;
    opacity: 0;
}

.gallery .gallery-item:hover .search-icon {
    opacity: 1;
}

/*** Gallery End ***/

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

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

.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: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.blog .blog-item .blog-img .blog-category {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 5;
}

.blog .blog-item .blog-img .blog-date {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: var(--bs-white);
    z-index: 5;
}

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

/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    background: var(--bs-primary);
    border-radius: 10px;
}

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

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

.team .team-item .team-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.team .team-item .team-content .team-icon {
    background: var(--bs-light);
    border-radius: 10px;
    display: flex;
    display: inline-flex;
}


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

.team .team-item:hover .team-content h4 {
    color: var(--bs-primary);
}

.team .team-item .team-content p {
    color: var(--bs-white);
    transition: 0.5s;
}

.team .team-item:hover .team-content p {
    color: var(--bs-body);
}

/*** Team End ***/

/*** Testimonial Start ***/
.testimonial {
    position: relative;
    overflow: hidden;
}

.testimonial::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../newimage/testimonial-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

.testimonial::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    z-index: -1;
}

.testimonial .testimonial-carousel .testimonial-item {
    text-align: center;
    border-radius: 10px;
    background: rgba(256, 256, 256, 0.2);
}

@media (max-width: 992px) {
    .testimonial .testimonial-carousel .testimonial-item {
        padding: 25px;
        border-radius: 8px;
    }
}

/* Small devices (large phones) */
@media (max-width: 768px) {
    .testimonial .testimonial-carousel .testimonial-item {
        padding: 20px;
        border-radius: 6px;
    }
}

/* Extra small devices (small phones) */
@media (max-width: 576px) {
    .testimonial .testimonial-carousel .testimonial-item {
        padding: 15px;
        border-radius: 5px;
    }
}

.testimonial-carousel .testimonial-item .testimonial-inner {
    display: flex;
    justify-content: center;
}

.testimonial-item .testimonial-inner .testimonial-img {
    position: relative;
}

.testimonial-item .testimonial-inner .testimonial-img img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 2px solid var(--bs-white);
}

.testimonial-item .testimonial-inner .testimonial-img .testimonial-quote {
    position: absolute;
    top: 0;
    left: -25px;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-light);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    bottom: -22px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: -210px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev {
    font-size: 50px;
    margin-right: 80px;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-next {
    font-size: 50px;
    margin-left: 80px;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}

/*** Testimonial 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); */
    color: var(--bs-light);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
    color: var(--bs-light);
}

.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 .opening-date {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer .footer-item .opening-date .opening-clock {
    display: flex;
    align-items: center;
    line-height: 35px;
}

/*** Footer End ***/

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

/*** copyright end ***/


.footer-item .logo {
    max-height: 70px;
}

/* --------------------------------------------------------------- */

.ftr-icons i {
    color: #038703;
    /* background-color: gainsboro; */
}

.ftr-icons:hover i {
    color: #ffff;
}

/* why choose us */
.chooseus-section {
    position: relative;
    background: #fff;
    padding: 50px 0px;
    min-height: 100vh;
}

.chooseus-section .sec-title {
    margin-bottom: 60px;
}

#video_block_01 .video-inner {
    position: relative;
    width: 100%;
    padding: 50px 0px 50px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 0px 30px rgba(0, 0, 0, 0.1);
}

#video_block_01 .video-inner .pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

#video_block_01 .video-inner .video-btn {
    position: relative;
    display: inline-block;
    width: 116px;
    height: 115px;
    line-height: 115px;
    text-align: center;
    margin-left: 40px;
    border-radius: 50%;
}

#video_block_01 .video-inner .video-btn .btn-bg {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 116px;
    height: 115px;
    background-repeat: no-repeat;
}

#video_block_01 .video-inner .video-btn a {
    position: relative;
    display: inline-block;
    width: 116px;
    height: 115px;
    border-radius: 50%;
    font-size: 24px;
    z-index: 1;
}

#video_block_01 .video-inner .video-btn a i {
    background: -webkit-linear-gradient(-45deg, #00bb6e, #0156d5 100%);
}

#video_block_01 .video-inner .video-btn a i {
    position: relative;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#content_block_04 .content-box .single-item {
    position: relative;
}

#content_block_04 .content-box .single-item:first-child {
    padding-left: 190px;
    margin-bottom: 67px;
}

#content_block_04 .content-box .single-item:last-child {
    padding-right: 190px;
}

#content_block_04 .content-box .single-item .icon-box {
    position: absolute;
    top: 14px;
    width: 158px;
    height: 158px;
    line-height: 158px;
    text-align: center;
    font-size: 70px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
}

#content_block_04 .content-box .single-item .icon-box:before {
    position: absolute;
    content: "";
    background: #fbfbfb;
    width: 138px;
    height: 100%;
    left: 10px;
    border-radius: 10px;
}

#content_block_04 .content-box .single-item:first-child .icon-box:before {
    top: 10px;
}

#content_block_04 .content-box .single-item:last-child .icon-box:before {
    top: -10px;
}

#content_block_04 .content-box .single-item .icon-box i {
    background: -webkit-linear-gradient(-45deg, #4975a6, #038703 100%);
    position: relative;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#content_block_04 .content-box .single-item .icon-box .bg-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 158px;
    height: 158px;
    background-repeat: no-repeat;
}

@media (max-width: 992px) {
    #content_block_04 .content-box .single-item .icon-box .bg-layer {
        width: 130px;
        height: 130px;
    }
}

/* Small devices (large phones) */
@media (max-width: 768px) {
    #content_block_04 .content-box .single-item .icon-box .bg-layer {
        width: 100px;
        height: 100px;
    }
}

/* Extra small devices (small phones) */
@media (max-width: 576px) {
    #content_block_04 .content-box .single-item .icon-box .bg-layer {
        width: 80px;
        height: 80px;
    }
}

#content_block_04 .content-box .single-item:first-child .icon-box {
    left: 0px;
}

#content_block_04 .content-box .single-item:last-child .icon-box {
    right: 0px;
}

#content_block_04 .content-box .single-item .box h4 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 27px;
}

#content_block_04 .content-box .single-item .box h4:before {
    position: absolute;
    content: "";
    width: 55px;
    height: 2px;
    bottom: 0px;
}

#content_block_04 .content-box .single-item:first-child .box h4:before {
    left: 0px;
}

#content_block_04 .content-box .single-item:last-child .box h4:before {
    right: 0px;
}

#content_block_04 .content-box .single-item .box p {
    margin-bottom: 20px;
    line-height: 28px;
}

@media (max-width: 992px) {
    #content_block_04 .content-box .single-item .box p {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 18px;
    }
}

/* Small devices (large phones) */
@media (max-width: 768px) {
    #content_block_04 .content-box .single-item .box p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 16px;
    }
}

/* Extra small devices (small phones) */
@media (max-width: 576px) {
    #content_block_04 .content-box .single-item .box p {
        font-size: 10px;
        line-height: 14px;
        margin-bottom: 10px;
    }
}

#content_block_04 .content-box .single-item .box a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    font-family: "Josefin Sans", Sans-serif;
    font-weight: 600;
    color: #038703;
}

#content_block_04 .content-box .single-item .box a:hover {
    color: #021016;
}

#content_block_04 .content-box .single-item:first-child .box a i {
    margin-right: 10px;
}

#content_block_04 .content-box .single-item:last-child .box a i {
    margin-left: 10px;
}

.rotate-me {
    animation-name: rotateme;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 30s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotateme;
    -moz-animation-duration: 30s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotateme;
    -ms-animation-duration: 30s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: rotateme;
    -o-animation-duration: 30s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@keyframes rotateme {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(-360deg);
    }
}

@-moz-keyframes rotateme {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(-360deg);
    }
}

@-o-keyframes rotateme {
    from {
        -o-transform: rotate(0deg);
    }

    to {
        -o-transform: rotate(-360deg);
    }
}

.modal-body {
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    padding-top: 0;
    overflow: hidden;
}

.modal-body iframe,
.modal-body object,
.modal-body embed,
.modal-body video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

button.close {
    position: absolute;
    right: -20px;
    top: -30px;
    border-radius: 50px;
    background: white;
    line-height: 1 !important;
    padding: 0px 6px 5px !important;
    opacity: 1;
}

/* <!-- whatsapp integration start --> */
.whatsapp-float img {
    width: 50px;
    position: fixed;
    bottom: 40px;
    left: 20px;
    border-radius: 10px;
    z-index: 1;
}

/* <!-- whatsapp integration end --> */


.contact-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.contact-container {
    margin: 0 auto;
    max-width: 80rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact-image-wrapper {
    position: relative;
    height: 100%;
}

.contact-image {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    background-blend-mode: multiply;
    background-color: #038703;
}

.contact-title {
    font-family: sans-serif;
    color: white;
    font-size: 2.25rem;
    font-weight: bold;
    line-height: 2.5rem;
    position: absolute;
    top: 2.75rem;
    left: 2.75rem;
}

.contact-info-wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 2.75rem;
}

@media (max-width: 992px) {
    .contact-info-wrapper {
        padding: 2rem;
        /* ~32px */
    }
}

/* Small devices (large phones) */
@media (max-width: 768px) {
    .contact-info-wrapper {
        padding: 1.5rem;
        /* ~24px */
    }
}

/* Extra small devices (small phones) */
@media (max-width: 576px) {
    .contact-info-wrapper {
        position: relative;
        /* Avoid overlap issues on very small screens */
        padding: 1rem;
        /* ~16px */
    }
}

.contact-info-box {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

@media (max-width: 992px) {
    .contact-info-box {
        padding: 1.2rem;
    }
}

/* For mobile devices */
@media (max-width: 576px) {
    .contact-info-box {
        padding: 1rem;
        border-radius: 0.3rem;
    }
}

.contact-link {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.contact-text {
    color: black;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5rem;
    margin-left: 1.25rem;
}

.contact-form-box {
    background-color: #dae8f7;
    padding: 2.75rem;
    border-radius: 1rem;
}

@media (max-width: 992px) {
    .contact-form-box {
        padding: 2rem;
        /* ~32px */
        border-radius: 0.9rem;
        /* ~14px */
    }
}

/* Small devices (large phones) */
@media (max-width: 768px) {
    .contact-form-box {
        padding: 1.5rem;
        /* ~24px */
        border-radius: 0.8rem;
        width: auto;
        margin-top: 20px;
        /* ~12px */
    }
}

/* Extra small devices (small phones) */
@media (max-width: 576px) {
    .contact-form-box {
        padding: 1rem;
        /* ~16px */
        border-radius: 0.7rem;
        /* ~11px */
    }
}

.form-title {
    color: #038703;
    font-family: sans-serif;
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 2.5rem;
    margin-bottom: 2.75rem;
}

.form-input {
    width: 100%;
    height: 3rem;
    color: #4b5563;
    padding-left: 1rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    margin-bottom: 2.5rem;
}

.form-submit {
    width: 100%;
    height: 3rem;
    color: white;
    background-color: #038703;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
}

.fix {
    /* height: 201px; */
    width: 330px;
}

.txt {
    font-size: 45px;
}

.txt1 {
    font-size: 20px;
    text-align: justify;
}

.txt2 {
    font-size: 30px;
}

.size {
    margin-top: 9px;
}

.demo {
    margin-top: -42px;
}

.para0 {
    text-align: justify;
}


.section-title {
    color: #038703;
    font-weight: 700;
}

.info-section {
    background-color: #edf2f5;
}

.info-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

ul li {
    margin-bottom: 8px;
}

.soil-heading {
    font-weight: bold;
    color: #038703;
}

.soil-heading .highlight {

    padding: 0 8px;
    display: inline-block;
}

/* style.css */

.floor-section {
    background-color: #f8f9fa;
    /* Light grey background */
}

.section-title {
    position: relative;
    display: inline-block;
}

.highlight-bar {
    position: absolute;
    width: 50px;
    height: 5px;
    /* background-color: #d4ff1c; */
    /* Neon highlight */
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    padding: 1rem;
}

.img-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.how-we-fix {
    background-color: #f8f9fa;
    ;
    background-size: cover;
    /* color: #fff; */
}

.how-we-fix p {
    font-size: 1rem;
    line-height: 1.6;
    color: #021016;
}



.about-product {
    padding: 60px 20px;
    background: #f5fff8;
    border-top: 2px solid #d0f0d4;
    border-bottom: 2px solid #d0f0d4;
}

.about-product h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #030403;
    margin-bottom: 20px;
}

.about-product p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.about-product .product-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* .about-product .product-img:hover {
    transform: scale(1.05);
} */

@media (max-width: 768px) {
    .about-product {
        text-align: center;
    }

    .about-product h3 {
        font-size: 1.8rem;
    }

    .about-product p {
        font-size: 1rem;
    }
}

.flex-section {
    background: #e9f7ed;
    background-image: url('./images/wave-pattern.png');
    /* optional, replace with your pattern image */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.flex-section h1 {
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 800;
    line-height: 1.2;
}

.flex-section p {
    font-size: 1.1rem;
    max-width: 400px;
}

.product-img {
    max-width: 350px;
    transition: transform 0.3s ease-in-out;
}

/* .product-img:hover {
    transform: scale(1.05);
} */

.featured-section {
    background: #e9f7ed;
    padding: 50px 0;
}

.bottle-img {
    width: 100%;
    max-width: 320px;
    margin: auto;
    display: block;
    border-radius: 25px;
}

.feature-icon {
    font-size: 1.2rem;
    margin-right: 10px;
    color: #333;
}

.campaign-section {
    background-color: #f8f9fa;
    color: rgb(15, 12, 12);
    padding: 60px 20px 30px;
    text-align: center;
}

.campaign-image img {
    max-width: 30%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.regulatory-title {
    color: #038703;
    /* A deep blue shade - you can change to any hex or color name */
}

.color-swatches span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid #ccc;
}

/* .color-brown {
    background-color: #693324;
}

.color-tan {
    background-color: #d2b48c;
}

.color-black {
    background-color: #000;
} */

.details-btn {
    border: 1px solid #c4c4c4;
    background-color: transparent;
    color: #333;
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 0;
}

.details-btn:hover {
    background-color: #333;
    color: #fff;
}

.image-wrapper img {
    max-width: 100%;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

:root {
    --width: min(1000px, 90vw);
    --font-size: clamp(1.2rem, 2vw, 2.3rem);
    --gap: clamp(8px, 2vw, 16px);
}

/* Tablet adjustments */
@media (max-width: 768px) {
    :root {
        --width: 95vw;
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    :root {
        --width: 100vw;
    }
}

#app {
    min-height: 61vh;
    display: grid;
    place-items: center;
    padding: 0;
    margin-top: 0;
}

@media (max-width: 480px) {
    #app {
        min-height: 32vh;
        /* increase height for better look */
        padding: 0.5rem;
    }
}

/* For tablets */
@media (min-width: 481px) and (max-width: 768px) {
    #app {
        min-height: 32vh;
        padding: 1rem;
    }
}

/* For laptops/desktops */
@media (min-width: 769px) and (max-width: 1200px) {
    #app {
        min-height: 32vh;
        padding: 2rem;
    }
}

/* For very large screens */
/* @media (min-width: 1201px) { */
/* #app { */
/* min-height: 108vh; */
/* keep original look */
/* padding: 2rem 3rem;
    }
} */

/* Gallery container */
.gallery {
    width: var(--width);
    list-style: none;
    display: grid;
    padding: 0;
    margin: 0;
}

/* Gallery items */
.gallery li {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    width: calc(var(--width) / 5);
    aspect-ratio: 1;
    cursor: pointer;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.6);
    transition: transform 0.8s;
}

.gallery li::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Scale & z-index */
.gallery li[data-pos="0"] {
    transform: scale(1);
    z-index: 1;
}

.gallery li[data-pos="1"] {
    transform: scale(1.4);
    z-index: 5;
}

.gallery li[data-pos="2"] {
    transform: scale(1.8);
    z-index: 10;
}

.gallery li[data-pos="3"] {
    transform: scale(1.4);
    z-index: 5;
}

.gallery li[data-pos="4"] {
    transform: scale(1);
    z-index: 1;
}

.gallery li[data-pos="1"]::after {
    background-color: rgba(0, 0, 0, .4);
}

.gallery li[data-pos="2"]::after {
    background-color: transparent;
}

.gallery li[data-pos="3"]::after {
    background-color: rgba(0, 0, 0, .4);
}

/* Title styling - fully responsive and tight with gallery */
.title {
    text-align: center;
    margin: clamp(20px, 4vw, 40px) 0 clamp(10px, 2vw, 20px);
    font-size: var(--font-size);
    font-weight: bold;
    color: #208941;
    min-height: 1.5em;
    line-height: 1.2;
    padding: 0;
}

@media(max-width:768px) {
    .gallery li {
        width: 100%;
    }

    .gallery {
        width: 100%;
    }
}