* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
ul,
li {
    font-family: "Inter", sans-serif !important;
}



.faq-question,
.faq-answer {
    font-family: "Inter", sans-serif !important;
}


/* Navigation Styles */
.navbar {
    background: #fff;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #2d6b3d;
    font-size: 1.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-menu a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
    font-size: 18px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #90c695;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Page Styles */
.page {
    display: none;
    padding-top: 80px;
    min-height: 100vh;
}

.page.active {
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Simple Slider Styles */
.slider-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    height: 400px;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d6b3d 0%, #90c695 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    display: flex;
}

.slide-content {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 600px;
}

.slide h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.slide p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.slider-dots {
    text-align: center;
    padding: 20px;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #fff;
}

/* Inner Page Banner */
.page-banner {
    /* background: linear-gradient(135deg, #2d6b3d 0%, #90c695 100%); */
    color: white;
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2d6b3d 0%, #90c695 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.benefit-item h3 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 22px;
}

.benefit-item p {
    font-size: 18px;
    opacity: 0.9;
}

.cta-button {
    background: #2d6b3d;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(45, 107, 61, 0.3);
}

.cta-button:hover {
    background: #1f4a2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 107, 61, 0.4);
    color: #fff;
    text-decoration: none;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section:nth-child(even) {
    background: #f8fdf9;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d6b3d;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.step {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(45, 107, 61, 0.1);
    border: 2px solid #e8f5ea;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 107, 61, 0.15);
}

.step-number {
    background: #2d6b3d;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    margin-bottom: 1rem;
    color: #2d6b3d;
    font-size: 1.3rem;
}

/* FAQ Section */
.faq-item {
    margin: 1rem 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8f5ea;
    font-family: "Inter", sans-serif !important;
}

.faq-question {
    background: #2d6b3d;
    color: white;
    padding: 1.2rem;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
    font-family: "Inter", sans-serif !important;
}

.faq-question:hover {
    background: #1f4a2a;
}

.faq-answer {
    padding: 1.2rem;
    display: none;
    background: #f8fdf9;
    border-top: 1px solid #e8f5ea;
    font-family: "Inter", sans-serif !important;
}

.faq-answer.active {
    display: block;
}


/* FAQ Section Styles */
#faq-section {
    padding: 60px 20px;
   background-image: url('./images/Sell-Your-Land-banner-20250717130905.jpg');
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2d6b3d;
    font-weight: 700;
}

.faq-image img {
    width: 100%;
    height: auto;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    background-color: #2d6b3d;
    color: #fff;
    padding: 15px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 5px;
    /* margin-bottom: 10px; */
    font-size: 18px;
}

.faq-answer {
    display: none;
    /* Hidden by default */
    background-color: #e0e0e0;
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.faq-question.active+.faq-answer {
    display: block;
    /* Show the answer when the question is clicked */
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2d6b3d;
    color: white;
    padding: 1.2rem;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
    border-radius: 8px;
  }
  
  .faq-icon {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
  }
  
  .faq-icon.rotate {
    transform: rotate(180deg);
  }
  
/* Testimonials */
.testimonials {
    background: #f8fdf9;
    padding: 4rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(45, 107, 61, 0.1);
    border: 2px solid #e8f5ea;
    transition: transform 0.3s;
}

.testimonial:hover {
    transform: translateY(-3px);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial-author {
    font-weight: bold;
    color: #2d6b3d;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-heading{
    color: #2d6b3d;
}

.contact-item h3 {
    color: #2d6b3d;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-form {
    max-width: 600px;
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(45, 107, 61, 0.1);
    border: 2px solid #e8f5ea;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #2d6b3d;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e8f5ea;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2d6b3d;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}



.about-content {
    padding: 2rem;
}

.about-content h2 {
    color: #2d6b3d;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
    text-align: left;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 107, 61, 0.2);
}

.about-image img {
    width: 100%;
    /* height: 500px; */
    object-fit: cover;
    display: block;
}


.main-aboutimg
{
    height: 500px;
}

/* Footer */
.footer {
    background: #2d6b3d;
    color: white;
    text-align: center;
    padding: 20px;
}

.footer p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
/* @media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .main-aboutimg {
        height: auto;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #2d6b3d;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .slide h2 {
        font-size: 1.8rem;
    }

    .slide-content {
        padding: 2rem;
    }

    .slider-container {
        height: 300px;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .slider-nav {
        display: none;
    }
} */
/* .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 25px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: black;
    margin: 3px 0;
    transition: 0.4s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
@media (max-width: 768px) {
    .nav-menu {
        display: flex !important;
      }
    body.menu-open {
        overflow: hidden;
    }
    .hamburger {
        display: flex;         
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
        width: 30px;
        height: 25px;
        justify-content: center;
        align-items: center;
      }
    
      .hamburger span {
        height: 3px;
        width: 100%;
        background: black;
        margin: 3px 0;
        transition: 0.4s ease;
        border-radius: 2px;
      }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        flex-direction: column;
        background: white;
        width: 80%;
        text-align: center;
        transition: 0.3s ease-in-out;
        padding: 3rem 1rem;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link {
        color: black;
        font-size: 1.2rem;
        text-decoration: none;
        padding: 0.5rem 1rem;
        display: inline-block;
    }

    .nav-link.active {
        
        color: #2d6b3d;
        border-radius: 4px;
    }

  
} */
/* Base hamburger styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 25px;
    justify-content: center;
    align-items: center;
    position: relative; /* Add this for better positioning */
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: black;
    margin: 3px 0;
    transition: 0.4s ease;
    border-radius: 2px;
    transform-origin: center; /* Better rotation point */
}

/* Cross/X animation when active */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile styles */
@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
        width: 30px;
        height: 25px;
        justify-content: center;
        align-items: center;
    }
    
    .hamburger span {
        height: 3px;
        width: 100%;
        background: black;
        margin: 3px 0;
        transition: 0.4s ease;
        border-radius: 2px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        flex-direction: column;
        background: white;
        width: 80%;
        text-align: center;
        transition: 0.3s ease-in-out;
        padding: 3rem 1rem;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        display: flex; /* Ensure it's flex for mobile */
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link {
        color: black;
        font-size: 1.2rem;
        text-decoration: none;
        padding: 0.5rem 1rem;
        display: inline-block;
        transition: color 0.3s ease; /* Smooth color transition */
    }

    .nav-link.active {
        color: #2d6b3d;
        border-radius: 4px;
    }
    
    .nav-link:hover {
        color: #2d6b3d;
    }
}
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .slide h2 {
        font-size: 1.5rem;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .slide-content {
        padding: 1.5rem;
    }
}


.main-content h1 {
    color: #2d6b3d;
    font-size: 2rem;
    text-align: center;
}




.how-it-works-infographic {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;

}

.navbar {
    padding: 0px !important;
}

.footer a {
    color: #fff;
    text-decoration: none;
}



.contact-section {

    align-items: flex-start;
    margin-top: 2rem;
}

/* .contact-info-box {
    flex: 1 1 40%;
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
} */

.contact-form {
    flex: 1 1 55%;
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.contact-item {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 10px;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #2d6b3d;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

textarea {
    min-height: 120px;
}


.contact-banner {
    position: relative;
    background-image: url('images/Banner-last.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    color: white;
}

.contact-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.contact-banner h1 {
    position: relative;
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
    z-index: 2;
}


.about-banner {
    position: relative;
    background-image: url('images/About-us-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    color: white;
}

.about-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.about-banner h1 {
    position: relative;
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
    z-index: 2;
}

.how-it-works-banner {
    position: relative;
    background-image: url('images/Banner-property-how-it-work.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    color: white;
}


.how-it-works-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.how-it-works-banner h1 {
    position: relative;
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
    z-index: 2;
}

.sell-land-banner {
    position: relative;
    background-image: url('images/Banner-sell.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    color: white;
}
.why-choose-banner{
    position: relative;
    background-image: url('images/Banner-5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    color: white;
}
.why-choose-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.why-choose-banner h1 {
    position: relative;
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
    z-index: 2;
}
.sell-land-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}


.sell-land-banner h1 {
    position: relative;
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
    z-index: 2;
}

.testimonials-contact-banner {
    position: relative;
    background-image: url('images/Customer-Testimonials.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    color: white;
}


.testimonials-contact-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.testimonials-contact-banner h1 {
    position: relative;
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
    z-index: 2;
}


.contact-free-cash {
    display: flex;
    justify-content: center;
    align-items: center;
}


.carousel-caption h2 {
    font-size: 40px;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 22px;
}



.benefits {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.benefit-item {
    text-align: center;
    flex: 1;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}



.benefit-item i {
    color: #fff;
    margin-bottom: 20px;
}

.contact-detail-cash h2 {
    font-size: 51px;
    font-weight: 600;
}

.contact-detail-cash .contact-para {
    font-size: 16px;
    margin-top: 10px;
}


.contact-detail-cash .contact-para2 {
    margin-top: 15px;
}

.phone-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.email-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

#faq-section .row {
    display: flex;
    align-items: center !important;
}

.aboutpage-row {
    display: flex;
    align-items: center;
}

@media (max-width:768px) {
    .how-it-works-infographic img {
        width: 100% !important;
    }
    .how-it-works-infographic{
        padding: 0px;
    }
    .benefits {
        display: flex;
        justify-content: space-between;
        gap: 30px;
        flex-direction: column;
    }
.email-text{
    word-break: break-word;
    overflow-wrap: break-word;
}
    .hamburger {
        background: green;
    }
    .why-choose-banner h1,
    .how-it-works-banner h1,
    .sell-land-banner h1,
    .testimonials-contact-banner h1,
    .contact-banner h1,
    .about-banner h1 {
        font-size: 2rem !important;
    }

    .nav-menu {
        gap: 0rem !important;
    }

    .carousel-caption h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .carousel-caption p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .carousel-item img {
        height: 250px;
        object-position: center center;
    }

    .carousel-caption {
        bottom: 10px;
        left: 0;
        right: 0;
        width: 100%;
        transform: translate(0, 0);
        padding: 10px;
    }

    .carousel-caption h2,
    .carousel-caption p {
        text-align: center;
        width: 100%;
        padding: 0 10px;
    }
}

.benefit-item img {
    margin-bottom: 20px;
}

/* ==========
 */
 .about-content p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.5rem;
  }
  
  .icon-circle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border: 2px solid #28a745; /* green border */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent; /* transparent circle */
  }
  
  .icon-circle i {
    color: #28a745; /* green icon */
    font-size: 18px;
  }

.feature-one__box__icon {
    width: 73px;
    height: 73px;
    border-radius: 50%;
    font-size: 32px;
    color: #28a745; /* Icon color (green) */
    display: inline-flex; /* Ensures it aligns inline with text */
    align-items: center;
    justify-content: center;
    background-color: #F7F5F1; /* Light background */
    position: relative; /* Relative for ::after to work */
    flex-shrink: 0;
    z-index: 2;
    transition: all 400ms ease;
    line-height: 1; /* Important: avoid vertical stretching */
  }

  .feature-one__box__icon i {
    z-index: 1;
    color: #28a745; /* Green icon */
    font-size: 28px;
    line-height: 1;
  }



  .contact-info-wrapper {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s ease;
    height: 100%;
  }
  
  .contact-item-box {
    background-color: #f8f9fa;
    border: 1px solid #e1e1e1;
    transition: all 0.3s ease;
    height: 35%;
    align-items: center;
    text-align: center;
  }
  
  .contact-item-box:hover {
    background-color: #e8f5e9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  }
  

  .hero-banner {
    position: relative;
    overflow: visible;
    height: 700px;
  }
  
  .banner-image {
    object-fit: cover;
    height: 100%;
  }
  
  .banner-text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 700px;
    z-index: 2;
    position: absolute;
    text-align: center;
  }
  
  .banner-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
  }
  
  .banner-text p {
    font-size: 1.25rem;
    margin-top: 1rem;
  }
  
  .form-overlap-wrapper {
    width: 40%;
    position: absolute;
    top: 25%;
    left: 74%;
    transform: translateX(-50%);
    z-index: 5;
  }
  /* @media (max-width: 768px) {
    .form-overlap-wrapper {
      position: absolute;
      transform: none;
      margin-top: 2rem;
      width: 100%;
    }
    .banner-text {
        top: 10%;
        left: 5%;
        transform: translateY(-50%);
        max-width: 500px;
        z-index: 2;
      }
  } */
  @media (max-width: 768px) {
    .form-overlap-wrapper {
      position: static !important;
      transform: none !important;
      width: 100% !important;
      margin-top: 2rem;
      padding: 0px;
      /* width: 100%;
      position: absolute;
     bottom: 5%;
      left: 0;
      transform: translateX(-50%); */
    }
  
    .contact-form-box {
      width: 100%;
    }
  .contact-form{
    margin-top: 10px;
  }
    .hero-banner {
      height: 700px;
      padding-bottom: 2rem;
    }
    .banner-text h2 {
       color: #fff;
      }
    .banner-text {
      position: static;
      transform: none;
      text-align: center;
      padding: 1.5rem 1rem 0;
      /* background: linear-gradient(135deg, #2d6b3d 0%, #90c695 100%); */
    }
   
  }
  
  .contact-form-box {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  }
  
  .contact-form-box .form-group {
    margin-bottom: 1rem;
  }
  
  .contact-form-box input,
  .contact-form-box textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }

  @media (max-width: 768px) {
    .banner-text {
      /* position: relative;
      text-align: center;
      left: 0; */
      transform: none;
      padding: 2rem 1rem;
      position: absolute;
      text-align: center;
      left: 0;
      top: 10%;
    }
  
    .form-overlap-wrapper {
      margin-top: 2rem;
      padding: 1rem;
    }
  
    .banner-image {
      height: 100%;
    }
  }
  .custom-checklist {
    list-style: none;
    margin-top: 1rem;
  }
  
  .custom-checklist li {
    margin-bottom: 0.75rem;
  }
  
  .check-item {
    display: inline-flex;
    align-items: center;
    /* background-color: rgba(255, 255, 255, 0.15); */
   
    background-color: #2d6b3d99;;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    width: 305px;
  }
  
  .check-item i {
    color: #28a745; /* Green tick */
    margin-right: 10px;
    font-size: 1.1rem;
  }
  .homegreenbanner{
    padding-top: 250px;
  }

  .choose-us-list {
    list-style: none;
    padding: 0;
    /* max-width: 800px; */
    margin: 0 auto;
  }
  
  .choose-us-list li {
    position: relative;
    padding: 0.5rem 1rem 1rem 2.5rem;
    /* margin-bottom: 1rem; */
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    font-weight: 500;
    /* background: rgba(255, 255, 255, 0.7); */
    border-radius: 6px;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04); */
    display: flex;
    align-items: flex-start;
  }
  
  .choose-us-list li i {
    position: absolute;
    left: 1rem;
    top: 1.2rem;
    color: #28a745;
    font-size: 1.1rem;
  }
  .whychooseimg{
    height: 500px;
  }
  /* Responsive font and spacing */
  @media (max-width: 768px) {
    .choose-us-list li {
      font-size: 1rem;
      padding: 0.9rem 0.9rem 0.9rem 2.2rem;
    }
    .whychooseimg{
        height: 400px;
      }
    .choose-us-list li i {
      top: 1rem;
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .choose-us-list li {
      font-size: 0.95rem;
      padding: 0.8rem 0.8rem 0.8rem 2rem;
    }
  
    .choose-us-list li i {
        top: 1.5rem;
        left: 10px;
        font-size: 0.95rem;
    }
  }
  
  .custom-color{
    color: #e9ecef;
  }
  