:root {

    --primary: #0C356A;
    --primary-dark: #08284F;

    --gold: #C79A3B;
    --gold-light: #E0BB70;

    --green: #3AA655;

    --white: #FFFFFF;
    --light: #F6F8FB;

    --dark: #18212F;
    --text: #394454;
    --muted: #737D8C;

    --shadow:
        0 15px 45px rgba(12, 53, 106, 0.10);

}


/* =====================================================
   GLOBAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: 'Poppins', sans-serif;

    color: var(--text);

    overflow-x: hidden;

}


a {
    text-decoration: none;
}


img {
    max-width: 100%;
}


.section-padding {

    padding: 100px 0;

}


.bg-light {

    background: var(--light) !important;

}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {

    padding: 10px 0;

     background: rgba(8, 40, 79, .94); 

    backdrop-filter: blur(10px);

    transition: .3s ease;

}

.home-page .navbar {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}


.navbar.scrolled {

    padding: 5px 0;

    background: var(--primary);

    box-shadow:
        0 5px 25px rgba(0,0,0,.15);

}


.logo {

    width: 100px;

    height: auto;

    background: #fff;

    padding: 4px;

    border-radius: 5px;

}


.navbar-nav .nav-link {

    color: #fff !important;

    font-size: 14px;

    font-weight: 500;

    margin-left: 12px;

}


.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {

    color: var(--gold-light) !important;

}


/* =====================================================
   BUTTONS
===================================================== */

.btn {

    border-radius: 50px;

    padding: 12px 25px;

    font-weight: 600;

    transition: .3s ease;

}


.btn:hover {

    transform: translateY(-3px);

}


.btn-gold {

    background: var(--gold);

    border: 1px solid var(--gold);

    color: #fff;

}


.btn-gold:hover {

    background: #ae822d;

    border-color: #ae822d;

    color: #fff;

}


.btn-whatsapp {

    background: #25D366;

    color: #fff;

    border: none;

}


/* =====================================================
   HERO
===================================================== */

.hero-section {

    min-height: 100vh;

    display: flex;

    align-items: center;

    position: relative;

    background:

        linear-gradient(
            90deg,
            rgba(4, 24, 49, .92),
            rgba(4, 24, 49, .62),
            rgba(4, 24, 49, .20)
        ),

        url('../images/hero.jpg')

        center / cover no-repeat;

}


.hero-content {

    position: relative;

    z-index: 2;

    color: #fff;

    padding-top: 60px;

}


.hero-tag {

    color: var(--gold-light);

    font-weight: 600;

    letter-spacing: 2px;

    font-size: 13px;

}


.hero-tag i {

    margin-right: 6px;

}


.hero-content h1 {

    font-family:
        'Playfair Display',
        serif;

    font-size:
        clamp(45px, 6vw, 76px);

    line-height: 1.08;

    margin:
        20px 0;

}


.hero-content h1 span {

    color: var(--gold-light);

}


.hero-content p {

    font-size: 18px;

    max-width: 650px;

    line-height: 1.8;

    color:
        rgba(255,255,255,.88);

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;

}


.hero-features {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 30px;

}


.hero-features span {

    font-size: 13px;

}


.hero-features i {

    color: var(--gold-light);

    margin-right: 5px;

}


/* =====================================================
   STATS
===================================================== */

.stats-section {

    background: var(--primary);

    color: #fff;

}


.stat-box {

    padding: 35px 20px;

    text-align: center;

    border-right:
        1px solid rgba(255,255,255,.12);

}


.stat-box i {

    color: var(--gold-light);

    font-size: 25px;

    margin-bottom: 10px;

}


.stat-box h3 {

    color: #fff;

    font-size: 38px;

    margin: 0;

}


.stat-box p {

    color:
        rgba(255,255,255,.70);

    margin: 5px 0 0;

}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {

    margin-bottom: 45px;

}


.section-heading > span {

    color: var(--gold);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}


