
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

/* back-to-to */
.back-to-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 50px;
    right: 40px;
    width: 50px;
    height: 40px;
    margin: 0px;
    font-size: 18px;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
    z-index: 999;
    transform: skew(18deg);
}

.back-to-top a i {
    transform: skew(-18deg);
}

.back-to-top a:hover {
    background: var(--bs-dark);
    color: var(--bs-white); 
}

/*** 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: 40px;
    height: 40px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-xl-square {
    width: 56px;
    height: 56px;
}

.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: #000;
    border: none;
    transform: skew(18deg);
    transition: 0.5s;
}

.btn.btn-primary span,
.btn.btn-primary i {
    display: inline-block;
    transform: skew(-18deg);
}

.btn.btn-primary:hover {
    background: var(--bs-white);
    color: var(--bs-dark);

}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
    transform: skew(18deg);
    transition: 0.5s;
}

.btn.btn-light span,
.btn.btn-light i {
    display: inline-block;
    transform: skew(-18deg);
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}


.btn.btn-dark {
    color: #fff;
    border: none;
    transform: skew(18deg);
    transition: 0.5s;
}

.btn.btn-dark span,
.btn.btn-dark i {
    display: inline-block;
    transform: skew(-18deg);
}

.btn.btn-dark:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

/*** Navbar Start ***/
.header-top {
    height: 100%;
    position: relative;
}

.header-top::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 16%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--bs-dark);
    z-index: 1;
}

.topbar .login-btn {
    position: relative;
}

.topbar .login-btn::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    right: -1px;
    background: var(--bs-primary);
    transform: skew(18deg);
}

@media (min-width: 992px) {
    .header-top::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 45px;
        top: 0;
        right: 0;
        background: var(--bs-dark);
        z-index: -1;
    }

    .navbar-brand-2 {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-top {
        max-height: 80px;
    }

    .navbar {
        justify-content: space-between;
    }

    .header-top .container {
        max-height: 80px;
    }

    .navbar-brand {
        display: none;
    }

    .navbar-brand-2 {
        position: relative;
        overflow: hidden;
        width: 180px;
        height: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        z-index: 99;
    }

    .navbar-brand-2::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-dark);
        transform: rotate(-18deg);
        z-index: -1;
    }

    .navbar.navbar-light {
        height: 100%;
        padding: 0;
    }

    .navbar .navbar-collapse {
        margin-top: -20px;
    }

}

.navbar-brand {
    position: relative;
    overflow: hidden;
    padding: 40px 50px 40px 0;
}

.navbar-brand::before {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 300px;
    height: 600px;
    top: -200px;
    right: 18px;
    background: var(--bs-dark);
    transform: rotate(-18deg);
    z-index: -1;
}

.header-top .navbar-brand {
    position: relative;
    z-index: 99;
}

.nav-bar .navbar {
    z-index: 9;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 20px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 12px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        margin-left: 50px;
        background: var(--bs-light);
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        flex-direction: column;
    }

    .navbar .navbar-nav .nav-btn a.btn {
        margin-right: 15px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: none;
        background: var(--bs-primary);
        color: var(--bs-dark);
        transform: skew(18deg);
    }

    .navbar.navbar-expand-lg .navbar-toggler span {
        transform: skew(-18deg);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-btn {
        display: inline-flex;
        margin-left: auto;
        background: transparent;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 19px;
        background: var(--bs-white);
        transition: .5s;
        opacity: 1;
    }

    .navbar-nav {
        background: transparent !important;
    }

    .nav-shaps-1 {
        position: absolute;
        overflow: hidden;
        min-width: calc(100% - 81%);
        height: 100%;
        top: 0;
        right: 0;
        transform: skew(18deg);
        background: var(--bs-dark);
        z-index: -1;
    }

    .nav-shaps-2 {
        position: absolute;
        overflow: hidden;
        width: 12%;
        height: 100%;
        top: 0;
        right: 0;
        background: var(--bs-dark);
        z-index: -1;
    }
}
/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 3, 8, 0.4), rgba(5, 10, 27, 0.4)), url(../img/banner/breadcrumb.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0 70px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
    font-size:18px;
    font-weight:600;

}
/*** Single Page Hero Header End ***/


