@import url('https://fonts.googleapis.com/css2?family=Handlee&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

    * {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    :root {
        --primary-font: "Plus Jakarta Sans", sans-serif;
        --secondary-font: "Handlee", cursive;
        --primary-color:#273F38;
        --secondary-color:#84CE5B;
        --yellow-color:#FFB538;
        --color-white:#FFF;
        --color-dark:#000;
        --heading-color:#18271e;
        --text-color:#454545;
      }
      ::selection{
        background-color: var(--secondary-color) !important;
        color: var(--primary-color) !important;
      }
    .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 {
        text-decoration: none !important;
        font-family: var(--primary-font);
    }
    p {
        font-family: var(--secondary-font);
        position: relative;
        margin: 0 0 20px;
        line-height: 27px;
        color: var(--color-dark);
        font-weight: 400;
        font-size: 16px;
        letter-spacing: 0.2px;
    }
    p,
    li {
         font-family: var(--primary-font);
        text-decoration: none !important;
    }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6{
        font-family: var(--primary-font) !important;
    }
    img{
        max-width: 100%;
    }
    .bg-clay{
        background-color: #14271f0a !important;
    }
    img.header-logo {
        max-width: 215px;
    }
    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;
    }
    .py-70{
      padding: 70px 0;
    }
    .pt-120{
      padding-top: 120px;
    }
    .mb-20{
        margin-bottom: 20px !important;
    }
    .btn{
         font-family: var(--primary-font);
          padding: 15px 25px;
    }
.site-btn {
    position: relative;
    z-index: 1;
    background-color: var(--primary-color);
    color: var(--color-white);
    padding: 15px 20px;
    overflow: hidden;
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgb(0 0 0 / 9%);
    line-height: 19px;
    transition: all 0.3s;
}
.site-btn::after {
    position: absolute;
    content: "";
    bottom: -70%;
    right: -90%;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 20px 20px 0 0;
    z-index: -1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.site-btne:hover {
    background-color: var(--primary-black-color);
}
.site-btn:hover:after {
    bottom: 0;
    right: 0;
    border-radius: 0;
}
a.nav-link {
    font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.3px;
    margin: 0 10px;
    padding: 36px 0;
    letter-spacing: 1;
}
.main-header.sticky a.nav-link:hover{
    color:var(--secondary-color) !important;
    transition: 0.3s ease;
}
.bs-box img.hb-img {
    max-height: 800px;
    min-height: 800px;
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
   transition: all 1.4s cubic-bezier(0.7, 0, 0.3, 1);
    transform: scale(1.2);
    z-index: -1;
}
.slick-current img.hb-img {
    transform: scale(1); 
    transition: transform 1.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.bs-box {
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.bs-box:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
   background: linear-gradient(90deg, rgba(0, 76, 29, 0.8) 0.13%, rgba(0, 76, 29, 0.3) 52.05%, rgba(0, 76, 29, 0.8) 99.83%);
    top: 0;
    left: 0;
    z-index: 1;
}
  .bs-con {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 50%;
    width: 100%;
    max-width: 100%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}
.bs-con .slider-tagline {
    font-size: 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    color: var(--color-white);
    padding: 6px 20px;
    line-height: 22px;
    display: inline-flex;
    column-gap: 10px;
    align-items: center;
    font-weight: 500;
    margin-bottom: 27px;
}
.bs-con .slider-tagline img{
  height: 20px;
  width: auto;
}
    .bs-con h1{
      position: relative;
      color: var(--color-white);
      text-transform: capitalize;
      font-size: 80px;
      font-weight: 400;
      line-height: 125px;
      font-family: var(--secondary-font) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
     margin-top: 27px;
    margin-bottom: 30px;
    }
    .bs-con h1 span{
    color: var(--color-dark);
    background-color: var(--yellow-color);
    border-radius: 20px;
    padding: 15px 10px 0;
    line-height: 0.8;
    }
    .bs-con p{
    position: relative;
    display: block;
    color: #fff;
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 30px;
    font-family: var(--secondary-font);
    font-weight: 400;
    }
    .bsc-btn {
        display: flex;
        justify-content: center;
        column-gap: 20px;
        margin-top: 10px;
    }
    .bsc-btn .site-btn.last-child{
    padding: 18px 50px;
    background-color: var(--color-white);
    color: var(--heading-color);
    }
      .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;
}
.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-dots {
        bottom: 40px !important;
    }
    .slick-prev {
        left: 40px !important;
        z-index: 1;
    }
    .slick-next {
        right: 40px !important;
        transform: translate(0,-50%) rotate(180deg) !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;
    top: 0 !important;
    background-color: var(--primary-color) !important;
}
.sticky img.header-logo {
    max-width: 215px;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .nav-link:focus {
    color: var(--secondary-color) !important;
}
.header-btn .site-btn, .btn-submit{
    border: 2px solid var(--secondary-color);
}
.header-btn .site-btn i{
    font-size: 18px;
  animation: handSlide 1.2s infinite ease-in-out;
}
@keyframes handSlide {
  0%   { transform: translateX(0); }
  30%  { transform: translateX(-7px); }
  60%  { transform: translateX(0); }  
  100% { transform: translateX(0); }
}
.header-dropdown .dropdown-menu {
    padding: 10px 0;
    margin: 0;
    border: none;
    border-radius: 7px;
    background: #fff;
}
/* .header-dropdown .dropdown-menu li {
    border-bottom: 1px solid rgb(82 119 169);
} */
.header-dropdown .dropdown-menu li:first-child{
    border-radius: 20px 20px 0 0 !important;
}
.header-dropdown .dropdown-menu li a {
    font-size: 17px;
    padding: 8px 20px;
    color: var(--color-dark);
    font-weight: 600;
    transition: 0.3s ease-in-out;
}
.header-dropdown .dropdown-menu li .dropdown-item.active{
  background-color: var(--color-white);
    color: var(--primary-color) !important;
}
.header-dropdown .dropdown-menu li:last-child{
    border: none !important;
}
.header-dropdown .dropdown-menu li:hover a {
  background-color: var(--color-white) !important;
    color: var(--primary-color) !important;
    margin-left: 4px;
    transition: 0.3s ease all;
}
.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: 13px;
    font-weight: 700;
    padding-left: 0px;
}
.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='%23FFFFFF' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.navbar-toggler {
    border: 2px solid var(--secondary-color) !important;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem #84ce5b45 !important;
}
.main-header {
    position: relative;
    z-index: 99999;
    /* padding: 5px 0; */
    background: var(--primary-color);
}
/* Section Title */
.section-title{
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
}
.section-title .sub-title{
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 12px;
    border-radius: 30px;
    border: 1px solid #dddddd;
    column-gap: 10px;
}
.section-title .sub-title img{
  height: 20px;
  width: auto;
}
.section-title h2{
   font-size: 48px;
    line-height: 65px;
    margin-bottom: 0;
    font-weight: 700;
    color: var(--heading-color);
    font-family: var(--primary-font);
}
.main-con p{
  color: #202020;
    font-size: 16px;
    font-weight: 400;
    line-height: 29px;
}
.section-padding{
    padding: 70px 0;
}
/* Features */
.features-wrapper{
    position: relative;
    z-index: 2;
    background-color: #f8f7f0;
    border-radius: 20px;
    margin-top: -120px;
}
.features-wrapper .item-column:not(:last-child) {
    border-right: 1px solid #DDD;
}
.feature-item{
    position: relative;
    overflow: hidden;
    padding: 40px 40px 32px;
    text-align: center;
}
.feature-item .icon{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    background-color: var(--yellow-color);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--heading-color);
}
.feature-item .icon img{
  height: 40px;
  width: auto;
}
.feature-item .content h4{
   color: var(--heading-color);
    font-family: var(--primary-font);
    font-size: 20px;
    font-weight: 700;
    line-height: 31px;
    margin-bottom: 0;
}
/* About Us Section */
.abtus-section .abtus-image-box{
  position: relative;
}
.abtus-image.image-one{
   text-align: left;
}
.abtus-image.image-one img{
   border-radius: 10px;
}
.abtus-image.image-two{
  position: absolute;
    bottom: 60px;
    right: 30px;
}
.abtus-image.image-two img{
  width: 100%;
  border-radius: 10px;
}
.abtus-image-box .experience-box {
    position: absolute;
    top: 60px;
    left: -35px;
    padding: 30px 10px;
    max-width: 180px;
    text-align: center;
    background-color: var(--primary-color);
}
.abtus-image-box .experience-box::after {
    position: absolute;
    bottom: -35px;
    left: 0;
    content: "";
    width: 0;
    height: 0;
    border-top: 35px solid var(--primary-color);
    border-left: 35px solid transparent;
}
.experience-box .icon-box{
  margin-bottom: 10px;
}
.experience-box .icon-box i{
  font-size: 50px;
  color: var(--secondary-color);
}
.experience-box h4{
   color: var(--color-white);
   font-size: 22px;
    line-height: 34px;
    font-weight: 700;
    font-family: var(--primary-font);
    margin-bottom: 5px;
}
.experience-box h6{
   font-size: 16px;
    line-height: 25px;
    color: var(--color-white);
    font-weight: 700;
    font-family: var(--primary-font);
    margin: 0;
}
.iconic-box-list{
  margin-top: 25px;
  margin-bottom: 40px;
}
.abtus-image-box .border-shape{
    width: 185px;
    height: 300px;
    border: 7px solid var(--secondary-color);
    position: absolute;
    right: 80px;
    top: 60px;
    z-index: -1;
}
.abtft-iconic-box{
  display: flex;
  align-items: center;
   margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}
.abtft-iconic-box .icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(12, 119, 53, 0.1);
    margin-right: 20px;
}
.abtft-iconic-box .icon img{
  height: 50px;
  width: auto;
}
.abtft-iconic-box .content h4{
  color: var(--heading-color);
   font-size: 22px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 6px;
}
.abtft-iconic-box .content p{
  margin-bottom: 0;
}
.abtft-button-wrap{
    display: flex;
    align-items: center;
}
.abtft-button-wrap .support-box{
    margin-left: 40px;
    display: inline-flex;
    align-items: center;
}
.abtft-button-wrap .support-box .icon{
   margin-right: 15px;
}
.abtft-button-wrap .support-box .icon i{
  font-size: 50px;
  color: #18271e;
}
.abtft-button-wrap .support-box .content span{
  color: var(--text-color);
   display: inline-block;
   font-weight: 400;
   font-family: var(--primary-font);
   font-size: 16px;
  line-height: 30px;
}
.abtft-button-wrap .support-box .content h6{
   font-size: 18px;
    line-height: 27px;
    margin: 0px;
    font-weight: 700;
    color: var(--heading-color);
    font-family: var(--primary-font);
}
.abtft-button-wrap .support-box .content h6 a{
   color: var(--heading-color);
}
/* Services */
.service-item{
    margin-bottom: 25px;
}
.service-item:hover .thumbnail .hover-overlay {
  opacity: 1;
  visibility: visible;
}
.service-item .thumbnail .hover-content-wrap {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 90%;
  background-color: var(--primary-color);
  border-radius: 0 60px 60px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 30px;
}
.service-item:hover .thumbnail .hover-content-wrap {
  background-color: var(--secondary-color);
}
.service-item:hover .thumbnail .hover-content-wrap .icon-btn {
  background-color: var(--primary-color);
}
.service-item:hover .thumbnail .hover-content-wrap .icon-btn i {
    transform: rotate(0deg);
}
.service-item .thumbnail {
  position: relative;
  z-index: 1;
}
.service-item .thumbnail img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
.service-item .thumbnail .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.service-item .thumbnail .hover-content-wrap .content {
  padding-right: 10px;
}
.service-item .thumbnail .hover-content-wrap .content h4 {
    color: var(--color-white);
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 2px;
    font-weight: 700;
    font-family: var(--primary-font);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}