.section-heading h2 {

    font-family:
        'Playfair Display',
        serif;

    color: var(--primary);

    font-size:
        clamp(35px, 4vw, 52px);

    margin:
        10px 0 15px;

}


.section-heading p {

    color: var(--muted);

    max-width: 650px;

}


/* =====================================================
   ABOUT
===================================================== */

.about-image {

    position: relative;

}


.about-image img {

    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 25px;

    box-shadow: var(--shadow);

}


.experience-box {

    position: absolute;

    bottom: 25px;

    right: 25px;

    background: var(--primary);

    color: #fff;

    padding: 20px 30px;

    border-radius: 15px;

    display: flex;

    flex-direction: column;

}


.experience-box strong {

    color: var(--gold-light);

    font-size: 25px;

}


.about-point {

    margin-bottom: 15px;

    font-weight: 500;

}


.about-point i {

    color: var(--green);

    margin-right: 8px;

}


/* =====================================================
   SERVICES
===================================================== */

.service-card {

    height: 100%;

    padding: 30px;

    background: #fff;

    border:
        1px solid #e8edf3;

    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(12,53,106,.06);

    transition: .35s ease;

}


.service-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 20px 45px
        rgba(12,53,106,.13);

    border-color:
        var(--gold-light);

}


.service-icon {

    width: 60px;

    height: 60px;

    border-radius: 15px;

    background:
        rgba(12,53,106,.08);

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 25px;

    margin-bottom: 22px;

    transition: .3s;

}


.service-card:hover .service-icon {

    background: var(--primary);

    color: #fff;

}


.service-card h4 {

    color: var(--primary);

    font-size: 19px;

}


.service-card p {

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;

}


.service-card a {

    color: var(--primary);

    font-size: 13px;

    font-weight: 600;

}


.service-card a i {

    color: var(--gold);

    margin-left: 5px;

}


/* =====================================================
   WHY CHOOSE
===================================================== */

.why-card {

    display: flex;

    gap: 20px;

    padding: 25px;

    border-radius: 15px;

    background: #fff;

    border:
        1px solid #e8edf3;

    transition: .3s;

}


.why-card:hover {

    transform:
        translateY(-5px);

    box-shadow: var(--shadow);

}


.why-icon {

    min-width: 55px;

    height: 55px;

    background:
        rgba(199,154,59,.12);

    color: var(--gold);

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

}


.why-card h4 {

    color: var(--primary);

    font-size: 17px;

}


.why-card p {

    color: var(--muted);

    font-size: 13px;

    margin: 0;

    line-height: 1.6;

}


/* =====================================================
   PROCESS
===================================================== */

.process-section {

    padding: 100px 0;

    background: var(--primary);

    color: #fff;

}


.process-section .section-heading h2 {

    color: #fff;

}


.process-section .section-heading span {

    color: var(--gold-light);

}


.process-card {

    text-align: center;

}


.process-number {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: var(--gold);

    display: flex;

    align-items: center;

    justify-content: center;

    margin:
        0 auto 15px;

    font-weight: 700;

}


.process-card h5 {

    font-size: 14px;

    line-height: 1.5;

}


/* =====================================================
   BENEFITS
===================================================== */

.benefit-card {

    height: 100%;

    padding: 30px;

    background: #fff;

    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(12,53,106,.06);

    text-align: center;

    transition: .3s;

}


.benefit-card:hover {

    transform:
        translateY(-7px);

}


.benefit-card i {

    color: var(--gold);

    font-size: 32px;

    margin-bottom: 18px;

}


.benefit-card h4 {

    color: var(--primary);

    font-size: 17px;

}


/* =====================================================
   CTA
===================================================== */

.cta-section {

    padding: 70px 0;

    background:

        linear-gradient(
            100deg,
            var(--primary),
            var(--primary-dark)
        );

    color: #fff;

}


.cta-section span {

    color: var(--gold-light);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}