/*** Carousel Hero Header Start ***/
.hero-section {
    background-image: url(../img/carousel-1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-half-1 {
    background-image: url(../img/header-2.jpg);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: grayscale(15%);
    transform: scale(100% - 50%);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 58%;
    height: 100%;
    right: 0;
    top: 0;
}

.hero-bg-half-2 {
    background-image: url(../img/header-1.jpg);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: grayscale(15%);
    transform: scale(100% - 50%);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 58%;
    height: 100%;
    right: 0;
    top: 0;
}

@media (max-width: 991px) {
    .hero-bg-half-1 {
        background-image: url(../img/header-2.jpg);
        clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
        filter: grayscale(0%);
        transform: scale(100% - 0%);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        width: 100%;
        height: 100%;
        right: 0;
        top: 0;
    }

    .hero-bg-half-2 {
        background-image: url(../img/header-1.jpg);
        clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
        filter: grayscale(0%);
        transform: scale(100% - 0%);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        width: 100%;
        height: 100%;
        right: 0;
        top: 0;
    }
}

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    transform: skew(18deg);
    background: var(--bs-white);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 51%;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 51%;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    display: flex;
    align-items: center;
    z-index: 9;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel.owl-carousel,
    .header-carousel .header-carousel-item {
        height: 700px;
    }
}
/*** Carousel Hero Header End ***/


/*** About Start ***/
.about {
    position: relative;
    overflow: hidden;
    background: var(--bs-dark);
}

@media (min-width: 992px) {
    .about::before {
        content: "";
        position: absolute;
        width: 70%;
        height: 100%;
        top: 0;
        right: -400px;
        background: var(--bs-primary);
        transform: skew(28deg);
    }

    .about .about-content {
        margin-bottom: 60px;
    }
}

@media (max-width: 991px) {
    .about::after {
        content: "";
        position: absolute;
        width: 70%;
        height: 100%;
        top: 0;
        left: -400px;
        background: var(--bs-primary);
        transform: skew(28deg);
    }

    .about .about-content {
        margin-bottom: 0px !important;
    }
}

.about .about-content {
    position: relative;
    z-index: 9;
}

.about .about-img {
    position: relative;
    z-index: 10;
}

.about .tab-class .nav .nav-item a {
    position: relative;
    transform: skew(18deg);
    text-align: center;
    background: var(--bs-white);
    color: var(--bs-dark);
}

.about .tab-class .nav .nav-item a span {
    transform: skew(-18deg);
}

.about .tab-class .nav .nav-item a.active {
    background: var(--bs-primary);
    color: var(--bs-white);
}
/*** About End ***/

/*** Fitness Goal Start ***/
.goal {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgb(23 42 37 / 60%), rgb(17 60 49 / 60%)), url(../img/about/why-choose-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}



.goal .goal-item {
    transform: skew(10deg);
    box-shadow: 0 0 45px rgba(12, 24, 68, 0.2);
    margin: 0 15px 15px 15px;
}

@media (min-width: 992px) {
    .goal .goal-content {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .goal .goal-content {
        padding-bottom: 0;
    }
}
/*** Fitness Goal End ***/

/*** Features Start ***/
.feature {
    overflow: hidden;
}

.feature-carousel.owl-carousel {
    z-index: 9;
    padding: 0 60px;
    transform: skew(10deg);
}

.feature .feature-shaps {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px;
    margin-top: -200px;
    transform: skewX(-10deg);
    border: 3px solid var(--bs-primary);
    z-index: 2;
}

@media (max-width: 576px) {
    .feature .feature-shaps {
        width: 90%;
        margin-left: 5%;
    }
}

.feature .feature-item {
    position: relative;
}

.feature .feature-item .feature-img {
    position: relative;
    overflow: hidden;
}

.feature .feature-item .feature-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(255, 245, 225, .5);
    transition: 0.5s;
}

.feature .feature-item:hover .feature-img::after {
    height: 100%;
    transform: scaleX(-1.1);
}

.feature .feature-item .feature-img img {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-img img {
    transform: scaleX(-1.1);
}

.feature .feature-item .feature-content {
    position: relative;
    background: var(--bs-white);
    z-index: 1;
}

.feature .feature-item .feature-content h4 {
    transition: 0.5s;
    color:#000;
}

.feature .feature-item:hover .feature-content h4 {
    color:#1b4d4d;
}
.feature .feature-item .feature-content p {
    color:#000;
}

.feature .feature-item .feature-content::after {
   
    position: absolute;
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    background: #125F65;
    transition: 0.5s;
    
    z-index: -1;
}

.feature .feature-item:hover .feature-content::after {
    height: 100%;
}

.feature-carousel .owl-nav .owl-prev,
.feature-carousel .owl-nav .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: -122px;
    transform: skew(18deg);
    background: var(--bs-dark);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.feature-carousel .owl-nav .owl-prev i,
.feature-carousel .owl-nav .owl-next i {
    transform: skew(-18deg);
}

.feature-carousel .owl-nav .owl-prev {
    left: 0;
}
.feature-carousel .owl-nav .owl-next {
    right: 150px;
}

.feature-carousel .owl-nav .owl-prev:hover,
.feature-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}
/*** Features End ***/

/*** Courses Start ***/
.courses {
    position: relative;
    overflow: hidden;
   background: linear-gradient(rgba(14, 50, 53, 0.7), rgba(8, 40, 42, 0.7)), url(../img/services/bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.courses .courses-item {
    position: relative;
    overflow: hidden;
}

.courses .courses-item p {
    color: #000;
    font-weight:600;
    transition: 0.5s;
}

.courses .courses-item:hover p {
    color: var(--bs-body);
}

.courses-item .courses-item-inner {
    position: relative;
    transform: skew(4deg);
    margin: 0 15px;
    background: rgba(255, 245, 225, .6);
    transition: 0.5s;
}

.courses-item:hover .courses-item-inner {
    background: none;
}

.courses-item .courses-item-inner:hover {
    transform: skew(-4deg);
}

.courses-item .courses-item-inner .data-info .courses-trainer {
    color: var(--bs-white);
    transition: 0.5s;
}

.courses-item:hover .courses-item-inner .data-info .courses-trainer {
    color: var(--bs-body);
}

.courses-item .courses-item-inner .data-info .courses-date {
    font-size: 13px;
}

.courses-item .courses-item-inner .courses-icon-img {
    width: 200px; 
    height: 150px;
    
    transition: 0.5s;
}

.courses-item .courses-item-inner .courses-icon-img img {
   
    transition: 0.5s;
}

.courses-item:hover .courses-item-inner .courses-icon-img img {
    filter: grayscale(0%);
}

.courses-item-inner:hover a {
    color: var(--bs-white);
    transition: 0.5s;
}

.courses-item-inner:hover a:hover {
    color: var(--bs-primary);
}

.courses-item-inner::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 4px;
    bottom: 0;
    left: 0;
    background: rgba(214, 214, 216, 0.9);
    transition: 0.5s;
    z-index: -1;
}

.courses-item-inner:hover:after {
    height: 100%;
}
/*** Courses End ***/

/*** Blog Start ***/
.blog {
    overflow: hidden;
}

.blog .blog-item {
    position: relative;
    border: 1px solid var(--bs-primary);
    transition: 0.5s;
}

.blog .blog-item .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.3);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: skew(100deg);
    background: rgba(200, 0, 54, 1);
    border: none;
    transition: 0.5s;
    z-index: -1;
}

