:root {
    --primary-color: #324B42;
    --secondary-color: #1a1a1a;
    --accent-color: #66BB6A;
    --text-color: #333;
    --bg-color: #FFFFFF;
    --bg-alternate: #e4e5e4;
    --border-color: #e0e0e0;
    --font-family: 'Helvetica Neue', sans-serif;
    --container-width: 1140px;
    --border-radius: 8px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --header-height: 80px
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

table,
td {
    border: 1px solid #999;
    padding: 10px
}

tr {
    display: table-row;
    vertical-align: inherit;
    unicode-bidi: isolate;
    border-color: inherit
}

table,
td {
    border: 1px solid #999;
    padding: 10px
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    font-size: 16px;
    padding-top: var(--header-height)
}

h1,
h2,
h3 {
    color: var(--secondary-color);
    margin-bottom: .75em;
    line-height: 1.3
}

h1 {
    font-size: 3rem;
    font-weight: 800
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center
}

h3 {
    font-size: 1.5rem;
    font-weight: 600
}

p {
    margin-bottom: 1em
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease
}

a:hover {
    color: #246f47
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

ul {
    list-style: none
}

button {
    font-family: inherit;
    cursor: pointer
}
.container50{
    display:flex;
    flex-wrap: wrap;
}
.container4060{
    display:flex;
    flex-wrap: wrap;
}
.col40{
  flex: 1 1 40%; /* 50% width on larger screens */
  box-sizing: border-box;
  padding: 15px;
}
.col60{
    flex: 1 1 60%; /* 50% width on larger screens */
  box-sizing: border-box;
  padding: 15px;
}

.container50 > div {
  flex: 1 1 50%; /* 50% width on larger screens */
  box-sizing: border-box;
  padding: 15px; /* optional spacing */
}
@media (max-width: 768px) {
  .container50 > div {
    flex: 1 1 100%; /* full width on smaller screens */
  }
  .overview-image{
    width: 100% !important;

}
.col40{
  flex: 1 1 100%; /* 50% width on larger screens */
  box-sizing: border-box;
  padding: 15px;
}
.col60{
    flex: 1 1 100%; /* 50% width on larger screens */
  box-sizing: border-box;
  padding: 15px;
}
}
.centered-content {
    text-align: center;
    justify-content: center;
}
.container {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px
}
.caption{
    font-size:11px;
}
.section-padding {
    padding: 80px 0
}

.alternate-bg {
    background-color: var(--bg-alternate)
}

.section-title {
    margin-bottom: 25px
}

.cta-button,
.btn-primary,
.btn-secondary {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    border: 2px solid #fff0;
    text-align: center
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff
}

.btn-primary:hover {
    background-color: #246f47;
    color: #fff;
    transform: translateY(-2px)
}

.btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: #fff
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px)
}

.nav-button {
    padding: 10px 20px !important;
    border-radius: 5px;
    color: #fff !important;
    border: 2px solid #2F6242;
    color: #2F6242 !important;
    background: #fff
}

.nav-button:hover {
    background: #2F6242;
    color: #fff !important
}

.header {
    background-color: var(--bg-color);
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgb(0 0 0 / .05)
}

.colorWhite {
    color: #fff
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%
}

.logo img {
    height: 58px;
    max-height: 58px
}

.main-nav {
    display: flex
}

.main-nav ul {
    display: flex;
    gap: 32px
}

.main-nav a {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 16px;
    padding: 5px 0
}

.main-nav a:hover {
    color: var(--primary-color)
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer
}

.menu-icon {
    width: 28px;
    height: 28px;
    color: var(--secondary-color);
    fill: currentColor
}

