/* Base CSS */
html {
    scroll-behavior: smooth;
}

a:focus {
    outline: 0 solid
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    color: #000;
    font-family: "Poppins", sans-serif;
}

body {
    color: #606060;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
}


.selector-for-some-widget {
    box-sizing: content-box;
}

a:hover {
    text-decoration: none
}


/*---------------------- Header area start ----------------------*/

.menu-close {
    font-size: 26px;
    color: #262626;
    position: absolute;
    top: 11px;
    right:  14px;
    cursor: pointer;
    transition: .2s;
    line-height: 1;
}

.menu-close:hover {
    color: #F02769;
}

.offcanvas-area {
    position: fixed;
    left: -100%;
    height: 100%;
    width: 300px;
    background: #F5FCFF;
    z-index: 6;
    padding-top: 35px;
    -webkit-transition: .4s;
    transition: .4s;
    visibility: hidden;
    top: 0;
}

.offcanvas-area.active {
    left: 0;
    visibility: visible;
}

.offcanvas-area .main-menu ul li a {
    font-size: 16px;
    color: #262626;
    display: block;
    transition: .3s;
    text-decoration: none;
    padding: 12px 20px;
    border-bottom: 1px solid #ddd;
}
.offcanvas-area .main-menu ul li:first-child a{
    border-top: 1px solid #ddd;
}
.offcanvas-area .main-menu ul li a:hover,
.offcanvas-area .main-menu ul li a[aria-expanded="true"] {
    color: #08843E;
}

.offcanvas-menu .main-menu ul {
    display: block;
    padding-top: 94px;
    padding-left: 0;
    margin-bottom: 65px;
}

.offcanvas-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .4s;
    transition: .4s;
    z-index: 5;
}

.offcanvas-overlay.active {
    opacity: .4;
    visibility: visible;
}

.menu-open {
    font-size: 28px;
    color: #262626;
    display: none;
    cursor: pointer;
    position: relative;
    top: 0;
    margin-left: 20px;
    margin-right: 8px;
    transition: .3s;
}.menu-open:hover {
	color: #08843e;
}

.offcanvas-menu .common-btn {
    font-size: 17px;
    padding: 9px 30px;
    border-radius: 12px;
}

.subb-menu {
    padding-left: 10px;
}

.offcanvas-area .main-menu .subb-menu a {
    font-size: 16px;
    margin: 0px;
    padding-left: 10px;
    margin-left: 26px;
    margin-bottom: 10px;
}

.offcanvas-area .main-menu .subb-menu a:last-child {
    margin-bottom: 20px;
}

.header {
    padding: 18px 5px;
}

.header-nav ul li a {
    color: #262626;
    text-decoration: none;
    display: inline-block;
    transition: .3s;
    font-weight: 600;
    font-size: 16px;
}

.header-nav ul li a:hover {
    color: #08843E;
}

.header-nav ul li {
    list-style: none;
    margin-left: 60px;
}

.header .container {
    max-width: 1260px;
}

/*---------------------- Header area end ----------------------*/


