:root {
    --cl-ff-body: "Jost", sans-serif;
    --cl-ff-heading: "Jost", sans-serif;
    --cl-ff-text: "Jost", sans-serif;
    --cl-ff-fontawesome: "Font Awesome 6 Pro";
    --cl-color-grey-1: #F1F1F1;
    --cl-color-grey-2: #F5F6F8;
    --cl-color-white: #ffffff;
    --cl-color-black: #000;
    --cl-color-primary: #046936;
    --cl-color-dark-primary: #1bb27b;
    --cl-color-secondary: #09331B;
    --cl-color-bottle-green: #09331B;
    --cl-color-caribbean-green: #0ACF83;
    --cl-color-dodger-blue: #1ABCFE;
    --cl-color-english-holly: #021609;
    --cl-color-maastricht-blue: #09152B;
    --cl-color-alabaster: #EBF0E7;
    --cl-color-jewel: #0E7A31;
    --cl-color-border-color: #E6F2F2;
    --cl-color-heading-1: #09331B;
    --cl-color-text-body: #6D756D;
    --cl-color-text-body2: #413533;
    --cl-color-yellow: #F7B401;
    --cl-color-icon-black: #113007;
    --cl-color-badge: #FFAB6C;
    --cl-color-cart-remove: #F44336;
    --cl-fw-normal-1: 400;
    --cl-fw-normal-2: 500;
    --cl-fw-bold-1: 700;
    --cl-fw-bold-2: 800;
    --cl-fw-bold-3: 600;
    --cl-fz-text-1: 1rem;
    --cl-fz-text-2: 0.875rem;
    --cl-fz-heading-1: 4.375rem;
    --cl-fz-heading-2: 3.4375rem;
    --cl-fz-heading-3: 2.8125rem;
    --cl-fz-heading-4: 2.25rem;
    --cl-fz-heading-5: 2rem;
    --cl-fz-heading-6: 1.75rem;
    --cl-fz-heading-7: 1.375rem;
    --cl-fz-heading-8: 1.125rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    overflow-x: hidden;
  }
    :root {
      --brand: #046936;
      --accent: #ff6d3c;
      --text: #113007;
    }

    body {
      font-family: "Jost", sans-serif;
      margin: 0;
      color: var(--text);
    }

    #orangecity-img {
  display: inline-block;
  vertical-align: middle;
  animation: floatPulse 3s ease-in-out infinite;
  transition: transform 0.3s ease, filter 0.3s ease;
}


#orangecity-img:hover {
  transform: scale(1.2);
  filter: brightness(1.3);
}


@keyframes floatPulse {
  0% {
    transform: translateY(0) scale(1);
    filter: brightness(1);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
    filter: brightness(1.2);
  }
  100% {
    transform: translateY(0) scale(1);
    filter: brightness(1);
  }
}

    .header-top {
      background: var(--accent);
      color: #fff;
      height: 40px;
      display: flex;
      align-items: center;
    }

    .header-top a {
      color: #fff;
      font-size: 14px;
      text-decoration: none;
    }

    .header-top .social a {
      margin-left: .6rem;
      font-size: 16px;
    }

    
    .menu-wrapper {
      background: #fff;
      border-bottom: 1px solid #e6ece6;
    }

    .navbar {
      padding: 12px 0;
    }

    #logo {
      height: 95px;
      width: auto;
      display: block;
      padding-left: 15px;
    }

   
    
    .navbar-nav {
      font-size: 20px;
      font-weight: 550;
      gap: 15px;
    }

    .navbar-nav .nav-link {
      padding: 8px 18px;
      color: black;
    }


     
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--brand);
    }

     ul li.nav-item a.nav-link::before {
    opacity: 1;
    visibility: hidden;
}
 ul li a.nav-link::before {
  content: "\f06c";
  font-family: "Font Awesome 6 Free";  
  font-weight: 900; 
  font-size: 1.2em;   
  color: var(--cl-color-primary);
  margin-right: 4px;
  display: inline-block;
  transform: translateY(1px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease-in-out;
}


ul li a.nav-link:hover::before {
    opacity: 1;
    visibility: visible;
    color: var(--brand);
}


ul li a.nav-link.active::before {
    opacity: 1;
    visibility: visible;
    color: var(--brand);
}

   
    .phone {
      display: flex;
      align-items: center;
      gap: .75rem;
      /*padding-right: 80px;*/
      padding-right: 10px;
    }

    .phone img.msg {
      height: 50px;
    }

    .phone__label {
      font-size: 12px;
      color: #6b6b6b;
      margin: 0;
    }

    .phone__num {
      font-weight: 700;
      color: var(--brand);
      text-decoration: none;
    }
    .phone__num:hover{
      color: var(--brand) !important;
    }

   
    .dropdown-menu {
      border-radius: 5px;
      min-width: 220px;
    }

    .dropdown-submenu {
      position: relative;
    }

    .dropdown-submenu>.dropdown-menu {
      top: 0;
      left: 100%;
      margin-top: -1px;
      align-items: center;

    }

    
    
    .dropdown-item {
      font-size: 14px;
      font-weight: 500;
      text-align: center;
      padding: 10px 20px;
      color: black;
      position: relative;
      overflow: hidden;
      z-index: 1;
      transition: color 0.3s ease;
      border-bottom: 1px solid rgba(215, 211, 211, 0.4);
    }


    .dropdown-item::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 0;
      height: 100%;
      background: #046936;
      
      z-index: -1;
      transition: width 0.3s ease;
      
    }

    
    .dropdown-item:hover {
      color: #fff;
      
    }

    .dropdown-item:hover::before {
      width: 100%;
      
    }

    .dropdown-toggle::after {
      display: none !important;
    }

    .small-icon {
      font-size: 12px;
      margin-left: 5px;
    }

    .arrow-right {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 12px;
      color: rgba(0, 0, 0, 0.6);
      z-index: 2;
      margin-right: 8px;
      padding: 0;
    }


    
    @media (min-width: 992px) {
      .navbar .dropdown:hover > .dropdown-menu { display: block; }
      .dropdown-submenu:hover > .dropdown-menu { display: block; }
    }

    
    @media (max-width: 992px) {
      .dropdown-menu .dropdown-menu {
        position: relative;
        left: 0;
        top: 0;
        margin: 0;
      }
    }

  


    .header-top {
      background-image: url("img/header-top-shape.png");
      background-repeat: no-repeat;
      background-size: cover;
      width: 100%;
      height: 40px;
      background-position: top;
      background-color: #ff6d3c;
      color: var(--cl-color-white);
    }



    .header-top .envelop {
      display: inline-flex;
      align-items: center;
      color: #fff;
      text-decoration: none;
      font-family: "Jost", sans-serif !important;
      font-size: 16px;
      padding: 5px;

    }


    .header-top .social {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 5px;
      margin-top: 6px;
      margin-right: 40px;
      gap: 5px;
    }



    