.blog .blog-item .blog-img::before {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: skew(-100deg);
    background: rgba(12, 24, 68, 1);
    border: none;
    transition: 0.5s;
    z-index: -1;
}

.blog-content .blog-comment {
    transform: skew(8deg);
    background: rgba(12, 24, 68, 1);
}

.blog-content .blog-comment div.small,
.blog-content .blog-comment span {
    transform: skew(-4deg);
}

.blog-carousel .owl-stage-outer {
    margin-right: -1px;
}

.blog-carousel .owl-dots {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blog-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    margin: 30px 10px 0 10px;
    background: var(--bs-dark);
    transform: skew(18deg);
    transition: 0.5s;
}

.blog-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 50px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.blog-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    margin-right: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blog-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-white);
    height: 30px;
    margin-top: 10px;
}

.blog-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-primary);
    transition: 0.5s;
}
/*** Blog End ***/

/*** Explore Fitness Start ***/
.explore {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(12, 24, 68, 0.7), rgba(12, 24, 68, 0.7)), url(../img/services-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*** Explore Fitness End ***/

/*** Team Start ***/
.team {
    overflow: hidden;
}

.team .team-item {
    position: relative;
}
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    transform: matrix(1, -0.1, 0, 1, 0, 0);
    transition: 0.5s;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 245, 225, .5);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    z-index: 2;
}

.team .team-item .team-img .team-icon a {
    transition: 0.5s;
}

.team .team-item:hover .team-img .team-icon a  {
    margin: 0 7px;
}

.team .team-item .team-content {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 25px;
    border: 1px solid var(--bs-primary);
    border-top: none;
    transform: matrix(1, -0.1, 0, 1, 0, 0);
    transition: 0.5s;
}

.team .team-item .team-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover .team-content,
.team .team-item:hover .team-img {
    transform: matrix(1, 0.1, 0, 1, 0, 0);
    border: none;
}

.team .team-item:hover .team-content::after {
    height: 100%;
    background: var(--bs-dark);
}

.team .team-item .team-content h4 {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-white);
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(12, 24, 68, 0.9), rgba(12, 24, 68, 0.9)), url(../img/services-img.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-item .quote-icon {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--bs-white);
}

.testimonial-item .testimonial-img {
    border: 2px solid var(--bs-primary);
}

.testimonial-item .testimonial-img img {
    width: 100px; 
    height: 100px;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    transform: skew(18deg);
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev i,
.testimonial-carousel .owl-nav .owl-next i {
    transform: skew(-18deg);
}

.testimonial-carousel .owl-nav .owl-prev {
    left: 0;
}
.testimonial-carousel .owl-nav .owl-next {
    right: 0;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}
/*** Testimonial End ***/

/*** Conatct Start ***/
.contact {
    overflow: hidden;
}

.contact .form-section form .form-section-col {
    transform: skewX(18deg);
    margin: 0 12px;
}

.contact .contact-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    border: 2px solid var(--bs-dark);
    background: linear-gradient(rgba(255, 245, 225, 0.2), rgba(12, 24, 68, 0.1), rgba(200, 0, 54, 0.3));
}

.contact .contact-banner::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    bottom: 0;
    right: 0;
    background-image: url(../img/contact-banner.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.contact form button {
    border: none;
    transition: 0.5s;
}

.contact form button:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}
/*** Contact End ***/