.cta-section h2 {

    font-family:
        'Playfair Display',
        serif;

    font-size: 42px;

    margin: 10px 0;

}


.cta-section p {

    color:
        rgba(255,255,255,.75);

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    background: #061D38;

    color:
        rgba(255,255,255,.70);

    padding: 75px 0 25px;

}


.footer-logo {

    width: 210px;

    background: #fff;

    padding: 5px;

    border-radius: 5px;

}


.footer h5 {

    color: #fff;

    margin-bottom: 20px;

}


.footer ul {

    list-style: none;

    padding: 0;

}


.footer li {

    margin-bottom: 10px;

}


.footer a {

    color:
        rgba(255,255,255,.70);

}


.footer a:hover {

    color: var(--gold-light);

}


.footer-contact i {

    color: var(--gold-light);

    width: 25px;

}


.social-links {

    display: flex;

    gap: 10px;

}


.social-links a {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255,255,255,.10);

}


.social-links a:hover {

    background: var(--gold);

    color: #fff;

}


.copyright {

    padding-top: 20px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    flex-wrap: wrap;

    font-size: 13px;

}


/* =====================================================
   FLOATING BUTTONS
===================================================== */

.floating-whatsapp,
.floating-call {

    position: fixed;

    right: 20px;

    width: 52px;

    height: 52px;

    border-radius: 50%;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 999;

    box-shadow:
        0 8px 25px rgba(0,0,0,.25);

    font-size: 22px;

}


.floating-whatsapp {

    bottom: 85px;

    background: #25D366;

}


.floating-call {

    bottom: 20px;

    background: var(--primary);

}


.floating-whatsapp:hover,
.floating-call:hover {

    color: #fff;

    transform: scale(1.08);

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .navbar-collapse {

        background: var(--primary);

        padding: 15px;

        border-radius: 10px;

        margin-top: 10px;

    }


    .navbar-nav .nav-link {

        margin-left: 0;

    }


    .hero-section {

        text-align: center;

    }


    .hero-content {

        padding-top: 100px;

    }


    .hero-buttons {

        justify-content: center;

    }


    .hero-features {

        justify-content: center;

    }

}


@media (max-width: 767px) {

    .section-padding {

        padding: 70px 0;

    }


    .hero-content h1 {

        font-size: 42px;

    }


    .hero-content p {

        font-size: 15px;

    }


    .hero-buttons .btn {

        width: 100%;

    }


    .hero-features {

        flex-direction: column;

        gap: 8px;

    }


    .about-image img {

        height: 350px;

    }


    .stat-box {

        border-bottom:
            1px solid rgba(255,255,255,.12);

    }


    .cta-section {

        text-align: center;

    }


    .cta-section h2 {

        font-size: 34px;

    }

}

.finance-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 560px;
    margin-top: 25px;
    padding: 15px 20px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(224,187,112,.45);
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.finance-highlight > i {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #fff;
    border-radius: 10px;
    font-size: 19px;
}

.finance-highlight strong {
    display: block;
    color: var(--gold-light);
    font-size: 15px;
}

.finance-highlight span {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
}

@media (max-width: 767px) {

    .finance-highlight {
        text-align: left;
    }

}



/* =========================================
   HERO SECTION
========================================= */

.hero-section {
    position: relative;
    min-height: calc(100vh - 105px);

    background-image: url("../images/bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* Dark overlay for text readability */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 35, 68, 0.92) 0%,
            rgba(10, 45, 75, 0.78) 38%,
            rgba(10, 45, 75, 0.30) 70%,
            rgba(10, 45, 75, 0.08) 100%
        );

    z-index: 1;
}


/* Content */

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
}


/* Badge */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #e4b64f;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 22px;
}

.hero-badge i {
    font-size: 15px;
}


/* Main Heading */

.hero-section h1 {
    max-width: 760px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(48px, 5vw, 78px);

    line-height: 1.05;

    font-weight: 500;

    margin-bottom: 25px;
}