/*=================================offcanvas=======================================*/

    /* Navbar */
    .navbar-toggler {
      color: var(--brand);
      border: none;
      font-size: 1.5rem;
    }

    @media (min-width: 992px) {
      .navbar-toggler {
        display: none;
      }
    }

    /* Offcanvas */
    .offcanvas {
      background-color: var(--brand);
      color: #fff;
    }

    .offcanvas-end {
      width: 450px;
    }

    .offcanvas-header {
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      justify-content: end;
    }

    .offcanvas-body {
      padding-top: 0;
    }

    .offcanvas-nav {
      list-style: none;
      padding: 0px 30px;
      margin-top: 2rem;
    }

    .offcanvas-nav li {
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .offcanvas-nav li:last-child {
      border-bottom: none;
    }

    .offcanvas-nav a {
      color: white;
      font-weight: 600;
      text-decoration: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-transform: uppercase;
    }
    .offcanvas-nav a {
  color: #fff; 
  text-decoration: none;
  transition: color 0.3s ease; 
}

.offcanvas-nav a:hover,
.offcanvas-nav a:focus,
.offcanvas-nav a:active {
  color: var(--cl-color-icon-black) !important;
  cursor: pointer !important;
}


    .offcanvas-nav .collapse a {
      padding-left: 1rem;
      font-size: 15px;
      text-transform: none;
    }

    .plus-icon {
      font-weight: lighter;
      font-size: 20px;
      padding: 0px 10px ;
      border: 1px solid rgba(255, 255, 255, 0.2);
      
    }

    .contact-label {
      /*margin-top: 1.5rem;*/
      margin-bottom: .5rem;
      font-size: 16px;
      font-weight: 600;
      text-transform: uppercase;
      color: #fff;
    }

     .contact-label:hover{
       color: var(--cl-color-icon-black) !important;;
     }
    .social-icons a {
  background: #fff;
  color: var(--brand);
  width: 36px;
  height: 36px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--cl-color-icon-black) !important;
  color: #fff !important;
}

    
     
     
    .social-icons {
      display: flex;
      align-items: center;
    }

.custom-close-btn {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: rgba(14, 122, 49, 0.7); 
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-right: auto;         
  margin-left: 0;      
}


.custom-close-btn:hover {
  background-color: black;
  color: white;
}



/*-----------------------------------------------Home-carousel --------------------------------------------------*/

    .carousel-item {
  height: 71vh;
}

.carousel-item img {
  height: 100%;
  object-fit: cover;
}





.carousel-indicators {
  list-style: none;
  margin: 0;
  padding: 0;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: none;
}


.carousel-control-prev,
.carousel-control-next {
  opacity: 1 !important;
  width: auto;   
}


.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;                
  transform: translateY(-50%);
  width: auto;             
  height: auto;
  opacity: 1 !important;   
}

.carousel-control-prev {
  left: 50px;   
}

.carousel-control-next {
  right: 50px;  
}



.control-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #046936;   
  color: white;                
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 22px;
  transition: all 0.3s ease;

}


.control-circle:hover {
  background-color: white;
  color: #046936;
  border: 2px solid #046936;
}

  .carousel-indicators{
    opacity:0;
  }

.carousel-caption {
  bottom: 20%; 
  top: 18%;         
  left: 10%;            
  right: auto;          
  text-align: left;     
}