.service-item .thumbnail .hover-content-wrap .content h4 a {
  color: var(--color-white);
}
.service-item .thumbnail .hover-content-wrap .content a {
    color: rgb(214 223 221);
}
.service-item .thumbnail .hover-content-wrap .icon-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}
.service-item .thumbnail .hover-content-wrap .icon-btn i {
    color: var(--color-white);
    transform: rotate(-45deg);
    transition: all 0.3s;
}
/* Why Choose Us */
.why-choose-us{
    position: relative;
    z-index: 1;
    /* background-color: var(--primary-color); */
    background-color: #001C0E;
    overflow: hidden;
}
.why-choose-us .bottom-shape{
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
    height: auto;
    z-index: -1;
}
.why-choose-item {
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  text-align: center;
  padding: 20px;
}
.why-choose-item .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  margin-bottom: 20px;
}
.why-choose-item .icon img{
    height: 40px;
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.3));
    width: auto;
}
.why-choose-item .content h4 {
  color: var(--color-white);
  margin-bottom: 13px;
  font-size: 22px;
  line-height: 34px;
  font-weight: 700;
}
.why-choose-item .content p {
 color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
}
/* Team */
.team-item:hover .member-image .hover-content .social-box {
  right: 20px;
}
.team-item:hover .member-image .hover-content .member-info {
  background-color: var(--primary-color);
}
.team-item .member-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.team-item .member-image img {
  width: 100%;
  border-radius: 10px;
}
.team-item .member-image .hover-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px 30px 30px 0;
  display: flex;
  align-items: flex-end;
  justify-content: start;
}
.team-item .member-image .hover-content .social-box {
  position: absolute;
  right: -40%;
  top: 30px;
  padding: 15px 10px;
  text-align: center;
  background-color: var(--primary-color);
  transition: all 0.3s;
}
.team-item .member-image .hover-content .social-box a {
  display: block;
  color: var(--color-white);
  margin-left: 10px;
  margin-right: 10px;
}
.team-item .member-image .hover-content .social-box a:not(:last-child) {
  margin-bottom: 10px;
}
.team-item .member-image .hover-content .member-info {
  width: fit-content;
  padding: 20px 30px;
  background-color: var(--secondary-color);
  text-align: start;
  border-radius: 0 60px 60px 0;
  transition: all 0.3s;
}
.team-item .member-image .hover-content .member-info h4 {
  color: var(--color-white);
  font-size: 22px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 3px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}