@media (max-width:991px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 80%;
        height: 100vh;
        background-color: var(--bg-color);
        box-shadow: -5px 0 15px rgb(0 0 0 / .1);
        padding: calc(var(--header-height) + 40px) 40px 40px 40px;
        transition: right 0.4s cubic-bezier(.23, 1, .32, 1);
        z-index: 999;
        overflow-y: auto
    }
    .main-nav.is-active {
        display: block;
        right: 0
    }
    .main-nav ul {
        flex-direction: column;
        gap: 25px
    }
    .main-nav a {
        font-size: 1.1rem;
        display: block
    }
    .menu-toggle {
        display: block;
        z-index: 1001
    }
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 40px 0 40px;
    width: 100%;
    ;
    color: #fff;
    height: 620px
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff
}

.hero p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #f0f0f0;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px
}

.hero-image {
    display: none
}

@media (max-width:767px) {
    .hero {
        padding: 60px 20px;
        background-size: cover;
        color: #1a1a1a;
        min-height: auto
    }
    .hero h1 {
        font-size: 28px;
        color: #fff
    }
    .hero p {
        font-size: 16px;
        color: #fff;
        max-width: 400px;
        margin-bottom: 30px
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px
    }
    .hero-buttons a {
        width: 80%;
        max-width: 300px;
        padding: 12px 24px
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px
}
.season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px
}

.service-card {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgb(0 0 0 / .1)
}

.service-image {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden
}

.service-image img {
    height: 150px;
    width: 100%
}

.service-content {
    padding: 15px
}

.service-card h3 {
    margin-bottom: 15px
}

.service-buttons {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px
}

.learn-more {
    color: var(--primary-color);
    font-weight: 600;
    padding: 8px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 5px
}

.testimonials {
    background: var(--bg-alternate);
}

.testimonial-card {
    background-color: var(--bg-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto;
    text-align: center
}

.testimonial-card2 {
    background-color: var(--bg-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: none
}

.testimonial-card2.active {
    background-color: var(--bg-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: block
}

.testimonial-card blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    text-align: left
}

.testimonial-card cite {
    font-style: normal;
    color: var(--secondary-color)
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-prev,
.testimonial-next {
    background-color: #fff0;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0 15px;
    padding-top: 16px;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    margin: 0 20px;
    padding-top: 16px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #444;
    cursor: pointer;
    transition: var(--transition)
}

.dot.active {
    background-color: var(--primary-color)
}

.contact-subtitle {
    text-align: center;
    max-width: 80%;
    color: #fff;
    margin: 40px auto 40px auto
}

.section-subtitle {
    text-align: center;
    margin-bottom: 25px
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap
}

@media (max-width:991px) {
    h1 {
        font-size: 2.5rem
    }
    h2 {
        font-size: 2rem
    }
    .section-padding {
        padding: 60px 0
    }
}

@media (max-width:767px) {
    h1 {
        font-size: 2rem
    }
    h2 {
        font-size: 1.75rem
    }
    .section-padding {
        padding: 50px 0
    }
    .section-title {
        margin-bottom: 40px
    }
    .services-grid {
        grid-template-columns: 1fr
    }
    .contact-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center
    }
    .contact-buttons .cta-button {
        width: 80%;
        max-width: 300px
    }
}

.service-icon,
.benefit-icon,
.check-icon,
.menu-icon {
    fill: currentColor
}

.features-section {
    max-width: 100%;
    margin: 0;
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgb(0 0 0 / .04)
}

.features-section h2 {
    font-size: 2.25rem;
    color: #1a1a1a;
    margin-bottom: 15px
}

.features-section p.subtext {
    color: #555;
    font-size: 16px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}
.services p.subtext {
    color: #555;
    font-size: 16px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px
}

@media (min-width:769px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

.feature-card {
    background-color: #f1f3f4;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgb(0 0 0 / .04);
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease
}

.feature-card:hover {
    transform: translateY(-5px)
}

.feature-icon {
    margin-bottom: 10px;
    display: inline
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a
}

.feature-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6
}

@media (max-width:600px) {
    .features-section {
        margin: 40px auto;
        padding: 40px 15px
    }
    .features-section h2 {
        font-size: 26px
    }
    .testimonial-min-height{
    min-height: 300px !important;
}

}

.stats-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 60px 20px;
    background: #324B42
}

.stat-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgb(0 0 0 / .06);
    padding: 20px 20px;
    text-align: center;
    width: 240px;
    border: 2px solid #ddd;
    transition: transform 0.3s ease
}

