   @import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

   /* font-family: "Nunito Sans", sans-serif; */


   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
   }

   html {
       scroll-behavior: smooth;
       overflow-x: hidden;
   }

   body {
       font-family: "Poppins", sans-serif;
   }

   a {
       text-decoration: none;
       color: inherit;
   }
   
#header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    transition: 0.3s;
    background: #fff;
    z-index: 1000;
}

#header.scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 3px 0;   /* smaller header on scroll */
}
body {
    padding-top: 80px;
}



   p {
       font-size: 14px;
       line-height: 25px;
   }

   .on-click-form .modal-title {
       font-size: 25px;
       font-weight: 600;
   }

   body.on-click-form {
       padding: 0 !important;
       overflow: hidden;
   }

   .on-click-form {
       border-radius: 15px;
       padding: 0;
       overflow: hidden;
   }

   nav {
       position: relative;
       width: 100%;
       transition: all 0.3s ease;
   }

   nav .fixed {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       background: #fff;
       box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
       z-index: 999;
   }

   .nav-links {
       margin: 0;
   }

   .slick-slide {
       margin: 0 15px;
       /* space left & right */
   }

   .slick-list {
       margin: 0 -15px;
       /* remove extra padding from container */
       padding: 2% 0;
   }

   .on-click-form .modal-header {
       background-image: linear-gradient(to right, #04664c, rgb(59, 99, 59));
       color: #fff;
       border-radius: 14px 14px 0 0;
   }

   .on-click-form .modal-content {
       border: 1.5px solid #1a7a4f;
       border-radius: 15px;
   }

   .on-click-form .modal-header .btn-close {
       background-color: #fff;
       border-radius: 50%;
   }

   .on-click-form .modal-body {
       border: 2.5px solid #04664c;
       border-radius: 0 0 15px 15px;
   }

   .on-click-form .form-control {
       border-radius: 15px 15px 15px 0;
       padding: 1.5% 0 1.5% 2%;
       box-shadow: none;
       transition: 0.4s;
   }

   .on-click-form .form-control:hover {
       transition: 0.4s;
       border: 1.5px solid #000;
       transform: scale(1.01);
   }

   .on-click-form .form-sub {
       border-radius: 15px 15px 15px 0;
       background-color: #000;
       color: #fff;
       font-size: 16px;
       width: 50%;
   }

   .common-btn {
       background-image: linear-gradient(to right, #04664c, rgb(59, 99, 59));
       border-color: transparent;
       color: #fff;
       padding: 1.5% 5% 1.5% 5%;
       font-size: 16px;
       border-radius: 15px;
       font-weight: 700;
       transition: 0.3s;
   }

   .custom-btn {
       display: inline-flex;
       align-items: center;
       background-image: linear-gradient(to right, #04664c, rgb(59, 99, 59));
       /* Green */
       color: #fff;
       padding: 12px 18px;
       border-radius: 10px;
       font-weight: 700;
       text-decoration: none;
       gap: 45px;
       transition: 0.3s ease;
   }

   .custom-btn .icon-box {
       background: #fff;
       color: #0C6B4F;
       width: 36px;
       height: 36px;
       border-radius: 8px;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 18px;
       transition: 0.3s;
   }

   .custom-btn:hover {
       background: #0A5A42;
   }

   .custom-btn:hover .icon-box {
       transform: translateX(4px);
   }


   .head-con {
       padding: 0 0 2.5% 0;
       text-align: center;
   }

   .head-con .main-heading {
       font-size: 40px;
       color: #fff;
       font-weight: 700;
       margin-bottom: 10px;
   }

   .head-con .main-para {
       font-size: 16px;
       color: #eee;
   }
   
   
   
   .error {
    color: red;
    font-size: 14px;
    display: none;
    margin-bottom: 10px;
}





   /* General: remove native appearance */
   input[type="number"] {
       -webkit-appearance: none !important;
       /* Chrome, Safari, Edge (WebKit/Blink) */
       -moz-appearance: textfield !important;
       /* Firefox */
       appearance: textfield !important;
       margin: 0;
       padding: .4rem .6rem;
       font-size: 1rem;
   }

   /* Webkit/Blink: hide inner & outer spin buttons */
   input[type="number"]::-webkit-outer-spin-button,
   input[type="number"]::-webkit-inner-spin-button {
       -webkit-appearance: none !important;
       margin: 0;
       display: none !important;
   }

   /* Firefox (older) - ensure no spinner */
   input[type="number"]::-moz-inner-spin-button,
   input[type="number"]::-moz-outer-spin-button {
       display: none !important;
   }

   /* If you're using Bootstrap or another framework add common selectors */
   .form-control[type="number"],
   input.form-control[type="number"],
   input[type="number"].form-control {
       -webkit-appearance: none !important;
       -moz-appearance: textfield !important;
       appearance: textfield !important;
   }

   /* Optional: style so it still looks like a normal input */
   input[type="number"] {
       border: 1px solid #ccc;
       border-radius: 4px;
   }

   /* If you want to completely hide CLEAR button in IE/Edge */
   input[type="number"]::-ms-clear {
       display: none;
       width: 0;
       height: 0;
   }

   input[type="number"]::-ms-expand {
       display: none;
   }

   /* old IE/Edge */




   /* Home Banner section start */
   .banner-sec {
       position: relative;
   }

   .banner-sec .counter-sec {
       position: absolute;
       bottom: -15%;
       left: 5%;
       right: 5%;
   }

   .banner-sec .banner-slider .baner-item {
       background-position: center;
       background-repeat: no-repeat;
       background-size: cover;
   }

   .baner-slider {
       background: url('../assets/banner/slider.webp')no-repeat;
   }

   .baner-slider-two {
       background: url('../assets/banner/slider2.webp')no-repeat;
   }

   .baner-slider-three {
       background: url('../assets/banner/slider3.webp')no-repeat;
   }

   .banner-sec .banner-slider .banner-item .banner-text {
       padding: 5%;
       width: 70%;
       margin: 10% 0% 10% 05%;
       text-align: left;
       background-color: #87878745;
   }

   .banner-sec .banner-slider .banner-item .banner-text h1 {
       width: 70%;
       font-size: 55px;
       text-align: left;
       color: #fff;
   }

   .banner-sec .banner-slider .banner-item .banner-text p {
       color: #eee;
       padding: 2% 0% 2% 0;
       font-size: 18px;
       width: 70%;
   }

   .banner-btn {
       background: #04664c;
       border-color: #04664c;
       color: #fff;
       padding: 1.5% 5% 1.5% 5%;
       font-size: 16px;
       border-radius: 25px;
       font-weight: 700;
       transition: 0.3s;
   }
   
   .service-banner .display-btn-rows .banner-common-btn{
       padding: 2% 5%;
       border-radius: 3px;
       margin: 0 10px 0 0;
       transition: 0.4s;
   }
   .service-banner .display-btn-rows .banner-common-btn:hover{
       color: #08664b;
   }
   .service-banner .display-btn-rows .banner-comm-btn{
       padding: 2% 5%;
       border-radius: 3px;
       margin: 0 10px 0 0;
       transition: 0.4s;
   }

   .banner-sec .banner-slider .slick-dots {
       bottom: 10%;
   }

   .banner-sec .banner-slider .slick-dots li button:before {
       font-size: 50px;
       color: #fff;
   }

   .slick-prev {
       z-index: 100;
       top: 55%;
       width: auto;
       height: auto;
       left: 8%;
   }

   .slick-next {
       z-index: 100;
       top: 55%;
       width: auto;
       height: auto;
       right: 8%;
   }

   .slick-prev:before {
       background-color: #fff;
       color: #000;
       /* font-size: 25px;
       padding: 2%; */
       z-index: 100;
   }

   .slick-next:before {
       background-color: #fff;
       color: #000;
       /* font-size: 25px;
       padding: 2%; */
       z-index: 100;
   }



   /* Counter section start */
   .counter-sec {
       padding: 2% 0;
       background-color: #04664c;
   }

   /* .counter-sec .box-container{
       display: grid;
       grid-template-columns: 50% 50%;
   } */
   .counter-sec .head-con {
       text-align: left;
       padding: 5% 5% 0 0;
   }

   .counter-sec .head-con .main-heading {
       color: #000;
       text-align: left;
   }

   .counter-sec .head-con .main-para {
       text-align: left;
       color: #777;
   }

   .counter-sec .head-con p {
       color: #000;
       text-align: left;
   }

   .short-info {
       display: grid;
       grid-template-columns: 25% 25% 25% 25%;
       text-align: center;
       position: absolute;
       bottom: -10%;
       right: 10%;
       left: 10%;
       background-color: #fff;
       border-radius: 5px;
       box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.2);
       padding: 2% 0;
   }

   .short-info h5 {
       font-size: 13px;
       font-weight: 700;
       padding: 5% 10% 0;
       color: #266442;
   }

   .short-info .short-bx {
       padding: 0.5% 1%;
   }

   .short-info img {
       width: 20%;
   }

   .short-info .border-r {
       border-right: 1px solid #aaa;
   }

   .head-con {
       padding: 0 0 1% 1%;
   }

   .review-item .review-content {
       background-color: #f0f4f9;
       position: relative;
       padding: 8% 5%;
       border-radius: 20px;
   }

   .review-item .review-content::before {
       content: '';
       position: absolute;
       bottom: -1.5rem;
       left: 10%;
       transform: translateX(-50%) rotate(45deg);
       height: 3rem;
       width: 3em;
       background: #f0f4f9;
       z-index: -1;
   }

   .review-item .box-review {
       padding: 10% 0 0 5%;
       display: flex;
       gap: 5px;
   }


   /* Client Logo Carousel */
   .client-slider-sec {
       padding: 6% 0 7%;
       overflow-x: hidden;
       background: url('../assets/banner/bg-black.webp')no-repeat;
       background-size: cover;
       background-position: bottom;
   }

   .home-client-sec {
       padding: 20% 0 5%;
   }

   .client-slider-sec .head-con .main-heading {
       color: #000;
   }

   .client-slider-container {
       max-width: 850px;
       margin: 0 auto;
   }

   .client-slider-sec .head-con h1 {
       padding: 0 0 2% 0;
   }

   /* make slides centered and provide gap between items */
   .client-logo-slider .slick-slide {
       display: flex;
       justify-content: center;
       align-items: center;
   }

   .client-logo-slider .slide {
       padding: 0 12px;
       box-sizing: border-box;
       width: 100%;
   }

   /* gap = 24px total */
   /* inner content which we will scale */
   .client-logo-slider .slide-inner {
       width: 90%;
       max-width: 250px;
       background: #f2f0f0;
       border-radius: 25px;
       padding: 24px;
       /* box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08); */
       text-align: center;
       transition: transform 350ms ease, opacity 350ms ease;
       transform-origin: center center;
       transform: scale(0.86);
       /* smaller by default */
       opacity: 0.8;
   }

   .client-logo-slider img {
       width: 100%;
   }

   /* bigger center slide */
   .client-logo-slider .slick-center .slide-inner {
       transform: scale(1);
       opacity: 1;
       /* box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12); */
   }

   /* allow the scaled center to overflow outside the container */
   .client-logo-slider .slick-list {
       overflow: visible;
   }

   /* bring center slide above neighbors */
   .client-logo-slider .slick-center {
       z-index: 3;
   }

   .client-logo-slider .slick-slide {
       z-index: 1;
   }

   .about-client .head-con .main-heading {
       color: #fff;
   }












   .counter-box .counter-i {
       background-color: #fff;
       color: #04664c;
       font-size: 20px;
       padding: 3% 2%;
   }

   .counter-box:hover>.counter-i {
       background-color: #fff;
       color: #04664c;
   }

   .container-s {
       display: grid;
       grid-template-columns: 20% 28% 21% 16%;
       justify-content: center;
   }

   .counter-container {
       display: grid;
       grid-template-columns: 25% 25% 25% 25%;
   }

   .counter-box .label {
       font-size: 14px;
       color: #eee;
   }

   .counter-box {
       margin: 5%;
       background: transparent;
       padding: 15px 5px;
       box-shadow: 2px 4px 5px rgba(50, 66, 210, 0.184);
       text-align: center;
       transition: transform 0.3s ease;
       display: flex;
       justify-content: space-between;
       align-items: center;
   }

   .counter-sec .box-x {
       display: flex;
       align-items: center;
       padding: 0 15px 0 0px;
       justify-content: space-between;
   }

   .box-x img {
       padding: 0 15px 0 0;
       width: 30%;
   }

   .counter-sec .box-x h4 {
       color: #fff;
       font-size: 16px;
   }

   .counter-box:hover {
       transform: translateY(-5px);
       background-color: #04664c;
   }

   .counter-box:hover>.counter {
       color: #fff;
   }

   .counter-box:hover>.counter .plus {
       color: #ccc;
   }

   .counter-box:hover>.label {
       color: #eee;
   }

   .counter {
       font-size: 40px;
       font-weight: bold;
       color: #fff;
       display: inline-flex;
       align-items: center;
       gap: 5px;
   }

   .plus {
       font-size: 30px;
       color: #04664c;
       font-weight: bold;
   }

   .label {
       font-size: 16px;
       color: #aaa;
   }

   .counter-code {
       padding: 0 0 5%;
   }

   body.on-click-form {
       padding-right: 0 !important;
       overflow: hidden;
   }

    .on-click-form .modal-body .form-label{
        font-size: 14px;
        color: #aaa;
    }
    
    .on-click-form .modal-body .form-label span{
        color: #ff250c;
    }

   /* Features section start */
   .feature-sec {
       padding: 10% 0 5%;
       background: #f9f9f9;
   }

   .feature-sec .services {
       display: grid;
       grid-template-columns: 33.33% 33.33% 33.33%;
       position: relative;
   }

   .feature-sec .services h3 {
       text-align: center;
       font-size: 20px;
       padding: 1% 0 2%;
       color: #fff;
       background-color: #04664c;
       margin: 0 0 -7px 0;
       position: absolute;
       bottom: 0;
       right: 0;
       left: 0;
   }

   .feature-sec .head-con .main-heading {
       color: #000;
   }

   .feature-sec .head-con .main-para {
       color: #777;
   }

   .features {
       display: grid;
       grid-template-columns: 33.33% 33.33% 33.33%;
   }

   .feature-box {
       position: relative;
       overflow: hidden;
       background-color: #fff;
       padding: 2%;
       margin: 5%;
       border-radius: 20px;
       border-radius: 20px;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
       text-align: left;
       transition: transform 0.4s ease,
           box-shadow 0.4s ease;
   }

   .feature-box:hover {
       transform: translateY(-10px);
       box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
       background-color: #f0f4f9;
       transform: scale(1.02);
       transition: 0.4s;
   }

   .feature-box img {
       width: 100%;
       border-radius: 10px;
   }

   .feature-box:hover h3,
   .feature-box:hover p {
       color: #fff;
   }

   .feature-box:hover a.common-btn {
       background: #fff;
       color: #04664c;
       border-color: #fff;

   }

   .feature-box .i-x {
       font-size: 40px;
       color: #fff;
       background-color: #04664c;
       margin-bottom: 15px;
       transition: transform 0.4s ease;
       border-radius: 50%;
       padding: 3% 1.5%;
   }

   .feature-box:hover .i-x {
       transform: scale(1.2) rotate(10deg);
       color: #04664c;
       background-color: #fff;
       border-radius: 45% 5% 45%;
   }

   .feature-box h3 {
       font-size: 25px;
       padding: 3% 0 1%;
       font-weight: 600;
       color: #333;
       background-color: transparent;
   }

   .feature-box p {
       font-size: 15px;
       color: #666;
       line-height: 1.6;
   }








   /*Section about start */
   .about-sec {
       padding: 5% 0;
       background: url('../assets/banner/slider2.webp')no-repeat;
       background-position: center;
       background-size: cover;
       background-attachment: fixed;
       position: relative;
   }

   .hid-show-bx .hidden-text {
       padding: 0 0 0 5%;
   }

   .about-sec .about-content {
       padding: 0 5% 0 0;
       position: relative;
       z-index: 15;
   }

   .about-sec .about-content h1 {
       font-size: 50px;
       font-weight: 600;
       color: #fff;
   }

   .about-sec .about-content p {
       color: #eee;
   }

   .about-sec .about-content ul li ul {
       padding: 1% 3% 1% 5%;
       color: #eee;
   }

   .about-sec .about-img {
       position: relative;
       /* background-color: #fff; */
       padding: 5%;
       border-radius: 15px;
       position: relative;
       z-index: 15;
   }

   .about-sec .about-img img {
       width: 100%;
       border-radius: 20px;
       background-color: #fff;
       margin: 5% 0;
       padding: 2% 4%;
   }

   .about-sec .about-img .small-img .top-lft {
       padding: 1%;
       position: absolute;
       top: -45px;
       left: -50px;
       box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
       width: 47%;
   }

   .about-sec .about-img .small-img .bottom-rgt {
       padding: 1%;
       position: absolute;
       bottom: -10%;
       left: -40px;
       box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
       width: 47%;
   }

   .about-opacity {
       background-color: #03224b;
       opacity: 0.7;
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       z-index: 10;
   }

   .about-sec .about-img h6 {
       line-height: 25px;
       font-weight: 600;
       position: absolute;
       right: -68px;
       top: 15%;
       background-color: #efefef;
       font-size: 18px;
       padding: 3% 4%;
       width: 40%;
       font-style: italic;
       border-radius: 20px;
   }

   .hidden-text {
       color: #eee;
       display: none;
   }

   .read-more-btn {
       color: #000;
       text-decoration: none;
       cursor: pointer;
       border: none;
       background: none;
       font-size: 16px;
       padding: 0;
       background-color: #fff;
       border-radius: 25px;
       padding: 2% 5%;
   }

   .read-more-btn:hover {
       box-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
       transition: 0.4s;
       transform: scale(1.05);
   }


   /* Why Choose Us section start */
   .why-choose {
       padding: 5% 0 0;
   }

   .why-choose .head-con .main-heading {
       color: #000;
       text-align: left;
   }

   .why-choose .head-con h4 {
       color: #04664c;
       text-align: left;
   }

   .why-choose .box-choose {
       background-color: #f0f4f9;
       padding: 2% 5%;
       margin: 0 0 5% 0;
       transition: 0.4s;
       border-radius: 20px;
   }

   .why-choose .box-choose:hover {
       background-color: #04316c;
       color: #fff;
       transition: 0.4s;
       transform: scale(1.05);
       box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
   }

   .why-choose .box-choose:hover>.i-choose {
       background-color: #fff;
       color: #04316c;
       transition: 0.4s;
   }

   .why-choose .box-choose h4 {
       font-size: 22px;
       font-weight: 600;
       height: 60px;
       padding: 2% 0 3%;
   }

   .why-choose .box-choose .i-choose {
       padding: 4% 3.5%;
       font-size: 22px;
       background-color: #04664c;
       color: #fff;
       margin-right: 10px;
       border-radius: 50%;
       margin: 5% 0 0 0;
   }

   .why-choose .box {
       border-radius: 20px;
       background-color: #04664c;
       padding: 5% 10%;
       height: 95%;
   }

   .why-choose .box .i-choose {
       padding: 4% 3.5%;
       font-size: 22px;
       background-color: #fff;
       color: #04664c;
       margin-right: 10px;
       border-radius: 50%;
       margin: 5% 0 0 0;
   }

   .why-choose .box:hover>.i-choose {
       background-color: #fff;
       color: #04316c;
       transition: 0.4s;
   }

   .why-choose .box h4 {
       font-size: 22px;
       font-weight: 600;
       padding: 2% 0 3%;
       color: #fff;
   }

   .why-choose .box p {
       color: #eee;
   }


   .why-choose .box:hover {
       background-color: #04316c;
       color: #000;
       transition: 0.4s;
       transform: scale(1.05);
       box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
   }

   .why-choose .common-btn {
       background-color: #fff;
       color: #000;
       font-size: 16px;
       padding: 2.5% 9%;
       margin: 10% 0 0 0;
       border-color: #fff;
   }

   /* .why-choose .box:hover>.common-btn {
       color: #04316c;
   } */


   .why-choose .common-btn:hover {
       background-color: #04664c;
       color: #fff;
       border-color: #04664c;
   }



   /* Client section start */
   .our-client {
       padding: 5% 0 5%;
   }

   .our-client .head-con .main-heading {
       color: #000;
       font-weight: 600;
       font-size: 40px;
       text-align: center;
   }

   /* call to action section start */
   .cta-sec {
       padding: 5% 0;
       background: url('../assets/banner/slider2.webp')no-repeat;
       background-size: cover;
       background-position: center;
       position: relative;
   }

   .cta-overlay {
       background-color: #01112b;
       opacity: 0.9;
       position: absolute;
       z-index: 10;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
   }

   .cta-content {
       position: relative;
       z-index: 20;
   }

   .cta-sec .heading h1 {
       font-size: 35px;
       font-weight: 600;
       color: #fff;
   }

   .cta-sec p {
       font-size: 16px;
       color: #777;
   }

   /* Form box css */
   .form-box {
       background: #fff;
       padding: 30px 20px;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
       margin: 0 5% 0 0;
       position: absolute;
       right: -2.5%;
       width: 45%;
   }

   .form-box form .form-control {
       margin: 0 0 5% 0;
       padding: 2.5% 2% 2.5% 5%;
       border: 1px solid #ccc;
       border-radius: 0;
       font-size: 14px;
       border-radius: 0;
       box-shadow: none;
   }

   .form-box form .form-control::placeholder {
       color: #aaa;
   }

   .form-box form .form-select::placeholder {
       color: #aaa;
   }

   .form-box form .custom-select {
       margin: 0 0 5% 0;
       padding: 2.5% 2% 2.5% 5%;
       border: 1px solid #ccc;
       border-radius: 0;
       font-size: 14px;
       border-radius: 0;
       box-shadow: none;
   }

   .form-box form .common-btn {
       width: 30%;
   }

   .form-box h2 {
       font-size: 30px;
       font-weight: 600;
       color: #000;
   }

   .form-box p {
       color: #666;
       padding: 0 0 2.5% 0;
   }







   /* Client section start */
   .our-client {
       padding: 5% 0;
   }


   .our-client .head-con .main-heading {
       color: #000;
       font-weight: 600;
       font-size: 40px;
       text-align: center;
   }

   /* call to action section start */
   .cta-sec {
       padding: 5% 0;
       background: url('../assets/banner/slider2.webp')no-repeat;
       background-size: cover;
       background-position: center;
       position: relative;
   }

   .cta-overlay {
       background-color: #01112b;
       opacity: 0.9;
       position: absolute;
       z-index: 10;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
   }

   .cta-content {
       position: relative;
       z-index: 20;
   }

   .cta-sec .heading h1 {
       font-size: 35px;
       font-weight: 600;
       color: #fff;
   }

   .cta-sec p {
       font-size: 16px;
       color: #777;
   }


   /* Form box css */
   .form-box {
       background: #fff;
       padding: 30px 20px;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
       margin: 0 5% 0 0;
       position: absolute;
       right: -2.5%;
       width: 45%;
   }

   .form-box form .form-control {
       margin: 0 0 5% 0;
       padding: 2.5% 2% 2.5% 5%;
       border: 1px solid #ccc;
       border-radius: 0;
       font-size: 14px;
       border-radius: 0;
       box-shadow: none;
   }

   .form-box form .form-control::placeholder {
       color: #aaa;
   }

   .form-box form .form-select::placeholder {
       color: #aaa;
   }

   .form-box form .custom-select {
       margin: 0 0 5% 0;
       padding: 2.5% 2% 2.5% 5%;
       border: 1px solid #ccc;
       border-radius: 0;
       font-size: 14px;
       border-radius: 0;
       box-shadow: none;
   }

   .form-box form .common-btn {
       width: 30%;
   }

   .form-box h2 {
       font-size: 30px;
       font-weight: 600;
       color: #000;
   }

   .form-box p {
       color: #666;
       padding: 0 0 2.5% 0;
   }









   /* Service secction start */
   .service-sec {
       padding: 5% 0 5% 0;
       position: relative;
   }

   .service-sec .head-con .main-heading {
       color: #000;
       font-weight: 600;
       font-size: 40px;
   }

   .service-sec .head-con .main-para {
       color: #666;
   }

   .service-sec .bg-overlay {
       position: absolute;
       right: 0;
       top: 0;
       bottom: 0;
       z-index: 10;
   }

   .service-sec .services {
       display: grid;
       z-index: 15;
       position: relative;
       grid-template-columns: 33.33% 33.33% 33.33%;
   }

   .service-sec .services h3 {
       text-align: center;
       font-size: 20px;
       padding: 1% 0 2%;
       color: #fff;
       background-color: #04664c;
       margin: 0 0 -7px 0;
       position: absolute;
       bottom: 0;
       right: 0;
       left: 0;
   }

   .service-box {
       position: relative;
       margin: 5%;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
       border-radius: 20px;
       padding: 5% 5% 8%;
       background-color: #fff;
       height: 300px;
   }

   .service-box .image {
       display: block;
       width: 100%;
       height: 100%;
       height: auto;
       border-radius: 20px;
   }

   .service-box .overlay {
       position: absolute;
       bottom: 0;
       left: 0;
       right: 0;
       background-color: #04664c;
       overflow: hidden;
       width: 100%;
       height: 0;
       transition: .5s ease;
       border-radius: 20px;
   }

   .service-box :hover .overlay {
       height: 100%;
   }

   .service-box .text {
       color: white;
       font-size: 20px;
       position: absolute;
       top: 10%;
       left: 10%;
       right: 10%;
       overflow-y: scroll;
       height: 250px;
       /* -webkit-transform: translate(-50%, -50%);
       -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%); 
        text-align: center; */
   }

   /* width */
   .service-box .text::-webkit-scrollbar {
       width: 2px;
   }

   /* Track */
   .service-box .text::-webkit-scrollbar-track {
       background: transparent;
   }

   /* Handle */
   .service-box .text::-webkit-scrollbar-thumb {
       background: #04316c;
   }

   /* Handle on hover */
   .service-box .text::-webkit-scrollbar-thumb:hover {
       background: #eee;
   }

   .service-box .text ul li {
       font-size: 14px;

   }

   .service-box .text h2 {
       font-size: 25px;
       font-weight: 600;
   }




   /*testimonial section start*/
   .testimonial-sec {
       padding: 2% 0 2%;
   }

   .testimonial-sec .head-con .main-heading {
       text-align: left;
       font-weight: 700;
       font-size: 40px;
       color: #000;
   }

   .testimonial-sec .head-con p {
       text-align: left;
   }

   .testimonial-sec .review-slider .slick-slide {
       margin-right: 15px;
       /* Adjust this value as needed for your desired gap */
   }

   .testimonial-sec .review-slider .slick-list {
       padding: 1% 0.5% 5%;
   }

   .testimonial-sec .head-con .main-para {
       text-align: center;
       color: #666;
   }

   .testimonial-sec .content h1 {
       padding: 0 0 5% 0;
   }

   .testimonial-sec .head-con {
       padding: 0 0 5% 0
   }

   .review-sec {
       padding: 5% 0 0;
   }

   .testimonial-sec .head-con h6 {
       color: #0A5A42;
       font-weight: 600;
   }



   .box-review h4 {
       font-size: 20px;
       font-weight: 600;
   }

   .box-review p {
       font-size: 18px;
   }



   /*Graph section start*/
   .graph-sec {
       padding: 0 0 5%;
   }

   .graph-sec .head-con .main-heading {
       text-align: center;
       font-weight: 700;
       font-size: 40px;
       color: #000;
   }

   .graph-sec .head-con .main-para {
       text-align: center;
       color: #666;
   }

   .graph-sec .graph-img img {
       width: 100%;
       height: 300px;
   }

   .graph-sec .graph-bx {
       padding: 3%;
       border: 1.5px solid #777;
   }

   .graph-content h1 {
       font-size: 20px;
       font-weight: 600;
       padding: 2% 0 3%;
   }













   /* section blog start */
   .blog-sec {
       padding: 5% 0 5% 0;
       background: #f9f9f9;
   }

   .blog-sec .head-con .main-heading {
       color: #000;
       font-weight: 700;
       font-size: 40px;
       text-align: left;
   }

   .blog-sec .blog-bx {
       box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.4);
   }

   .blog-sec .head-con .main-para {
       color: #777;
       text-align: left;
   }

   .blog-sec .head-con .common-btn {
       padding: 2% 5% 3%;
   }

   .blog-sec .content-bx {
       padding: 2%;
       margin: 0 0 5% 0;
   }

   .blog-sec .content-bx h3 {
       font-size: 22px;
       font-weight: 600;
       text-align: left;
       background-color: transparent;
       color: #000;
       padding: 2% 0 1%;
   }

   .blog-sec .content-bx p {
       font-size: 14px;
       color: #555;
       line-height: 1.6;
   }

   .blog-sec .content-bx a {
       color: #04664c;
       background-color: transparent;
       border: 0;
       font-weight: 600;
       transition: 0.4s;
   }

   .blog-sec .content-bx a:hover {
       color: #000;
       text-decoration: underline;
   }

   .blog-sec .content-bx a .read-i {
       margin-left: 5px;
       font-size: 14px;
   }

   .blog-sec .img img {
       width: 100%;
       box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
   }








   /* section blog start */
   .blog-sec {
       padding: 5% 0 5% 0;
       background: #f9f9f9;
   }

   .blog-sec .head-con .main-heading {
       color: #000;
       font-weight: 700;
       font-size: 40px;
       text-align: left;
   }

   .blog-sec .blog-bx {
       box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.4);
   }

   .blog-sec .head-con .main-para {
       color: #777;
       text-align: left;
   }

   .blog-sec .head-con .common-btn {
       padding: 2% 5% 3%;
   }

   .blog-sec .content-bx {
       padding: 2%;
       margin: 0 0 5% 0;
   }

   .blog-sec .content-bx h3 {
       font-size: 22px;
       font-weight: 600;
       color: #000;
       padding: 2% 0 1%;
   }

   .blog-sec .content-bx p {
       font-size: 14px;
       color: #555;
       line-height: 1.6;
   }

   .blog-sec .content-bx a {
       color: #04664c;
       background-color: transparent;
       border: 0;
       font-weight: 600;
       transition: 0.4s;
   }

   .blog-sec .content-bx a:hover {
       color: #000;
       text-decoration: underline;
   }

   .blog-sec .content-bx a .read-i {
       margin-left: 5px;
       font-size: 14px;
   }

   .blog-sec .img img {
       width: 100%;
       box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
   }





   /* About PAGE Section start */
   .about-sec-pg {
       background-color: #efefef;
       padding: 11% 0 4.5%;
   }

   .about-sec-pg .main-para {
       color: #000;
   }

   .about-sec-pg .main-heading {
       color: #000;
   }

   .about-sec-pg .main-para a {
       color: #04664c;
       text-decoration: none;
       font-weight: 600;
       border: 0;
   }

   .about-sec-pg a {
       color: #04664c;
       text-decoration: none;
       font-weight: 600;
       border-bottom: 1px solid #04664c;
       transition: 0.4s;
   }
   .about-sec-pg a:hover{
       color: #000;
       transition: 0.4s;
   }


   /* feature section in about us page */
   .featured-aboutpg {
       background-image: linear-gradient(to right, #04664c, rgb(59, 99, 59));
       padding: 5% 7%;
   }

   .featured-aboutpg .head-con {
       padding: 0 0 5% 1%;
   }

   .featured-aboutpg .icon .i-c {
       background-color: #fff;
       padding: 4%;
       border-radius: 50%;
       width: 20%;
       margin: 0 0 5% 0;
   }

   .featured-aboutpg .content h5 {
       color: #fff;
       font-size: 18px;
       line-height: 25px;
       padding: 0 25% 1%;
       font-weight: 600;
       text-shadow: 1px 0px 1px rgb(255 255 255);
   }

   .featured-aboutpg .content p {
       font-size: 14px;
       color: #eee;
       line-height: 25px;
       padding: 0 5%;
   }

   /* Our services */
   .our-services .box {
       width: 100%;
       border-radius: 15px;
       height: 100%;
       padding: 5% 2.5%;
       text-align: center;
       background-color: #fff;
   }

   .our-services h4 {
       font-weight: 700;
       color: #04664c;
       font-size: 25px;
   }

   .our-services p {
       color: #777;
       font-size: 14px;
       padding: 1% 5% 3%;
       font-weight: 600;
   }

   .our-services ul {
       list-style: none;
       padding-left: 20px;
       text-align: left;
       line-height: 38px;
   }

   .our-services ul li {
       font-size: 14px;
       color: #777;
       font-weight: 600;
   }

   .our-services ul li img {
       width: 4.8%;
       margin: -2px 0 0 0;
   }

   .our-services .common-btn {
       width: 100%;
       padding: 3% 6%;
       margin: 10% 0 0 0;
       font-size: 16px;
       border-radius: 5px;
   }

   .our-services .box .image {
       background-color: #fff;
       width: 100%;
       border-radius: 15px;
   }

   .our-services .box .image img {
       background-color: #fff;
       width: 90%;
       height: 90%;
       border-radius: 15px;
   }












   /* Why choose us section in about us */
   section.why-choose-us {
       background: radial-gradient(circle at center, #eaf6ef 0%, #ffffff 75%);
   }

   .why-choose-us .main-title {
       font-weight: 700;
   }

   section.why-choose-us .section-title {
       color: #0e8a55;
       font-weight: 700;
       text-transform: uppercase;
       letter-spacing: 1px;
       font-size: 14px;
   }

   section.why-choose-us .main-title span {
       border-bottom: 3px solid #000;
   }

   section.why-choose-us .info-box {
       padding: 0 20% 5%;
       margin-left: auto;
       margin-right: auto;
       text-align: center;
   }

   section.why-choose-us .info-box h5 {
       font-weight: 700;
       color: #0e8a55;
       font-size: 16px;
   }

   section.why-choose-us .info-box p {
       font-size: 13px;
       color: #777;
       font-weight: 600;
   }

   /* Center image */
   section.why-choose-us .center-image-wrap {
       position: relative;
   }

   section.why-choose-us .center-image {
       width: 100%;
       border-radius: 20px;
       /* box-shadow: 0 10px 30px rgba(0,0,0,0.15); */
   }

   /* Perfect curve placements matching your image */
   section.why-choose-us .left-1::after {
       right: -150px;
       top: 20px;
       transform: rotate(150deg);
   }

   section.why-choose-us .left-2::after {
       right: -150px;
       top: -10px;
       transform: rotate(200deg);
   }

   section.why-choose-us .right-1::after {
       left: -150px;
       top: 20px;
       transform: rotate(20deg);
   }

   section.why-choose-us .right-2::after {
       left: -150px;
       top: -10px;
       transform: rotate(-40deg);
   }

   section.why-choose-us .bottom-center::after {
       left: 50%;
       top: -20px;
       transform: translateX(-50%) rotate(90deg);
   }


   /* Go Digital */
   .go-digital {
       background-image: linear-gradient(to right, #04664c, rgb(59, 99, 59));
       padding: 2% 0;
   }

   .go-digital img {
       width: 100%;
   }

   .go-digital .btn-light{
         border-radius: 5px;
         padding: 1.5% 4%;
         margin: 5% 0 0 0;
         transition: 0.4s;
   }
    .go-digital .btn-light:hover{
        border: 1px solid #fff;
        background-color: transparent;
        color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    }

   .go-digital h1 {
       color: #fff;
       font-size: 45px;
       font-weight: 600;
       padding: 0 0 2% 0;
   }

   .go-digital p {
       color: #eee;
       font-size: 14px;
       padding: 1% 10% 0 0;

   }















   /* FOOTER SECTION CSS */
   footer {
       background-color: #000;
       color: #fff;
       padding: 5% 0 1.5%;
       position: relative;
       bottom: 0;
       width: 100%;
   }

   footer .logo-box img {
       width: 50%;
   }

   .social-i a {
       padding: 0% 5% 0 0;
       color: #04664c;
       font-size: 20px;
       transition: 0.4s;
   }

   .social-i {
       padding: 5% 0 0 15%;
   }

   footer .footer-container {
       display: grid;
       grid-template-columns: 35% 20% 20% 25%;
   }

   .quick-box h3 {
       background-color: transparent;
       text-align: left;
   }

   footer .footer-container .divider {
       background-color: #04664c;
       height: 2px;
       width: 50px;
   }

   .footer-container .logo-box {
       padding: 0 25% 0 0;
   }

   .footer-container .logo-box p {
       padding: 5% 0 0 0;
   }

   .footer-container ul {
       list-style: none;
       padding: 5% 0 5% 5%;
   }

   .footer-container ul li {
       line-height: 35px;

   }

   .footer-container ul li a {
       transition: 0.4s;
   }

   .footer-container ul li a:hover {
       transition: 0.4s;
       padding: 0 0 0 10px;
       color: #04664c;
   }

   .contact-box .box a {
       display: flex;
       padding: 0 0 5% 0;
       justify-content: space-between;
       gap: 20px;
       width: 100%;
       font-size: 14px;
   }

   .contact-box .box a span {
       padding: 0 0 0 15%;
   }

   .contact-box .box a:hover {
       color: #04664c;
       transition: 0.4s;
   }

   .footer-container .contact-box .box {
       padding: 0 0 3% 0;
   }

   .contact-box .box a .foot-i {
       color: #04664c;
       font-size: 14px;
       background-color: #fff;
       padding: 8px 7px;
       position: absolute;
       border-radius: 50%;
       margin: 0 5% 0 0;
   }

   .footer-bottom {
       text-align: center;
       padding: 2% 0 0 0;
       font-size: 12px;
       color: #eee;
       border-top: 2px solid #eee;
   }

   .footer-bottom p a {
       color: #04664c;
       font-weight: 500;
       transition: 0.4s;
   }

   .footer-bottom p a:hover {
       color: #fff;
   }

















   /* -------------------------------
   ABOUT US PAGE
   -------------------------------*/
   .about-pg-banner {
       background: url('../assets/banner/about-banner.webp')no-repeat;
       background-size: cover;
       background-position: center;
       position: relative;
   }

   .about-pg-banner {
       position: relative;
   }

   .about-pg-banner .banner-content {
       /* display: flex; */
       /* justify-content: space-between; */
       padding: 5% 0 10%;
       text-align: center;
   }

   .about-pg-banner .banner-content h1 {
       font-size: 50px;
       color: #fff;
       font-weight: 600;
       padding: 2% 25% 1%;
   }

   .about-pg-banner .banner-content p {
       font-size: 14px;
       color: #eee;
       padding: 0 35% 2%;
   }


   /* Contact about us */
   .contact-us-sec {
       background: url('../assets/banner/contact-pg-banner.webp')no-repeat;
       background-size: cover;
       background-position: center;
       padding: 5% 0;
   }

   .contact-us-sec .form-bxx {
       background-color: #fff;
       padding: 5%;
       border-radius: 15px;
   }

   .contact-us-sec .form-bxx .head-con h2 {
       font-weight: 700;
       font-size: 35px;
       text-align: left;
       color: #000;
       padding: 0 0;
   }

   .contact-us-sec .form-bxx .head-con p {
       color: #ccc;
       text-align: left;
       font-size: 14px;
       padding: 0 0 2% 0;
   }

   .contact-us-sec .form-bxx .form-control {
       padding: 2% 0 2% 4%;
       margin: 0 0 3% 0;
       border: 1px solid #828fa55d;
   }

   .contact-us-sec .form-bxx .form-control::placeholder {
       color: #828fa5;
       font-size: 14px;
       font-weight: 400;
   }

   .form-bxx .custom-btn {
       display: block;
   }

   .contact-us-sec h2 {
       color: #fff;
       font-weight: 700;
       font-size: 35px;
       padding: 0 0 5% 0;
       text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
   }





   /* Accordion section start */

   .accordion-sec {
       padding: 5% 0;
   }

   .accordion-sec .faq-header {
       text-align: center;
       margin-bottom: 50px;
   }

   .accordion-sec .faq-label {
       color: #0d9488;
       font-size: 16px;
       font-weight: 600;
       letter-spacing: 0.5px;
       margin-bottom: 15px;
   }

   .accordion-sec .faq-title {
       font-size: 42px;
       font-weight: 700;
       color: #1a1a1a;
   }

   .accordion-sec .accordion-container {
       display: flex;
       flex-direction: column;
       gap: 20px;
   }

   .accordion-sec .accordion-item {
       background: #e8f4f3;
       border-radius: 12px;
       overflow: hidden;
       transition: all 0.3s ease;
   }

   .accordion-sec .accordion-item.active {
       background: white;
       box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
   }

   .accordion-sec .accordion-header {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 28px 35px;
       cursor: pointer;
       user-select: none;
       transition: all 0.3s ease;
   }

   .accordion-sec .accordion-header:hover {
       background: rgba(13, 148, 136, 0.05);
   }

   .accordion-sec .accordion-question {
       font-size: 20px;
       font-weight: 700;
       color: #1a1a1a;
       flex: 1;
   }

   .accordion-sec .accordion-icon {
       width: 32px;
       height: 32px;
       display: flex;
       align-items: center;
       justify-content: center;
       transition: transform 0.3s ease;
       flex-shrink: 0;
       margin-left: 20px;
   }

   .accordion-sec .accordion-icon svg {
       width: 24px;
       height: 24px;
       stroke: #1a1a1a;
       stroke-width: 2.5;
   }

   .accordion-sec .accordion-item.active .accordion-icon {
       transform: rotate(180deg);
   }

   .accordion-sec .accordion-content {
       max-height: 0;
       overflow: hidden;
       transition: max-height 0.3s ease, padding 0.3s ease;
   }

   .accordion-sec .accordion-item.active .accordion-content {
       max-height: 500px;
   }

   .accordion-sec .accordion-content-inner {
       padding: 0 35px 28px 35px;
   }

   .accordion-sec .accordion-answer {
       font-size: 16px;
       line-height: 1.7;
       color: #4a5568;
   }

   @media (max-width: 768px) {
       .accordion-sec .faq-title {
           font-size: 32px;
       }

       .accordion-sec .accordion-header {
           padding: 20px 20px;
       }

       .accordion-sec .accordion-question {
           font-size: 17px;
       }

       .accordion-sec .accordion-content-inner {
           padding: 0 20px 20px 20px;
       }

       .accordion-sec .accordion-answer {
           font-size: 15px;
       }

       .accordion-sec .accordion-icon {
           margin-left: 15px;
       }
   }

   @media (max-width: 480px) {
       .accordion-sec .faq-title {
           font-size: 22px;
       }

       .accordion-sec .accordion-question {
           font-size: 14px;
       }
   }




   /* SERVICES Page Start */
   .service-banner {
       background-image: linear-gradient(to right, #04664c, rgb(59, 99, 59));
   }
    .service-banner{
        border-radius: 5px;
        padding: 2% 4%;
        margin: 0 5px 0 0;
    }
   .service-banner img {
       width: 100%;
   }

   .service-banner .row {
       align-items: center;
   }

   .service-banner .content-banner-service {
       padding: 0 5% 0 0;
   }

   .service-banner .content-banner-service h1 {
       color: #fff;
       font-size: 45px;
       font-weight: 700;
   }

   .service-banner .content-banner-service h5,
   .service-banner .content-banner-service h4 {
       color: #eee;
       font-size: 18px;
       padding: 2.2% 0 0%;
   }

   .service-banner .content-banner-service p {
       color: #eee;
       font-size: 14px;
       padding: 1.5% 0 3%;
   }


   /* Offering section start */
   .offering {
       padding: 5% 0;
   }

   .offering img {
       width: 90%;
       margin: 0 0 0 auto;
       display: flex;
   }

   .offering .right-c {
       text-align: left;
       padding: 5% 0 5% 5%;
   }

   .offering .right-minus {
       margin: 0 0 0 -40px;
   }

   .offering .head-con h2 {
       font-size: 35px;
       font-weight: 700;
   }

   .offering .head-con p {
       padding: 1.5% 10% 0;
   }

   .offering .right-c h4 {
       font-size: 20px;
       font-weight: 600;
       padding: 0 0 2% 0;
   }

   .offering .right-c .custom-btn {
       border-radius: 25px;
       width: 100%;
       text-align: center;
       display: block;
       padding: 2% 0;
   }

   .right-c p {
       font-size: 14px;
       padding: 3% 0 3%;
   }

   .offering ul {
       padding: 0 0 4% 0;
       margin: 0;
       line-height: 25px;
   }

   .offering ul li {
       font-size: 14px;
       padding: 0 0 3% 6%;
       list-style: none;
       position: relative;
   }

   .offering ul li::before {
       content: "☆";
       /* Hollow star */
       position: absolute;
       left: 0;
       top: 0;
       color: #000;
       /* Change color if needed */
       font-size: 18px;
   }






   /* Why Choose Services */
   .why-choose-services {
       background: #e7efed;
       /* light mint color like your screenshot */
   }

   .why-choose-services .wc-box {
       padding: 10px 20px;
   }

   .why-choose-services .wc-box ul {
       text-align: left;
       list-style-type: none;
       line-height: 25px;
       padding: 4% 0 0 20%;
   }

   .why-choose-services .wc-box ul li {
       font-size: 14px;
       color: rgba(33, 37, 41, 0.75);
   }

   .why-choose-services .wc-icon {
       width: 70px;
       height: 70px;
       background: #fff;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       margin: auto;
       box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   }

   .why-choose-services .wc-icon img {
       width: 30px;
       height: 30px;
   }

   .why-choose-services h2 {
       font-size: 32px;
   }

   .why-choose-services p {
       margin-bottom: 0;
   }



   /* How It Works */
   /* How it works */
   .how-it-works {
       background: #f8f8f8;
   }

   .hiw-box {
       background: #fff;
       padding: 20px;
       border-radius: 20px;
       position: relative;
       height: 100%;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
   }

    .how-it-works .row .col-md-4{
        padding: 0 3% 5%;
    }
    
     .how-it-works .row .col-md-3{
        padding: 0 3% 5%;
    }

   .hiw-box ul {
       line-height: 25px;
       list-style-type: none;
   }

   .hiw-box ul li {
       text-align: left;
       font-size: 13px;
       padding: 1% 0 0 12%;
       text-decoration: none;
       color: rgba(33, 37, 41, 0.75);
       ;
   }

   .hiw-step {
       width: 45px;
       height: 45px;
       background: #fff;
       border-radius: 50%;
       position: absolute;
       top: -10px;
       left: 50%;
       transform: translateX(-50%);
       border: 2px solid #1e9f6a;
       font-weight: bold;
       display: flex;
       align-items: center;
       justify-content: center;
       z-index: 15;
   }

   .hiw-box .square-x {
       background-color: #fff;
       width: 75px;
       height: 75px;
       position: absolute;
       top: -30px;
       left: 38%;
       transform: translateX(-50%);
       z-index: 10;
       border-radius: 25px 0 0 0;
       transform: rotate(45deg);
   }

   .hiw-box .square-x {
       background-color: #fff;
       width: 75px;
       height: 75px;
       position: absolute;
       top: -30px;
       left: 38%;
       transform: translateX(-50%);
       z-index: 10;
       border-radius: 25px 0 0 0;
       transform: rotate(45deg);
   }

   .hiw-switches .square-x {
       left: 41%;
   }

   .hiw-box h5 {
       font-size: 18px;
   }

   .hiw-box p {
       font-size: 13px;
       padding: 3% 10% 0;
       line-height: 20px;
   }

   .hiw-step {
       width: 35px;
       height: 35px;
       background: #fff;
       border-radius: 50%;
       border: 2px solid #1e9f6a;
       font-weight: bold;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .hiw-img {
       width: 120px;
       height: auto;
       margin-top: 15px;
   }


   .whatsapp-float {
       position: fixed;
       width: 60px;
       height: 60px;
       bottom: 20px;
       left: 20px;
       background: #25d366;
       color: #fff;
       border-radius: 50%;
       text-align: center;
       font-size: 30px;
       box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
       z-index: 999;
       display: flex;
       align-items: center;
       justify-content: center;
       transition: 0.4s;
   }

   .whatsapp-float:hover {
       transform: scale(1.1);
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
   }

   .whatsapp-float img {
       width: 35px;
       height: 35px;
       /*filter: brightness(0) invert(1);*/
   }




   /* Renta-CTA */
   /* CTA section */
   .rent-cta {
       background: #0f6b42;
       border-radius: 0 0;
   }

   .rent-cta .d-flex a {
       display: flex;
       align-items: center;
       gap: 10px;
       padding: 0 10px 15px 0;
       width: 100%;
       justify-content: space-between;
   }

   .rent-cta .d-flex a p {
       padding: 0 0 0 8%;
       transition: 0.4s;
   }
   
   .rent-cta .d-flex a p:hover{
       transform: scale(1.02);
       text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
   }

   .cta-icon {
       width: 40px;
       height: 40px;
       background: #fff;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       color: #0f6b42;
       font-size: 20px;
       position: absolute;
   }


   /* CTA */
   .cta {
       text-align: center;
       padding: 50px;
       background: var(--secondary);
       color: var(--white);
   }

   .cta a {
       display: inline-block;
       margin-top: 20px;
       padding: 12px 30px;
       background: var(--primary);
       color: var(--white);
       text-decoration: none;
       border-radius: 5px;
       font-size: 1.1rem;
       box-shadow: var(--shadow);
   }





   /* Common Banner css */
   .common-banner {
       background-size: cover !important;
       background-position: center !important;
       text-align: center;
       padding: 8% 0;
   }

   .common-banner h1 {
       font-size: 40px;
       color: #fff;
       font-weight: 700;
       padding: 0 0 1.5% 0;
   }

   .common-banner p {
       color: #eee;
   }


   /* STORY SECTION */

   .story .box {
       background: #fff;
       padding: 20px;
       border-radius: 10px;
       box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2)
   }

   .our-story {
       padding: 5% 0;
   }

   .our-story h3 {
       font-size: 25px;
       font-weight: 600;
   }

   .story .box img {
       width: 100%;
       border-radius: 10px;
       height: 200px;
       object-fit: cover;
       margin-bottom: 15px;
   }

   .story .box h3 {
       color: var(--primary);
       margin-bottom: 10px;
   }

   .our-story h2 {
       font-weight: 700;
       font-size: 40px;
   }


   /* Hover Effects */
   .story .box:hover,
   .why-slider .item:hover,
   .team .member:hover {
       transform: translateY(-8px) scale(1.03);
       background-image: linear-gradient(to right, #04664c, rgb(59, 99, 59));
       transition: 0.3s ease;
       color: #fff;
   }

   .story .box,
   .why-slider .item,
   .team .member {
       transition: 0.3s ease;
   }

   /* TEAM */
   .meetour-sec {
       padding: 5% 0;
   }

   .meetour-sec h2 {
       font-size: 40px;
       font-weight: 700;
   }

   .team {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 30px;
   }

   .team .member {
       background: var(--white);
       text-align: center;
       padding: 20px;
       border-radius: 10px;
       box-shadow: var(--shadow);
   }

   .team .member img {
       width: 130px;
       height: 130px;
       border-radius: 50%;
       object-fit: cover;
       margin-bottom: 15px;
       border: 4px solid var(--secondary);
   }




   /*Contact section start*/
   .contact-section {
       padding: 60px 0;
       background-size: cover !important;
       background-position: center !important;
       background-attachment: fixed !important;
       position: relative;
   }
   .contact-section .contact-form .form-label{
       font-size: 14px;
       color: #0b654a;
   }
   .contact-section .contact-form .form-label span{
       color: #ff250c;
   }
   .contact-section .contact-card {
       height: 100%;
   }

   .contact-section .contact-card .contact-i {
       color: #04664c;
   }

   .contact-section .opacity {
       background-color: #000;
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       opacity: 0.6;
   }

   .contact-section .contact-form-pg {
       position: relative;
       z-index: 25;
   }

   .contact-card {
       background: #fff;
       border-radius: 20px;
       padding: 30px;
       box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
       transition: 0.4s;
   }

   .contact-card:hover {
       transform: translateY(-8px);
       box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
       background: #07664c;
       color: #fff;
       transition: 0.4s;
   }

   .contact-section .contact-card:hover .contact-i {
       color: #fff;
   }


   .contact-card p {
       color: #777;
   }

   .contact-section .contact-card:hover p {
       color: #eee;
   }

   /* .contact-card */

   .contact-icon {
       font-size: 40px;
       color: #07664c;
   }

   .contact-form {
       background: #ffffff;
       padding: 40px;
       border-radius: 20px;
       box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
   }

   .contact-form input,
   .contact-form textarea {
       border-radius: 12px;
       padding: 12px;
   }

   .contact-form button {
       background: #07664c;
       border: none;
       border-radius: 5px;
       padding: 12px 25px;
       color: #fff;
       font-size: 18px;
       transition: 0.4s;
   }
   
   .contact-form button:hover{
       transform: scale(1.02);
        transition: 0.4s;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
   }

   .contact-form button:hover {
       background: #3a633b;
   }

   .map-section iframe {
       width: 100%;
       border-radius: 20px;
       min-height: 320px;
       box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
   }



   /* RENTAL Switches */
   .alt-section {
       background: #fff;
       padding: 6% 0 4%;
   }

   .alt-section h2 {
       padding: 0 0 4% 0;
   }

   .alt-section h3 {
       font-size: 25px;
       font-weight: 600;
       text-align: left;
       padding: 0 0 2% 0;
   }

   .rental-router-feature {
       padding: 0% 0 6%;
   }

   .alt-section ul {
       text-align: left;
       padding: 2% 0 0 2%;
   }

   .why-choose-services ol {
       padding: 0;
       text-align: left;
       padding: 0 0 0 15%;
   }

   .why-choose-services ol li {
       padding: 0 0 2% 0;
   }

   .why-choose-services ol li h4 {
       font-size: 15px;
       font-weight: 600;
   }

   .alt-section ol li p {
       font-size: 13px;
   }

   .alt-section ul li {
       font-size: 14px;
   }

   .section-title {
       font-size: 25px;
       font-weight: 700;
       color: #000;
       margin-bottom: 20px;
   }

   .custom-list li {
       list-style: none;
       margin-bottom: 12px;
       font-size: 17px;
       position: relative;
       padding-left: 25px;
   }

   .custom-list li::before {
       content: "✔";
       color: #3a633b;
       font-weight: bold;
       position: absolute;
       left: 0;
   }

   .feature-img {
       border-radius: 12px;
       box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
       transition: transform 0.3s ease, box-shadow 0.3s ease;
   }

   .feature-img:hover {
       /* transform: scale(1.03); */
       box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
   }

   .alt-section .conten {
       padding: 3%;
       height: 100%;
       border-radius: 15px;
       height: 340px;
       /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
   }

   .box-f {
       margin: 14% 0 0 0;
       box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
       border-radius: 15px;
   }

   .alt-section img {
       height: 100%;
       border-radius: 15px;
       box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
       margin: 0 0 3% 0;
   }