.team-item .member-image .hover-content .member-info .position {
  color: rgba(255, 255, 255, 0.8);
}
/* Intro Section */
.intro-section{
    position: relative;
    z-index: 1;
    background-image: url('../img/bg/intro-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 100%;
}
.intro-section:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0.25%, rgba(0, 0, 0, 0.54) 47.04%, rgba(0, 0, 0, 0.9) 99.8%);
    z-index: -1;
}
.intro-section .intro-text{
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 45px;
}
.intro-section .play-box .video-popup {
    position: relative;
    width: 90px;
    height: 90px;
    border: 1px solid #dddddd;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.intro-section .play-box a i{
    color: var(--color-white);
    font-size: 20px;
}
.intro-section .play-box .video-popup:before, .intro-section .play-box .video-popup:after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    border-radius: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-white);
}
.intro-section .play-box .video-popup:before {
    animation: playpopup infinite ease-in-out 4s;
}
@keyframes playpopup{
    0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.6;
}
50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.3;
}
100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
}
}
.intro-section .play-box .video-popup:after {
    animation: playpopup infinite ease-in 2s;
}
/* Testimonials */
.testimonial-item .testimonial-inner-wrap {
  background-color: #f8f7f0;
  display: flex;
  align-items: center;
  padding: 30px;
}
.testimonial-item .testimonial-inner-wrap .thumbnail {
  max-width: 290px;
  flex: 0 0 auto;
  margin-right: 60px;
}
.testimonial-item .testimonial-inner-wrap .thumbnail img {
  border-radius: 5px;
}
.testimonial-item .testimonial-inner-wrap .testimonial-content .ratings {
  margin-bottom: 22px;
}
.testimonial-item .testimonial-inner-wrap .testimonial-content .ratings i {
  color: #FFB538;
}
.testimonial-item .testimonial-inner-wrap .testimonial-content p {
    color: var(--text-color);
  font-size: 18px;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 27px;
}
.testimonial-item .testimonial-inner-wrap .testimonial-content .author-info h5 {
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--primary-font);
}
.testimonial-item .testimonial-inner-wrap .testimonial-content .author-info .auth-name{
    font-weight: 400;
    color: var(--text-color);
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 30px;
}
/* FAQs */
.accordion-wrapper{
    margin-top: 35px;
}
.accordion-card {
  background-color: #f8f7f0;
  border-radius: 40px;
  border: 1px solid #dddddd;
}
.accordion-card .accordion-header .accordion-title {
  color: var(--primary-color);
  font-size: 17px;
  font-weight: 700;
  padding: 10px 30px 10px 10px;
  line-height: 28px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 0;
}
.accordion-card .accordion-header .accordion-title:after {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  content: "\f106";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: var(--primary-color);
  margin-left: auto;
  transition: all 0.3s;
}
.accordion-card .accordion-header .accordion-title .icon-btn {
  flex: 0 0 auto;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 14px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}