/*** Footer Start ***/
.footer {
    overflow: hidden;
    background: linear-gradient(rgba(12, 24, 68, 0.9), rgba(12, 24, 68, 0.98)), url(../img/services-img.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer button {
    border: none;
    transition: 0.5s;
}

.footer button:hover {
    background: var(--bs-white);
    color: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item .footer-item-img {
    transform: matrix(1, -0.09, 0, 1, 0, 0);
    transition: 0.5s;
}

.footer .footer-item .footer-item-img:hover {
    transform: matrix(1, 0.09, 0, 1, 0, 0);
}

.footer .footer-item .footer-item-img img {
    filter: grayscale(50%);
    transition: 0.5s;
}

.footer .footer-item .footer-item-img:hover img {
    filter: grayscale(0%);
}

.footer .footer-item a {
    line-height: 35px;
    font-size: 16px;
    font-weight: 500;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover {
    color: var(--bs-primary);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/

 .vt-topbar2025 {
  background: #215757;
  color: #fff;
  padding: 10px 30px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

/* Menu Bar */
.vt-menubar2025 {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
 padding: 0px 30px 0px 15px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
.vt-logo2025 {
  max-width: 250px; /* Optional: limit the logo container width */
  width: 100%;
}

.vt-logo2025 img {
  width: 100%;           /* Full width of container */
  height: auto;          /* Maintain aspect ratio */
  object-fit: contain;   /* Prevent distortion */
  display: block;
}

/* Navigation Links */
.vt-navlinks2025 {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: left;
  padding-top: 20px;
}

.vt-navlinks2025 > li {
  position: relative;
}

.vt-navlinks2025 a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
}

/* Big Arrow Icon */
.vt-arrow2025 {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Submenu Styling */
.vt-submenu2025 {
  position: absolute;
  top: 40px;
  left: 0;
  background-color: #1b4d4d;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  min-width: 160px;
  border-radius: 5px;
  z-index: 999;
}
.vt-submenu2025 li{
  list-style-type: none;
}

.vt-submenu2025 a {
  padding: 5px 10px;
  font-size: 14px;
  white-space: nowrap;
  color: #fff;
}

/* Desktop Hover */
@media (min-width: 769px) {
  .vt-navlinks2025 li:hover > .vt-submenu2025 {
    display: flex;
  }

  .vt-navlinks2025 li:hover > a > .vt-arrow2025 {
    transform: rotate(180deg);
  }
}

/* Mobile Menu Button */
.vt-mobilemenu-btn2025 {
  display: none;
  font-size: 28px;
  color: #215757;
  cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .vt-navlinks2025 {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #f7f8f8;
    position: absolute;
    top: 85px;
    left: 0;
    padding: 20px;
  }

  .vt-navlinks2025.show {
    display: flex;
  }

  .vt-submenu2025 {
    position: static;
    background: #e9ecef;
    display: none;
    margin-top: 5px;
  }

  .vt-navlinks2025 li.open > .vt-submenu2025 {
    display: flex;
  }

  .vt-navlinks2025 li.open > a > .vt-arrow2025 {
    transform: rotate(180deg);
  }

  .vt-mobilemenu-btn2025 {
    display: block;
  }

  .vt-navlinks2025 a {
    color: #000;
  }
}
.vt-banner2025 {
      width: 100%;
      height: 100vh;
      position: relative;
      overflow: hidden;
    }

    .vt-slide2025 {
      background-size: cover;
      background-position: center;
      height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .vt-overlay2025 {
      position: absolute;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.40);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .vt-banner-text2025 {
      text-align: center;
      color: #fff;
      max-width: 90%;
      z-index: 2;
    }

    .vt-title2025 {
      font-size: 62px;
      font-weight: 600;
      opacity: 0;
      letter-spacing: 2.5px;
      color:#fff;
      transform: translateY(-50px);
    }

    .vt-subtitle2025 {
      font-size: 28px;
      margin: 15px 0;
      opacity: 0;
      letter-spacing: 2.0px;
      color:#fff;
      transform: translateY(-50px);
    }

    .vt-paragraph2025 {
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 25px;
      opacity: 0;
      transform: translateY(50px);
    }

    .vt-btnbox2025 {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
      opacity: 0;
      transform: scale(0.9);
    }

    .vt-btn2025 {
      padding: 10px 25px;
      background: linear-gradient(135deg, #c7dcdc, #ddf1f1);
      border: none;
      border-radius: 40px;
      font-weight: bold;
      color: #000;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
      cursor: pointer;
    }

    .vt-btn2025::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(120deg, #fff, rgba(255,255,255,0.1), #fff);
      transition: all 0.4s ease;
      transform: skewX(-20deg);
    }

    .vt-btn2025:hover::after {
      left: 100%;
    }

    .vt-btn2025:hover {
      background: linear-gradient(135deg, #23373a, #215757);
      transform: scale(1.05);
      color:#fff;
    }

    @media (max-width: 768px) {
      .vt-title2025 {
        font-size: 40px;
      }
      .vt-subtitle2025 {
        font-size: 18px;
      }
      .vt-paragraph2025 {
        font-size: 16px;
      }
      .vt-banner2025 {
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
}
.vt-slide2025 {
    background-size: cover;
    background-position: center;
    height: 70vh;
    position: relative;
    display: flex
;
    align-items: center;
    justify-content: center;
}
    }



     .vt-about2025-wrapper {
      background: #f0f4f4;
      padding: 80px 20px;
      overflow-x: hidden;
    }

    .vt-about2025-container {
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 1200px;
      margin: auto;
      flex-wrap: wrap;
      gap: 50px;
    }
    

    .vt-about2025-image img {
      width: 100%;
      max-width: 500px;
      border-radius: 20px;
      box-shadow: 0 12px 28px rgba(0,0,0,0.1);
    }

    .vt-about2025-content {
      max-width: 600px;
    }

    .vt-about2025-title {
      font-size: 36px;
      font-weight: 700;
      color: #215757;
      margin-bottom: 20px;
      letter-spacing: 2px;
    }

    .vt-about2025-text {
      font-size: 17px;
      color: #333;
      margin-bottom: 30px;
    }
.vt-about2025-content,
.vt-about2025-image img {
  will-change: transform, opacity;
  transform: translateZ(0); /* GPU acceleration */
}
    .vt-about2025-btn {
      background: linear-gradient(135deg, #215757, #2aa5a5);
      color: #fff;
      border: none;
      padding: 10px 30px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 30px 0 30px 0;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .vt-about2025-btn::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 0%;
      top: 0;
      left: 0;
      background: rgba(255,255,255,0.2);
      z-index: 1;
      transition: height 0.3s ease;
    }

    .vt-about2025-btn:hover::before {
      height: 100%;
    }

    .vt-about2025-btn:hover {
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .vt-about2025-container {
        flex-direction: column;
        text-align: center;
      }

      .vt-about2025-title {
        font-size: 28px;
      }

      .vt-about2025-text {
        font-size: 16px;
        text-align: left;
      }
    }

     .vs-sustainability-section {
      background: #fff;
      padding: 80px 60px;
      overflow: hidden;
    }

    .vs-container {
      max-width: 1200px;
      margin: auto;
    }

    .vs-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
    }

    .vs-text {
      flex: 1;
      min-width: 300px;
    }

    .vs-image {
      flex: 1;
      min-width: 300px;
    }

    .vs-image img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .vs-title,
    .vs-subtitle,
    .vs-description,
    .vs-list li,
    .vs-image img {
      opacity: 1; /* Initially hide all */
    }

    .vs-title {
      font-size: 36px;
      margin-bottom: 10px;
      letter-spacing: 1px;
      color: #125f65;
    }

    .vs-subtitle {
      font-size: 18px;
      margin-bottom: 20px;
      color: #555;
    }

    .vs-description {
      font-size: 16px;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .vs-list {
      list-style: none;
      padding: 0;
    }

    .vs-list li {
      margin-bottom: 10px;
      font-size: 15px;
      position: relative;
      padding-left: 20px;
    }

    .vs-list li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #125f65;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .vs-row {
        flex-direction: column;
        text-align: left;
      }

      .vs-text,
      .vs-image {
        width: 100%;
      }

      .vs-image {
        order: -1;
      }
    }
     .vt-gallery2025 {
      max-width: 1200px;
      margin: 50px auto;
      padding: 20px;
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .vt-gallery-card {
      position: relative;
      cursor: pointer;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    }

    .vt-gallery-card img {
      width: 100%;
      height: 250px;
      display: block;
      transition: opacity 0.3s ease;
    }

    .vt-gallery-card .img-hover {
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .vt-gallery-card:hover .img-hover,
    .vt-gallery-card:focus-within .img-hover,
    .vt-gallery-card.touch-active .img-hover {
      opacity: 1;
    }

    /* MODAL */
    .vt-modal-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.85);
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .vt-modal-overlay.active {
      display: flex;
    }

    .vt-modal-img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 8px;
      box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    }

    .vt-modal-overlay:before {
      content: "×";
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 40px;
      color: white;
      cursor: pointer;
    }

    

    .vt-footer2025 {
      background: linear-gradient(rgba(6, 40, 27, 0.9), rgba(6, 32, 22, 0.9)),
                  url('../img/banner/hero3.jpg') center/cover no-repeat;
      color: #ffffff;
      padding: 50px 20px 30px;
    }

    .vt-footer-container2025 {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
    }

    .vt-footer-about2025 {
      flex: 1 1 300px;
    }

    .vt-footer-about2025 h4 {
      font-size: 32px;
      margin-bottom: 15px;
      color:#fff;
    }

    .vt-footer-about2025 p {
      
      line-height: 1.6;
      color: #fff;
    }

    .vt-footer-newsletter2025 {
      flex: 1 1 300px;
    }

    .vt-footer-newsletter2025 h4 {
      font-size: 32px;
      margin-bottom: 15px;
      color:#fff;
    }

    .vt-footer-newsletter2025 form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .vt-footer-newsletter2025 input[type="text"],
    .vt-footer-newsletter2025 input[type="email"] {
      padding: 10px 15px;
      border: none;
      border-radius: 4px;
      font-size: 14px;
      width: 100%;
    }

    .vt-footer-newsletter2025 button {
      background: #fff;
      color: #125f65;
      padding: 10px 15px;
      font-weight: bold;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .vt-footer-newsletter2025 button:hover {
      background: #e0f7f6;
    }

    .vt-footer-bottom2025 {
      text-align: center;
    
      color: #fff;
      margin-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 15px;
    }

    @media (max-width: 768px) {
      .vt-footer-container2025 {
        flex-direction: column;
        text-align: center;
      }
      

      .vt-footer-newsletter2025 form {
        align-items: center;
      }

      .vt-footer-newsletter2025 input,
      .vt-footer-newsletter2025 button {
        max-width: 100%;
      }
    }

    .vt-sustain2025-benefit-section {
      padding: 80px 40px;
      background: #f8fdfa;
      display: flex;
      flex-direction: column;
      gap: 60px;
    }

    .vt-sustain2025-benefit-box {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 30px;
      opacity: 0;
      transform: translateY(60px);
    }

    .vt-sustain2025-benefit-text {
      flex: 1 1 300px;
      max-width: 500px;
    }

    .vt-sustain2025-benefit-text h3 {
      font-size: 32px;
     
      color:#125F65;
    }

    .vt-sustain2025-benefit-text p {
     
      line-height: 1.7;
     
      white-space: pre-line;
    }

    .vt-sustain2025-benefit-img {
      flex: 1 1 300px;
      max-width: 500px;
    }

    .vt-sustain2025-benefit-img img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    @media (max-width: 768px) {
      .vt-sustain2025-benefit-box {
       
        text-align: left;
      }
      .vt-sustain2025-benefit-text,
      .vt-sustain2025-benefit-img {
        max-width: 100%;
      }
    }

     .vt-about-wrap {
      padding: 70px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .vt-section {
      margin-bottom: 60px;
    }

    .vt-title {
      font-size: 32px;
      color: #125F65;
      margin-bottom: 20px;
      text-align: center;
    }

    .vt-vision-mission {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .vt-box {
      flex: 1 1 300px;
      background: #e1f1f0;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      transition: transform 0.3s;
    }

    .vt-box:hover {
      transform: translateY(-5px);
    }

    .vt-box i {
      font-size: 32px;
      color:#0c4447;
      margin-bottom: 15px;
    }

    .vt-box h3 {
      font-size: 26px;
      color:#0c4447;
      margin-bottom: 10px;
    }

    .vt-box p {
      
      line-height: 1.7;
    }

    .vt-derived-section {
      display: flex;
      background: linear-gradient(rgba(12, 67, 71, 0.9), rgba(10, 52, 55, 0.9)),
                  url('../img/banner/breadcrumb.jpg') no-repeat center center / cover;
      border-radius: 12px;
      color: #fff;
      overflow: hidden;
      flex-wrap: wrap;
      margin-bottom: 60px;
    }

    .vt-derived-image {
      flex: 1 1 300px;
      min-height: 300px;
      background: url('../img/about/abt3.webp') no-repeat center center / cover;
    }

    .vt-derived-text {
      flex: 2 1 400px;
      padding: 40px;
    }

    .vt-derived-text h2 {
      font-size: 28px;
      margin-bottom: 20px;
      color:#fff;
    }

    .vt-derived-text p {
      font-size: 16px;
      line-height: 1.8;
    }

    .vt-category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 15px;
      padding: 20px;
      margin-top: 30px;
    }

    .vt-category-grid li {
      list-style: none;
      background:#0c4447;
      color: white;
      padding: 12px 16px;
      border-radius: 8px;
      text-align: center;
      font-size: 15px;
      transition: background 0.3s;
    }

    .vt-category-grid li:hover {
      background: #0c4447;
    }

    @media(max-width: 768px) {
      .vt-vision-mission {
        flex-direction: column;
      }
      .vt-title {
        font-size: 26px;
      }
      .vt-derived-section {
        flex-direction: column;
      }
      .vt-derived-image {
        height: 250px;
      }
    }

    .vt-cta2025 {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      padding: 60px 20px;
      overflow: hidden;
    }

    .vt-cta-left2025 {
      flex: 1;
      min-width: 300px;
      max-width: 600px;
      padding: 20px;
    }

    .vt-cta-heading2025 {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 15px;
      color:#0c4447;
    }

    .vt-cta-text2025 {
      font-size: 1rem;
      color: #000;
      margin-bottom: 25px;
    }

    .vt-cta-btn2025 {
      display: inline-block;
      background:#0c4447;
      color: #fff;
      padding: 12px 28px;
      border-radius: 25px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s ease;
    }

    .vt-cta-btn2025:hover {
      background: #098663;
      color: #fff;
    }

    .vt-cta-right2025 {
      flex: 1;
      min-width: 280px;
      max-width: 500px;
      padding: 20px;
    }

    .vt-cta-right2025 img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }

    @media (max-width: 768px) {
      .vt-cta2025 {
        flex-direction: column-reverse;
        text-align: center;
      }

      .vt-cta-heading2025 {
        font-size: 1.8rem;
      }

      .vt-cta-text2025 {
        font-size: 0.95rem;
      }
    }
    .vt-navlinks2025 li .active1{
        color:#098663;
    }
    .kitchen-hero {
      background: url('../img/product/bg1.jpg') center/cover no-repeat;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
      position: relative;
      color: white;
    }
    

    .kitchen-hero::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
     
      background: rgba(3, 25, 17, 0.8);
      z-index: 1;
    }

    .kitchen-hero1 {
      background: url('../img/product/bg2.jpg') center/cover no-repeat;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
      position: relative;
      color: white;
    }
    .kitchen-hero1::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
     
      background: rgba(3, 25, 17, 0.7);
      z-index: 1;
    }

     .kitchen-hero2 {
      background: url('../img/product/bg3.jpg') center/cover no-repeat;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
      position: relative;
      color: white;
    }
    .kitchen-hero2::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
     
      background: rgba(3, 25, 17, 0.7);
      z-index: 1;
    }


     .kitchen-hero3 {
      background: url('../img/product/bg4.jpg') center/cover no-repeat;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
      position: relative;
      color: white;
    }
    .kitchen-hero3::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
     
      background: rgba(3, 25, 17, 0.7);
      z-index: 1;
    }

    .kitchen-hero4 {
      background: url('../img/product/bg5.jpg') center/cover no-repeat;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
      position: relative;
      color: white;
    }
     .kitchen-hero4::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
     
      background: rgba(3, 25, 17, 0.7);
      z-index: 
      1;
    }
   
     .kitchen-hero5 {
      background: url('../img/product/bg6.jpg') center/cover no-repeat;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
      position: relative;
      color: white;
    }
 .kitchen-hero5::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
     
      background: rgba(3, 25, 17, 0.7);
      z-index: 
      1;
    }
    
     .kitchen-hero6 {
      background: url('../img/product/bg7.jpg') center/cover no-repeat;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
      position: relative;
      color: white;
    }

     .kitchen-hero6::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
     
      background: rgba(3, 25, 17, 0.7);
      z-index: 
      1;
    }

    .kitchen-hero7 {
      background: url('../img/product/bg8.webp') center/cover no-repeat;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
      position: relative;
      color: white;
    }

     .kitchen-hero7::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
     
      background: rgba(3, 25, 17, 0.7);
      z-index: 
      1;
    }
    .kitchen-hero8 {
      background: url('../img/product/bg9.webp') center/cover no-repeat;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
      position: relative;
      color: white;
    }

     .kitchen-hero8::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
     
      background: rgba(3, 25, 17, 0.7);
      z-index: 
      1;
    }

    .kitchen-hero9 {
      background: url('../img/product/bg10.webp') center/cover no-repeat;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
      position: relative;
      color: white;
    }

     .kitchen-hero9::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
     
      background: rgba(3, 25, 17, 0.7);
      z-index: 
      1;
    }
    .kitchen-hero10 {
      background: url('../img/product/bg11.jpg') center/cover no-repeat;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
      position: relative;
      color: white;
    }

     .kitchen-hero10::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
     
      background: rgba(3, 25, 17, 0.7);
      z-index: 
      1;
    }

     .kitchen-hero11 {
      background: url('../img/product/bg12.jpg') center/cover no-repeat;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
      position: relative;
      color: white;
    }

     .kitchen-hero11::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
     
      background: rgba(3, 25, 17, 0.7);
      z-index: 
      1;
    }
   
     .kitchen-hero12 {
      background: url('../img/product/bg13.webp') center/cover no-repeat;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
      position: relative;
      color: white;
    }

     .kitchen-hero12::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
     
      background: rgba(3, 25, 17, 0.7);
      z-index: 
      1;
    }
   

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1100px;
      padding: 20px;
    }

    .hero-content h1 {
      font-size: 3em;
      margin-bottom: 20px;
      color:#fff;
    }

    .hero-content p {
      font-size: 1.1em;
      line-height:1.6em;
    }

    .kitchen-gallery-section {
      padding: 60px 20px;
      background: #fff;
      text-align: center;
    }

    .kitchen-gallery-section h2 {
      font-size: 2.5em;
      margin-bottom: 20px;
    }

    .owl-carousel .item img {
      width: 100%;
      height: 350px;
      border-radius: 12px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

    .kitchen-contact {
      background: url('../img/banner/hero1.webp') center/cover no-repeat;
      padding: 80px 20px;
      text-align: center;
      color: white;
      position: relative;
    }

    .kitchen-contact::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.7);
     
      z-index: 1;
    }

    .kitchen-contact .content {
      position: relative;
      z-index: 2;
    }

    .kitchen-contact h2 {
      font-size: 2.5em;
      margin-bottom: 20px;
    }

    .cta-btn {
      padding: 15px 30px;
      background: #ff6f61;
      color: white;
      border: none;
      border-radius: 30px;
      font-size: 1em;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
      margin-top: 20px;
    }

    .cta-btn:hover {
      background: #e65b4f;
      transform: scale(1.05);
    }

    @media(max-width: 768px) {
      .hero-content h1 {
        font-size: 2em;
      }

      .hero-content p {
        font-size: 1em;
      }
    }

    .kl-enquiry-section2025 {
  background: #fff;
  padding: 100px 20px;
  overflow: hidden;
  position: relative;
}

