

.solar-text {
    color: #127d19 !important;
}

.solar-navbar .navbar-nav .nav-link:hover {
    color: #127d19 !important;
}

.solar-navbar .navbar-nav .nav-link.active {
    color: #127d19 !important;
}

.solar-navbar .navbar-nav .nav-link.active::after {
    background: #127d19 !important;
}

.solar-btn {
    background: #127d19 !important;
    box-shadow: 0 5px 15px rgba(18, 125, 25, 0.25) !important;
}

.solar-btn:hover {
    background: #0d6313 !important;
    box-shadow: 0 5px 15px rgba(13, 99, 19, 0.35) !important;
}

.solar-navbar .logo-main {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -1px;
    font-family: 'Arial Black', Impact, sans-serif;
}

/* =========================
   SOLAR HERO SECTION
========================= */

.solar-hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 116px);
    min-height: 480px;
    max-height: 750px;
    background: url('img/solar_banner_1983x790.png') no-repeat right center;
    background-size: cover;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Optional green curve overlap */
.solar-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 62%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 125, 25, 0.2), transparent);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    z-index: 1;
}

.solar-hero-content-area {
    position: relative;
    width: 55%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 12%;
    padding-right: 5%;
    z-index: 2;
}

.solar-hero-text {
    width: 100%;
    max-width: 650px;
}

.text-green {
    color: #127d19 !important;
}

.text-dark {
    color: #111111 !important;
}

.solar-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Arial Black', Impact, sans-serif;
    letter-spacing: -1px;
}

.solar-subtitle {
    font-size: 18px;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
}

.solar-desc {
    font-size: 15px;
    color: #444;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 25px;
}

.solar-features .feature-text {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.solar-btn-primary {
    background: #127d19 !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 4px 15px rgba(18, 125, 25, 0.3);
    transition: 0.3s;
}

.solar-btn-primary:hover {
    background: #0d6313 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 99, 19, 0.4);
    color: #fff !important;
}

.solar-btn-outline {
    background: #f8f9fa !important;
    color: #127d19 !important;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 24px;
    border-radius: 4px;
    border: 2px solid #127d19;
    transition: 0.3s;
}

.solar-btn-outline:hover {
    background: #127d19 !important;
    color: #fff !important;
}

@media (max-width: 1400px) {
    .solar-title {
        font-size: 52px;
    }

    .solar-subtitle {
        font-size: 16px;
    }

    .solar-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .solar-hero-content-area {
        width: 65%;
        padding-left: 10%;
        padding-right: 14%;
    }
}

@media (max-width: 1199px) {
    .solar-title {
        font-size: 44px;
    }

    .solar-hero-content-area {
        width: 70%;
        padding-left: 8%;
        padding-right: 15%;
    }

    .solar-hero-section {
        height: auto;
        min-height: 500px;
    }

    .solar-hero-text {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 991px) {
    .solar-hero-content-area {
        width: 100%;
        clip-path: none;
        padding: 50px 20px;
        background: rgba(255, 255, 255, 0.95);
    }

    .solar-hero-section::before {
        display: none;
    }

    .solar-title {
        font-size: 30px;
    }
}

/* =========================
   SOLAR SOLUTIONS SECTION
========================= */

.solar-solutions-section {
    background: #f9f9f9;
    padding-top: 80px;
    padding-bottom: 80px;
}

.solar-solutions-title {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.solar-solutions-line {
    width: 60px;
    height: 3px;
    background: #127d19;
    margin: 0 auto;
}

.solar-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.solar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.solar-card-img-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px 12px 0 0;
    overflow: visible;
    /* To allow the icon to overflow slightly */
}

.solar-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 11px 11px 0 0;
}

.solar-icon-circle {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: #127d19;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
    z-index: 2;
}

.solar-icon-circle i {
    color: #fff;
    font-size: 24px;
}

.solar-card-body {
    padding: 45px 20px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.solar-card-body h4 {
    font-size: 16px;
    font-weight: 800;
    color: #222;
    margin-bottom: 15px;
}

.solar-card-body p {
    font-size: 13.5px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.solar-learn-more {
    color: #127d19;
    font-weight: 800;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.solar-learn-more i {
    margin-left: 5px;
    transition: 0.3s;
}

.solar-learn-more:hover {
    color: #0d6313;
}

.solar-learn-more:hover i {
    transform: translateX(4px);
}

/* =========================
   SOLAR STATS BANNER
========================= */

.solar-stats-section {
    padding-bottom: 80px;
}

.solar-stats-banner {
    background: #127d19;
    border-radius: 8px;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 10px 30px rgba(18, 125, 25, 0.2);
}

.solar-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    position: relative;
    padding: 0 20px;
}

.solar-stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.solar-stat-item:last-child::after,
.solar-stat-item.border-0::after {
    display: none;
}

.solar-stat-item .stat-icon {
    flex-shrink: 0;
}

.solar-stat-item .stat-icon i {
    font-size: 40px;
    color: #fff;
    line-height: 1;
}

.solar-stat-item .stat-text {
    color: #fff;
}

.solar-stat-item .stat-text h4 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 2px;
    line-height: 1.1;
}

.solar-stat-item .stat-text h4 .small-text {
    font-size: 16px;
}

.solar-stat-item .stat-text p {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    opacity: 0.95;
}

@media (max-width: 1199px) {
    .solar-stat-item .stat-text h4 {
        font-size: 20px;
    }

    .solar-stat-item .stat-text h4 .small-text {
        font-size: 14px;
    }

    .solar-stat-item .stat-text p {
        font-size: 11px;
    }

    .solar-stat-item .stat-icon i {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .solar-stats-banner {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }

    .solar-stat-item {
        width: 100%;
        justify-content: center;
    }

    .solar-stat-item::after {
        display: none;
    }
}

/* =========================
   STRUCTURE COMPONENTS SECTION
========================= */

.solar-components-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background: #ffffff;
}

.component-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 0;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.component-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: #127d19;
}

.component-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 0;
}

