@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;family=Jost:ital,wght@0,100..900;1,100..900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&amp;family=Roboto:ital,wght@0,100..900;1,100..900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&amp;display=swap');

    * {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    :root {
        /* --primary-font: "Barlow", sans-serif; */
        /* --secondary-font:"Fira Sans", sans-serif; */
        --primary-font:"Lato", sans-serif;
        --secondary-font:"Lato", sans-serif;
        --jost-font:"Jost", sans-serif;
        --roboto-font:"Roboto", sans-serif;
        --green-color:#718F2A;
        --primary-color:#1B2A28;
        --secondary-color:#C3925D;
        --heading-color:#121608;
        --color-white:#FFF;
        --color-dark:#000;
      }
      ::selection{
        background-color: #70902A !important;
        color: #FFF !important;
      }
        ::-webkit-scrollbar {
    width: 10px;
    }
    ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
    }
    ::-webkit-scrollbar-thumb {
      background-color: var(--green-color);
    border-radius: 5px;  
    }
    .site-wrapper{
        overflow: hidden;
      }
      html{
        scroll-behavior: smooth;
      }
      body{
        background-color: #FFF !important;
        font-family: var(--primary-font) !important;
        color: var(--color-dark);
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
      }
    a {
        cursor: pointer;
        text-decoration: none !important;
        font-family: var(--primary-font);
    }
    p {
        font-family: var(--primary-font);
        position: relative;
        margin: 0 0 20px;
        line-height: 28px;
        color: var(--color-dark);
        font-weight: 400;
        font-size: 16px;
        letter-spacing: 0.2px;
    }
    .main-con p{
         color: #000;
    }
    p,
    li {
         font-family: var(--secondary-font);
        text-decoration: none !important;
    }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6{
        font-family: var(--primary-font) !important;
    }
    .bg-clay{
        background-color: #F5EEE5 !important;
    }
    .bg-piege{
        background-color: #F8F4EE !important;
    }
    .bg-greeny{
        background-color: #F1F6E7 !important;
    }
    .py-70{
        padding: 70px 0;
    }
    .font-italic{
        font-style: italic !important;
    }
    .header-top {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #3e4946;
    padding: 12px 0px;
}
.header-top {
    background-image: url('../img/header-top-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
}
.header-top-contact ul{
    list-style: none;
    display: inline-flex;
    padding-left: 0;
    margin-bottom: 0;
}
.header-top-contact ul li{
    position: relative;
}
.header-top-contact ul li a{
    color: #fff;
}
.header-top-contact ul li.first-child{
    margin-right: 50px;
}
.header-top .header-top-contact li.first-child::before {
    position: absolute;
    display: inline-block;
    content: '';
    background: var(--color-white);
    width: 1px;
    height: 22px;
    top: 3px;
    right: -26px;
}
.header-top-contact-info a{
    font-family: var(--primary-font);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 500;
}
.header-top-contact-info a i{
    color: var(--secondary-color);
    padding-right: 10px;
}
.float-bob-y {
    position: absolute;
    z-index: 1111;
    left: 85px;
    top: 0px;
    width: 104px;
    height: 281px;
    background-repeat: no-repeat;
    animation: float-bob-y 2s linear infinite;
}
@keyframes float-bob-y {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-20px);
  }
}
.humb-btn {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    transition: all 0.3s ease;

    box-shadow: 
      0 4px 12px rgba(0,0,0,0.15);
}

/* ===== ICON ===== */
.humb-btn img {
    max-width: 30px;
    filter: invert(1) saturate(300);
    transition: transform 0.3s ease;
}

/* ===== HOVER ===== */
.humb-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
      0 8px 20px rgba(0,0,0,0.25);
}

/* ===== ICON SLIGHT ROTATE ===== */
.humb-btn:hover img {
    transform: rotate(90deg);
}

/* ===== PULSE RING ===== */
.humb-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(113, 143, 42, 0.4); /* your green */
    animation: pulseRing 2.5s infinite;
}

/* ===== ANIMATION ===== */
@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(113, 143, 42, 0.4);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(113, 143, 42, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(113, 143, 42, 0);
    }
}
.offcan-con-wrapper .logo-wrapper img{
    max-width: 135px;
    height: auto;
}
.offcan-con-wrapper .logo-wrapper{
    padding-bottom: 20px;
      border-bottom: 1px solid #e0e0e0;
}
.offcanvas-body{
    padding: 35px 30px !important;
}
.offcanvas-backdrop.show {
    opacity: .8 !important;
}
.offcan-inn-content{
    margin-top: 33px;
}
.offcan-con-wrapper .btn-close{
    border: 1px solid #00000040;
    padding: 10px;
    border-radius: 50%;
}
.offcan-con-wrapper .btn-close:focus{
    box-shadow: none;
    border-color: red;
}
.offcan-inn-content .mnlg-h2{
    position: relative;
    display: block;
    font-size: 25px;
    line-height: 30px;
    font-family: var(--primary-font);
    color: #161837;
    font-weight: 800;
    margin-bottom: 28px;
}
.offcan-inn-content p {
    position: relative;
    display: block;
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
    /* font-family: 'Barlow', sans-serif; */
    font-family:var(--primary-font);
    color: #000;
    margin-bottom: 0px;
}
.offcan-info-box{
    margin-top: 30px;
}
.offcan-info-box ul{
     list-style: none;
    padding: 0px;
    margin: 0px;
}
.offcan-info-box .info li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    line-height: 28px;
    font-family: var(--primary-font);
    /* font-family: 'Barlow', sans-serif; */
    color: #000;
    padding-left: 0;
    margin-bottom: 30px;
}
.offcan-info-box .info li i{
    font-size: 28px;
    color: #E38D6B;
}
.offcan-info-box .info li span, .offcan-info-box .info li a{
    color: #000;
}
    img.header-logo {
        max-width: 130px;
    }
    nav.navbar {
        padding: 0;
    }
    ul.navbar-nav {
        margin: 0 0 0 auto;
    }
    section.hero-slider {
        /* margin-top: -168px; */
        position: relative;
        z-index: 0;
        padding: 320px 0 260px;
    }
    .btn{
         font-family: var(--primary-font);
          padding: 15px 25px;
    }
 .site-btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    font-family: var(--jost-font);
    color: #fff !important;
    background: #70902A;
    text-align: center;
    padding: 10px 25px 10px 25px;
    z-index: 1;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    transition: all 500ms ease;
}
.site-btn:before, .site-btn:after {
    position: absolute;
    content: '';
    background: var(--secondary-color);
    width: 100%;
    height: 0%;
    left: 0px;
    z-index: -1;
    transition: all 500ms ease;
}
.site-btn:before {
    top: 0px;
}
.site-btn:after {
    bottom: 0px;
}
.site-btn:hover:before, .site-btn:hover:after {
    height: 50%;
}
a.nav-link {
    font-family: var(--secondary-font);
    font-size: 18px;
    /* font-weight: 500; */
    font-weight: 600;
    color: var(--color-dark);
    /* color: var(--color-white); */
    letter-spacing: 0.3px;
    margin: 0 15px;
    letter-spacing: 0.2px;
}