.hero-section h1 span {
    color: #e4b64f;
}


/* Description */

.hero-description {
    max-width: 700px;

    color: rgba(255, 255, 255, 0.90);

    font-size: 17px;
    line-height: 1.75;

    margin-bottom: 25px;
}


/* =========================================
   FINANCE BOX
========================================= */

.finance-highlight {
    display: flex;
    align-items: center;

    gap: 15px;

    max-width: 510px;

    padding: 14px 18px;

    margin-bottom: 28px;

    background: rgba(255, 255, 255, 0.10);

    border: 1px solid rgba(228, 182, 79, 0.55);

    border-radius: 12px;

    backdrop-filter: blur(8px);
}

.finance-icon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dcae3f;

    color: #ffffff;

    border-radius: 9px;

    font-size: 18px;
}

.finance-highlight strong {
    display: block;

    color: #e4b64f;

    font-size: 15px;

    margin-bottom: 3px;
}

.finance-highlight small {
    display: block;

    color: rgba(255, 255, 255, 0.85);

    font-size: 12px;
}


/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 30px;
}

.hero-buttons .btn {
    padding: 14px 24px;

    border-radius: 30px;

    font-weight: 700;

    transition: all 0.3s ease;
}


/* Gold Button */

.btn-primary-custom {
    background: #dcae3f;

    border: 2px solid #dcae3f;

    color: #ffffff;
}

.btn-primary-custom:hover {
    background: #c79a32;

    border-color: #c79a32;

    color: #ffffff;

    transform: translateY(-3px);
}


/* Outline */

.btn-outline-custom {
    color: #ffffff;

    border: 1px solid #ffffff;

    background: rgba(255, 255, 255, 0.05);
}

.btn-outline-custom:hover {
    background: #ffffff;

    color: #0d3158;

    transform: translateY(-3px);
}


/* WhatsApp */

.btn-whatsapp {
    background: #20c96b;

    color: #ffffff;

    border: 2px solid #20c96b;
}

.btn-whatsapp:hover {
    background: #18ad5a;

    border-color: #18ad5a;

    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================
   HERO FEATURES
========================================= */

.hero-features {
    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    color: #ffffff;

    font-size: 13px;
}

.hero-features span {
    display: flex;

    align-items: center;

    gap: 7px;
}

.hero-features i {
    color: #e4b64f;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .hero-section {
        min-height: auto;

        background-position: 65% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 35, 68, 0.95),
                rgba(5, 35, 68, 0.75)
            );
    }

    .hero-content {
        padding-top: 80px;
        padding-bottom: 80px;
    }

}


@media (max-width: 767px) {

    .hero-section {
        background-position: center center;
    }

    .hero-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero-section h1 {
        font-size: 46px;

        line-height: 1.08;
    }

    .hero-description {
        font-size: 15px;

        line-height: 1.65;
    }

    .finance-highlight {
        padding: 13px;

        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;

        text-align: center;
    }

    .hero-features {
        flex-direction: column;

        gap: 10px;
    }

}

/* =========================================
   OUR PROCESS SECTION
========================================= */

.our-process-section {
    position: relative;

    width: 100%;

    min-height: 900px;

    padding: 100px 0;

    background-image: url("../images/our-process.png");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    overflow: hidden;
}


/* Background Overlay */

.process-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 35, 68, 0.90) 0%,
            rgba(5, 35, 68, 0.70) 45%,
            rgba(5, 35, 68, 0.45) 100%
        );

    z-index: 0;
}


/* Content */

.our-process-section .container {
    position: relative;

    z-index: 2;
}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    max-width: 800px;

    margin: 0 auto 70px;
}

.section-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #e4b64f;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.section-eyebrow i {
    font-size: 14px;
}


.our-process-section .section-heading h2 {
    margin: 0;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 5vw, 64px);

    font-weight: 500;

    line-height: 1.1;
}