.location-content p {
    font-size: 15px;
    color: #555;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: wrap;
    display: -webkit-box;
    overflow: hidden
}

.service-content p {
    font-size: 15px;
    color: #555;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: wrap;
    display: -webkit-box;
    overflow: hidden
}

.stat-card:hover {
    transform: translateY(-5px)
}

.stat-icon {
    margin-bottom: 15px !important;
    width: 45px;
    margin: 0 auto
}

.stat-value {
    font-size: 32px;
    color: #2e8b57;
    font-weight: 700;
    margin-bottom: 0
}

.stat-title {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px
}

.stat-description {
    font-size: 14px;
    color: #555;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: wrap;
    display: -webkit-box;
    overflow: hidden
}

@media (max-width:768px) {
    .stat-card {
        width: 100%;
        max-width: 300px
    }
}

.service-areas-section {
    max-width: 1200px;
    margin: 60px auto;
    overflow: hidden
}

.service-areas-section h2 {
    font-size: 2.25rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: left
}

.service-areas-section p.subtext {
    color: #555;
    font-size: 16px;
    margin-bottom: 40px
}

.service-areas-content {
    width: 48%;
    margin-right: 2%;
    float: left
}

.service-areas-map {
    width: 48%;
    margin-left: 2%;
    float: left
}

.area-paragraphs {
    text-align: left;
    font-size: 15px;
    color: #333;
    line-height: 1.6
}

.area-paragraphs p {
    margin-bottom: 1rem
}

.area-paragraphs span {
    font-weight: 700;
    color: #2e8b57
}

.view-button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 22px;
    background-color: #2e8b57;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease
}

.view-button:hover {
    background-color: #246f47
}

@media (max-width:600px) {
    .service-areas-section {
        padding: 40px 15px;
        margin: 40px auto
    }
    .service-areas-section h2 {
        font-size: 26px
    }
}

.footer {
    background-color: #111;
    color: #f5f5f5;
    padding: 60px 20px 30px
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;

}

.footer-col {
    flex: 1 1 200px;
    min-width: 180px
}

.footer h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff
}

.footer p,
.footer a {
    font-size: 14px;
    color: #dcdcdc;
    text-decoration: none;
    margin-bottom: 8px;
    display: block
}

.footer a:hover {
    color: #2e8b57
}

.footer .brand {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px
}

.footer .slogan {
    font-size: 14px;
    color: #2e8b57;
    margin-bottom: 20px
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #888;
    border-top: 1px solid #333;
    padding-top: 30px
}

.social-icons {
    margin-top: 15px
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #f5f5f5
}

.social-icons a:hover {
    color: #2e8b57
}

@media (max-width:768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start
    }
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgb(255 255 255 / .1);
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition)
}

.contact {
    background: #324B42
}

.contact .section-title {
    color: #fff
}

.process-section {
    max-width: 1000px;
    margin: 60px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgb(0 0 0 / .04);
    padding: 40px 40px
}

.process-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 10px
}

.process-section .subtitle {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 40px
}

.step {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px
}

.step::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 45px;
    bottom: -35px;
    width: 2px;
    background: #dcdcdc
}

.step:last-child::before {
    display: none
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #324B42;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1
}

.step-content {
    padding-top: 5px
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a
}

.step-description {
    font-size: 15px;
    color: #555;
    line-height: 1.6
}

@media (max-width:600px) {
    .process-section {
        padding: 40px 15px;
        margin: 40px auto
    }
    .process-section h2 {
        font-size: 26px
    }
    .step {
        padding-left: 50px
    }
    .step::before {
        left: 14px
    }
}