.component-card p {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0;
    padding: 15px;
    background: #fdfdfd;
}

/* RIGHT SIDE: WHY OUR STRUCTURES */
.why-structures-box {
    background: #127d19;
    border-radius: 12px;
    padding: 35px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(18, 125, 25, 0.2);
}

.why-structures-box h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.4;
}

.why-list li:last-child {
    margin-bottom: 0;
}

.why-list li i {
    color: #fff;
    font-size: 18px;
    margin-top: 0px;
}

.componentsSwiper {
    padding-bottom: 20px;
}

/* =========================
   OUR WORK SECTION (SWIPER)
========================= */

.solar-projects-section {
    background: #fff;
    padding-bottom: 80px;
}

.swiper-container-wrapper {
    padding: 0 40px;
    /* Space for the external arrows */
}

.solar-project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 220px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.solar-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.solar-project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solar-project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(8, 65, 12, 0.95);
    /* Dark Green Overlay */
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 10px;
    text-align: center;
}

/* Nav Buttons */
.projects-nav-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #127d19;
    color: #127d19;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.projects-nav-btn:hover {
    background: #127d19;
    color: #fff;
}

.projects-prev {
    left: 0;
}

.projects-next {
    right: 0;
}

/* Pagination */
.projects-pagination {
    position: relative !important;
    margin-top: 30px;
}

.projects-pagination .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 5px;
}

.projects-pagination .swiper-pagination-bullet-active {
    background: #127d19;
}

/* Continuous Marquee Effect for Components */
.componentsSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* =========================
   OUR WORK PREMIUM SECTION
========================= */