.our-process-section .section-heading h2 span {
    color: #e4b64f;
}


.section-heading p {
    max-width: 650px;

    margin: 20px auto 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================
   PROCESS TIMELINE
========================================= */

.process-timeline {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 45px 25px;

    position: relative;
}


/* Connecting Line */

.process-timeline::before {

    content: "";

    position: absolute;

    top: 34px;

    left: 8%;

    right: 8%;

    height: 2px;

    background: rgba(228, 182, 79, 0.45);

    z-index: 0;
}


/* Process Item */

.process-item {

    position: relative;

    z-index: 1;

    text-align: center;

    transition: all 0.35s ease;
}


/* Number Circle */

.process-number {

    width: 68px;

    height: 68px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #dcae3f;

    border: 5px solid rgba(255, 255, 255, 0.90);

    color: #ffffff;

    font-size: 18px;

    font-weight: 700;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

    transition: all 0.35s ease;
}


/* Content Card */

.process-content {

    min-height: 135px;

    padding: 20px 15px;

    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.20);

    border-radius: 14px;

    backdrop-filter: blur(8px);

    transition: all 0.35s ease;
}


.process-content h4 {

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;

    margin-bottom: 8px;

    line-height: 1.35;
}


.process-content p {

    color: rgba(255, 255, 255, 0.72);

    font-size: 12px;

    line-height: 1.5;

    margin: 0;
}


/* Hover */

.process-item:hover {

    transform: translateY(-8px);
}


.process-item:hover .process-number {

    background: #ffffff;

    color: #0d3158;

    transform: scale(1.08);

    box-shadow:
        0 0 0 6px rgba(228, 182, 79, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.30);
}


.process-item:hover .process-content {

    background: rgba(255, 255, 255, 0.20);

    border-color: rgba(228, 182, 79, 0.65);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .process-timeline {

        grid-template-columns: repeat(3, 1fr);

        gap: 35px 20px;
    }

    .process-timeline::before {
        display: none;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .our-process-section {

        min-height: auto;

        padding: 70px 0;

        background-position: center center;
    }


    .process-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(5, 35, 68, 0.92),
                rgba(5, 35, 68, 0.78)
            );
    }


    .section-heading {

        margin-bottom: 45px;
    }


    .section-heading h2 {

        font-size: 42px;
    }


    .section-heading p {

        font-size: 14px;
    }


    .process-timeline {

        grid-template-columns: 1fr;

        gap: 20px;
    }


    .process-item {

        display: flex;

        align-items: center;

        gap: 18px;

        text-align: left;
    }


    .process-number {

        width: 58px;

        height: 58px;

        min-width: 58px;

        margin: 0;

        font-size: 15px;
    }


    .process-content {

        flex: 1;

        min-height: auto;

        padding: 16px;
    }


    .process-content h4 {

        font-size: 15px;

        margin-bottom: 5px;
    }


    .process-content p {

        font-size: 11px;
    }

}


/* =========================================
   GO SOLAR - BENEFITS SECTION
========================================= */

.go-solar-section {

    position: relative;

    width: 100%;

    padding: 100px 0;

    background-image: url("../images/go-solar.png");
    /* background-color: #fff; */

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    overflow: hidden;
}


/* Background Overlay */

.go-solar-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 35, 68, 0.94) 0%,
            rgba(5, 35, 68, 0.82) 45%,
            rgba(5, 35, 68, 0.55) 100%
        );

    z-index: 0;
}


/* Container */

.go-solar-section .container {

    position: relative;

    z-index: 2;
}


/* =========================================
   BENEFIT CARD
========================================= */

.solar-benefit-card {

    height: 100%;

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 28px 24px;

    background: rgba(255, 255, 255, 0.11);

    border: 1px solid rgba(255, 255, 255, 0.20);

    border-radius: 16px;

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* Icon */

.benefit-icon {

    width: 58px;

    height: 58px;

    min-width: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #dcae3f;

    color: #ffffff;

    border-radius: 14px;

    font-size: 22px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);

    transition: all 0.35s ease;
}