@media (min-width:300px) and (max-width:900px) {
    .service-areas-content {
        width: 100% !important;
        margin-right: 0 !important;
        float: none;
        margin-bottom: 20px
    }
    .service-areas-map {
        width: 100% !important;
        margin-left: 0 !important;
        float: none !important
    }
    .about-text {
        width: 100% !important;
        float: none !important;
        margin-right: 0 !important
    }
    .about-image {
        width: 100% !important;
        float: none !important;
    }
    .areas-grid {
        display: block !important
    }
    .area-card {
        margin-top: 10px;
        margin-bottom: 10px
    }
    .form-group {
        width: 96% !important;
        float: none !important;
        margin: 5px 2% !important
    }
}

@media (min-width:900px) and (max-width:1199px) {
    .service-areas-content {
        width: 46%;
        margin-right: 2%;
        margin-left: 2%;
        float: left
    }
    .service-areas-map {
        width: 46%;
        margin-left: 2%;
        margin-left: 2%;
        float: left
    }
    .about-text {
        width: 48%;
        float: left;
        margin-right: 2%;
        margin-left: 2%
    }
    .about-image {
        width: 46%;
        margin-left: 2%;
        margin-left: 2%;
        float: left
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    transition: var(--transition)
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #324B42;
    box-shadow: 0 5px 10px rgb(0 0 0 / .3);
    z-index: 999;
    padding: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease
}

.mobile-menu.active {
    transform: translateY(0)
}

.mobile-nav-list {
    list-style: none
}

.mobile-nav-list li {
    margin-bottom: 0
}

.mobile-nav-list a {
    display: block;
    font-weight: 500;
    padding: 10px;
    border-bottom: 1px solid rgb(255 255 255 / .1);
    color: #fff
}

.mobile-cta {
    display: inline-block;
    margin-top: 15px
}

@media (max-width:1000px) {
    .mobile-menu-toggle {
        display: flex
    }
    .mobile-menu.active {
        display: block
    }
}

@media (max-width:1000px) and (min-width:300px) {
    .hero {
        height: 645px
    }
    .hero .btn-primary {
        margin-bottom: 20px
    }
    #myVideo {
        height: 725px !important;
        margin-left: -25%;
        width: 125%
    }
    #myVideo2 {
        height: 725px !important;
        width: 100%
    }
    .hero-overlay {
        background-color: rgb(0 0 0 / .5) !important;
        height: 725px !important
    }
    .hero-overlay2 {
        background-color: rgb(0 0 0 / .5) !important;
        height: 725px !important
    }
    .hero-overlay-facade {
        background-color: rgb(0 0 0 / .5) !important;
        height: 725px !important
    }
    .hero-overlay-roof {
        background-color: rgb(0 0 0 / .5) !important;
        height: 725px !important
    }
    .hero-content h1 {
        position: relative;
        z-index: 1;
        color: #fff !important
    }
    .hero-content {
        padding-left: 1%;
        padding-right: 1%
    }
    hero {
        width: 100%
    }
    .feature-icon2 {
        padding: 10% !important
    }
    .feature-icon-ongreen {
        padding: 1% !important
    }
}

#myVideo {
    min-width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    object-fit: fill !important;
    top: 0;
    height: 700px;
    z-index: -1
}

#myVideo2 {
    min-width: 100%;
    object-fit: fill !important;
    position: absolute;
    left: 0;
    right: 0;
    height: 700px;
    top: 0;
    z-index: -1
}

.hero-overlay-roof {
    background-color: rgb(0 0 0 / .5);
    object-fit: fill !important;
    position: absolute;
    z-index: 0;
    width: 100%;
    left: 0;
    top: 0;
    height: 700px
}

.hero-overlay-facade {
    background-color: rgb(0 0 0 / .5);
    object-fit: fill !important;
    position: absolute;
    z-index: 0;
    width: 100%;
    left: 0;
    top: 0;
    height: 700px
}