.carousel__title {
  font-size: 4.6rem;
  font-weight: 700;
  color: white;
}

.carousel-para {
  font-size: 1.2rem;
  color: white;
}


.highlight-text__line {
  display: inline-block;
  position: relative;
  font-weight: bold;
  color: white;
}

.highlight-text__line .underline {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: white;
}






.cl-hero-block__content__buttons-group .btn {
  padding: 12px 25px;
  border-radius: 6px;
  background-color: #ff6d3c;  
  border: none;
  margin-top: 1rem;
}


.fancy-hover-btn {
  position: relative;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: lighter;
  color: white;
  background: #ff6d3c; 
  border: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.fancy-hover-btn::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 100%;
  width: 300%;
  height: 300%;
  background: var(--cl-color-bottle-green);
  border-radius: 50%;
  transition: all 0.6s ease;
  z-index: -1;
  transform: translate(-50%, -50%) scale(0);
}

.fancy-hover-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
  top: 50%;
  left: 50%;
}

.fancy-hover-btn:hover {
  color: #fff;
  border: 1px solid var(--accent);
}


@media (max-width: 767.98px) {
  
  .carousel-item img {
    display: none !important;
  }

  
  .carousel-inner .carousel-item:nth-child(1) {
    background-image: url('img/flat-lay-hands-holding-soilmobile.jpg');
  }

  .carousel-inner .carousel-item:nth-child(2) {
    background-image: url('img/environmental-conservation-plant-sustainability-mobile.jpg');
  }

  .carousel-inner .carousel-item:nth-child(3) {
    background-image: url('img/shaking-mobile.jpg');
  }

  .carousel-inner .carousel-item:nth-child(4) {
    background-image: url('img/beautiful-view-field-covered-green-grass-captured-canggu-bali.jpg');
  }

  
  .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 71vh;
  }
}



/*--------------------------------------features----------------------------------------------*/


/*=============animation=======*/

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.container.features .box {
  animation: slideUp 0.8s ease-out forwards;
  opacity: 0;
}




  *, *::before, *::after { box-sizing: border-box; }

  .features {
    padding: 50px 0;
    /*background-color: #ce6464;*/
    margin-top: 30px;
    margin-bottom: 50px;
    overflow: visible; 
  }

  .col-lg-4.position-relative .info-shape {
  position: absolute;
  bottom: -25px;    
  left: -40px;      
  z-index: 1;       
  width: 80px;
  height: 70%;
  pointer-events: none;
}

.box {
  position: relative;
  z-index: 2;       
}



  
  .features .row,
  .features .col {
    overflow: visible;
  }

  .box {
  align-items: flex-start; 
}

  /* card */
  .box {
    height: 10rem;
    position: relative;            
    width: 100%;                   
    display: flex;
    align-items: center;
    gap: 18px;                     
    padding: 24px 28px;
    border-radius: 12px;
    background-color: var(--cl-color-alabaster, #e8efe8);
    overflow: visible;             
    min-height: 120px;           
  }

 
  .box::after {
    content: "";
    position: absolute;
    right: -1px;   
    bottom: -1px;  
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: #ff6d3c;
    border-top-left-radius: 100%;
    z-index: 2;
  }

 
.box {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.box:hover {
  background-color: var(--cl-color-primary); /* green */
  color: #fff;
}

.box:hover .box-heading,
.box:hover .box-para {
  color: #fff;
}

.box:hover .picture {
  border-color: #fff; 
  background-color: var(--cl-color-primary); 
}


.box:hover::after {
  background-color: var(--cl-color-bottle-green); 
}


.picture {
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.box::after {
  transition: background-color 0.3s ease;
}


   
  
  .picture {
    flex: 0 0 auto;   
    width: 90px;
    height: 90px;
    padding: 10px;
    border-radius: 50%;
    background: #fff;
    border: 2.3px solid var(--brand, #0b8b4f);
    display: grid;
    place-items: center;
    overflow: hidden;
  }


  .picture img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
  max-height: 100%;
  object-fit: contain;
    object-fit: cover; 
  }

  .box-heading {
    font-size: 19px;
    font-weight: 700;
    color: #09331B;
    margin: 0 0 8px;
  }

  .box-para {
    margin: 0;
    font-size: 14px;
    color: #6D756D;
  }

  



/*----------------------------------PRODUCT INTRODUCTION AND PRINCIPLES----------------------------*/


.container.product {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 50px;
  
  
}

.right-shap {
  position: absolute;
  top: 0;
  right: -30px;
  width: 100px;
  height: 200px;
  pointer-events: none;
  z-index: 2;
  
}

.right-shap img {
  display: block;
  width: 230%;
  height: 200%;
}


.natural-wrapper {
  position: relative;
  display: inline-block;
}


#natural {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  left: -80px;
  border-radius: 2%;
}


.natural-overlay {
  position: absolute;
  bottom: 30px;
  left: -160px;
  width: 62%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.natural-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%; 
  transform: scale(1.2); 
  transform-origin: left top; 
  margin-top: 15px;
  margin-left: 30px;
}


.natural-bg-wrapper::before {
  content: "";
  position: absolute;
  left: -90px;
  top: -10px;
  width: 80%;
  height: 90%;
  background-color: #ff6d3c;
  border-radius: 10px;
  z-index: -1; 
}

#natural {
  position: relative; 
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2%; 
}
.circle {
  height: 10rem;
  width: 10rem;
  border-radius: 50%;
  background-color:#046936;
  position: absolute;
  top: 60px;    
  right: -10px; 
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; 
}

.circle-data {
  color: #fff;
}

#circle-num {
  font-size: 4rem; 
  font-weight: bold;
  margin: 0;
}