.main-header.sticky a.nav-link:hover{
    color:var(--secondary-color) !important;
    transition: 0.3s ease;
}
.bs-box img.hb-img {
    max-height: 700px;
    min-height: 700px;
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.bs-box {
    position: relative;
    z-index: 0;
}
/* .bs-box:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgb(24 42 40) 0%,   
    rgb(24 42 40) 30%,  
    transparent 100%   
  );
  top: 0;
  left: 0;
} */
.bs-box:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(24 42 40 / 55%) 0%, rgb(24 42 40 / 39%) 30%, transparent 100%);
    top: 0;
    left: 0;
}
    .bs-con {
        position: absolute;
        top: 54%;
        transform: translateY(-50%);
        text-align: left;
    }
    .bs-con h1{
    position: relative;
    display: block;
    color: #fff;
    font-family: var(--secondary-font);
    font-size: 60px;
    line-height: 74px;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
    }
     .bs-con .main-head{
    position: relative;
    display: block;
    color: #fff;
    font-family: var(--secondary-font);
    font-size: 60px;
    line-height: 74px;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
    }
    .bs-con p{
    position: relative;
    display: block;
    color: #fff;
    margin-bottom: 40px;
    font-size: 17px;
    line-height: 30px;
    font-family: var(--secondary-font);
    font-weight: 400;
    }
    .bs-con {
        max-width: 40%;
    }
    .bsc-btn {
        display: flex;
        column-gap: 20px;
        margin-top: 30px;
    }
      .bs-slider .slick-prev, .bs-slider .slick-next {
    width: 50px !important;
    height: 50px !important;
    opacity: 1;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: scale(0) !important;
    transition: all 0.3s ease-in-out;
}
 .year-box {
    position: absolute;
    right: 350px;
    bottom: 91px;
    font-size: 58px;
    line-height: 60px;
    font-family: "Cormorant", serif;
    color: #fff;
    font-weight: 700;
    z-index: 2;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}
.year-box span {
    position: relative;
    display: block;
    font-size: 150px;
    line-height: 38px;
}
/* 

.bs-slider:hover .slick-prev, .bs-slider:hover .slick-next{
    transform: scale(1) !important;
    transition: transform 0.3s ease-in-out;
}
.bs-slider .slick-prev i, .bs-slider .slick-next i{
   color: #ffff;
    font-size: 20px;
}
.bs-slider .slick-prev:hover, .bs-slider .slick-next:hover{
    background-color: var(--secondary-color);
} */
  .slick-dots li button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    padding: 0px !important;
    background-color: #FFEA19 !important;
}

    .slick-dots li button:before {
        width: 22px !important;
        height: 22px !important;
        content: '' !important;
        background-color: #ffffff1e !important;
        border: 1px solid #FFF;
        border-radius: 50%;
        top: -5px !important;
        left: -5px !important;
        opacity: 0 !important;
    }
    .slick-dots li {
        width: 22px !important;
        height: 22px !important;
        margin: 0 6px !important;
    }
    .slick-dots li button:focus:before, .slick-dots li button:hover:before, .slick-dots li.slick-active button:before {
        opacity: 1 !important;
    }
    .slick-next:before, .slick-prev:before {
        display: none;
    }
    .slick-next, .slick-prev {
        /* background-image: url(../../assets/img/la.png) !important; */
        width: 40px !important;
        height: 40px !important;
        background-size: 40px !important;
        opacity: 0.6;
    }
    .slick-next:hover, .slick-prev:hover {
        background-size: 20px !important;
        transition: 0.5s !important;
        opacity: 1;
    }
    .bs-slider {
        margin: 0 !important;
    }