.our-work-section {
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.our-work-title {
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.our-work-line {
    width: 60px;
    height: 3px;
    background-color: #127d19;
    margin: 0 auto;
}

.our-work-slider-wrapper {
    padding: 20px 40px;
}

/* Square Card Concept with Rounded Corners */
.our-work-card {
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Lift Effect */
.our-work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.our-work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Image Zoom Effect */
.our-work-card:hover .our-work-img {
    transform: scale(1.1);
}

/* Dark Green Gradient Overlay */
.our-work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(18, 125, 25, 0.9) 0%, rgba(18, 125, 25, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: background 0.4s ease;
}

.our-work-card:hover .our-work-overlay {
    background: linear-gradient(to top, rgba(18, 125, 25, 0.95) 0%, rgba(18, 125, 25, 0.3) 100%);
}

.our-work-project-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* Circular Navigation Buttons */
.our-work-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border: 2px solid #127d19;
    color: #127d19;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.our-work-nav-btn:hover {
    background-color: #127d19;
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(18, 125, 25, 0.4);
}

.our-work-prev {
    left: 0px;
}

.our-work-next {
    right: 0px;
}

/* Pagination Dots */
.our-work-pagination {
    position: relative !important;
    margin-top: 30px;
}

.our-work-pagination .swiper-pagination-bullet {
    background: #d3d3d3;
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.our-work-pagination .swiper-pagination-bullet-active {
    background: #127d19;
    transform: scale(1.3);
}

/* Scroll Reveal Animation base class */
.our-work-section {
    animation: fadeInUp 0.8s ease backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   PROCESS SECTION
========================= */
.process-section {
    background-color: #fcfcfc;
    font-family: 'Poppins', sans-serif;
}

.process-wrapper {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.process-step-col {
    position: relative;
}

/* Dotted vertical line divider on desktop */
@media (min-width: 992px) {
    .process-step-col:not(:last-child)::before {
        content: '';
        position: absolute;
        top: 20%;
        right: 0;
        height: 60%;
        border-right: 2px dotted #cccccc;
        z-index: 1;
    }
}

.process-step {
    text-align: center;
    padding: 10px 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-icon {
    font-size: 40px;
    color: #127d19;
    margin-bottom: 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-title {
    font-size: 14px;
    font-weight: 700;
    color: #127d19;
    margin-bottom: 8px;
}

.process-desc {
    font-size: 12px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Floating Arrow */
.process-arrow {
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    background: #fff;
    color: #127d19;
    font-size: 18px;
    font-weight: bold;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* =========================
   CTA SECTION
========================= */
.cta-section {
    background-color: #05400f;
    background-image: url('img/cta_bg.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
    padding: 30px 0;
    overflow: hidden;
}

/* =========================
   FOOTER SECTION
========================= */
.site-footer {
    background-color: #033009;
    color: #e0f2e3;
    font-family: 'Poppins', sans-serif;
    padding-top: 60px;
    font-size: 14px;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo h2 {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.footer-logo span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.footer-about {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #c4dec9;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: #ffffff;
}

.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.linkedin {
    background-color: #0077b5;
}

.social-icon.youtube {
    background-color: #ff0000;
}

.social-icon.whatsapp {
    background-color: #25d366;
}

.footer-heading {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #c4dec9;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #c4dec9;
}

.footer-contact-icon {
    color: #ffffff;
    font-size: 18px;
    margin-right: 15px;
    margin-top: 2px;
}

.footer-map-container {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #ffffff;
}

.footer-bottom {
    padding: 20px 0;
    background-color: #022306;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-copyright {
    color: #c4dec9;
    font-size: 13px;
    margin-bottom: 0;
}

.footer-bottom-links a {
    color: #c4dec9;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.footer-divider {
    color: #c4dec9;
    margin: 0 10px;
}

/* Add dotted border between columns for desktop like the image */
@media (min-width: 992px) {
    .footer-col:not(:last-child) {
        border-right: 1px dotted rgba(255, 255, 255, 0.2);
        padding-right: 30px;
    }

    .footer-col:not(:first-child) {
        padding-left: 30px;
    }
}

.cta-container {
    position: relative;
    z-index: 1;
}

.cta-icon-wrapper {
    width: 70px;
    height: 70px;
    border: 2px solid #28b835;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-title {
    color: #ffffff;
    font-size: 24px;
    font-family: 'Oswald', 'Impact', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.cta-subtitle {
    color: #d8f5db;
    font-size: 15px;
    font-weight: 400;
}

.cta-btn-primary {
    background-color: #128a19;
    color: #ffffff;
    border: 1px solid #1fa327;
    border-radius: 6px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-btn-primary:hover {
    background-color: #0e6b13;
    color: #ffffff;
    border-color: #128a19;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 6px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-btn-outline:hover {
    background-color: #ffffff;
    color: #094711;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   OVERRIDES FOR SHARED HEADER & FOOTER
========================================== */

/* Top header background */
.solar-top-header {
    background: linear-gradient(90deg, #094711 0%, #127d19 50%, #094711 100%) !important;
}

/* Navbar active underline */
.solar-navbar .navbar-nav .nav-link.active::after {
    background: #127d19 !important;
}

/* Footer background */
.solar-footer.main-footer {
    background: linear-gradient(135deg, #094711 0%, #062b0a 50%, #094711 100%) !important;
}

/* Footer bottom background */
.solar-footer .footer-bottom {
    background: rgba(18, 125, 25, 0.15) !important;
}

/* Footer Logo Main Text */
.solar-footer .footer-logo-main {
    color: #4cd158 !important;
}

/* Footer Logo Sub Text */
.solar-footer .footer-logo-sub {
    color: #31a83b !important;
}

/* Footer Links Hover */
.solar-footer .footer-links a:hover,
.solar-footer .footer-policy-links a:hover,
.solar-footer .footer-contact-text a:hover {
    color: #4cd158 !important;
}

/* Footer Social Icons Background */
.solar-footer .footer-social a {
    background: #127d19 !important;
}

.solar-footer .footer-social a:hover {
    background: #4cd158 !important;
    color: #092e10 !important;
}

/* Footer Contact Icons */
.solar-footer .footer-contact-icon {
    color: #4cd158 !important;
}

/* Footer Heading */
.solar-footer .footer-column h3 {
    color: #4cd158 !important;
}

/* Navbar Quote Button */
.solar-navbar .quote-btn {
    background: linear-gradient(135deg, #127d19, #094711) !important;
    box-shadow: 0 5px 15px rgba(18, 125, 25, 0.25) !important;
}

.solar-navbar .quote-btn:hover {
    background: #062b0a !important;
}