.accordion-card .accordion-header .accordion-title .icon-btn i {
  transform: rotate(-45deg);
  transition: all 0.34s;
}
.accordion-card .accordion-header .accordion-title[aria-expanded=true] {
  background-color: var(--primary-color);
  color: var(--color-white);
  border-radius: 30px 30px 30px 0;
}
.accordion-card .accordion-header .accordion-title[aria-expanded=true] .icon-btn {
  background-color: var(--secondary-color);
  border-radius: 15px 15px 15px 0;
}
.accordion-card .accordion-header .accordion-title[aria-expanded=true] .icon-btn i {
    transform: rotate(0);
}
.accordion-card .accordion-header .accordion-title[aria-expanded=true]:after {
  content: "\f107";
  color: #ffb200;
}
.accordion-card .accordion-content {
  padding: 30px;
}
.accordion-card .accordion-content p {
  border-left: 2px solid #051b0d;
  padding-left: 15px;
  line-height: 27px;font-size: 16px;
    font-weight: 500;
    color: #353b38;
}
.faq-wid-wrap img{
    border-radius: 10px;
}
/* Contact Area */
.cts-section{
  position: relative;
  background-image: url('../img/bg/cta-bg.png');
  background-size: 45%;
    background-repeat: no-repeat;
    background-position: left bottom;
}
.cts-wid-wrap{
    margin-top: 40px;
}
.cts-wid-wrap img{
    border-radius: 10px;
}
.cts-form-wrapper{
    border-radius: 10px;
    /* background-color: #f8f7f0; */
    background-color: #68d26917;
    padding: 40px 50px 50px;
}
.cts-form-wrapper h3{
    color: var(--heading-color);
    font-size: 27px;
    line-height: 40px;
    margin: 0;
    font-weight: 700;
}
.cts-form-wrapper p{
    margin-bottom: 40px;
    font-weight: 400;
    color: var(--text-color);
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 30px;
}
.cts-form-wrapper .form-group{
    margin-bottom: 20px;
}
.cts-form-wrapper label {
    margin-bottom: 10px;
    color: var(--heading-color);
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}
.cts-form-wrapper .form-control {
    padding: 12px 20px;
    border-radius: 5px;
    border: 1px solid rgba(24, 39, 30, 0.2);
    background-color: rgb(241 247 243);
    margin-bottom: 20px;
    color: #454545;
}
.cts-form-wrapper .form-control:focus{
    box-shadow: none;
    border-color: var(--primary-color);
}
/* Footer */
.footer-section{
    position: relative;
    padding-top: 70px;
    background-color: var(--heading-color);
    background-image: url('../img/bg/footer-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 100%;
}
.footer-widget-area{
    padding-bottom: 20px;
}
.footer-logo{
    margin-bottom: 25px;
}
.footer-logo img {
    max-width: 200px;
    height: auto;
    border-radius: 0 60px 60px 0;
}
.footer-para{
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 25px;
}
.footer-widget .social-box a{
    border: 1px solid var(--color-white);
    color: var(--color-white);
    margin-right: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s 
ease-out 0s;
}
.footer-widget .social-box a i{
    font-size: 15px;
    color: var(--color-white);
}
.footer-widget .social-box a:hover {
    background-color: var(--secondary-color);
    border-color: transparent;
}
.footer-title {
    position: relative;
    color: var(--color-white);
    margin-bottom: 25px;
    font-size: 22px;
    line-height: 34px;
    font-weight: 700;
    width: fit-content;
    padding-bottom: 11px;
}
.footer-title::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 40%;
    height: 2px;
    background-color: #fff;
    border-radius: 0 30px 30px 0;
}
.widget-nav li:not(:last-child) {
    margin-bottom: 15px;
}
.widget-nav li {
    color: var(--color-white);
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    position: relative;
    padding-left: 25px;
}
.widget-nav li::before {
    content: "\f06c";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-size: 14px;
    line-height: 30px;
}
.widget-nav li a {
    color: var(--color-white);
    transition: 0.3s ease;
}
.widget-nav li:hover a {
    color: var(--secondary-color);
    padding-left: 5px;
    transition: all 0.3s ease;
}
.contact-ul li{
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 11px;
}
.contact-ul li .cont-avatar{
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.contact-ul li .cont-avatar i{
    font-size: 22px;
    color: var(--primary-color);
}
.contact-ul li .cont-info h5{
    color: var(--color-white);
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 5px;
}
.contact-ul li .cont-info p, .contact-ul li .cont-info a{
    color: rgba(255, 255, 255, 0.8);
    line-height: 24px;
    font-weight: 400;
    font-size: 14px;
    margin: 0;
    transition: 0.3s ease all;
}
.contact-ul li .cont-info a:hover{
    color: var(--secondary-color);
    transition:color 0.3s ease;
}
.copyright-area{
    background-color: #0e1712;
    padding: 20px 0;
}
.copyright-text, .credit-text{
    margin: 0;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
.brand-text{
    color: var(--secondary-color);
}
.credit-text a{
    color: #0091BF;
    padding-left: 5px;
}
.product-slider .slick-slide {
  padding: 0 12px;
}
.product-slider .slick-list {
  margin: 0 -12px; 
}
.prosl-button{
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.prosl-button .prosli-btn-prev, .prosl-button .prosli-btn-next{
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #9fa9a6;
  transition: 0.35s ease all;
}
.prosl-button .prosli-btn-prev:hover, .prosl-button .prosli-btn-next:hover{
   background-color: var(--secondary-color);
   border-color: var(--secondary-color) !important;
   transition: 0.35s ease all;
  
}
.prosl-button .prosli-btn-prev:hover i, .prosl-button .prosli-btn-next:hover i{
  color: var(--color-white);
}
.prosl-button .prosli-btn-prev i, .prosl-button .prosli-btn-next i{
  font-size: 21px;
  color: var(--primary-color);
}
/* Breadcrumb */
.page-banner{
  position: relative;
   background-image: url('../img/bg/banner-bg.jpg');
   padding: 70px 0 50px;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 100%;
}
.page-banner:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.56) 0.25%, rgba(0, 0, 0, 0.42) 50.03%, rgba(0, 0, 0, 0.56) 99.8%);
    z-index: -1;
}
.page-banner .page-content .breadcrumb-title {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 60px;
    line-height: 80px;
    font-weight: 700;
}
.page-banner .page-content ul {
    background-color: rgba(255, 255, 255, 0.14);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    padding: 7px 30px;
}
.page-banner .page-content ul li {
    color: var(--color-white);
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
}
.page-banner .page-content ul li a{
  color: var(--color-white);
  transition: 0.3s ease;
}
.page-banner .page-content ul li:hover a{
  color: var(--secondary-color);
}
.page-banner .page-content ul li:not(:last-child):after {
    content: "|";
    margin-left: 15px;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.2);
}
.page-banner .page-content ul li.active{
  color: var(--secondary-color);
}
.fw-b{
  font-weight: 600;
  color: #000;
}
/* clients */
.client-section{
  padding: 30px 0;
}
.client-item {
    position: relative;
    background-color: #84ce5b1a;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    margin: 10px;
    border: 5px solid #223f380d;
    transition: 0.4s ease-in-out;
}
.client-item img {
    position: relative;
    transition: all 300ms ease;
    width:100%;
    object-fit: contain;
}
.client-item:hover{
  border-color: var(--secondary-color);
  transition: border-color 0.4s ease-in-out;
}
/* Our Process */
.process-section{
    position: relative;
    z-index: 1;
    background-image: url('../img/bg/intro-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 100%;
}
.process-section:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0.25%, rgba(0, 0, 0, 0.54) 47.04%, rgba(0, 0, 0, 0.9) 99.8%);
    z-index: -1;
}
.step-item.style-1 {
    text-align: center;
}
.step-item.style-1 h4 {
    color: var(--color-white);
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.step-item.style-1 p {
    color: #bfc9c7;
    font-family: var(--primary-font);
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.step-desc{
  margin-top: 20px;
}
.text-white.step-item.style-1 h4 {
    color: var(--color-white);
}
 
.step-item.style-1 .step-icon {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-white);
    border-radius: 50%;
    outline: 2px dashed #fff;
    outline-offset: 10px;
    text-align: center;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease-in-out;
    z-index: 3;
    font-size: 54px;
    color: var(--color-dark);
}
.step-item.style-1 .step-icon img {
  height: 50px;
  width: auto;
    transition: 0.4s ease-in-out;
    display: inline-block;
}
.step-item.style-1:hover .step-icon img {
    color: var(--color-white);
    filter: invert(1) brightness(30);
}
.step-item.style-1:hover .step-icon img {
    transform: rotateY(180deg);
}
.step-item.style-1 .step-icon:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    inset: 15px;
    border-radius: 50%;
    background-color: #84ce5b40;
    border: 1px dashed var(--primary-color);
    z-index: -1;
    transition: 0.4s ease-in-out;
}
.step-item.style-1:hover .step-icon:before {
    background-color: var(--primary-color);
}
.step-item.style-1 .step-number {
    position: absolute;
    top: 0;
    right: -8px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: var(--secondary-color);
    border: 1px solid transparent;
    color: var(--color-white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease-in-out;
}
.step-item.style-1:hover .step-number {
    background-color: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-white);
}
.step-process-area {
    position: relative;
}
.step-process-area::after {
    background: url(../img/about/step-line.svg);
    top: 60px;
    content: "";
    height: 100%;
    left: 15%;
    position: absolute;
    width: 100%;
    background-repeat: no-repeat;
    z-index: -1;
}
/* Our Values */
.our-values-card {
    padding: 30px 20px;
    background-color: var(--color-white);
    border-radius: 5px 45px 5px 45px;
    height: 100%;
    display: flex;
    align-items: center;
    column-gap: 20px;
    box-shadow: rgba(34, 63, 56, 0.2) 0px 8px 24px;
    transition: 0.3s ease-in-out;
}
.our-values-card:hover{
  transform: translateY(-7px);
  transition:transform 0.3s ease-in-out;
}
.oval-col{
  margin-bottom: 25px;
}
.our-values-card .icon{
  width: 90px;
  height: 90px;
  min-width: 90px;
  min-height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}