.hero-overlay2 {
    background-color: rgb(0 0 0 / .5);
    object-fit: fill !important;
    position: absolute;
    z-index: 0;
    width: 100%;
    left: 0;
    top: 0;
    height: 700px
}

.hero-overlay {
    background-color: rgb(0 0 0 / .1);
    position: absolute;
    z-index: 0;
    width: 100%;
    left: 0;
    top: 0;
    height: 700px
}

.hero-service {
    background: url(images/service-hero.jpg) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: top center !important
}

.hero-area {
    background: url(images/hero-area-bg.jpg) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: top center !important
}

.main-nav .active {
    color: var(--primary-color) !important
}

.about-section {
    padding: 80px 0;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.about-text h2 {
    text-align: left
}

.about-text {
    width: 50%;
    float: left;
    margin-right: 4%
}
.about-text2 {
    width: 50%;
    text-align:left;
    display: inline-block;
    padding-left: 4%;
}
.about-text2 h2 {
    text-align: left
}


.about-image {
    width: 46%;
    float: left;
    height: 420px;
    background-size:cover;
    background-position: center;
    padding-bottom: 40px;
}
.about-image2 {
    width: 46%;
    float: left;
    height: 500px;
    background-size:cover;
    background-position: center;
    padding-bottom: 40px;
}
.padding-5percent {
    padding: 5%;
}
.overview-image{
float: left;
    width: 50%;
    background-size: cover;
    padding: 2%;
    max-width: 480px;
}


.faq-section {
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
    margin: 0 auto
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden
}

.faq-question {
    padding: 20px;
    background-color: #f7f7f7;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 0px !important;
    margin-top: 0px;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
   
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 0px !important;
    
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
    color: #000
}

.faq-item.active .faq-question h3 {
    color: #fff !important
}

.faq-contact {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 40px
}

.quote-form {
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
    margin: 0 auto
}

.form-row {
    width: 100%;
    overflow: hidden
}

.form-group {
    width: 46%;
    float: left;
    margin: 5px 2%
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px
}

.contact-info {
    justify-content: center;
    gap: 20px;
    padding: 60px 20px;
    background: #324B42;
    color: #fff
}

.contact-info h2 {
    color: #fff
}

.centerText {
    text-align: center
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px
}

.area-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    color: #333
}

.area-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark)
}

.map-section {
    width: 100%;
    justify-content: center;
    padding: 60px 20px
}

.thank-you-section {
    width: 100%;
    justify-content: center;
    padding: 60px 20px
}

.blog-posts {
    width: 100%;
    margin: 0 auto;
    padding-top: 40px
}

.post-card {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 20px
}

.post-card {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 20px;
    text-align: left
}

.post-image {
    width: 46%;
    float: left
}

.post-content {
    width: 50%;
    float: left;
    margin-left: 4%;
    padding-top: 20px
}

.centerLeft {
    text-align: left !important
}

.post-meta {
    text-align: left
}

.post-excerpt {
    text-align: left
}

.post-title {
    text-align: left
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem
}

.btn-outline {
    background-color: #fff0;
    border: 2px solid #000;
    color: var(--text-light);
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem
}

.posts-grid {
    padding-top: 60px;
    padding-bottom: 60px
}

.listing-a {
    margin-left: 20px;
    margin-bottom: 25px
}

.listing-a li {
    list-style: circle
}

.centerLeft {
    text-align: left !important
}

.divider {
    height: 40px
}

.locations-dropdown {
    position: relative
}

.locations-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 5px 15px rgb(0 0 0 / .1);
    border-radius: 4px;
    min-width: 200px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    display: block
}

.locations-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.locations-dropdown .dropdown-menu li {
    display: block;
    margin: 0;
    padding: 0
}

.locations-dropdown .dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #222;
    font-size: 14px;
    transition: all 0.2s ease;
    width: 100%
}

.locations-dropdown .dropdown-menu a:hover,
.locations-dropdown .dropdown-menu a.active {
    background-color: #f8f8f8;
    color: #3d6b44
}