#circle-text {
  font-size: 0.7rem;  
  margin-top: -20px;
 
}
#orangecity-img{
  height: 25px;
  width: 30px;
}
.product-data {
  position: relative;
  margin-left: 60px;   
  z-index: 3;          
}


#pro-head{
  font-size: 1.1rem;
  font-weight: 600;
  color: #09331B;
}

.product-right-heading{
  line-height: 40px;
  font-size: 2rem;
  color: #09331B;
}
.product-content-text{
  color:#6D756D;
  text-align: justify;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 20px;
}
.product-item {
  display: flex;
  flex-direction: row; 
  align-items: flex-start;
  gap: 35px; 
}

.product-content {
  display: flex;
  flex-direction: column; 
  margin-bottom: 5px;
}

.product-content-heading{
  color: #021609;
  font-size: 22px;
  margin: 0 0 10px;
  font-weight: bold;
}

.product-icon {
  height: 60px;
  width: 60px;
  min-width: 60px; 
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #046936;
  border-radius: 10%;
  
}

.product-icon img {
  height: 36px;
  width: 36px;
  object-fit: contain;
}

/*---------------------------------------------five circular divs--------------------------------------------------*/
.circle-section-wrapper {
  position: relative;
  overflow: visible; 
}

.top-right-shape {
  position: absolute;
  top: -200px; 
  right: 0;
  z-index: 1;
  width: 250px;
  height: auto;
}

.circle-section{
  margin-top: 100px;
}

.circle-section-card-data {
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-svg-wrapper {
  position: relative;
  width: 250px;
  height: 300px;
}

.circle-svg-wrapper svg {
  width: 100%;
  height: 100%;
}

.circle-section-card {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%); 
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.circle-section-icon {
  background: #fff;
  border-radius: 35%;
  padding: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.circle-section-icon img {
  height: 44px;
  width: 44px;
}


.circle-section-card-data:nth-child(4) .circle-section-card {
  top: 10px;
  margin-top: 0;
}

.circle-section-card-content-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4rem;
  text-align: center;
  color: var(--cl-color-english-holly); 
  text-decoration: none;
  word-spacing: 0.1rem;
  display: block;
}


.circle-section-card-content-title:hover {
  color: var(--cl-color-english-holly); 
  text-decoration: none; 
}

.circle-svg-wrapper svg path {
  transition: fill 0.3s ease; 
}


.circle-svg-wrapper:hover svg path {
  fill: var(--brand);
}
.circle-svg-wrapper:hover .circle-section-card-content-title {
  color: var(--cl-color-white);
}


.width-20 {
  flex: 0 0 20%;
  max-width: 20%;
}


/*--------------------------------------------our products---------------------------------------*/
.left-data{
  margin-top: 50px;
}
.our-products-block {
  position: relative;
  background-image: url("img/home-1-services-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 100px;
}

.our-products-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--cl-color-bottle-green);
  opacity: 0.8;
  z-index: 0; 
}

.our-products-block > .container,
.our-products-block > * {
  position: relative;
  z-index: 1;
}

.our-products-block {
  position: relative; 
  overflow: hidden; 
}

.cl-service-block__shape-1 {
  position: absolute;
  left: 0; 
  top: 0; 
  z-index: 1; 
}

.our-products-block .container {
  position: relative;
  z-index: 2; 
}

.block__left,
.block__middle,
.block__right {
  
  margin-top: 80px;
}

.left-data-heading,
.left-data-text{
  font-size: 30px;
  color: var(--cl-color-white);
  font-weight: bold;
}


.our-products-block .mb-100 {
  margin-bottom: 50px; 
}

.data-wrapper {
  margin-top: 40px; 
}



.card {
    display: flex;
    flex-direction: column;
    height: 100%;
}


.card-data {
    flex-grow: 1;
}
.fancy-hover-btn{
  margin-bottom: 50px;
}




.card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  padding: 24px;
  height: 550px;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}


.card-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
}


.card-content {
  margin-top: 20px;
  position: relative;
  z-index: 2; 
}

.card-heading  {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  margin-bottom: 30px !important;
}