.our-values-card:hover .icon{
  background-color: var(--secondary-color);
  transition:background-color 0.3s ease-in-out;
}
.our-values-card .icon img{
  height: 55px;
  width: auto;
}
.our-values-card .content h4 {
    font-size: 25px;
    line-height: 33px;
    color: #162420;
    font-weight: 700;
    margin-bottom: 10px;
}
/* Vision & Mission */
.VM-section{
  position: relative;
  background-image: url('../img/bg/vm-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: 1;
}
.VM-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #273f38d1;
    z-index: 0;
}
.vm-wrapper {
    border: 1px solid var(--color-white);
    padding: 90px 40px;
    position: relative;
    z-index: 3;
}
.vm-wrapper::after{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 1px;
  background-color: var(--color-white);
}
.vm-box .vm-head {
    font-size: 30px;
    color: #273f38;
    font-weight: 800;
    margin-bottom: 30px;
    width: fit-content;
    background: #84ce5b;
    padding: 11px 25px 11px 12px;
    border-radius: 0 60px 60px 0;
}
.vm-box .vm-para{
  font-size: 17px;
  line-height: 32px;
  color: var(--color-white);
}
.vm-box.even{
  padding-left: 20px;
}
.vm-avatar {
    height: 100px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #84ce5b;
    border-radius: 50%;
    margin-bottom: 35px;
    box-shadow: rgb(132 206 91 / 63%) 0px 8px 24px;
    outline-offset: 0;
}
.vm-avatar img {
    height: 50px;
    width: auto;
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.3));
}
.wcuabt-card-wrapper{
  margin-top: 40px;
}
.wcuabt-wid-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 10px;
}
.wcuabt-wid-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.6s ease;
}
.wcuabt-wid-wrap:hover img {
  transform: scale(1.05);
}
.wcuabt-wid-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(132, 206, 91, 0.25);
  transition: all 0.6s ease;
}
.wcuabt-wid-wrap:hover::after {
  left: 0;
}
.wcuabt-card{
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 25px;
  background-color: #FFF;
  padding:25px 20px;
  border-radius: 10px;
  box-shadow: rgba(132, 206, 91, 0.2) 0px 8px 24px;
  margin-bottom: 25px;
}
.wcuabt-avatar{
  height: 95px;
  width: 95px;
  min-height: 95px;
  min-width: 95px;
  background-color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 60px 60px 0;
  padding-right: 20px;
}
.wcuabt-avatar img{
  height: 55px;
  width: auto;
}
.wcuabt-avatar img.sm-size{
   height: 65px;
}
.wcuabt-con h4 {
    font-size: 25px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}