.intro-section {
    width: 100%;
    text-align: center;
    padding: 60px;
    background-color: #f0f0f0
}
.intro-section2 {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 60px;
    color:#f0f0f0;
    background-image:url(images/hero-area-bg.jpg);
    background-size: cover;
    height:100%;
}
.intro-section2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: inherit;
  background: rgba(0,0,0,0.4);
  z-index: 1;
  pointer-events: none;
}
.intro-section2 > * {
    position: relative;
    z-index: 2;
}
.intro-section2 h1{
    color:#f0f0f0;
}

.feature-list {
    display: flex;
    justify-content: left;
    gap: 20px;
    flex-wrap: wrap;
    width: 50%;
    padding: 3% 3%
}

.feature-icon2 {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: #246f47 1px solid;
    border-radius: 60px;
    padding: 3%
}
.feature-icon-ongreen {
    width: 70px;
    height: 70px;
    display: inline;
    align-items: center;
    justify-content: center;
    border: #246f47 1px solid;
    border-radius: 60px;
    padding: 1%;
}

.feature-text {
    align-self: center;
    text-align: left
}

.feature-tile {
    display: flex;
    align-items: left;
    gap: 20px;
    width: 100%
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #246F47;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgb(0 0 0 / .2);
    z-index: 1
}

.dropdown-content a {
    float: none;
    color: #000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left
}

.dropdown:hover .dropbtn {
    background-color: #fff;
    color: #000 !important
}

.dropdown-content a:hover {
    background-color: #fff;
    color: #000
}

.dropdown:hover .dropdown-content {
    display: block
}

.dropdown-content a {
    color: #fff
}

.mobile-nav-list .dropdown {
    float: none
}

.mobile-nav-list .dropdown-content {
    position: relative
}

.mobile-nav-list .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px
}

.location-card {
    background-color: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    color: var(--dark);
    box-shadow: 1px 3px 5px 1px #ddd
}

.location-image {
    height: 180px;
    overflow: hidden
}

.location-image img {
    height: 180px;
    width: 100%
}

.location-content {
    padding: 16px;
    text-align: center
}

.location-title {
    font-size: 1.25rem;
    margin: 0
}

.section {
    padding: 40px 0
}

.locationArea {
    background: #324B42
}

.locationArea h2 {
    color: #fff
}

.locationArea p {
    color: #fff
}

.locationArea .btn-primary {
    background: #fff;
    color: #000
}

#locationServices .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px
}

#locationServices .service-content {
    padding: 20px;
    text-align: left
}

#locationServices .service-image img {
    height: 300px;
    width: 100%
}

#locationServices .service-buttons {
    justify-content: left;
    padding-left: 20px
}

#locationServices ul {
    margin-left: 30px
}

#locationServices li {
    list-style: circle
}

.seasonalService .service-content p {
    -webkit-line-clamp: 10
}

.checkbox-item {
    width: 100%;
    overflow: hidden
}

.checkbox-item input[type="checkbox"] {
    width: 30px;
    float: left;
    margin-right: 10px;
    margin-top: 6px
}

.checkbox-item label {
    float: left;
    width: 200px;
    line-height: 24px
}

.consent-checkbox {
    width: 100%;
    overflow: hidden
}

.consent-checkbox input[type="checkbox"] {
    width: 5%;
    float: left;
    margin-right: 2%;
    margin-top: 6px
}

.consent-checkbox label {
    float: left;
    line-height: 24px;
    width: 92%
}
.testimonial-min-height{
    min-height: 250px;
}
.feature-icon3 img{
    width: 50px;
    height: 50px;
}
.feature-tile3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.feature-list3 {
  flex: 1 1 250px;
  max-width: 320px;
  min-width: 220px;
  background: #e6e6e6;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px 24px 20px;
  margin-bottom: 30px;
}

.feature-icon3 {
  margin-bottom: 18px;
}