.card-content,
.card-image,
.fancy-hover-btn {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.card:hover {
  background-color: var(--cl-color-bottle-green);
  transform: translateY(-8px);
}

.card:hover .card-heading,
.card:hover .card-para {
  color: #fff;
}

.card:hover .card-shape svg path {
  fill:var(--cl-color-caribbean-green);
  opacity: 0.4;
}
.card-para {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}


.fancy-hover-btn {
  background-color: #ff7043;
  color: #fff;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-top: 60px;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 2;
}

.fancy-hover-btn:hover {
  background-color: #ff5722;
}

.card-shape{ 
  position: absolute; 
  bottom: -40px; 
  right: -10px; 
}


/*------------------------------------------our kit--------------------------------------------------*/
.our-kit-block {
  position: relative; 
}

.our-kit-block > div:first-child {
  position: absolute;
  top: -80px; 
  left: 0; 
  z-index: 1;
}

.our-kit-block .container {
  position: relative; 
  z-index: 2; 
 
}


.our-kit-left {
  position: relative;
  z-index: 2;
}

.our-kit-block{
  margin-top: 80px;
}
.our-kit-left-heading{
  font-weight: bold;
  margin-bottom: 12px;
}

.our-kit-left h5{
  margin-bottom: 20px;
}

.our-kit-left{
  margin-bottom: 80px;
}






/* ===== Timeline Section ===== */
.time-line-section {
  position: relative;
  padding: 80px 0 50px; 
  overflow: hidden;
  margin-bottom: 50px;
}

.time-line-section .subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #09331B;
  margin-bottom: 15px;
}

.time-line-section .subtitle img {
  height: 20px;
}

.time-line-section .heading {
  font-size: 32px;
  font-weight: 700;
  color: #09331B;
  margin-bottom: 50px;
}


.time-line-section-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 250px; 
}

.time-line-section-shape-1 img {
  width: 100%;
  display: block;
}


.time-line-cards {
  position: relative;
  z-index: 2; 
}


.time-line-card {
  position: relative;
  background-color: #e9ecef;
  border-radius: 15px;
  padding: 80px 20px 20px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  height: 380px;
  margin-right: 20px;
  padding: 60px 20px 20px;
}

.time-line-card:hover {
  background-color: var(--cl-color-primary);
}

.time-line-card:hover .time-line-card-content-title,
.time-line-card:hover .time-line-card-content-text {
  color: var(--cl-color-white);
}

.time-line-section .time-line-card::before {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    position: absolute;
    left: 0px;
    top: -85px;
    z-index: 1;
    border-top: 1px dashed var(--cl-color-primary);
}

.time-line-card-number {
  position: absolute;
  top: -100px;
  left: 50%;
  font-size: 24px;
  font-weight: 700;
  color: #09331B;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.time-line-card-number svg {
  margin-top: 5px;
}

.time-line-section .time-line-card-number span {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cl-color-bottle-green);
    margin-bottom: 10px;
    font-size: var(--cl-fz-text-2);
    color: var(--cl-color-white);
    border-radius: 50%;
    transition: 0.4s;
}


.time-line-card-content {
  position: relative;
  z-index: 1;
}

.time-line-card-content-img {
  position: absolute;
  top: 85%;              
  left: 40%;            
  transform: translate(-50%, -50%); 
  width: 250px;          
  height: auto;
  opacity: 0;            
  transition: opacity 0.3s ease;
  z-index: 0;            
}

.time-line-card-content-img img {
  width: 100%;
  height: auto;
  display: block;
}


.time-line-card:hover .time-line-card-content-img {
  opacity: 1;
}


.time-line-card-content-icon {
  position: relative;
  z-index: 2;
  margin: 0 auto 15px auto; 
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px dashed var(--cl-color-primary);
  bottom: 30px;
  display: flex;            
  justify-content: center;  
  align-items: center;     
}

.time-line-card-content-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;      
}



.time-line-card-content-title {
  font-size: 22px;
  font-weight: bold;
  color: #09331B;
  margin-bottom: 10px;
}

.time-line-card-content-text {
  font-size: 14px;
  color: #4A4A4A;
  line-height: 1.6;
}


.time-line-cards-shape-2 {
  position: absolute;
  bottom: -15px;
  right: 0;
  width: 100%;
  z-index: -1;
}

.time-line-cards-shape-2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


/*------------------------------counter block-------------------*/
.counter-block {
  position: relative;
  width: 100%;
  background-color: var(--cl-color-bottle-green);
  overflow: visible;  
  padding: 100px 20px 50px; 
  box-sizing: border-box;
  margin-top: 80px;
}


.counter-block__top-shape {
  position: absolute;
  top: -50px;     
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
}

.counter-block__top-shape img {
  width: 100%;
  height: auto;
  display: block;
}