.kl-enquiry-container2025 {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(-200px);
  transition: all 1s ease-in-out;
}

.kl-enquiry-section2025.in-view .kl-enquiry-container2025 {
  opacity: 1;
  transform: translateY(0);
}

.kl-enquiry-title2025 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: #222;
}

.kl-enquiry-form2025 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kl-enquiry-form2025 input,
.kl-enquiry-form2025 textarea {
  padding: 12px 15px;
  font-size: 1rem;
  border: 2px solid #ccc;
  outline: none;
  border-radius: 8px;
  transition: border 0.3s, box-shadow 0.3s;
}

.kl-enquiry-form2025 input:focus,
.kl-enquiry-form2025 textarea:focus {
  border-color: #215757;
  box-shadow: 0 0 8px #215757;
}

.kl-enquiry-form2025 button {
  background: #215757;
  color: white;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.kl-enquiry-form2025 button:hover {
  background: #1f7373;
}

  .kitchen-gallery-section {
      padding: 40px 20px;
      text-align: center;
    }

    .kitchen-gallery-section h2 {
      font-size: 28px;
      margin-bottom: 30px;
    }

    .item {
      position: relative;
      padding: 10px;
    }

    .item img {
      width: 100%;
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.3s;
    }

    .item img:hover {
      transform: scale(1.05);
    }

    .item .product-name {
      margin-top: 30px;
      font-weight: bold;
    }

    /* Modal Styles */
    .modal-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    .modal-overlay.active {
      display: flex;
    }

    .modal-image-container {
      position: relative;
      max-width: 90%;
      max-height: 90%;
    }

    .modal-image-container img {
      width: 100%;
      max-height: 80vh;
      border-radius: 10px;
    }

    .modal-close-btn {
      position: absolute;
      top: -15px;
      right: -15px;
      background: white;
      border: none;
      font-size: 22px;
      font-weight: bold;
      color: #000;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      cursor: pointer;
      box-shadow: 0 0 10px rgba(0,0,0,0.4);
    }

    @media (max-width: 768px) {
      .kitchen-gallery-section h2 {
        font-size: 24px;
      }
    }

    .vtree-container {
      
      margin: auto;
      position: relative;
       background: #f4f8fb;
      padding: 80px 60px;

    }

   .vtree-line {
  position: absolute;
  left: 50%;
  
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #ff595e, #1982c4, #8ac926, #ffca3a);
  transform: translateX(-50%);
  z-index: 0; /* Pushes the line behind everything */
}

    .vtree-branch {
      position: relative;
      margin: 60px 0;
      width: 100%;
      display: flex;
      flex-direction: row;
      align-items: center;
    }

    .vtree-branch:nth-child(even) {
      flex-direction: row-reverse;
    }

    .vtree-content {
      background: #d2e6d2;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 0 12px rgba(0,0,0,0.1);
      width: 45%;
      position: relative;
      z-index: 2;
    }
.vtree-content,
.vtree-img {
  z-index: 2; /* Make sure these sit above the line */
  position: relative;
}
.vtree-dot {
  z-index: 3;
}
    .vtree-content h3 {
      color: #2b2d42;
      margin-bottom: 10px;
      font-size: 32px;
    }

    .vtree-content p {
      color: #000;
      
    }

    .vtree-img {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      overflow: hidden;
      margin: 0 20px;
      border: 4px solid #215757;
      z-index: 2;
    }

    .vtree-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .vtree-dot {
      width: 20px;
      height: 20px;
      background: #ffa600;
      border-radius: 50%;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
    }

    .vtree-branch:nth-child(1) .vtree-dot {
      background: #ff595e;
    }
    .vtree-branch:nth-child(2) .vtree-dot {
      background: #1982c4;
    }
    .vtree-branch:nth-child(3) .vtree-dot {
      background: #8ac926;
    }
    .vtree-branch:nth-child(4) .vtree-dot {
      background: #ffca3a;
    }

    @media (max-width: 768px) {
      .vtree-branch {
        flex-direction: column !important;
      }

      .vtree-img {
        margin: 20px auto;
      }

      .vtree-content {
        width: 100%;
        text-align: center;
      }
    }

     .sourcing-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
      position: relative;
    }

    .sourcing-title-box {
      text-align: center;
      margin-bottom: 60px;
    }

    .sourcing-title-box h2 {
      font-size: 36px;
      color: #2e8b57;
    }

    .sourcing-title-box p {
      color: #666;
      font-size: 18px;
    }

    .tree-line {
      position: absolute;
    
      
      left: 50%;
      width: 4px;
      height: calc(86% - 80px);
      background: linear-gradient(#2e8b57, #ff9800);
      z-index: 1;
    }

    .sourcing-steps {
      display: flex;
      flex-direction: column;
      gap: 60px;
    }

    .sourcing-step {
      position: relative;
      background-size: cover;
      background-position: center;
      padding: 40px;
      color: white;
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 300px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      overflow: hidden;
      z-index: 2;
    }

    .sourcing-step::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .sourcing-step-content {
      position: relative;
      z-index: 2;
    }

    .sourcing-step i {
      font-size: 30px;
      margin-bottom: 15px;
      color: #ffeb3b;
    }

    .sourcing-step h3 {
      font-size: 36px;
      margin-bottom: 10px;
      color:#fff;
    }

    .sourcing-step p {
      font-size: 18px;
      font-weight: 500;
    }

    /* Different background images */
    .sourcing-img1 {
      background-image: url('../img/banner/ecofriendly.jpg');
    }

    .sourcing-img2 {
      background-image: url('../img/banner/fairtrade.jpg');
    }

    .sourcing-img3 {
      background-image: url('../img/banner/recycled.jpg');
    }

    .sourcing-img4 {
      background-image: url('../img/banner/global.jpg');
    }

    @media (max-width: 768px) {
      .tree-line {
        left: 20px;
       
      }

      .sourcing-step {
        padding: 30px 20px;
      }
    }
    .tree-branch-section {
       background: #f3f9f7;
      padding: 50px 20px;
      margin: auto;
      position: relative;
    }

    /* Vertical line behind content */
    .tree-branch-section::before {
      content: "";
      position: absolute;
      left: 50%;
   top:300px;
      width: 5px;
      height: calc(80% - 80px);
      background: linear-gradient(to bottom, #215757, #528c55, #83a859);
      transform: translateX(-50%);
      z-index: 0;
    }

    .tree-node {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      margin: 60px 0;
      position: relative;
      z-index: 2;
      
    }

    .tree-node.right {
      flex-direction: row-reverse;
    }

    .tree-icon {
      font-size: 34px;
      color: #2e7d32;
      
      padding: 15px;
      border-radius: 50%;
      margin: 0 25px;
      z-index: 2;
     
    }

    .tree-content {
      background: rgba(255, 255, 255, 0.96);
      border-left: 6px solid #215757;
      padding: 25px 30px;
      border-radius: 10px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      max-width: 460px;
      position: relative;
      z-index: 2;
    }

    .tree-node.right .tree-content {
      border-left: none;
      border-right: 6px solid #215757;
    }

    .tree-content h3 {
      margin-top: 0;
      font-size: 1.9em;
      color: #1b5e20;
    }

    .tree-content p {
      margin: 10px 0 0;
      font-size: 15.5px;
      line-height: 1.6;
      color: #000;
    }

    @media screen and (max-width: 768px) {
      .tree-node,
      .tree-node.right {
        flex-direction: column;
        align-items: center;
      }

      .tree-content {
        text-align: center;
        border-left: none;
        border-right: none;
        border-top: 6px solid #4db6ac;
        max-width: 95%;
      }

      .tree-node.right .tree-content {
        border-top: 6px solid #4db6ac;
      }

      .tree-icon {
        margin: 20px 0;
      }

      .tree-branch-section::before {
        left: 20px;
        transform: none;
      }
    }