.challenge-bg {
  flex: 1;
  background: url('images/cs-challange.avif') top left/cover no-repeat;
}

.challenge-content {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: flex-end;
  z-index: 2;
}

.challenge-overlay {
  background: rgba(20, 20, 20, 0.85);
  color: #fff;
  padding: 48px 32px;
  width: 50%;
  box-sizing: border-box;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.25);
}

.challenge-title {
  margin-bottom: 0.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align:left;
  color: #fff;
}

.challenge-overlay p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

hr{
    margin: 20px 0;
}

/* Responsive (stacked on smaller screens) */
@media (max-width: 768px) {
  .challenge-overlay {
  width: 100%;
}
}




.split-right {
  flex: 0 0 100%;
  padding: 40px 10px;
  display: flex;
  flex-direction: column;
  text-align:left; /* optional */
  color: #fff;
}

.split-right h2, .split-right h3 {
  margin-bottom: 15px;
  font-weight: 700;
  text-align:left;
  color: #fff;
}

.split-right p {
  font-size: 1rem;
  margin-bottom: 20px;
}
.feature-tile4 {
  display: flex;
  flex-direction: column; /* stack children vertically */
  gap: 10px;              /* spacing between boxes */
  align-items: stretch;   /* make them stretch full width */
}

.feature-list4 {
  flex: 1 1 100%;
  width: 100%;
  max-width: 100%;
  color: #fff;        /* remove restriction */
  /*background: #edeeee;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);*/
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
  padding: 1% 4%;
  margin-bottom: 0;       /* gap handles spacing */
}
.feature-list4 h4 {
    color: #fff;
}

.feature-icon4 {
  margin-bottom: 18px;
  width: 40px;
  height: 40px;
}
.solution-section{
    background-color:var(--primary-color);
    padding-top: 1%;
    padding-bottom: 3%;
}
.results-section{
    background-color:var(--bg-alternate);
    padding: 4%;
}
.before-after{
    padding-top: 3%;
    align-items: center;
    text-align: center;
}
.before-after img{
 display: inline-block;
}
.cta-white{
    padding:4%;
}
.processsection-wrapper{
    background-color:var(--bg-alternate);
    padding: 4%;
}

.processsection-wrapper-alternate{
    background-color:var(--primary-color);
    padding: 4%;
}
.listitems{
    display:flex;
    flex-direction: row;
    padding: 10px;
}
.listitems p{
    padding-left: 10px;
}
.listitems i{
    padding-top: 5px;
}
.energy-recovery-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 0.8rem;
  background: #f8f8f8;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.energy-recovery-table th,
.energy-recovery-table td {
  border: 1px solid #e0e0e0;
  padding: 10px 12px;
  text-align: left;
}
.energy-recovery-table th {
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
}
.energy-recovery-table tr:nth-child(even) td {
  background: #f0f5f4;
}
.results-list {
  list-style-type: disc;
  margin-left: 2em;
  padding-left: 0;
}

.results-list li {
  margin-bottom: 3px;
}
    .blog-row {
      display: flex;
      max-width: 900px;
      margin: 40px auto;
      background: #fff;
      box-shadow: 0 2px 16px rgba(0,0,0,0.07);
      border-radius: 12px;
      overflow: hidden;
    }
    .blog-featured {
      flex: 0 0 25%;
      background: #f0f4f8;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      background-size: cover;
      background-position: center;
    }
    .blog-featured img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      border-radius: 0;
    }
    .blog-content {
      flex: 0 0 75%;
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .blog-content h2 {
      margin-top: 0;
      font-size: 2rem;
      text-align: left;
      color: var(--primary-color);
    }
    .blog-content p {
      font-size: 1.15rem;
      margin-bottom: 24px;
      color: #333;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        white-space: wrap;
        display: -webkit-box;
        overflow: hidden
    }
    .read-more-btn {
      display: inline-block;
      padding: 10px 28px;
      background: var(--primary-color);
      color: #fff;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.2s;
      width: 40%;
      text-align: center;
    }
    .read-more-btn:hover {
      background: #226b43;
      color: #fff;
    }
    @media (max-width: 700px) {
      .blog-row {
        flex-direction: column;
      }
      .blog-featured, .blog-content {
        flex: 1 1 100%;
        padding: 0;
      }
      .blog-content {
        padding: 24px 16px;
      }
    }

.slider-wrapper {
  position: relative;
  margin: auto;
  background-image: url('images/slider-bg.avif');
  background-size: cover;
  background-position: center;
  padding-top: 80px;
  padding-bottom: 100px;
  /* Overlay using pseudo-element */
}

.slider-wrapper h2{
    color: #fff;
}
.slider-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8); /* black overlay with 40% opacity */
  z-index: 1;
}