.counter-block__left-shape,
.counter-block__right-shape {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.counter-block__left-shape {
  left: 0;
  top: 30%;
}

.counter-block__right-shape {
  right: 0;
  top: 80%;
}


.counter-block .text-center h3 {
  color: #fff;
  margin-bottom: 50px;
  font-size: 42px;
  font-weight: bold;
  z-index: 3;
  position: relative;
}
.counters-number{
  font-size: 32px;
  font-weight: bold;
}
.counters .counters-data .counters-para {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 50px;
  }

.counters {
  position: relative;
  z-index: 3;
}

.counters .counters-data {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

/*----------------------gallery block-------------------------*/

.gallery-block {
  position: relative;
  overflow: visible;
   background-color: #EBF0E7;
   height: 30rem;
  padding-top: 120px; 
  position: relative;
  cursor: pointer;
  margin-bottom: 240px;
}

.gallery-block__shape-1 {
  position: absolute;
  top: -250px; 
  right: 0;
  z-index: 0;
}

.gallery-block__shape-1 img {
  max-width: 50%;
  height: auto;
  display: block;
}

.gallery-title-block__middle-shape{
  width: 100%;
  height: auto;
}
.gallery-title-block__middle-shape img{
  width: 200px;
}
.gallery-title-block__subtitle{
  font-weight: bold;
  font-size: 18px;
}
.gallery-title-block__heading{
  font-size: 32px;
  font-weight: bold;
}
.gallery-title-block__para{
  word-spacing: 2px;
  color: #6D756D;
}




.slider-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
 
}


.slider-arrow span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--cl-color-bottle-green);
  border-radius: 50%;
  color: var(--cl-color-bottle-green);
  background-color: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider-arrow svg path {
  fill: var(--cl-color-bottle-green);
  transition: fill 0.3s ease;
}


.slider-arrow span:hover {
  background-color: var(--cl-color-bottle-green);
  color: #fff;
}

.slider-arrow span:hover svg path {
  fill: #fff;
}


.project-wrapper.gallery_block {
  position: absolute;
  bottom: -120px; 
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
   
  width: 100%; 
  max-width: 1500px;
  z-index: 5;
}


.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  flex: 1; 
}

.gallery-card:hover {
  transform: translateY(-5px);
}


.gallery-card__image {
  width: 100%;
  height: 280px; 
  border-radius: 15px;
  overflow: hidden;
}

.gallery-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}



.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--cl-color-bottle-green,rgba(2, 88, 2, 0.5));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}


.gallery-card__search-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  color: #fff;
  font-size: 30px;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 2;
}


.gallery-card:hover::before {
  opacity: 0.7;
}

.gallery-card:hover .gallery-card__search-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}


.gallery-card:hover img {
  transform: scale(1.05);
}

.image-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9); 
  z-index: 9998; 
}


.image-popup img {
  position: relative;
  z-index: 9999;
  max-width: 90%;
  max-height: 90%;
  
}


.image-popup .close-btn {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}


.gallery-card::before {
  z-index: 1; 
}




.image-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.image-popup img {
  max-width: 90%;
  max-height: 90%;
  /*box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);*/
}

/* Close (X) button */
.image-popup .close-btn {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s ease, color 0.3s ease;
}

.image-popup .close-btn:hover {
  transform: scale(1.2);
}

#swiper-pagination {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 15px !important;
  margin-top: 30px; 
  pointer-events: auto !important;
  opacity: 1 !important;
  z-index: 10 !important;
}

#swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(1, 86, 1);
  opacity: 0.45;
}

#swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  border: 2px solid rgb(1, 86, 1);
  background: white;               
}


/*--------------video-block----------------------*/
.video-block { 
  position: relative;
  background: #EBF0E7; 
  padding: 40px 20px 20px;
  overflow: visible;
 }
 .video-block__shape-1 {
  position: absolute;
  top: -250px;           
  right: 0;
  z-index: 0;           
  width: 200px;         
}

.video-block__shape-1 img {
  width: 45%;
  height: auto;
  display: block;
}
    .video-swiper-wrapper { 
      position: relative; 
      padding-top: 50px; 
      overflow: visible; 
    }

    .video-swiper { 
      padding: 10px 0; 
    
    }

    .video-swiper .swiper-slide { 
      display:flex; 
      justify-content:center; 
      align-items:center; 
    }

    
    .iframe-container {
      position: relative;
      width: 100%;
      max-width: 480px;      
      padding-top: 56.25%;  
      box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
      
    }
    .iframe-container iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
      
    }


    #video-pagination {
      position: relative !important;
      transform: none !important;
      left: auto !important;
      right: auto !important;
      bottom: auto !important;
      display: flex !important;
      justify-content: center !important;
      gap: 15px !important;
      margin-top: 15px !important;
      margin-bottom: 0px !important;
      z-index: 9999 !important;          
      pointer-events: auto !important;
      opacity: 1 !important;
    }
    #video-pagination .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgb(1, 86, 1) !important;
      opacity: 0.45;
    }
    #video-pagination .swiper-pagination-bullet-active {
      opacity: 1;
    }

    .swiper-pagination { pointer-events: auto !important; }


#video-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #014129 !important; 
  opacity: 0.8;
  transition: all 0.3s ease;
  position: relative;
}


#video-pagination .swiper-pagination-bullet-active {
  background-color: #013d27 !important;
  gap: 2px;
  box-shadow: 0 0 0 3px rgba(0, 153, 97, 0.4); 
}


.iframe-container iframe {
  border-radius: 12px;
  overflow: hidden;
}



/*--------------------testimonial------------------*/

    .testimonial-section {
  width: 90%;
  max-width: 1200px;
  margin: 80px auto;
  z-index: 2;
}