/*---------------------- Hero area start ----------------------*/
.hero-area {
    background: url(../img/bg/hero-bg\(1\).webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 95px 0;
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    line-height: 1.34;
    max-width: 470px;
    text-shadow: 0px 5px 6px #0000007a;
}

.form-title {
    font-size: 32px;
    color: #fff;
    line-height: 1.23;
    font-weight: 600;
    margin-bottom: 25px;
}


.form-item input {
    height: 60px;
    border-radius: 10px;
    padding: 0 22px;
    font-size: 19px;
    border: 0 !important;
    background: #fff;
    box-shadow: unset !important;
    font-weight: 300;
}

.form-item {
    margin-bottom: 21px;
}

.hero-form {
    max-width: 470px;
    margin-left: 12px;
}

.theme-btn {
    background-color: #141414;
    padding: 18px 25px;
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.32;
    display: inline-block;
    transition: .3s;
    color: #fff;
    border: 0;
    text-align: center;
}

.form-submit .theme-btn {
    min-width: 211px;
}

.form-submit {
    padding-top: 15px;
}

.theme-btn:hover {
    background: #262626;
    color: #fff;
}

.hero-form-wrap {
    max-width: 500px;
    padding: 12px 0;
}

/*---------------------- Hero area end ----------------------*/

/*---------------------- Achievement area start ----------------------*/
.py-80 {
    padding: 80px 0;
}

.section-title {
    padding-bottom: 35px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title h4 {
    font-size: 23px;
    font-weight: 600;
    line-height: 1.49;
    margin-bottom: 14px;
    font-family: "Open Sans", sans-serif;
}

.section-title p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
}

.content-list li {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 27px;
    line-height: 1.5;
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 15px
}

.content-list li span {
    color: #266055;
}

.achievement-thumb {
    padding: 0px 18px;
}

/*---------------------- Achievement area end ----------------------*/


/*---------------------- How Work area start ----------------------*/
.how-work-area {
    background: #A1DB87;
}

.how-work-card {
    background: #fff;
    border-radius: 30px;
    padding: 50px 20px;
    max-width: 1015px;
    margin: 0 auto;
    margin-bottom: 70px;
    text-align: center;
}

.how-work-card:last-child {
    margin-bottom: 0;
}

.how-work-card p {
    font-size: 24px;
    line-height: 1.55;
}

.how-work-card h3 {
    font-size: 39px;
    margin-bottom: 32px;
}

.how-work-card-content {
    max-width: 810px;
    margin: 0 auto;
}

/*---------------------- How Work area end ----------------------*/


/*---------------------- Testimonial area start ----------------------*/
.testimonial-area {
    padding: 100px 0;
    background: url(../img/bg/grass-bg.webp);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.testimonial-slide {
    background: #fff;
    border: 1px solid #ddd;
    padding: 35px 28px;
    height: 100%;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.testimonial-slide p {
    font-size: 16px;
    line-height: 1.6;
    min-height: 120px;
}

.testimonial-slide h6 {
    margin-bottom: 4px;
    font-weight: 400;
}

.testimonial-slider {
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.owl-dots {
    display: none;
}

.owl-nav>* {
    position: absolute;
    top: 50%;
    left: -65px;
    font-size: 33px !important;
    color: #8E8B8B !important;
    transition: .3s;
    line-height: 1 !important;
    transform: translateY(-50%);
    z-index: 4;
}

.owl-nav>*:last-child {
    left: auto;
    right: -65px;
}

.owl-nav>*:hover {
    color: #08843E !important;
}

/*---------------------- Testimonial area end ----------------------*/


/*---------------------- FAQ area start ----------------------*/
.faq-area {
    background: url(../img/bg/faq-bg-min.webp);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    padding: 100px 0;
}

.accordion-item {
    background: #08843E;
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
}

.accordion-item .accordion-button {
    background: transparent !important;
    box-shadow: unset !important;
    border: 0 !important;
    color: #fff !important;
    position: relative;
    transition: .2s;
    font-weight: 500 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;

}

.accordion-collapse {
    transition: height 0.35s ease;
}

.accordion-item .accordion-button i {
    display: inline-block;
    transition: .18s;
}

.accordion-item .accordion-button[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.accordion-item .accordion-button[aria-expanded="true"] .fa-plus::before {
    content: "\f068";
}

.accordion-item .accordion-button::after {
    display: none;
}

.accordion-item .accordion-body {
    padding-top: 1px;
    color: #fff;
    font-weight: 400;
    line-height: 1.6;
}

/*---------------------- FAQ area end ----------------------*/


/*---------------------- Footer area start ----------------------*/
.footer {
    padding-top: 40px;
    padding-bottom: 28px;
}

.cta-wrapper {
    background: #262626;
    padding: 28px 41px;
    justify-content: space-between;
    border-radius: 10px;
}.cta-submit .theme-btn:hover {
	background: #08843e;
	color: #fff;
}

.cta-wrapper h3 {
    font-size: 31px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 11px;
    color: #fff;
}

.cta-wrapper p {
    font-size: 19px;
    color: #fffffe;
    margin: 0;
}

.cta-form input {
    width: 215px;
    margin-right: 19px;
}

.cta-submit .theme-btn {
    background: #fff;
    color: #262626;
    line-height: 1.15;
}

.copyright {
    color: #727272;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    padding-top: 35px;
    text-align: center;
}

.footer-left p {
    color: #14141494;
    margin-top: 18px;
    margin-bottom: 0;
}
.footer-wrapper {
	padding-top: 75px;
}
/*---------------------- Footer area end ----------------------*/

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4CAF50; /* Green for success */
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-size: 16px;
    transition: all 0.5s ease;
}

.notification.error {
    background-color: #f44336; /* Red for error */
}

.notification-close {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    float: right;
}

.notification-close:hover {
    color: #ddd;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    padding: 10px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
}