.slider-container {
  overflow: hidden;
  position: relative;
  z-index: 2; /* above overlay */
  height: 100%;
  width: 80%;       /* 80% of wrapper */
  margin: 0 auto;   /* center horizontally */
}
/* Track and cards */
.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  align-items: stretch; /* <-- make cards equal height */
  will-change: transform;
}


.card {
  flex: 0 0 25%; /* 4 cards per row */
  padding: 10px;
  box-sizing: border-box;
  display: flex;       /* make card a flex container */
}


.card-inner {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: center;
  display: flex;       /* inner flex for vertical layout */
  flex-direction: column;
  flex: 1;        /* take full height of parent card */
}
.card-inner img {
  display: block;
  height: 200px; 
    width: 100%;
}

/* Arrows inside the wrapper */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  cursor: pointer;
  z-index: 3; /* above overlay */
  padding: 5px;
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
}

.card-content{
    padding:20px;
}
.arrow.left {
  left: 10px; /* inside the wrapper */
}

.arrow.right {
  right: 10px; /* inside the wrapper */
}

.arrow:hover {
  background: rgba(0,0,0,0.6);
}
.slider-text {
  position: relative; /* above overlay z-index not needed because wrapper overlay has z-index:1 */
  z-index: 2;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
  padding-top: 40px; /* optional padding from top */
}

.slider-text h1 {
  margin: 0 0 10px 0;
}

.slider-text p {
  font-size: 16px;
  margin: 0;
}
/* Responsive adjustments */
@media (max-width: 992px) { .card { flex: 0 0 33.33%; } }
@media (max-width: 768px) { .card { flex: 0 0 50%; } }
@media (max-width: 480px) { .card { flex: 0 0 100%; } }


.testimonials-section {
    background: #f5f8fb;
    padding: 48px 20px;
  }

  .container-testimonials{
    max-width: 1200px;
    margin: 0 auto;
  }
  .ts-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: stretch;
    padding-top: 20px;
  }

  .ts-card{
    background: #ffffff;
    border: 1px solid #bbc7c5;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(28,40,50,0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start; 
    height: 100%;
  }

  .ts-text{
    margin: 0 0 18px 0;
    color: #1f2d3d;
    line-height: 1.5;
    text-align: left; /* explicitly left aligned */
    flex: 1 0 auto;
  }

  .ts-author{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
  }

  .ts-avatar{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 56px;
    border: 2px solid rgba(0,0,0,0.04);
  }

  .ts-author-meta{
    display: flex;
    flex-direction: column;
  }

  .ts-author-name{
    font-weight: 700;
    color: #1f2d3d;
    font-size: 0.98rem;
    line-height: 1;
  }

  .ts-author-role{
    font-size: 0.875rem;
    color: #6b7a88;
    margin-top: 4px;
  }

  /* Responsive: stack to 1 column on small screens, 2 columns on medium */
  @media (max-width: 980px){
    .ts-grid{
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px){
    .ts-grid{
      grid-template-columns: 1fr;
      padding: 2% !important;
    }

    .ts-heading{
      text-align: center;
    }

    .testimonials-section{
      padding: 32px 12px;
    }
  }