.testimonial-heading{
margin-bottom: 12px;
}
.testimonial-heading span {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.testimonial-heading img {
  width: 40px;
}

h3 .testimonial-block_heading {
  font-size: 50px;
  font-weight: bold;
  margin-top: 10px;
  letter-spacing: 1px;
}

.testimonial-section {
  position: relative;
  
}

.testimonial-block__shape {
  position: absolute;
  top: 200px;
  left: -10px;
  z-index: 1;
  opacity: 1;
  width: 100px;  
  height: auto;
  
}

.testimonial-block__shape img {
  width: 140px; 
  height: auto;
  position: relative;
  left: 30px; }




.swiper {
  width: 100%;
  padding-bottom: 100px; 
}

.swiper-pagination {
  position: relative !important; 
  margin-top: 10px;
  text-align: center;
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.7;
  transition: 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--cl-color-bottle-green) !important;
  opacity: 1;
  transform: scale(1.2);
}


.testimonial-wrapper {
  position: relative;
  padding-bottom: 50px;
}

.testimonial-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  border-radius: 12px;
  z-index: 0;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.testimonial-layer.layer-1 {
  background-color:#0e3b22 ;
  transform: translateY(45px); 
  width: 96%;
  left: 2%;
}

.testimonial-layer.layer-2 {
  background-color: #134828;
  transform: translateY(25px); 
  width: 98%;
  left: 1%;
}


.testimonial-card {
  position: relative;
  z-index: 100; 
  padding: 15px 30px;
  box-sizing: border-box;
}


.testimonial-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: transparent; 
  z-index: 1;
 
}


.testimonial-left {
  width: 70%;
  margin-top: 50px;
}

.testimonial-left h4 {
  color: #b8ffb0;
  margin-top: 15px;
  margin-bottom: 8px;
  font-weight: 600;
}

.testimonial-left ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 16px;
}
.testimonial-left ul li{
  color: #fff;
}
.testimonial-left p {
  margin-bottom: 10px;
  line-height: 1.7;
  font-size: 16px;
  color: #f5f5f5;
  margin-left: 20px;
}