/* Content */

.benefit-content h3 {

    margin: 3px 0 8px;

    color: #ffffff;

    font-size: 18px;

    font-weight: 700;

    line-height: 1.3;
}


.benefit-content p {

    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================
   HOVER
========================================= */

.solar-benefit-card:hover {

    transform: translateY(-8px);

    background: rgba(255, 255, 255, 0.18);

    border-color: rgba(228, 182, 79, 0.65);

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.20);
}


.solar-benefit-card:hover .benefit-icon {

    transform: scale(1.08) rotate(-3deg);

    background: #ffffff;

    color: #0d3158;
}


/* =========================================
   BOTTOM CTA
========================================= */

.solar-bottom-cta {

    margin-top: 60px;

    padding: 25px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(228, 182, 79, 0.45);

    border-radius: 16px;

    backdrop-filter: blur(8px);
}


.solar-bottom-cta strong {

    display: block;

    color: #ffffff;

    font-size: 19px;

    margin-bottom: 5px;
}


.solar-bottom-cta span {

    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;
}


/* CTA Button */

.solar-cta-btn {

    flex-shrink: 0;

    padding: 13px 24px;

    border-radius: 30px;

    background: #dcae3f;

    border: 2px solid #dcae3f;

    color: #ffffff;

    font-weight: 700;

    transition: all 0.3s ease;
}


.solar-cta-btn i {

    margin-left: 8px;
}


.solar-cta-btn:hover {

    background: #ffffff;

    border-color: #ffffff;

    color: #0d3158;

    transform: translateY(-3px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .go-solar-section {

        padding: 80px 0;

        background-position: center;
    }


    .go-solar-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(5, 35, 68, 0.94),
                rgba(5, 35, 68, 0.82)
            );
    }


    .solar-bottom-cta {

        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .go-solar-section {

        padding: 70px 0;
    }


    .solar-benefit-card {

        padding: 22px 18px;

        gap: 14px;
    }


    .benefit-icon {

        width: 50px;

        height: 50px;

        min-width: 50px;

        font-size: 19px;

        border-radius: 12px;
    }


    .benefit-content h3 {

        font-size: 16px;
    }


    .benefit-content p {

        font-size: 12px;
    }


    .solar-bottom-cta {

        margin-top: 40px;

        padding: 22px;

    }


    .solar-bottom-cta strong {

        font-size: 17px;
    }


    .solar-cta-btn {

        width: 100%;

        text-align: center;
    }

}

/* =========================================
   SECTION SEPARATOR
========================================= */

.section-separator {
    width: 100%;
    min-height: 85px;

    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    position: relative;

    z-index: 5;
}


/* Gold Lines */

.separator-line {
    width: 180px;
    height: 1px;

    background: #dcae3f;

    opacity: 0.65;
}


/* Center Icon */

.separator-icon {

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    border: 2px solid #dcae3f;

    color: #dcae3f;

    font-size: 16px;

    position: relative;
}


/* Small decorative diamonds */

.separator-icon::before,
.separator-icon::after {

    content: "";

    position: absolute;

    width: 5px;
    height: 5px;

    background: #dcae3f;

    transform: rotate(45deg);
}

.separator-icon::before {
    left: -14px;
}

.separator-icon::after {
    right: -14px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .section-separator {
        min-height: 60px;

        gap: 12px;
    }

    .separator-line {
        width: 70px;
    }

    .separator-icon {
        width: 38px;
        height: 38px;

        font-size: 13px;
    }

}

/* =========================================
   SMART SOLAR CTA SECTION
========================================= */

.smart-solar-section {

    width: 100%;

    padding: 80px 0;

    background: #ffffff;

    position: relative;

    overflow: hidden;
}


/* Decorative background */