/* Why choose us inner */
.wcu-inn-card {
    padding: 25px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}
.wcu-inn-card.even {
    background-color: #84ce5b24;
}
.wcu-inn-wid-wrap img{
  height: 350px;
  object-fit: cover;
}
.wcu-inn-title {
    position: relative;
    display: inline-block;
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding: 0 20px;
}
.wcu-inn-title::before,
.wcu-inn-title::after {
  content: "";
  position: absolute;
  top: 58%;
  width: 50px; 
  height: 3px;
  background-color: #84CE5B;
  transform: translateY(-50%);
}
.wcu-inn-title::before {
  left: -60px;
}
.wcu-inn-title::after {
  right: -60px;
}
.wcu-inn-para {
    font-size: 18px;
    font-weight: 500;
    color: #626a68;
    line-height: 28px;
}
.img-flash {
  position: relative;
  overflow: hidden;
}
.img-flash img {
  transition: transform 0.6s ease;
}
.img-flash:hover img {
  transform: scale(1.05);
}
.img-flash::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(132, 206, 91, 0.25);
  transition: all 0.6s ease;
}
.img-flash:hover::after {
  left: 0;
}
/* Product Details */
.innp-lg-heading {
  color: var(--heading-color);
  font-size: 45px;
  font-weight: 700;
  line-height: 57px;
  margin-bottom: 25px;
}
.prod-details-section .main-con p{
  color: #000;
}
.proddet-wid-wrap, .proddet-wid-wrap img{
  border-radius: 10px;
}
.innp-sm-heading {
  position: relative;
    font-size: 30px;
    line-height: 34px;
    font-weight: 700;
    color: var(--heading-color);
    padding-bottom: 18px;
    margin-bottom: 30px;
}
.innp-sm-heading:before{
  content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    bottom: 0;
    max-width: 100px;
    left: 0;
}
.innp-sm-heading:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    bottom: 0;
    max-width: 30px;
    border-inline: 4px solid #fff;
    left: 0;
    margin-left: 60px;
}
.innp-list-ul li {
  position: relative;
  padding-left: 35px; 
  margin-bottom: 20px;
  font-size: 18px; 
  line-height: 28px; 
}
.innp-list-ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px; 
  width: 20px;
  height: 20px;
  background: url("../img/icons/check.png") no-repeat center center;
  background-size: contain;
}
.appl-list-ul li{
    position: relative;
  padding-left: 35px; 
  margin-bottom: 10px;
  font-size: 18px; 
  line-height: 28px; 
}
.appl-list-ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 25px;
    height: 25px;
    background: url("../img/icons/right-chevron.png") no-repeat center center;
    background-size: contain;
}
.highlight-li{
  color: var(--primary-color);
  font-weight: 600;
}
/* Contact Us */
.contact-info-box {
    background-color: #84ce5b1f;
    text-align: start;
    padding: 45px 30px;
    display: flex;
    align-items: center;
    border: 1px dashed #223f3885;
    column-gap: 20px;
    margin-bottom: 35px;
    border-radius: 0 100px 100px 0;
    box-shadow: rgba(132, 206, 91, 0.3) 0px 1px 2px 0px,
            rgba(132, 206, 91, 0.15) 0px 2px 6px 2px;
}
.contact-info-box .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    font-size: 18px;
    color: var(--heading-color);
    /* border: 3px solid var(--primary-color); */
}
.contact-info-box .content h5{
  font-size: 23px;
    line-height: 30px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}
