* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
body {
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Header */
header {
    background: #fff;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.logo img {
    height: 40px;
}
.nav-links {
    display: flex;
    gap: 20px;
}
.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}
.nav-links a:hover {
    color: #1a5c38;
}
.burger {
    display: none;
    font-size: 1.5em;
    color: #333;
    cursor: pointer;
}

/* General Section Styles */
section {
    padding: 50px 20px;
}
h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}
p {
    font-size: 1em;
    color: #666;
}
.btn {
    padding: 10px 20px;
    background: #1a5c38;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}
.btn:hover {
    background: #134a2c;
}

.hero {
    background: #1a5c38;
    color: #fff;
    padding: 100px 20px;
    position: relative;
 
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}
.hero-content {
    flex: 1;
}
.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #fff;
}
.hero-image {
    flex: 1;
}
.hero-image img {
    width: 100%;
    max-width: 400px;
}

/* Services Section */
.services {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.service-item {
    padding: 20px;
    background: #e5ffea;
    border-radius: 10px;
    text-align: center;
}
.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
   max-height: 250px;
   border-radius: 10px;
    margin-bottom: 10px;
}
.service-item h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Fix Issues Section */
.fix-issues {
    background: #1a5c38;
    color: #fff;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}
.fix-issues-content {
    flex: 1;
}
.fix-issues-content h2 {
    color: #fff;
}
.fix-issues-content ul {
    list-style: none;
}
.fix-issues-content ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.fix-issues-content ul li i {
    color: #fff;
}
.fix-issues-image {
    flex: 1;
}
.fix-issues-image img {
    width: 100%;
    max-width: 400px;
}

/* About Section */
.about {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}
.about-image {
    flex: 1;
}
.about-image img {
    width: 100%;
    max-width: 400px;
}
.about-content {
    flex: 1;
}

/* Rebates Section */
.rebates {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.rebates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.rebate-item {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
}
.rebate-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}
.rebate-item ul {
    list-style: none;
}
.rebate-item ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.rebate-item ul li i {
    color: #1a5c38;
}

/* Our Services Section */
.our-services {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.our-services p{
    color: #fff;
}
.our-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}
.our-service-item {
    padding: 20px;
    background: #1a5c38;
    color: #fff;
    border-radius: 10px;
    text-align: left;
}
.our-service-item i {
    font-size: 2em;
    margin-bottom: 10px;
}
.our-service-item h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #fff;
}

/* Testimonials Section (Slider) */
.testimonials {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.testimonials-slider {
    position: relative;
    overflow: hidden;
}
.testimonials-slides {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-slide {
    min-width: 100%;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.testimonial-item {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.testimonial-item img {
    width: 100%;
    max-width: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.testimonial-item p {
    font-style: italic;
}
.testimonial-item .author {
    font-weight: bold;
    margin-top: 10px;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1a5c38;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}
.slider-dot.active {
    background: #1a5c38;
}

/* FAQ Section */
.faq {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.faq-item {
    margin-bottom: 20px;
    text-align: left;
}
.faq-item h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    cursor: pointer;
}
.faq-item p {
    display: none;
}
.faq-item.active p {
    display: block;
}

/* Footer */
footer {
    background: #fff;
    color: #666;
    padding: 20px;
    text-align: center;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 20px;
}
.footer-grid a {
    color: #666;
    text-decoration: none;
}
.footer-grid a:hover {
    color: #1a5c38;
}
.footer-grid h3 {
    margin-bottom: 10px;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .service-item {
        padding: 20px;
        background: #e5ffea;
        border-radius: 10px;
        text-align: center;
        height: min-content;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .burger {
        display: block;
    }
    .hero, .fix-issues, .about {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 2em;
    }
    .hero p {
        font-size: 1em;
    }
    .services-grid, .rebates-grid, .our-services-grid, .testimonial-slide {
        grid-template-columns: 1fr;
    }
}
a{
    text-decoration: auto;
}
html,body{
    display: flex;
    flex-direction: column;
    height: 100%;
}
a{
    text-decoration: none;
}
.f{
    display: flex;
}
.f-col{
   flex-direction: column;
}
.f-wrap{
    display: flex;
    flex-wrap: wrap;
}
.f-star{
    align-items:flex-start
}
.b.f {
    display: flex
;

    justify-content: space-around;
}
@media screen and (max-width:768px) {
    .f{
       flex-wrap: wrap;
    }
    .map img{
width: 100%;
}
.map p{
width: 100%;
}
.b.f{
    flex-direction: column;
}
}
form#frm {
    display: flex
;
    max-width: 500px;
    /* gap: 10px; */
    gap: 20px;
    margin-top: 30px;
    margin: 0 auto;
    margin-top: 20px;
    flex-direction: column;
}
textarea,
input{
    padding: 10px;
    border: 3px solid #0b0b0c;
    border-radius: 10px;
}
form .btn{
    text-transform: uppercase;
    width: fit-content;
    margin: 0 auto;
    cursor: pointer;
    background: #171817;
    padding: 15px 25px;
}
textarea{
    height: 200px;
}
.services-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-item {
    width: 23%; /* Adjust the width as needed */
    margin-bottom: 40px; /* Space between items */
    text-align: center; /* Center content */
}

.service-item img {
    width: 100%;
    height: auto;
    display: block;
}

.service-item h3 {
    font-size: 1.5em;
    margin-top: 15px;
}

.service-item p {
    font-size: 1em;
    margin: 10px 0;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1a5c38;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

/* Ensure the buttons are properly aligned */
.service-item .btn {
    margin-top: 20px;
    display: inline-block;
}