.smart-solar-section::before {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: rgba(220, 174, 63, 0.08);

    top: -200px;
    right: -100px;
}


.smart-solar-section::after {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(13, 49, 88, 0.05);

    bottom: -180px;
    left: -100px;
}


/* Main Wrapper */

.smart-solar-wrapper {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;

    padding: 55px 65px;

    background:
        linear-gradient(
            135deg,
            #f8fafc,
            #ffffff
        );

    border: 1px solid #e8e8e8;

    border-left: 5px solid #dcae3f;

    border-radius: 20px;

    box-shadow:
        0 15px 45px rgba(8, 41, 75, 0.08);
}


/* Content */

.smart-solar-content {

    max-width: 760px;
}


/* Eyebrow */

.smart-solar-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #dcae3f;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;
}


/* Heading */

.smart-solar-content h2 {

    margin: 0 0 20px;

    color: #0d3158;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 4vw, 56px);

    font-weight: 500;

    line-height: 1.12;
}


.smart-solar-content h2 span {

    color: #dcae3f;
}


/* Description */

.smart-solar-content p {

    max-width: 700px;

    color: #5c6875;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 25px;
}


/* =========================================
   HIGHLIGHTS
========================================= */

.smart-solar-highlights {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 28px;
}


.smart-solar-highlights div {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 9px 14px;

    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 30px;

    color: #0d3158;

    font-size: 12px;

    font-weight: 700;
}


.smart-solar-highlights i {

    color: #dcae3f;

    font-size: 14px;
}


/* =========================================
   CTA BUTTON
========================================= */

.smart-solar-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 25px;

    border-radius: 30px;

    background: #dcae3f;

    border: 2px solid #dcae3f;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.3s ease;
}


.smart-solar-btn:hover {

    background: #0d3158;

    border-color: #0d3158;

    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================
   RIGHT VISUAL
========================================= */

.smart-solar-visual {

    width: 260px;

    min-width: 260px;

    height: 260px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* Circle */

.solar-circle {

    width: 210px;

    height: 210px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #0d3158,
            #164c7d
        );

    border: 8px solid rgba(220, 174, 63, 0.25);

    box-shadow:
        0 15px 40px rgba(13, 49, 88, 0.25);
}


.solar-circle i {

    color: #dcae3f;

    font-size: 70px;
}


/* Saving Badge */

.solar-saving-badge {

    position: absolute;

    right: -5px;

    bottom: 20px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 17px;

    background: #ffffff;

    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

    border: 1px solid #eeeeee;
}


.solar-saving-badge > i {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #dcae3f;

    color: #ffffff;
}


.solar-saving-badge strong {

    display: block;

    color: #0d3158;

    font-size: 13px;
}


.solar-saving-badge span {

    display: block;

    color: #6c757d;

    font-size: 11px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .smart-solar-wrapper {

        padding: 45px;

        gap: 30px;
    }


    .smart-solar-visual {

        width: 200px;

        min-width: 200px;

        height: 200px;
    }


    .solar-circle {

        width: 170px;

        height: 170px;
    }


    .solar-circle i {

        font-size: 55px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .smart-solar-section {

        padding: 55px 0;
    }


    .smart-solar-wrapper {

        flex-direction: column;

        align-items: flex-start;

        padding: 35px 25px;

        gap: 35px;
    }


    .smart-solar-content h2 {

        font-size: 40px;
    }


    .smart-solar-content p {

        font-size: 14px;
    }


    .smart-solar-highlights {

        flex-direction: column;

        align-items: flex-start;
    }


    .smart-solar-visual {

        align-self: center;

        width: 210px;

        min-width: 210px;

        height: 210px;
    }


    .solar-circle {

        width: 180px;

        height: 180px;
    }


    .solar-circle i {

        font-size: 55px;
    }


    .smart-solar-btn {

        width: 100%;

        justify-content: center;

        text-align: center;
    }

}

.go-solar-section .section-heading h2
{
    color: #fff;
}