.contact-info-box .content p {
    font-size: 17px;
    font-weight: 500;
    color: #54605b;
    margin-bottom: 0;
    padding-bottom: 5px;
}
.contact-info-box .content p a{
     color: #54605b;
}
.contact-info-box .content p:last-child{
  padding-bottom: 0;
}
/* Form */
.contact-form-wrapper{
  background-color: var(--primary-color);
  padding: 40px;
  border-radius: 20px;
}
.contact-form-container{
  margin-top: 30px;
}
.contact-form label {
  color: var(--color-white);
  margin-bottom: 15px;
}
.contact-form .form-control {
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  line-height: 20px;
  padding: 17px 20px;
  margin-bottom: 30px;
  color: #000 !important;
}
.contact-form .form-control:focus{
  box-shadow: none !important;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.text-justify{
  text-align: justify;
}
.serdet-img-box {
    position: relative;
    z-index: 1;
}
.serdet-img-box .serdet-img img {
    border-radius: 5px;
}
.serdet-img-box .serdet-img.image-one img {
    height: 480px;
    max-width: 375px;
    object-fit: cover;
}
.serdet-img-box .serdet-img.image-two {
    position: absolute;
    bottom: 0;
    right: 0;
}
.serdet-img.image-two img {
    height: 310px;
    object-fit: cover;
    border: 4px solid var(--color-white);
}
.circle-image {
    position: absolute;
    top: 0;
    right: 30px;
}
.bounce {
  animation: updown-bounce 2s ease-in-out infinite;
}

@keyframes updown-bounce {
  0%, 100% {
    transform: translateY(0);   /* starting & ending position */
  }
  50% {
    transform: translateY(-20px); /* move up */
  }
}
.keyfeat-card{
  border: none !important;
}
.keyfeat-card img{
   height: 250px;
    object-fit: cover;
}
.keyfeat-info {
    padding: 17px; 
    background-color: #FFF;
    box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
}
.keyfeat-img-wrap{
  position: relative;
  overflow: hidden;
}
.keyfeat-img-wrap::before{
    background: rgba(132, 206, 91, 0.6);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    transition: all 500ms linear;
    z-index: 9999;
}
.keyfeat-card:hover .keyfeat-img-wrap::before {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 500ms linear;
}
.keyfeat-info h4{
      font-size: 19px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
    line-height: 28px;
}


.application-section .step-item.style-1{
  padding: 40px 20px;
  background-color: #FFF !important;
  height: 100%;
  box-shadow: rgba(0, 28, 14, 0.24) 0px 3px 8px !important;
  border-radius: 10px;
  transition: 0.4s ease-in-out;
}
.application-section .step-item.style-1:hover{
  transform: translateY(-10px);
  transition:transform 0.4s ease-in-out;
}
.application-section .step-item.style-1 .step-icon img{
  height: 60px;
}
.application-section .step-item.style-1:hover .step-icon img{
  filter: none !important;
}
.application-section .step-item.style-1 .step-icon:before{
  background: var(--primary-color) !important;
}
.application-section .step-item.style-1 .step-icon{
  outline: none !important;
  background-color: #84ce5b6b !important;
  
}
.application-section .step-item.style-1 h4{
  text-shadow: none !important;
  color: var(--primary-color) !important;
}
.application-section .step-item.style-1 p{
   text-shadow: none !important;
   color: #000 !important;
}
.application-section .step-item.style-1:hover .step-icon img {
    transform:none !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;
      }
    }
    .prorgcd-col{
      margin-bottom: 25px;
    }
    .prorange-card{
      padding: 25px;
      border-radius: 10px;
     height: 100%;
    }
    .prorange-card.odd{
      background-color: #273f381a;
    }
    .prorange-card.even{
      background-color: #83ce5b1a;
    }
    .prorange-title{
    position: relative;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 13px;
    width: fit-content;
    }
    .prorange-title::after{
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      height: 4px;
      width: 30%;
      background-color: var(--primary-color);
      border-radius: 15px;
    }