/* Hide by default */
.slide-animate {
  opacity: 0;
  transform: translateY(40px);
}
/* Animation keyframe */
@keyframes fadeInUpCustom {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Optional delay classes */
.delay-1 {
  animation-delay: 0.3s;
}
.delay-2 {
  animation-delay: 0.6s;
}
.sticky {
    width: 100%;
    position: fixed !important;
    top: 0px;
    z-index: 999;
    /* background-color: #0D0D0C !important; */
    /* box-shadow: 0 0 10px #00000020; */
}
.sticky img.header-logo {
    max-width: 130px;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .nav-link:focus {
    /* color: var(--secondary-color) !important; */
    color: #70902A !important;
}
.header-dropdown .dropdown-menu {
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0 !important;
    background: #fff;
}
.header-dropdown .dropdown-menu li a{
    position: relative;
    font-size: 15px;
    font-family: var(--secondary-font);
    padding: 8px 20px;
    color: var(--color-dark);
    font-weight: 600;
    transition: 0.3s ease;
    border-bottom: 1px solid #e2e2e2;
}
.header-dropdown .dropdown-menu li .dropdown-item.active{
    background-color: var(--primary-color) !important;
    color: var(--color-white) !important;
}
.dropdown-submenu.header-dropdown.active::after{
    color: var(--color-white) !important;
}
.header-dropdown .dropdown-menu li:last-child, .header-dropdown .dropdown-menu li:last-child a{
    border: none !important;
}
.header-dropdown .dropdown-menu li:hover .dropdown-item.dmm-item {
    background-color: #818c9b4d;
    color: var(--primary-color);
    transition: 0.3s ease;
}
.header-dropdown .dropdown-menu.sub-dropdown li:hover .dropdown-item{
    background-color: var(--primary-color);
    color: var(--color-white);
}
.nav-link:hover{
    color: var(--secondary-color) !important;
    transition:color 0.3s ease;
}
#header-dropdown .dropdown-toggle::after {
    display:inline-block;
    content: '\f078' !important;
    font-family: 'Font Awesome 6 Pro' !important;
    vertical-align:baseline !important;
    border: none !important;
    font-size: 14px;
    font-weight: 700;
    padding-left: 2px;
}
.submenu-toggle{
    display: none;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300AE9F' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.navbar-toggler {
    /* border: none !important; */
    border: 2px solid #70902A !important;
    background: #FFF;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem #70902a24 !important;
}
/* section.banner-section {
    margin-top: -120px;
} */
.main-header {
    position: relative;
    z-index: 999;
    padding: 0px 0;
    /* border-bottom: 1px solid #ffffff1c; */
    /* background: var(--primary-color); */
    background: var(--color-white);
}
.section-title{
    margin-bottom: 15px;
}
.section-title .sm-title {
    color: var(--color-dark);
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--jost-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 42px;
}
.section-title .sm-title:before {
    position: absolute;
    content: '';
    background-color: var(--color-dark);
    width: 30px;
    height: 2px;
    left: 0px;
    top: 12px;
}
.section-title .sm-title.center{
    padding-right: 40px;
}
.section-title .sm-title.center:after {
    position: absolute;
    content: '';
    background-color: var(--color-dark);
    width: 30px;
    height: 2px;
    right: 0px;
    top: 12px;
}
.section-title.white .sm-title:before{
    background-color: var(--color-white) !important;
}
.section-title .lg-title {
   color: #010101;
    display: block;
    font-size: 35px;
    line-height: 48px;
    font-weight: 600;
}
.section-title .lg-title  span{
    color: #70902A !important;
}
.section-title .sec-para{
    color: var(--color-dark);
    font-size: 17px;
    line-height: 28px;
    margin-top: 15px;
    margin-bottom: 0 !important;
}
.section-padding{
    padding: 70px 0;
}
/* About Us */
.abtus-wid-wrap{
    position: relative;
    overflow: hidden;
}
.abtus-wid-wrap::before{
    background: rgba(255, 255, 255, 0.5);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}
.abtus-wid-wrap:hover::before {
    width: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}
.main-con .heading-title{
    font-family: "Fira Sans", Sans-serif !important;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: #000000;
    margin: 15px 0;
}
.accordion-body { 
    font-size: 17px;
    line-height: 30px;
color: #000;}
.abtfeat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 10px 20px;
}
.abtfeat-list li { color:#000;
  position: relative;
  padding-left: 28px; 
  font-size: 18px;
  font-family: var(--jost-font);
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 5px;
}
.abtfeat-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Pro";
  font-weight: 500; 
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-size: 18px;
}
/* Services */
/* Accordion */
.service-accordion-wrapper .accordion-item{
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 5px !important;
    border: none;
    background-color:#FFF !important;
    box-shadow: none;
}
.service-accordion-wrapper .accordion-header{
    border-radius: 5px; padding: 15px 10px;
}
.service-accordion-wrapper .accordion-button{
    transition: 0.32s ease all !important;
}
.service-accordion-wrapper .accordion-button.collapsed{
    padding-bottom: 30px;
}
.service-accordion-wrapper .accordion-button, .service-accordion-wrapper .accordion-button:focus, .service-accordion-wrapper .accordion-button:active{
    box-shadow: none;
    font-size: 28px !important;
    font-family: var(--primary-font) !important;
    border-bottom: 1px solid #cccccc;
    font-weight: 400 !important;
    line-height: 36px !important;
    color:#161837 !important;
}
.service-section.inner .service-accordion-wrapper .accordion-button.collapsed{
    border: none !important;
    padding-bottom: 17px !important;
}
.service-section.inner .service-accordion-wrapper .accordion-item{
    box-shadow: 
  0 6px 18px rgba(0, 0, 0, 0.08),
  0 2px 6px rgba(0, 0, 0, 0.04) !important;
}
.service-accordion-wrapper .accordion-button .acc-ques{
    margin-left: 15px;
}
.service-accordion-wrapper .accordion-button .acc-count {
    position: absolute;
    left: 0px;
    top: 13px;
    padding-right: 20px;
    font-size: 15px;
    font-family: var(--roboto-font) !important;
    font-weight: 700;
    color: #747474;
    letter-spacing: 1px;
}
.service-accordion-wrapper .accordion-button:not(.collapsed){
    background-color: transparent !important;
}
.service-accordion-wrapper  .accordion-button::after{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}
/* Product Section */
.product-section{
    padding-top: 120px;
    background-color: transparent;
    background-image: linear-gradient(180deg, #0e0e0e 84%, #FFFFFF 16%);
     overflow: hidden;
}
.product-slider .prod-card{
    margin: 0 20px;
}
.prod-card .inner-box{
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 30px;
}
.prod-card .inner-box .image-box {
    position: relative;
    display: block;
    overflow: hidden;
}
.prod-card .inner-box .image-box .image {
    position: relative;
    margin: 0;
}
.prod-card .inner-box .image-box .image:before {
    position: absolute;
    content: '';
    background: #000;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0.1;
}
.prod-card .inner-box .image-box img {
    width: 100%; 
    object-fit: cover;
    max-width: 100%;
}
.prod-card .inner-box .image-box .overlay-image {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transform: translatey(-50%) scaleY(1.5);
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.5s ease;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}
.prod-card .inner-box .image-box .overlay-image:before {
    position: absolute;
    content: '';
    background-color: #70902A;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0.9;
}
.prod-card .inner-box .content-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.prod-card .inner-box .content-box .text-box {
    position: absolute;
    left: 0px;
    /* bottom: 0px; */
    bottom: 15px;
    opacity: 1;
    padding: 10px 15px;
    transition: all 500ms ease;
}
.prod-card .inner-box .content-box .text-box p {
    position: relative;
    margin: 0;
    font-size: 17px;
    font-family: var(--primary-font);
    line-height: 24px;
    color: #fff;
    font-weight: 400;
    margin-top: 12px;
    opacity: 0;
    display: none;
    transition: all 500ms ease;
}
.prod-card .inner-box:hover .content-box .text-box p{
    opacity: 1;
    display: block;
    transition:opacity 0.5s ease;
}
.prod-card .inner-box .content-box .text-box h3 {
    color: #fff;
    background-color: #182a28;
    width: fit-content;
    padding: 6px 18px 9px 18px;
    border-radius: 4px;
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 26px;
    font-family: var(--primary-font);
    font-weight: 700;
    margin: 0;
    transition: all 500ms ease;
}
.prod-card .inner-box .content-box .text-box h3 a {
    display: inline-block;
    color: #fff;
}
.prod-card .inner-box:hover .image-box .overlay-image {
    transform: translatey(0) scaleY(1);
    opacity: 1;
    filter: blur(0);
}
.prod-card .inner-box:hover .content-box .text-box {
    bottom: 41px;
    opacity: 1;
}
.product-slider{
    position: relative;
}
.product-slider .slick-list {
  margin: 0 -15px; 
}
.product-slider .slick-dots{
  bottom: unset !important;
}
.product-slider .slick-dots li button{
   background-color: #FFF !important;
}
.product-slider .slick-dots li.slick-active button{
   background-color: var(--secondary-color) !important;
}
.product-slider .slick-prev, .product-slider .slick-next {
    width: 50px !important;
    height: 50px !important;
    background-color: #70902A;
    border: 2px solid #FFF;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    z-index: 3;
    opacity: 1 !important;
}
.product-slider .slick-prev{
  left: -5%;
}
.product-slider .slick-next{
  right: -5%;
}
.product-slider .slick-prev i, .product-slider .slick-next i{
   color: #ffff;
    font-size: 20px;
}
.product-slider .slick-prev:hover, .product-slider .slick-next:hover{
    background-color: #E38E6B;
}
/* Counter */
.counter-section{
    padding-top: 130px;
    padding-bottom: 100px;
    border-bottom: 1px solid #d2ccc6;
}
.ff-text {
    position: relative;
    display: block;
    font-size: 113px;
    line-height: 100px;
    font-family: var(--roboto-font) !important;
    font-weight: 700;
    margin-bottom: 19px;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--primary-color);
    height: 80px;
}
.funfact-card{
    text-align: center;
}
.funfact-card .ff-info{
    margin-top: 35px
}
.funfact-card .ff-info h6{
    color: #444444;
    font-size: 20px;
    font-weight: 500;
}
/* Testimonials */
.testimonial-wrapper{
    position: relative;
    overflow: hidden;
}
.testimonial-item .testi-avatar {
    position: relative;
    display: flex;
    justify-content: center;
}
.testimonial-item .testi-avatar-wrap{
    position: relative;
    overflow: hidden;
     height: 135px;
    width: 135px;
    min-height: 135px;
    min-width: 135px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.testimonial-item .testi-avatar img{
   height: 100%;
   width: 100%;
}
.testimonial-item .testi-quote{
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
}
.testimonial-item .testi-quote i{
    font-size: 20px;
    color: var(--color-white);
}
.testimonial-item .testi-info{
    margin-top: 38px;
    text-align: center;
}
.testimonial-item .testi-info p{
   font-size: 20px;
   font-family: var(--primary-font);
    line-height: 30px;
    margin-bottom: 32px;
    color: #444444;
    font-weight: 400;
}
.testimonial-item .testi-info h6{
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 30px;
    font-family: var(--jost-font) !important;
    /* color: #70902A; */
    color: var(--secondary-color);
    font-weight: 500;
}
.testimonial-slider .slick-prev, .testimonial-slider .slick-next {
    width: 50px !important;
    height: 50px !important;
    top: 22%;
    background-color: var(--color-white);
   border: 1px solid #a5a5a5;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    z-index: 3;
    opacity: 1 !important;
}
.testimonial-slider .slick-prev{
  left: 25%;
}
.testimonial-slider .slick-next{
  right: 25%;
}
.testimonial-slider .slick-prev i, .testimonial-slider .slick-next i{
   color: var(--color-dark);
    font-size: 20px;
}
.testimonial-slider .slick-prev:hover, .testimonial-slider .slick-next:hover{
    background-color: var(--color-white);
}
/* Video section */
.video-section{
    position: relative;
    background-image: url('../img/bg/video-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.video-section::before{
    content: '';
    position: absolute;
    background-color: #272e35;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.9;
}
.video-sec-wrapper{
    position: relative;
    z-index: 2;
}
.video-con-wrap h2{
    position: relative;
    font-family: var(--secondary-font);
    font-size: 44px;
    font-weight: 600;
    line-height: 53px;
    color: var(--color-white);
}
.video-con-wrap h2 span{
     font-weight: 300;
     border-bottom: 1px solid #fff;
}
.video-con-wrap h3{
    margin: 22px 0px 32px 0px;
    color: #FFFFFF;
    font-family: var(--secondary-font) !important;
    font-size: 25px;
    font-weight: 500;
    text-decoration: underline;
    line-height: 36px;
}
.video-con-wrap p{
    margin: 0px 0px 45px 0px;
    color: #FFFFFF;
    /* font-family: "Barlow", Sans-serif; */
    font-family: var(--primary-font);
    font-size: 20px;
    line-height: 25px;
}
.video-box{
    background-image: url('../img/bg/video-box-bg.jpg');
    position: relative;
    width: 100%;
    padding: 140px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
}
.video-box .video-btn{
    display: flex;
    justify-content: center;
}
.video-btn a {
    position: relative;
    display: flex;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}
.video-btn a i{
    font-size: 35px;
    color: var(--color-dark);
}
.border-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: squares 2.9s linear 0s infinite;
    opacity: 0;
    border: 1px solid #e3e3e3;
}
@keyframes squares{
   0% {
    transform: scale(1);
    opacity: 0;
}
20% {
    transform: scale(1.24);
    opacity: 1;
}
100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
.border-animation.border-2 {
    animation-delay: 1s;
    border-width: 2px;
}
.border-animation.border-3 {
    animation-delay: 2s;
    border-width: 3px;
}
/* Progress section */
.progress-section{
    background-color: #fbf9f5;
    background-image: url("../img/bg/shape-3.png");
    background-position: center right;
    background-repeat: no-repeat;
}
.progress-block{
    position: relative;
    display: block;
    text-align: center;
}
.progress-avatar-wrap{
    position: relative;
    width: fit-content;
    margin-bottom: 33px;
}
.progress-avatar{
    height: 140px;
    width: 140px;
    background-color: var(--color-white);
    border: 1px solid #70902a;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-align: center;

    position: relative;
    overflow: hidden;
}
.progress-avatar::before{
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(112,144,42,0) 0%,
        rgba(112,144,42,0.15) 40%,
        rgba(112,144,42,0.35) 50%,
        rgba(112,144,42,0.15) 60%,
        rgba(112,144,42,0) 100%
    );
    transition: all 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover effect */
.progress-block:hover .progress-avatar::before{
    right: 100%;
}
.progress-avatar img{
    max-width: 90px;
    height: auto;
}
.progress-avatar-wrap span {
    position: absolute;
    display: inline-block;
    right: -2px;
    bottom: 7px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    background-color: var(--color-dark);
    color: #fff;
    font-family: var(--roboto-font);
    transition: all 0.35s ease-in-out;
}
.progress-block:hover .progress-avatar-wrap span{
    background-color: var(--secondary-color);
}
.progress-info h3{
    font-family: var(--secondary-font) !important;
    color: #010101;
    font-size: 24px;
    font-weight: 700 !important;
    line-height: 30px;
    margin-bottom: 13px;
}
.progress-info p{
    color: #444444;
    font-family: var(--primary-font) !important;
    font-weight: 400;
    line-height: 26px;
}
/* Grid Section */
.grid-cont-box h2{
    font-family: "Fira Sans", Sans-serif !important;
    font-size: 55px;
    font-weight: 300;
    line-height: 66px;
    color: #010101;
    text-align: end;
}
.grid-cont-box h2 span{
    font-weight: 400;
}
.grid-wid-box img{
    width: 100%;
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}
.grid-cont-box p.gw-p{
    font-family: var(--primary-font);
    color: #444444;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}
/* Text slider */
.text-slider-section{
    padding-top: 60px;
    padding-bottom: 80px;
}
.text-slider-section .text-box.italic{
    font-size: 120px;
    font-style: italic;
    position: relative;
    display: block;
    width: max-content;
    line-height: 100px;
    font-family: var(--roboto-font);
    font-weight: 900;
    text-transform: capitalize;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #1a1a1a;
    animation: scroll-left 800s linear infinite;
}
@keyframes scroll-left{
    0% {
    -webkit-transform: translateX(0%);
}
100% {
    -webkit-transform: translateX(-100%);
}
}
/* Footer */
.footer-section{
    position: relative;
    overflow: hidden;
    background-color: #272e35;
    padding: 70px 0px 30px 0px;
    z-index: 1;
}
.footer-section::before {
    content: '';
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/shape/footer-shape.png');
    background-repeat: no-repeat;
    background-size: 500px;
    background-position: right center;
    filter: invert(1) brightness(30);
    z-index: -1;
    opacity: 0.05;
    pointer-events: none;
}
.footer-wave{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.footer-wave::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(113, 143, 42, 0.25), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(195, 146, 93, 0.22), transparent 60%);
  animation: moveLight 10s ease-in-out infinite;
  z-index: 0;
  filter: blur(25px);
}

.footer-wave::after {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(rgba(113, 143, 42, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(195, 146, 93, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
  z-index: 0;
}
.footer-wave > * {
  position: relative;
  z-index: 2;
}
@keyframes moveLight {
  0% {
    transform: translate(-15%, -15%);
  }
  50% {
    transform: translate(15%, 15%);
  }
  100% {
    transform: translate(-15%, -15%);
  }
}
.footer-logo {
    margin-bottom: 33px;
    width: fit-content;
    background: #fff;
    padding: 10px 15px;
    border-radius: 20px;
}
.footer-logo img{
   max-width: 130px;
}
.footer-text{
    font-family: var(--secondary-font) !important;
    position: relative;
    display: block;
    font-size: 28px;
    line-height: 33px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 45px;
}
.foot-contact-wrap .cont-list h6{
     position: relative;
    display: block;
    font-size: 18px;
    color: #939393;
    margin-bottom: 10px;
}
.foot-contact-wrap .cont-list a{
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-family: var(--jost-font);
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease all;
}
.foot-contact-wrap .cont-list.last-child a{
    font-weight: 400 !important;   
}
.foot-contact-wrap .cont-list a:hover{
    color: var(--secondary-color);
}
.footer-title{
    position: relative;
    display: block;
    width: fit-content;
    font-size: 16px;
    font-family: var(--jost-font) !important;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.50);
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.footer-title::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40%;
    height: 2px;
    background-color: #00AE9F;
    border-radius: 10px;
    transition: width 0.32s ease-in-out;
}
.footer-col-wrap:hover .footer-title::after, .bottom-link-wrapper:hover .footer-title::after{
    width: 100%;
}
.footer-links{
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links li{
    position: relative;
    padding-left: 20px; 
    margin-bottom: 10px;
}
.footer-links li::before {
  font-family: "Font Awesome 6 Pro"; 
  content: "\f054"; 
  font-weight: 800; 
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #70902A; 
}
.footer-links li a{
    font-size: 16px;
    color: var(--color-white);
    transition:all 0.3s ease;
}
.footer-links li:hover a{
    color: #70902A;
    padding-left: 5px;
}
.footer-links.custom {
  display: flex;
  flex-wrap: wrap;
  /*gap: 8px;*/
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-links.custom li {
  width: 100%; 
}
.footer-bottom{
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright-text{
    position: relative;
    text-align: center;
    color: #fff;
    font-family: var(--primary-font);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 0;
}
.brand-text{
    color: #70902A;
}
.credit-text{
    color:#0091BF;
}
.brands-section{
    position: relative;
}
.brands-item {
  padding: 10px; 
}
.brands-card {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-color: #fff;
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 8px 20px rgba(0, 0, 0, 0.08);
  margin: 10px; 
  border-radius: 4px;
}
.brands-card img{
    min-height: 120px;
    max-height: 120px;
    max-width: 100%;
    object-fit: contain;
    width: auto;
}
.brands-carousel .slick-prev, .brands-carousel .slick-next {
    width: 50px !important;
    height: 50px !important;
    background-color: #7d7e79;
    border: 2px solid #FFF;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    z-index: 3;
    opacity: 1 !important;
}
.brands-carousel .slick-prev{
  left: 5px;
}
.brands-carousel .slick-next{
  right: 5px;
}
.brands-carousel .slick-prev i, .brands-carousel .slick-next i{
   color: #ffff;
    font-size: 20px;
}
.brands-carousel .slick-prev:hover, .brands-carousel .slick-next:hover{
    background-color: #809C41;
}
/* Breadcrumb */
.site-breadcrumb {
  background-image: url("../img/bg/bc-bg.jpg");
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 40px;
  z-index: 1;
}
.site-breadcrumb:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    /* opacity: 0.5; */
    opacity: 0.7;
    background: #0b0e04;
}
.site-breadcrumb .breadcrumb-title {
      font-size: 34px;
    line-height: 45px;
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: capitalize;
}
.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  padding-left: 0;
}
.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
}
.site-breadcrumb .breadcrumb-menu li a {
  color: var(--color-white);
  transition: all 0.5s ease-in-out; 
}
.site-breadcrumb .breadcrumb-menu li::before {
     position: absolute;
    content: '\2f';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 500;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: var(--color-white);
}
.site-breadcrumb .breadcrumb-menu li:first-child {
  margin-left: 0;
}
.site-breadcrumb .breadcrumb-menu li:last-child:before {
  display: none;
}
.site-breadcrumb .breadcrumb-menu li a:hover {
  color: var(--green-color);
}
.site-breadcrumb .breadcrumb-menu li.active{
  color: var(--green-color);
}
/* Product Details */
.innp-main-heading{
    position: relative;
    color: #000;
    font-size: 55px;
    font-weight: 600;
    line-height: 67px;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.innp-main-heading::after {
    position: absolute;
    content: '';
    max-width: 150px;
    width: 100%;
    height: 20px;
    background-image: url('../img/bg/fancy-divider.png');
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    bottom: 0;
}
.prodet-wid-wrap{
    position: relative;
    display: block;
    overflow: hidden;
}
.prodet-wid-wrap::before {
    background: rgba(255, 255, 255, 0.5);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1000%;
    height: 0%;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}
.prodet-wid-wrap:hover::before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}
.prodet-wid-wrap img{
     max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 3px;
}
/* Gallery */
.product-gallery-wrapper{
    margin-top: 70px;
}
.gallery-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    /* box-shadow: rgba(128, 156, 65, 0.25) 0px 4px 12px; */
    background-color: #fff;
}
.gallery-card .gallery-link {
  display: block;
  position: relative;
  overflow: hidden !important;
  height: 100%;
  width: 100%;
}
.gallery-card img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  display: block;
}
.gallery-link::after {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(113, 143, 42, 0.85);
  transition: bottom 0.5s ease;
  pointer-events: none; 
  z-index: 1;
}
.gallery-card:hover .gallery-link::after {
  bottom: 0;
}
.gallery-card .ico-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  height: 60px;
  width: 60px;
  background-color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}
.gallery-card:hover .ico-wrap {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.gallery-card .ico-wrap i {
    font-size: 25px;
  color: #718F2A;
  pointer-events: none; 
}
.gallery-card:hover::after {
  bottom: 0;
}
.gallery-inner-section{
    background-color: #718f2a23;
}
.fancybox__thumbs .carousel__slide .fancybox__thumb::after{
    border-color: #97c52b !important;
}
/* Contact Us */
.contus-col{
    margin-bottom: 25px;
}
.contus-card{
    padding: 54px 50px;
    border: 1px solid rgba(8, 10, 11, 0.1);
    text-align: center;
    height: 100%;
}
.contus-card .contus-icon i{
  font-size: 50px;
  color: #718F2A;
  transition: 0.3s ease;
}
.contus-card:hover .contus-icon i{
    color: #E38E6B;
    transition: color 0.3s ease;
}
.max-w-75{
    max-width: 75px !important;
}
.contus-card .contus-con{
    margin-top: 30px;
}
.contus-con .contus-title{
    font-size: 25px;
    color: #000;
    font-weight: 800;
    margin-bottom: 10px;
}
.contus-con a{
    font-size: 16px;
    color: #40423a;
    transition: 0.3s ease;
}
.contus-con a:hover{
   color: #70902A;
}
/* form */
.contus-form-wrap .form-control.ff, .contus-form-wrap .form-select.ff{
    height: 50px;
}
.contus-form-wrap .form-group{
    margin-bottom: 25px;
}
.contus-form-wrap .cts-form-title{
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 35px;
}
.contus-form-wrap .cts-form-para {
    color: #585a57;
    margin-bottom: 30px;
}
.contus-form-wrap .form-control, .contus-form-wrap .form-select, .contus-form-wrap .form-control:focus, .contus-form-wrap .form-select:focus{
    padding: 15px;
    font-size: 14px;
    line-height: 24px;
    padding-left: 20px;
    color: #767676;
    background-color: #63933a0f;
    border-radius: 3px;
    border: none !important;
}
.contus-form-wrap .form-control:focus, .contus-form-wrap .form-select:focus{
    box-shadow: none !important;
}
.contus-form-wrap .form-control::placeholder, .contus-form-wrap .form-select::placeholder{
    font-size: 15px;
    color: #585757 !important;
}
.brandinn-card{
    background-color: var(--color-white);
    padding: 10px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    text-align: center;
    margin-bottom: 25px;
}
.brandinn-card img{
    min-height: 120px;
    max-height: 120px;
    object-fit: contain;
    max-width: 100%;
}
.pattern-bg{
    position: relative;
    z-index: 1;
}
.pattern-bg::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url('../img/bg/pattern-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}
.client-inner-section .brands-card{
    margin: 0;
    margin-bottom: 25px !important;
}
.pc-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 500;
}
 .pc-whatsapp a {
    display: inline-flex;
    width: 100%;
    background: #00a315c7;
    align-items: center;
    padding: 12px 18px 12px 18px;
    border-radius: 50px;
    color: #fff;
    gap: 6px;
    backdrop-filter: blur(1px);
}
 .pc-whatsapp a:hover {
    background: #00a315;
    transition: 0.5s;
}
.pc-whatsapp a i {
    font-size: 26px;
}
.pc-whatsapp a span {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Helvetica';
    letter-spacing: 0.7px;
}
.pc-whatsapp a::before, 
    .pc-whatsapp a::after {
      content: "";
      position: absolute;
      top: -5px;
      left: -5px;
      right: -5px;
      bottom: -5px;
      border: 2px solid #25d366;
      border-radius: 50px;
      animation: ripple 2s linear infinite;
      opacity: 0;
    }
    .pc-whatsapp a::after {
      animation-delay: 1s;
    }
    @keyframes ripple {
      0% {
        transform: scale(1);
        opacity: 1;
      }
      70% {
        transform: scale(1.3);
        opacity: 0;
      }
      100% {
        transform: scale(1.4);
        opacity: 0;
      }
    }
    .a-href{
        color: var(--green-color);
        font-weight: 500;
        text-decoration: underline !important;
        text-underline-offset: 5px;
        text-decoration-thickness: 2px;
        transition: 0.3s ease all;
    }
   .a-href:hover{
    color: var(--secondary-color);
   }
   .fw-b{
    font-weight: 600 !important;
   }
.inner-md-heading {
    color: #121608;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    padding-bottom: 15px;
    margin-bottom: 0 !important;
}
.heading-style{
    position: relative;
    width: 30px;
    height: 5px;
    background-color: var(--green-color);
}
.heading-style::before{
    position: absolute;
    content: '';
    width: 70px;
    height: 1px;
    left: 0px;
    top: 0px;
    background-color: var(--green-color);
}
.heading-style::after {
    position: absolute;
    content: '';
    width: 70px;
    height: 1px;
    left: 0px;
    bottom: 0px;
    background-color: var(--green-color);
}
.filter-list-wrapper{
    margin-top: 50px;
}
.filter-list-wrapper .filter-group{
    margin-bottom: 25px;
}
.filter-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #513c25;
    margin-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 8px;
}
.filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.filter-list li {
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 600;
    color: #1B2A28;
    text-transform: capitalize;
    border: 1px solid #dcdcdc;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-list li:hover {
    border-color: #718F2A;
    color: #718F2A;
    background: rgba(113, 143, 42, 0.05);
}
.pais-list-wrapper{
    margin-top: 30px;
}
.pais-list-one li {
    position: relative;
    padding-left: 30px; 
    margin-bottom: 20px;
    color: var(--color-dark);
    font-size: 18px;
    line-height: 30px;
}
.pais-list-one li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url('../img/icons/check.png') no-repeat center;
    background-size: contain;
}
.image-anime{
    position: relative;
    overflow: hidden;
}
.image-anime:before {
    position: absolute;
    top: 0;
    left: -75%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
}
.image-anime:hover:before {
    animation: shine 1s;
}
@keyframes shine{
    100% {
    left: 125%;
}
}
.text-green{
    color: var(--green-color) !important;
}
.wcuinn-card-col{
    margin-bottom: 25px;
}
.wcuinn-card {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f7f7f7);
    border-radius: 16px;
    padding: 35px 28px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.06),
        0 2px 6px rgba(0,0,0,0.04);
}
.wcuinn-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top left,
        rgba(195,146,93,0.12),
        transparent 60%
    );
    opacity: 0;
    transition: 0.4s ease;
}
.wcuinn-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.12),
        0 5px 15px rgba(0,0,0,0.08);
}
.wcuinn-card:hover::before {
    opacity: 1;
}
.wcuinn-card .icon-box {
    position: relative;
    margin-bottom: 25px;
}
.wcuinn-card .icon-box img {
    max-width: 60px;
    transition: transform 0.4s ease, filter 0.4s ease;
}
.wcuinn-card:hover .icon-box img {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(195,146,93,0.4));
}
.wcuinn-card .innwcu-title {
    color: #1B2A28;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.wcuinn-card:hover .innwcu-title {
    color: #C3925D;
}
.tmlne-table.table>:not(caption)>*>*{
    background-color: transparent !important;
}
/* timeline */
.tmlne-price-card {
    background: var(--color-white); 
    border-radius: 16px;
    border: 1px solid rgba(113,143,42,0.15);
    box-shadow:
        0 10px 30px rgba(0,0,0,0.06),
        0 2px 8px rgba(0,0,0,0.04);
}
.tmlne-table thead th {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #a56f58;
    border-bottom: 1px solid #ddd;
    padding-bottom: 12px;
}
.tmlne-table tbody td {
    font-size: 17px;
    font-weight: 600;
    color: #1B2A28;
    padding: 18px 10px;
    border-bottom: 1px solid #eaeaea;
}
.tmlne-table tbody tr:last-child td {
    border-bottom: none;
}
.tmlne-table tbody tr:hover {
    background: rgba(113,143,42,0.05);
}
.tmlne-table .highlight {
    font-weight: 600;
    color: #718F2A;
}
.tmlne-table .install {
    font-weight: 600;
    color: #C3925D;
}
.tmlne-table tbody tr {
    transition: 0.3s ease;
}
/* pricing */
.price-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.4s ease;
    box-shadow:
    0 10px 25px rgba(0,0,0,0.06),
    0 2px 8px rgba(0,0,0,0.04);
}
.price-card .icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(113,143,42,0.1);
    color: #718F2A;
    font-size: 22px;
}
.price-card .icon img {
    max-width: 55px;
}
.price-card h5 {
    font-size: 22px;
    font-weight: 700;
    color: #1B2A28;
    text-transform: capitalize;
    margin-bottom: 14px;
}
.price-card .price {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #C3925D;
}
.price-card .price span {
    font-size: 14px;
    font-weight: 600;
    color: #938d87;
}
.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.pricing-note {
    font-size: 14px;
    color: #6c757d;
}
.delivery-card {
    background: #fff;
    border-radius: 16px;
    padding:45px 30px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow:
        0 10px 30px rgba(0,0,0,0.06),
        0 2px 8px rgba(0,0,0,0.04);
    transition: 0.3s ease;
}
.delivery-card:hover {
    transform: translateY(-5px);
}
.delivery-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 35px 0;
}
.delivery-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}
.delivery-list i {
    font-size: 30px;
    color: #718F2A;
    margin-top: 3px;
}
.delivery-list span {
    font-size: 20px;
    color: #1B2A28;
    line-height: 1.6;
}
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #25D366, #1da851);
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(37,211,102,0.3),
        0 2px 6px rgba(0,0,0,0.1);
}
.whatsapp-btn i {
    font-size: 24px;
    transition: transform 0.3s ease;
}
.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transition: 0.5s;
}
.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 15px 35px rgba(37,211,102,0.4),
        0 5px 15px rgba(0,0,0,0.15);
}
.whatsapp-btn:hover::before {
    left: 100%;
}
.whatsapp-btn:hover i {
    transform: rotate(-10deg) scale(1.1);
}
.whatsapp-btn:active {
    transform: scale(0.96);
}
.perfect-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0,0,0,0.06);
    font-size: 20px;
    font-weight: 700;
    color: #1B2A28;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 35px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06),
        0 3px 8px rgba(0,0,0,0.04);
}
.perfect-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 40%;
    background: linear-gradient(#718F2A, #C3925D);
    border-radius: 4px;
    transition: 0.4s ease;
}
.perfect-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top left,
        rgba(113,143,42,0.18),
        transparent 60%
    );
    opacity: 0;
    transition: 0.4s ease;
}
.perfect-card i {
    font-size: 24px;
    color: #718F2A;
    transition: all 0.3s ease;
}
.perfect-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(195,146,93,0.4);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.12),
        0 8px 20px rgba(0,0,0,0.08);
}
.perfect-card:hover::before {
    opacity: 1;
}
.perfect-card:hover::after {
    height: 70%;
}
.perfect-card:hover i {
    color: #C3925D;
    transform: scale(1.2) rotate(-6deg);
}
.perfect-card span {
    line-height: 1.5;
}
/* projects */
.proj-card-col{
    margin-bottom: 25px;
}
.project-block{
    position: relative;
    height: 100%;
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow:
    0 20px 50px rgba(0,0,0,0.08),
    0 8px 20px rgba(0,0,0,0.05),
    0 0 0 1px rgba(113,143,42,0.08);
}
.project-block .proj-image{
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}
.project-block .proj-image img{
    height: 270px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
.project-block .proj-image::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-dark);
    opacity: 0;
    border-radius: 10px 10px 0 0;
    pointer-events: none;
    transition: all 0.35s ease-in-out 0s;
}
.project-block:hover .proj-image::before{
    opacity: 0.2;
}
.project-block:hover .proj-image:after {
    position: absolute;
    top: 0;
    left: -75%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
}
.project-block:hover .proj-image:hover:after {
    animation: shine 1s;
}
.project-block .ico-wrap{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    background: rgba(27, 42, 40, 0.75);
    backdrop-filter: blur(6px);
    color: var(--color-white);
    border: 1.5px solid var(--green-color);
    box-shadow:
        0 0 0 0 rgba(195,146,93,0.4),
        0 10px 25px rgba(0,0,0,0.3);
    transition: all 0.35s ease;
    cursor: pointer;
}
.project-block:hover .ico-wrap{
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    box-shadow:
        0 0 15px rgba(195,146,93,0.6),
        0 15px 35px rgba(0,0,0,0.4);
}
.project-block .ico-wrap:hover{
    background: var(--green-color);
}
.project-block .proj-content{
    padding: 25px;
}
.project-block .proj-content .location-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    color: #1B2A28;
    margin-bottom: 6px;
}
.project-block .proj-content .location-text .icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(113,143,42,0.1);
}
.project-block .proj-content .location-text .icon i{
    font-size: 18px !important;
    color: #718F2A !important;
}
.project-block .proj-content .proj-info{
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #1B2A28;
    background: linear-gradient(145deg, #f1f6e7, #e6efd3);
    border: 1px solid rgba(113,143,42,0.2);
    padding: 6px 12px;
    margin: 6px 6px 0 0;
    border-radius: 50px;
    transition: 0.3s ease;
}
.project-block .proj-content .proj-info:hover{
    background: #718F2A;
    color: #fff;
}
.project-block .proj-content .proj-info span{
    font-weight: 600;
}
.project-block .proj-content .proj-desc {
    font-size: 16px;
    line-height: 26px;
    color: var(--color-dark);
    margin-top: 12px;
    margin-bottom: 0 !important;
}
.project-block.explore{
    transition: 0.38s ease-in-out all;
}
.project-block.explore:hover{
    transform: translateY(-5px);
    box-shadow: 
  0 20px 50px rgba(113, 143, 42, 0.18),
  0 10px 25px rgba(113, 143, 42, 0.12),
  0 0 0 1px rgba(113, 143, 42, 0.15),
  0 0 0 3px rgba(113, 143, 42, 0.06);
}
.project-block.explore .exp-title {
    font-size: 24px;
    line-height: 35px;
    color: var(--heading-color);
    font-weight: 800;
    margin-bottom: 10px;
}
.project-block.explore .exp-desc{
    font-size: 17px;
    line-height: 25px;
    color: var(--color-dark);
    margin-bottom: 5px !important;
}
.project-block.explore .proj-image img{
    transition: 0.38s ease-in-out all;
}
.project-block.explore:hover .proj-image img{
    transform: scale(1.2) rotate(4deg);
}
.faq-section .accordion-item {
    border: 1px solid #718f2a59 !important;
    margin-bottom: 25px;
}
.faq-section .accordion-button:focus, .faq-section  .accordion-button:not(.collapsed) {
    box-shadow: none!important
}
.faq-section .accordion-button {
    background-color: #f5f6f8 !important;
    color: var(--heading-color) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.5;
    transition: all .3s ease
}
.faq-section .accordion-button span{
    color: var(--green-color) !important;
    padding-right: 4px;
    font-size: 15px;
}
.faq-section.bg-piege .accordion-button{
     background-color: #fff !important;
}
.faq-section .accordion-button:not(.collapsed) {
    background-color: #f5f6f8;
    color: var(--color-dark);
    border-bottom: 1px solid #eff3f7;
}
.faq-section .accordion-body p{
    margin-bottom: 0 !important;
}
.cta-area-inner{
    position: relative;
    background-color: var(--green-color);
    /* background: linear-gradient(135deg, #5f7f24, #718F2A, #8aa93a); */
    background: linear-gradient(135deg, #5f7f24, #718F2A, #C3925D);
    overflow: hidden;
    z-index: 1;
}
.cta-area-inner::before{
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../img/bg/cta-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-position: top left;
    z-index: -1;
    pointer-events: none;
}
.cta-para{
    margin-top: 30px !important;
}
.cta-para span{
    font-weight: 600 !important;
    color: #f7c084 !important;
}
.cta-action-wrap{
    margin-top: 30px;
}
.cta-contact {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 65px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: #1B2A28;
    background: linear-gradient(135deg, #C3925D, #e6c79c);
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(195,146,93,0.35),
        0 4px 10px rgba(0,0,0,0.1);
}
.cta-contact span {
    position: relative;
    z-index: 2;
}
.cta-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );
    transition: 0.6s;
}
.cta-contact::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    box-shadow: 0 0 0 0 rgba(113,143,42,0.4);
    transition: 0.4s ease;
}
.cta-contact:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 18px 40px rgba(195,146,93,0.45),
        0 6px 15px rgba(0,0,0,0.15);
}
.cta-contact:hover::before {
    left: 100%;
}
.cta-contact:hover::after {
    box-shadow: 0 0 20px rgba(113,143,42,0.6);
}
.cta-contact:active {
    transform: scale(0.95);
}
.pricing-card{
    position: relative;
    padding: 30px;
    border-radius: 18px;
    background: linear-gradient(145deg, #ffffff, #f7f7f7);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.08),
        0 8px 20px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    overflow: hidden;
}
.pricing-card::before{
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid rgba(113,143,42,0.15);
    pointer-events: none;
}
.pricing-card:hover{
    transform: translateY(-8px);
    box-shadow:
        0 30px 70px rgba(0,0,0,0.12),
        0 10px 25px rgba(0,0,0,0.08);
}
.pricing-points{
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pricing-item{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f4f8ef;
    border: 1px solid rgba(113,143,42,0.2);
    transition: 0.3s ease;
}
.pricing-item .icon{
    min-height: 55px;
    min-width: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #dde5c9;
}
.pricing-item:hover .icon{
    background-color: var(--secondary-color);
}
.pricing-item i{
    font-size: 22px;
    color: #718F2A;
    margin-top: 3px;
}
.pricing-item span.text {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
}
.pricing-item:hover{
    background: #718F2A;
}
.pricing-item:hover i,
.pricing-item:hover span.text{
    color: #fff;
}
.fw-800{
    font-weight: 800 !important;
}
.feat-wid-wrap{
    position: relative;
    height: 100%;
    max-height: 100%;
    border-radius: 10px;
}
.feat-wid-wrap img{
    height: 100%;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.pais-list-two li {
    position: relative;
    padding-left: 30px; 
    margin-bottom: 20px;
    color: var(--color-dark);
    font-size: 18px;
    line-height: 30px;
}
.pais-list-two li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 22px;
    height: 22px;
    background: url('../img/icons/three-arrows.png') no-repeat center;
    background-size: contain;
}
.highlight-li{
    font-weight: 700 !important;
}
.bottom-link-wrapper{
        padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.loc-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 25px;
}
.loc-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(113,143,42,0.15), transparent);
    opacity: 0;
    transition: 0.4s;
    z-index: -1;
    pointer-events: none;
}
.loc-card::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 8px;
    height: 8px;
    background: #718F2A;
    border-radius: 50%;
    opacity: 0.6;
}
.loc-card:hover::before {
    opacity: 1;
}
.loc-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(113, 143, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #718F2A;
    transition: 0.4s;
}
.loc-card h4 {
    font-size: 17px;
    font-weight: 800;
    /* color: #1B2A28; */
    color: var(--heading-color);
    margin-bottom: 15px;
}
.loc-card h4 a{
    color: inherit !important;
    transition: 0.3s ease all;
}
.loc-card h4:hover a{
    color: var(--secondary-color) !important;
}
.loc-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    text-decoration: none;
    color: #718F2A;
    border: 1px solid rgba(113,143,42,0.4);
    background: rgba(113,143,42,0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.loc-btn i {
    opacity: 0;
    transform: translateX(-10px) scale(0.8);
    transition: all 0.4s ease;
}
.loc-card:hover .loc-btn i {
    opacity: 1;
    transform: translateX(5px) scale(1);
}
.loc-card:hover .loc-btn {
    background: #718F2A;
    color: #fff;
    border-color: #718F2A;
}
.loc-card:hover {
    background: #1B2A28;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.loc-card:hover .loc-icon {
    background: rgba(255,255,255,0.1);
    color: #C3925D;
}
.loc-card:hover h4 {
    color: #fff;
}
















/* FIX sticky */
.p-sticky{
    position: sticky;
    top: 120px;
}

/* VERY IMPORTANT FIXES */
.service-section,
.container,
.row,
.col-lg-5,
.col-lg-7{
    overflow: visible !important;
}


/* REMOVE any transform issues */
.service-section *{
    transform: none !important;
}