*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 0.5rem;
    height:0.5rem;
}

/* ::-webkit-scrollbar-track {
    background: #FFF;
} */

::-webkit-scrollbar-thumb {
    background: #E3E3E3;
    border-radius: 10px;
}

/* Remove default focus style */
:focus {
    outline: 0;
}
:root{
    --Primary-Green : #106153;
    --white : #FFF;
}
 h1,h2,h3,h4,h5,h6,
 p,li,span,a{
    font-style: normal;
    line-height: normal;
}
ul,ol{
    margin-bottom: 0;
}

.btn-primary-outline-fill{
    color: #FFF;
    border-radius: 12px;
    border: 1px solid rgba(0, 141, 113, 0.51);
    background: linear-gradient(89deg, rgba(255, 255, 255, 0.17) 0.95%, rgba(255, 255, 255, 0.11) 21.55%, rgba(255, 255, 255, 0.05) 99.05%);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
}

.btn-primary-outline{
    color: #106153;
    border-radius: 8px;
    border: 1px solid #106153;
    background: #fff;
    backdrop-filter: blur(5px);
    padding: 8px 16px;
}


/* Blue button Styles */
.btn-primary{
    padding: 8px 16px;
    color: var(--white,#FFF);
    border-radius: 8px;
    border: 1px solid var(--Primary-Green, #106153);
    background-color: var(--Primary-Green,#106153) ;
    font-family: Raleway;
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(5px);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--Primary-Green, #1a7868);    
}

.btn-primary:active:focus,
.btn-primary:active {
    background-color: #106153;
    /* border: 1px solid var(--Brand-border); */
    box-shadow: inset 0px 2px 5px 1px rgba(0, 0, 0, 0.2);
    padding: 10px 16px 6px 16px;
}


/* Logo Sliders Code Start*/

.logos {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.logo-track {
  display: flex;
  width: fit-content;
  animation: scroll 35s linear infinite;
}

.logo_items {
  display: flex;
}

.logo_items img {
  height: 70px;
  margin: 0 20px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logos:hover .logo-track {
  animation-play-state: paused;
}

/* Optional fading edges */
.logos::before,
.logos::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logos::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.logos::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}


/* Logo Sliders Code*/

.our-services-section .card,
.about-us-section .card{
    border-radius: 20px;
    border: 1px solid var(--Brand-color, #008D71);
    background: linear-gradient(125deg, #F5FFFD 3.92%, #C1F9EE 50.15%, #F5FFFD 96.38%);
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.our-services-section .card{
    justify-content: center;
    background: #FFF;
    transition: all 1s ease;
    text-align: center;
}

.our-services-section .card:hover{
    background: linear-gradient(125deg, #F5FFFD 3.92%, #C1F9EE 50.15%, #F5FFFD 96.38%);
}


.vertical-img>div{
    height:300px;
}


/* Swiper Styles */
.testimonialProfileSwiper .swiper-slide h4.sub-heading,
.testimonialProfileSwiper .swiper-slide p.para-text{
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
}
.testimonialProfileSwiper .swiper-slide img{
    width: 50px;
    height: 50px;
    transition: 0.4s ease;
    margin-top: 5px;
    position: relative;
}
.testimonialProfileSwiper .swiper-slide.swiper-slide-active img{
    border:1px solid #62D159;
    padding: 2px;
    width: 60px;
    height: 60px;
    margin-top: 0px;
}

.testimonialProfileSwiper .swiper-slide.swiper-slide-active h4.sub-heading,
.testimonialProfileSwiper .swiper-slide.swiper-slide-active p.para-text{
  opacity: 1;
  pointer-events: auto;
}

.testimonialTextSwiper{
    width: 65%;
}
.testimonialProfileSwiper{
    width: 30%;
}

.testimonial-section .button-prev{
    top: 28px;
    left:25%;
    z-index: 99; 
    color:#106153;
}
.testimonial-section .button-next{
    top: 28px;
    right:25%;
    z-index: 99; 
    color:#106153;
}

/* Accordion code Start */
.accordion-container{
    width: 70%;
}

.accordion-item {
    border: none;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    border-radius: 10px !important;
    font-weight: 600;
    color: #1a1a1a;
    background-color: #FFF;
}

.accordion-button:not(.collapsed) {
    background-color: #ffffff;
    box-shadow: none;
}
.accordion-button::after{
    content: none;
}
.accordion-button::before {
    content: "+";
    font-size: 1.5rem;
    width: 20px;
    transform: none !important;
    margin-right: 15px;
}


.accordion-button:not(.collapsed)::before {
    content: "–";
    font-size: 1.5rem;
}
.accordion-body {
    padding-top: 0;
    color: #444;
}

.accordion-button:focus{
    box-shadow: none;
}

.nav-tabs{
    border-bottom: unset;
}
.nav-tabs .nav-link {
    border-radius: 50px;
    padding: 10px 28px;
    border: 1px solid #3A3535;
    margin-right: 10px;
    color: #3A3535;
    font-family: Raleway;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
}

.nav-tabs .nav-link.active {
    font-weight: 700;
    background-color: #FFF;
    color: var(--Primary-Green, #106153);
    border: 1px solid var(--Primary-Green, #106153);
}

/* Contact US form */
.contact-us-form .form-control,
.contact-us-form .form-select {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #888;
    border-radius: 0;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 30px */
}
.contact-us-form .form-control:focus, .form-select:focus {
    border-color: #fff;
    box-shadow: none;
    background-color: transparent;
}
.contact-us-form .form-control::placeholder {
    color: #aaa;
}
.contact-us-form .btn-outline-light {
    border-radius: 4px;
    border-width: 1px;
}
.contact-us-form .form-select option {
    background-color: #000;
    color: #fff;
}
.form-border-left{
    border-right: 1px solid #FFF;
}

/* Custom Checkbox */
.custom-checkbox {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    /* transition: border 0.3s; */
    transform: translate3d(0, 0, 0) scale(1);
    transition: 0.5s,border 0.3s;
}
.custom-checkbox:hover{
    transform: translate3d(0, 0, 0) scale(1.01);
}
.custom-checkbox.checked {
    border-color: green;
}

.custom-checkbox input[type="checkbox"] {
    accent-color: green;
    width: 18px;
    height: 18px;
    margin: 0;
}

.custom-checkbox label {
    margin: 0;
    cursor: pointer;
}
/* Accordion Code End */

/* New Code End */











/* White button Styles */
.btn-light{
    border-radius: 100px;
    border: 1px solid #2E4B1C;
    background: var(--white,#FFF);
    box-shadow: 0px 2px 0px 0px #2E4B1C;
    color: var(--Base-black,#231F20);
    font-family: Raleway;
    font-size: 18px;
    font-weight: 700;
    padding: 6px 20px;
}

/* .btn-light{
    background-color: var(--white);
    padding: 6px 20px;
    border-radius: 100px;
    border: 1px solid var(--gray-border);
    color: var(--text);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.1);
} */
.btn-light:hover,
.btn-light:focus {
    /* background-color:var(--white);*/
    color: var(--text);
    border: 1px solid rgba(0,0,0,0.10);
    background-color: #fff;
}

.btn-light:focus {
    box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.1);
    background-color: var(--white);
}
.btn-light:active:focus,
.btn-light:active {
    background-color: var(--white);
    box-shadow: inset 0px 2px 5px 1px rgba(0, 0, 0, 0.2);
    padding: 7px 20px 5px 20px;
}

/* Common */
.para-text{
    color: var(--Base-black, #231F20);
    /* text-align: justify; */
    font-family: Raleway;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.sub-heading{
    color: var(--Base-black, #231F20);
    font-family: Raleway;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    text-transform: capitalize;
}
.lg-heading{
    color: #000;
    font-family: Raleway;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/* Banner Section */
.banner-section .bg-color{
    color: #fff;
    background-image: url(../images/Main-section-wrapper.png);
    background-size: cover;
    background-position: center;
    border-radius: 0px 0px 50px 50px;
    border-radius: 20px;
    background-blend-mode: multiply, normal;
    padding-top: 150px;
    padding-bottom: 150px;
}

/* Counting Section */

.counting-section{
    border-radius: 20px;
    padding: 25px 72px;
    background: #F6FEFB;
}

.counting-section .single-countdown h3 span.counter{
    color: #594323;
    text-align: center;
    font-family: Roboto;
    font-size: 74px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}
.counting-section .single-countdown h3{
    color: var(--Brand-color, #008D71);
    text-align: center;
    font-family: Roboto;
    font-size: 64px;
    font-style: normal;
    font-weight: 300;
    line-height: 100%; /* 64px */
}
.counting-section p{
    color: #594323;
    font-family: Raleway;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 10px;
}
.counting-section .single-countdown > span{
    color: #1F1F1F;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.time-container .count{
    border-radius: 8px;
}



/* Footer */

.footer-Section .nav-link{
    color: #000;
    font-family: Raleway;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
}
.footer-Section a.nav-link:hover {
    color: #008D71;
}
ul {
    list-style: none;
}

/* ul.icon-text-list li::marker {
    content: url("../images/check-circle.png");--
    font-family: "Font Awesome 6 Free";
    content: '\f058';
    font-size: 20px;
} */

ul.icon-text-list li {
    position: relative;
    padding-left: 30px; /* Adjust space for icon */
}

ul.icon-text-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px; /* Adjust size */
    height: 20px;
    background: url("../images/check-circle.svg") no-repeat center/contain;
}



.icon-card{
    transition: box-shadow 0.3s ease-in-out;
}


/* Navbar */
.nav-bar *{
    color: var(--Base-black, #231F20);
    font-family: Raleway;
    font-size: 16px;
    font-weight: 600;
}
.navbar-btn .btn{
    color: #FFF;
    border-radius: 8px;
    border: 0px solid #C1CF42;
    background: var(--Primary-Green, #106153);
    backdrop-filter: blur(5px);
    box-shadow: 0px 2px 0px 0px #106153;

    position: relative;
    overflow: hidden;
    display: inline-block;
}

.navbar-btn a.btn.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: slideAnimation 4s linear infinite;
}

@keyframes slideAnimation {
    from {
        left: -100%;
    }
    to {
        left: 100%;
    }
}

.nav-bar-links .nav-link.active {
    color: #106153;
    font-weight: bold;
}
.nav-bar{
    width: 97%;
    top: 20px;
    left: 50%; transform: translateX(-50%);
    border-radius: 12px;
    transition: top 0.6s ease-in-out, box-shadow 0.3s ease-in-out;
}
.nav-bar.scrolled {
    top: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    /* opacity: 0.95; */
}
.collapse-btn{
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.09);
    background: var(--white);
    box-shadow: 0px 1px 3px 0px rgba(11, 19, 36, 0.07), 0px -1px 0px 0px rgba(0, 0, 0, 0.12) inset;
}

/* Submenu */
.dropdown-submenu ul.submenu{
    position: absolute;
    left: 100%;
    background-color: #fff;
    border-radius: 0 6px 6px 6px;
    padding: 5px 0;
    top: 0%;
}

.offcanvas-body .learn-ly::before,
.nav-bar-links .learn-ly::before{
    content: 'New';
    font-size: 12px;
    font-family: Caladea;
    /* background-color: red; */
    /* padding: 0 5px; */
    position: absolute;
    color: red;
    right: -12px;
    top: -8px;
    border-radius: 15px;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.20));
    animation: blink 0.6s infinite alternate;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.2;
    }
}


/* offcanvas */
.offcanvas .nav-link{
    color: #000;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 24px */
    text-transform: capitalize;
}
.offcanvas .nav-bar-links li{
    padding: 10px 0 10px 40px;
}
.offcanvas div.download-app{
    color: var(--Base-black, #231F20);
    font-family: Mulish;
    font-size: 15px;
    font-weight: 700;
}

/* OFF Canvas */
.media-drop,
div.dropdown-menu.wrapper{
    background: transparent;
    border: unset;
    box-shadow: unset;
    padding-top: 22px;
}
ul.dropdown-menu li a{
    padding: 8px 15px !important;
}
.offcanvas-body .nav >ul{
    padding: 0px 20px;
}
.offcanvas-body .nav-item{
    display: flex;
    padding: 8px 30px;
    padding-left: 20px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}
.offcanvas-body .nav-item:hover{
    background-color: #EFF7FF;
    border-radius: 8px;
    /*box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);*/
    font-variation-settings: "wght" 700;
}
.offcanvas-body .nav-item[aria-expanded="true"]{
    background-color: var(--background,#F6F6F9);
    position: relative;
    font-variation-settings: "wght" 700;
}
.offcanvas-body .nav-item[aria-expanded="true"]::after{
    content: "";
    height: 100%;
    width: 5px;
    border-radius: 20px 0px 0px 20px;
    background-color: var(--Primary-blue);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}
.offcanvas-body .nav-item[aria-expanded="true"] .nav-link .fa-chevron-down {
    transform: rotate(180deg);
}
.offcanvas-body .nav-item.active .nav-link .fa-chevron-down{
    transform: rotate(0deg);
}
.offcanvas-body .nav .nav-link{
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1 0 0;
    color: var(--text-black);
}
.offcanvas-body .nav-link span{
    width:100%;
    text-align: left;
}
.offcanvas-body .sub-nav-item{
    border-left: 2px solid #E6E8F1;
}
.offcanvas-body .sub-nav-item.active:before,
.offcanvas-body .sub-nav-item:hover:before{
    opacity:1;
}
.offcanvas-body .sub-nav-item.active,
.offcanvas-body .sub-nav-item:hover{
    border-left: 2px solid var(--Primary-blue);
}
.offcanvas-body .sub-menu-wrapper{
    background-color: #F6F6F9;
}
/*.offcanvas-body .sub-nav-child.active,*/
.offcanvas-body .sub-nav-child:hover{
    border-left: unset;
    background-color: #e3e8e5 ;
    border-radius: 8px
}
.nav-item-wrapper{
    width: 100%;
}
.offcanvas-body ul.sub-nav.nav-child {
    padding: 0 20px 0 50px;
}
.offcanvas-body ul.sub-nav {
    padding-left: 55px;
}
.offcanvas-body .nav-link.child-link {
    padding: 10px;
}

/* ScrollTop Button */
.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: -60px;
    width: 50px;
    height: 50px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transform: rotate(-90deg);
    transition: right 0.3s ease-out, opacity 0.3s ease;
}

.scroll-top-btn.show {
    right: 20px;
    opacity: 1;
}

.scroll-top-btn.show svg {
    animation: bounce 1.5s infinite;
}
@keyframes bounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(4px);
    }
}




@media (max-width:1150px){
    /*Mobile responsive*/
    .nav-bar .navbar-btn,
    .nav-bar .nav-bar-links{
        display: none !important;
    }
    .mobile-btn-container{          
        display: block !important;
    }

    .navbar-btn .btn {
        font-size: 14px;
        padding: 6px 12px;
    }
    .header-logo img{
        height: 40px !important;
    }

    .nav-bar{
        top: 15px !important;
    }
    .testimonialTextSwiper{
        width: 80%;
    }
    .testimonialProfileSwiper{
        width: 50%;
    }
    .testimonial-section .button-prev{
        left:14%;
    }
    .testimonial-section .button-next{
        right:14%;
    }
}

@media (max-width:992px) {
    .lg-heading{
        font-size: 35px;
    }
    .vertical-img>div{
        height:100%;
    }
    .form-border-left{
        border-right: unset;
    }
}
@media (max-width:768px) {
    .nav-bar{
        width: 93%;
    }
    .testimonialTextSwiper{
        width: 100%;
    }
    .accordion-container{
        width: 85%;
    }
    
}
@media (max-width:576px) {
    .scroll-top-btn {
        bottom: 60px;
        right: 10px;
    }

    .testimonialProfileSwiper{
        width: 60%;
    }
    .testimonial-section .button-prev{
        left:0%;
    }
    .testimonial-section .button-next{
        right:0%;
    }
    
}
@media (max-width:468px){
    .nav-bar .nav-link,
    .counting-section p,
    .para-text{
        font-size: 16px !important;
    }
    .counting-section .single-countdown h3,
    .lg-heading{
        font-size: 26px !important;
    }
    h3.lg-heading{
        font-size: 24px !important;
    }
    h4.heading,
    .sub-heading{
        font-size: 16px !important;
    }
    button.btn {
        font-size: 15px !important;
    }

    .scroll-top-btn {
        display: none !important;
    }

    .accordion-container{
        width: 95%;
    }
    
    .faq-section .nav-tabs .nav-item .nav-link{
        padding: 10px;
    }

}

.d-grid.gap-3.vertical-img {
    gap: 6rem !important;
}
.faq-section .nav-tabs .nav-item .nav-link{
    margin-top: 10px;
    margin-bottom: 10px;
}

.footer-ul{
      list-style-type: disc;
      padding-left: 40px;
    }
    
.lg-heading1 {
    color: #000;
    font-family: Raleway;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 767px) {
    .mobile-btn-container {
        display: none !important;
    }
}