.testimonial-right {
  width: 28%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.testimonial-right img {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin-bottom: 20px;
  margin-top: 50px;
}

.testimonial-right p {
  margin: 5px 0;
  font-size: 16px;
}

.testimonial-right .name {
  font-weight:bold ;
  font-size: 20px;
  color: #fff;
}

.testimonial-right .location,
.testimonial-right .occupation {
  color: #d5d5d5;
}


.swiper-slide,
.swiper-wrapper {
  overflow: visible !important;
}

.testimonial-swiper .swiper-wrapper {
  align-items: stretch;
}

/*----------double quotes------------



.testimonial-section {
  background: rgba(255, 0, 0, 0.1);
}

.blogs-block {
  background: rgba(0, 255, 0, 0.1);
}

.testimonial-section,
.blogs-block {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}


.blogs-block h2,
.blogs-block h6,
.blogs-block p {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


.blogs-block::before,
.blogs-block::after {
  display: none !important;
  content: none !important;
}

*/




/*----------------blog--------------*/

    .blogs-block {
  position: relative;
  overflow: visible;
  margin-top: 0 !important;
  padding-top: 0 !important;
  margin-bottom: 80px;
}
.blogs-block__shape-1,
.blogs-block__shape-2 {
  position: absolute;
  top: 0;
  right: 0;
}
.container {
      width: 100%;
      max-width: 1200px;
      margin: auto;
    }

.blogs-block__shape-1 {
  position: absolute;
  top: 150px;      
  left: 10px;     
  z-index: 1;      
  pointer-events: none;
}

.blogs-block__shape-1 img {
  width: 400px;
  height: auto;
  opacity: 0.7;
}


.blogs-block__shape-2 {
  position: absolute;
  top: -60px;         
  right: 50px;       
  z-index: 1;  
  display: flex; 
  justify-content: flex-end;
  pointer-events: none; 
}

.view-button {
  position: absolute;
  top: 150px; 
  right: 150px;
  color: #fff;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.blogs-block__shape-2 svg {
  width: 300px;   
  height: auto;
  opacity: 0.6;   
}
.view-button{
  align-items: flex-end;
}

.blogs__card {
  position: relative;
  z-index: 2;
}

    
    .blogs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .blogs-block__subtitle {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 500;
      color: #0f3c23;
    }

    .blogs-block__subtitle img {
      height: 22px;
    }

    .blogs-block__heading {
      text-align: center;
      font-size: 40px;
      font-weight: 700;
      color: #0f3c23;
      line-height: 1.4;
      margin: 10px 0 60px;
  
    }

    .view-more-btn {
      position: absolute;
      right: 10%;
      top: 90px;
      background-color: #ff6f3c;
      color: #fff;
      font-weight: 600;
      border-radius: 5px;
      padding: 10px 20px;
      text-decoration: none;
      transition: background 0.3s;
    }

    .view-more-btn:hover {
      background-color: #e55e2d;
    }

    

    .blogs__card {
      background: #fff;
      border-radius: 12px;
      box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
      overflow: hidden;
      height: 100%;
      width: 100%;
      
      transition: all 0.3s ease;
      position: relative;
    }

    .blogs__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .blogs__thumbnail {
      position: relative;
      overflow: hidden;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
    }

    .blogs__thumbnail img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .blogs__card:hover .blogs__thumbnail img {
      transform: scale(1.05);
    }

   
    .blogs__date-info {
      position: absolute;
      bottom: -30px;
      left: 20px;
      background-color: #0f3c23;
      color: #fff;
      padding: 10px 16px;
      border-radius: 6px;
      text-align: center;
      z-index: 5;
      box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    }

    .blogs__date-count {
      font-size: 22px;
      font-weight: 700;
      margin: 0;
      line-height: 1;
    }

    .blogs__date-description {
      font-size: 13px;
      margin: 3px 0 0;
      opacity: 0.9;
    }

   
    .blogs__info-meta {
      padding: 45px 20px 25px;
    }

    .blogs__title {
      font-size: 17px;
      font-weight: 600;
      text-decoration: none;
      margin-bottom: 15px;
      color: #000;
      display: inline-block;
    }

    .blogs__title:hover {
      color: var(--brand);
    }

    

   
.blogs__card {
  width: 110%; 
  max-width: 400px;
  min-height: 430px; 
  margin: auto;
  transition: all 0.3s ease;
}


.blogs__thumbnail img {
  height: 350px; 
  width: auto;
  object-fit: cover;
}


.blogs__date-info {
  position: absolute;
  top: 200px;  
  left: 15px;
  background:var(--brand);
  padding: 10px 18px;
  border-radius: 8px;
  height: 100px;
  width: 100px;
  display: flex;
  flex-direction: column; 
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.blogs__date-count {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.blogs__date-description {
  font-size: 15px;
  margin-top: 4px;
  opacity: 0.95;
}


.blogs__info-meta {
  padding: 25px 20px 30px;
}

.blogs-block .container {
  max-width: 1400px; 
  padding: 0 30px; 
}

.blogs-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.blogs__card {
  width: 100%;
  max-width: 500px;
}


@media (max-width: 768px) {
  .blogs-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }

  .blogs__card {
    width: 100%;
    max-width: 100%;
    min-height: 390px;
  }

  .blogs__thumbnail img {
    height: 220px;
  }

  .blogs__date-info {
    top: 10px;
    left: 10px;
    padding: 8px 14px;
  }

  .blogs__date-count {
    font-size: 20px;
  }

  .blogs__date-description {
    font-size: 12px;
  }
}

/*------------------footer-------------------*/



footer {
  position: relative;
  background: #0b2314;
  color: #fff;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  width: 100%;
  height: 100%;             
  max-width: none;         
}

.footer__area {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.footer__area-mode {
  position: relative;
  background-image: url("img/home-1-footer-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.footer__area-mode::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--cl-color-english-holly);
  opacity: 0.8;
  z-index: 0;
}

.footer__top {
  position: relative;
  z-index: 1;
  min-height: 530px;
  padding: 80px 0 50px;
}

.footer_top__shape {
  position: absolute;
  top: 100px;
  left: 50px;
  opacity: 1;
  z-index: 0;
}
.footer_top__shape img{
height: 250px;
width: 250px;
}

.footer__quick-link__title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  font-family: var(--cl-ff-heading);
  margin-bottom: 50px;
}

.footer-text {
  font-size: 16px;
  line-height: 1.9;
  color: #fff;
  word-spacing: 4px;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
  font-family: var(--cl-ff-text);
}

.footer__social-links {
  display: flex;
  gap: 15px;
}
.footer__social-links{
  list-style: none;
}
.footer__social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  text-decoration: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.3s ease;
}

.footer__social-links a:hover {
  background-color:#fff;
  color:var(--brand);
}


.footer__quick-link__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__quick-link__menu li {
  margin-bottom: 6px;
}

.footer__quick-link__menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-family: var(--cl-ff-text);
  transition: color 0.3s;
}

.footer__quick-link__menu a:hover {
  color: var(--cl-color-jewel);
}


.footer__quick-link__menu--with-line li::before {
  content: "–";
  color: #fff;
  font-weight: bold;
  margin-right: 8px;
}

/* ======= CONTACT ======= */

.footer-contact i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff; 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}


.footer-contact li:hover i {
  background-color: #fff;
  color: var(--cl-color-jewel);
  transform: scale(1.1);
}


.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-contact p,
.footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
  text-decoration: none;
}


.footer-contact a:hover {
  color: var(--cl-color-jewel);
}

/* ======= COPYRIGHT BAR ======= */
.footer__copyright {
  background-color: #046938;
  padding: 20px 0;
  font-size: 16px;
  text-align: center;
}

.footer__copyright p {
  margin: 0;
  color: #fff;
}

.footer__copyright a {
  color: #fff;
  text-decoration: none;
}



 
.footer__area .container-fluid,
.footer__copyright .container-fluid {
  max-width: 1320px;         
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* ======= WHATSAPP FLOATING BUTTON ======= */
.whatsapp-wrapper {
  position: fixed;
  bottom: 80px;
  right: 25px;
  z-index: 9999;
}

.footer-whatsapp {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 55%;
  transform: translateY(-50%);
  background-color: #fff;
  color: #000;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #25D366;
}

.whatsapp-link:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 70px;
}

