*{
    margin: 0;
    padding: 0;
}
        :root {
            --solar-green: #10b981;
            --solar-yellow: #fbbf24;
            --text-dark: #1e293b;
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        body {
            font-family: 'Syne', sans-serif;
            margin: 0;
            padding-top: 110px;
            background-color: #ffffff;
        }

        /* --- HEADER STRUCTURE --- */
        .header-master {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 2000;
            transition: var(--transition);
        }

        .topbar {
            background: #ffffff;
            border-bottom: 1px solid #f1f5f9;
            padding: 10px 0;
            font-size: 11px;
            font-weight: 700;
            color: #64748b;
            transition: var(--transition);
        }

        .header-master.scrolled .topbar { margin-top: -50px; opacity: 0; }


        /* LOGO BASE */
.logo {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* NAVBAR LOGO (DESKTOP) */
.navbar .logo {
    height: 50px;
    width: auto;
}

/* TABLET */
@media (max-width: 992px) {
    .navbar .logo {
        height: 42px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .navbar .logo {
        height: 36px;
    }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 400px) {
    .navbar .logo {
        height: 30px;
    }
}
/* --- NAVBAR BASE --- */
.navbar-main {
    background: #ffffff;
    padding: 16px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
}

/* SCROLL EFFECT */
.header-master.scrolled .navbar-main {
    padding: 10px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

/* --- LOGO --- */
.logo-box {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.logo-icon {
    font-size: 24px;
    color: var(--solar-yellow);
}
.logo-text {
    font-weight: 800;
    font-size: 18px;
    color: var(--text-dark);
}

/* --- NAV LINKS DESKTOP --- */
.nav-link {
    color: var(--text-dark) !important;
    font-size: 14px;
    font-weight: 600;
    margin: 0 8px;
    transition: 0.3s;
}
.nav-link:hover {
    color: var(--solar-green) !important;
}

/* --- DROPDOWN DESKTOP --- */
@media (min-width: 992px) {
    .dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        border: none;
        border-radius: 6px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        padding: 10px 0;
    }

    .dropdown-item {
        padding: 10px 20px;
        font-weight: 600;
        font-size: 13px;
        color: var(--text-dark);
    }

    .dropdown-item:hover {
        background: #f1f5f9;
        color: var(--solar-green);
    }
}

/* --- MOBILE NAV --- */
.navbar-toggler {
    border: none !important;
    font-size: 22px;
    color: var(--text-dark) !important;
    z-index: 2100;
}

/* BODY TOP SPACE */
body {
    padding-top: 80px;
}

/* MOBILE + TABLET */
@media (max-width: 991px) {

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        height: 100vh;
        background: #ffffff;
        padding: 90px 25px;
        transform: translateX(100%);
        transition: all 0.4s ease;
        z-index: 2000;
        overflow-y: auto;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 20px;
        margin-bottom: 12px;
        font-weight: 700;
    }

    .dropdown-menu {
        border: none;
        background: #f8fafc;
        margin-bottom: 10px;
    }

    /* Overlay background */
    .navbar-collapse::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.4);
        z-index: -1;
    }
}

/* --- SMALL MOBILE (EXTRA FIX) --- */
@media (max-width: 480px) {

    .logo-text {
        font-size: 16px;
    }

    .nav-link {
        font-size: 18px;
    }

    .btn-premium {
        padding: 10px 18px;
        font-size: 11px;
    }
}
/* --- CUSTOM TABLET FIX (939px – 1180px) --- */
@media (min-width: 939px) and (max-width: 1180px) {

    .navbar-main {
        padding: 12px 0;
    }

    /* Nav items spacing reduce */
    .nav-link {
        font-size: 13px;
        margin: 0 6px;
    }

    /* Logo thoda chota */
    .logo-text {
        font-size: 16px;
    }

    /* CTA button compact */
    .btn-premium {
        padding: 8px 14px;
        font-size: 11px;
    }

    /* IMPORTANT: navbar wrap fix */
    .navbar .container,
    .navbar .container-fluid {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }

    /* Nav collapse ko horizontal rakho */
    .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: flex-end;
    }

    .navbar-nav {
        flex-direction: row;
        align-items: center;
    }

    /* Dropdown width fix */
    .dropdown-menu {
        min-width: 180px;
    }
}

/* --- TOGGLE ICON ANIMATION --- */
.navbar-toggler .fa-xmark {
    display: none;
}
.navbar-toggler:not(.collapsed) .fa-bars-staggered {
    display: none;
}
.navbar-toggler:not(.collapsed) .fa-xmark {
    display: inline-block;
}

/* --- CTA BUTTON --- */
.btn-premium {
    background: var(--text-dark);
    color: #fff !important;
    padding: 10px 22px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-premium:hover {
    background: var(--solar-green);
    transform: translateY(-2px);
}
        /* hero section */



        /* --- Root Variables --- */
:root {
    --solar-green: #10b981;
    --solar-yellow: #fbbf24;
    --dark-bg: #0f172a;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Global Reset --- */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* --- Hero Main Layout --- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: var(--dark-bg);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 2;
}

.container {
    position: relative;
    z-index: 3;
}

/* --- Content Styling --- */
.tagline {
    color: var(--solar-green);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeIn 1s ease-out;
}

.main-heading {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
    animation: slideUp 1s ease-out;
}

.text-gradient {
    background: linear-gradient(90deg, var(--solar-green), var(--solar-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subheading {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #cbd5e1;
    max-width: 600px;
    margin-bottom: 30px;
    line-height: 1.6;
    animation: slideUp 1.2s ease-out;
}

/* --- Benefit List --- */
.benefit-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.benefit-list li {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideUp 1.4s ease-out;
}

.benefit-list i {
    color: var(--solar-green);
    font-size: 18px;
}

/* --- Buttons --- */
.cta-group {
    display: flex;
    gap: 20px;
    animation: slideUp 1.6s ease-out;
}

.btn-primary-solar {
    background: linear-gradient(90deg, var(--solar-green), var(--solar-yellow));
    color: #000 !important;
    font-weight: 800;
    padding: 18px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.btn-primary-solar:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.5);
}

.btn-secondary-solar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff !important;
    font-weight: 600;
    padding: 18px 35px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.btn-secondary-solar:hover {
    background: #fff;
    color: #000 !important;
}

/* --- Right Side Visuals (Floating Cards) --- */
.floating-wrapper {
    position: relative;
    height: 400px;
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    min-width: 220px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    animation: float 4s infinite ease-in-out;
}

.glass-card h3 { font-size: 24px; font-weight: 800; margin: 0; }
.glass-card p { font-size: 13px; color: #cbd5e1; margin: 0; }

.icon-circle {
    width: 45px; height: 45px;
    background: rgba(16, 185, 129, 0.2);
    color: var(--solar-green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.icon-circle.yellow { background: rgba(251, 191, 36, 0.2); color: var(--solar-yellow); }
.icon-circle.green { background: rgba(16, 185, 129, 0.2); color: var(--solar-green); }

.card-1 { top: 0; right: 0; animation-delay: 0s; }
.card-2 { top: 150px; right: 80px; animation-delay: 1s; }
.card-3 { top: 300px; right: 0; animation-delay: 2s; }

/* --- Animations --- */
@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* --- Mobile View --- */
@media (max-width: 991px) {
    .hero-section { height: auto; padding: 100px 0; }
    .main-heading { font-size: 3rem; text-align: center; }
    .subheading { text-align: center; margin-inline: auto; }
    .cta-group { justify-content: center; flex-direction: column; }
    .content-box { text-align: center; }
    .benefit-list { display: inline-block; text-align: left; }
    .tagline { justify-content: center; }
}





/* Fresh Classes - Prefix: bj-mtrx- */
.bj-mtrx-section {
    background: #ffffff;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
}

.bj-mtrx-tag {
    color: #10b981;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
}

.bj-mtrx-main-title {
    font-weight: 900;
    font-size: 42px;
    color: #0f172a;
    margin-bottom: 20px;
}

.bj-mtrx-gradient {
    background: linear-gradient(90deg, #10b981, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bj-mtrx-lead {
    color: #64748b;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* New Card Design */
.bj-mtrx-card {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 30px;
    border: 1px solid #f1f5f9;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
}

.bj-mtrx-num {
    position: absolute;
    top: 30px;
    right: 35px;
    font-size: 40px;
    font-weight: 900;
    color: #f1f5f9;
    transition: 0.5s;
    line-height: 1;
}

.bj-mtrx-icon {
    width: 65px;
    height: 65px;
    background: #f8fafc;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #10b981;
    margin-bottom: 30px;
    transition: 0.5s;
}

.bj-mtrx-heading {
    font-weight: 800;
    font-size: 22px;
    color: #0f172a;
    margin-bottom: 15px;
}

.bj-mtrx-info {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Interaction Effects */
.bj-mtrx-card:hover {
    background: #0f172a;
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
    border-color: #0f172a;
}

.bj-mtrx-card:hover .bj-mtrx-num {
    color: rgba(16, 185, 129, 0.2);
}

.bj-mtrx-card:hover .bj-mtrx-icon {
    background: #10b981;
    color: #ffffff;
    transform: scale(1.1);
}

.bj-mtrx-card:hover .bj-mtrx-heading {
    color: #ffffff;
}

.bj-mtrx-card:hover .bj-mtrx-info {
    color: #94a3b8;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .bj-mtrx-main-title { font-size: 32px; }
    .bj-mtrx-section { padding: 60px 0; }
}



/* mission and vision */


/* Force Icons to Render Properly */
        .fa-solid, .fas {
            font-family: "Font Awesome 6 Free" !important;
            font-weight: 900 !important;
            display: inline-block !important;
        }

        /* --- SECTION STYLING --- */
        .mv-section {
            padding: 100px 0;
            background-color: var(--bg-light);
            position: relative;
        }

        .mv-header {
            margin-bottom: 70px;
        }

        .mv-header h6 {
            color: var(--solar-green);
            letter-spacing: 4px;
            font-size: 13px;
            margin-bottom: 15px;
        }

        .mv-main-title {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: var(--dark-text);
            line-height: 1.1;
        }

        .mv-main-title span {
            background: linear-gradient(90deg, var(--solar-green), var(--solar-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* --- CARD STYLING --- */
        .mv-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.03);
            border-radius: 30px;
            padding: 50px;
            height: 100%;
            transition: var(--transition);
            box-shadow: var(--card-shadow);
            position: relative;
            overflow: hidden;
        }

        .mv-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--card-hover-shadow);
            border-color: rgba(16, 185, 129, 0.2);
        }

        /* Icon Box */
        .mv-icon-box {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
            margin-bottom: 35px;
            transition: var(--transition);
        }

        .icon-mission { background: rgba(16, 185, 129, 0.1); color: var(--solar-green); }
        .icon-vision { background: rgba(251, 191, 36, 0.1); color: var(--solar-yellow); }

        .mv-card:hover .mv-icon-box {
            transform: scale(1.15) rotate(8deg);
        }

        /* Card Content */
        .mv-title {
            font-family: 'Syne', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 20px;
        }

        .mv-description {
            font-size: 16px;
            line-height: 1.8;
            color: var(--muted-text);
            margin-bottom: 30px;
        }

        /* Bullet Points */
        .mv-list {
            list-style: none;
            padding: 0; margin: 0;
        }

        .mv-list li {
            font-size: 15px;
            font-weight: 600;
            color: var(--dark-text);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .mv-list i {
            font-size: 18px;
            color: var(--solar-green);
        }

        .vision-card .mv-list i {
            color: var(--solar-yellow);
        }

        /* Background Glow Effect on Hover */
        .mv-card::after {
            content: '';
            position: absolute;
            bottom: -50px; right: -50px;
            width: 150px; height: 150px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            transition: var(--transition);
        }

        /* --- MOBILE OPTIMIZATION --- */
        @media (max-width: 768px) {
            .mv-section { padding: 60px 0; }
            .mv-card { padding: 35px 25px; }
            .mv-main-title { font-size: 2.2rem; }
        }




        /* --- Why Choose Us Section Styles --- */
:root {
    --solar-green: #10b981;
    --solar-yellow: #fbbf24;
    --dark-navy: #0f172a;
    --muted-slate: #64748b;
    --bg-soft: #fcfdfe;
    --card-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    --hover-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.wcu-section {
    padding: 100px 0;
    background-color: var(--bg-soft);
    font-family: 'Inter', sans-serif;
}

/* Badge Styling */
.wcu-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--solar-green);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Heading Styling */
.wcu-main-heading {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.wcu-main-heading .text-accent {
    color: var(--solar-green);
}

.wcu-subtitle {
    color: var(--muted-slate);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.wcu-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--solar-green), var(--solar-yellow));
    margin: 0 auto;
    border-radius: 10px;
}

/* Card Styling */
.wcu-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 45px 35px;
    border-radius: 24px;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    text-align: left;
}

.wcu-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--hover-shadow);
    border-color: rgba(16, 185, 129, 0.1);
}

/* Icon Box */
.wcu-icon-box {
    width: 65px;
    height: 65px;
    background: #f8fafc;
    color: var(--dark-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 18px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.wcu-card:hover .wcu-icon-box {
    background: var(--solar-green);
    color: #fff;
    transform: rotateY(180deg);
}

.wcu-card.accent-green:hover .wcu-icon-box { background: var(--solar-green); }
.wcu-card.accent-yellow:hover .wcu-icon-box { background: var(--solar-yellow); }

/* Card Content */
.wcu-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.wcu-card-text {
    color: var(--muted-slate);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Stats Wrapper */
.wcu-stats-wrapper {
    background: var(--dark-navy);
    padding: 40px;
    border-radius: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #fff;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item { text-align: center; }
.stat-item h5 { 
    font-family: 'Syne', sans-serif;
    font-size: 32px; 
    font-weight: 800; 
    color: var(--solar-green);
    margin-bottom: 5px;
}
.stat-item p { 
    margin: 0; 
    font-size: 14px; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    opacity: 0.8;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive Fixes */
@media (max-width: 991px) {
    .wcu-stats-wrapper { flex-direction: column; text-align: center; }
    .stat-divider { display: none; }
    .wcu-card { padding: 35px 25px; }
}

/* Icons Fix for Font Awesome */
.fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}




/* --- Our Working Process Styles --- */
:root {
    --solar-green: #10b981;
    --solar-yellow: #fbbf24;
    --dark-blue: #0f172a;
    --muted-gray: #64748b;
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.process-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Badge & Header */
.process-badge {
    color: var(--solar-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 13px;
    margin-bottom: 15px;
}

.process-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.process-title .text-accent {
    color: var(--solar-green);
}

.process-subtitle {
    color: var(--muted-gray);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.process-underline {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--solar-green), var(--solar-yellow));
    margin: 0 auto;
    border-radius: 10px;
}

/* Row Logic: Connecting Arrows (Desktop Only) */
@media (min-width: 992px) {
    .process-row { position: relative; }
}

/* Step Card */
.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

/* Image Box Styling */
.step-img-box {
    position: relative;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.step-img-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: var(--transition);
}

.step-card:hover .step-img-box img {
    transform: scale(1.1);
}

/* Step Number Badge */
.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--solar-green);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
    border: 2px solid white;
}

/* Content Styling */
.step-icon {
    font-size: 24px;
    color: var(--solar-green);
    margin-bottom: 15px;
    transition: var(--transition);
}

.step-card h4 {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--muted-gray);
    line-height: 1.6;
    padding: 0 10px;
}

/* Hover Effects */
.step-card:hover {
    transform: translateY(-10px);
}

.step-card:hover .step-icon {
    color: var(--solar-yellow);
    transform: scale(1.2);
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .step-img-box {
        max-width: 300px;
        margin: 0 auto 20px;
    }
    .step-card {
        margin-bottom: 40px;
    }
}

/* Font Awesome Fix */
.fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}



/* --- Trust Section Styles --- */
:root {
    --solar-green: #10b981;
    --solar-yellow: #fbbf24;
    --dark-navy: #0f172a;
    --muted-slate: #64748b;
    --bg-light: #f8fafc;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Heading Styling */
.trust-main-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--dark-navy);
}

.trust-main-title .text-accent {
    color: var(--solar-green);
}

.trust-subtitle {
    color: var(--muted-slate);
    font-size: 18px;
    margin-bottom: 25px;
}

.trust-line {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--solar-green), var(--solar-yellow));
    margin: 0 auto;
    border-radius: 10px;
}

/* Stats Styling */
.stat-card {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.1);
}

.stat-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--solar-green);
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 14px;
    color: var(--muted-slate);
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

/* Testimonial Cards */
.review-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(0,0,0,0.02);
    height: 100%;
    transition: var(--transition);
}

.review-card:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.06);
}

.review-stars {
    color: var(--solar-yellow);
    font-size: 14px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 16px;
    font-style: italic;
    color: var(--dark-navy);
    line-height: 1.7;
    margin-bottom: 25px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: var(--dark-navy);
}

.client-info span {
    font-size: 13px;
    color: var(--muted-slate);
}

/* Partner Logos */
.partner-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.partner-logo img {
    height: 40px;
    width: auto;
    filter: grayscale(100%) opacity(0.5);
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

/* Trust Badges */
.trust-badge {
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-navy);
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-badge i {
    color: var(--solar-green);
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .trust-section { padding: 60px 0; }
    .partner-row { gap: 30px; }
    .partner-logo img { height: 30px; }
}

/* Icon Fix */
.fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}


/* --- Our Banking Partners Styles --- */
:root {
    --solar-green: #10b981;
    --solar-yellow: #fbbf24;
    --dark-navy: #0f172a;
    --muted-slate: #64748b;
    --bg-white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bank-partners-section {
    padding: 100px 0;
    background-color: #ffffff; /* Clean white background */
    font-family: 'Inter', sans-serif;
}

/* Badge Styling */
.bank-badge {
    background: rgba(16, 185, 129, 0.08);
    color: var(--solar-green);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

/* Heading Styling */
.bank-main-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--dark-navy);
}

.bank-main-title .text-accent {
    color: var(--solar-green);
}

.bank-subtitle {
    color: var(--muted-slate);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.bank-line {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--solar-green), var(--solar-yellow));
    margin: 0 auto;
    border-radius: 10px;
}

/* Bank Logo Cards */
.bank-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 35px 25px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.bank-logo {
    max-width: 100%;
    max-height: 50px;
    filter: grayscale(100%) opacity(0.5); /* Default: Low opacity & Gray */
    transition: var(--transition);
    object-fit: contain;
}

/* Hover Effects */
.bank-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(16, 185, 129, 0.2);
}

.bank-card:hover .bank-logo {
    filter: grayscale(0%) opacity(1); /* Full color on hover */
    transform: scale(1.05);
}

/* Bank Note */
.bank-note {
    font-size: 14px;
    color: var(--muted-slate);
    background: #f8fafc;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bank-partners-section { padding: 60px 0; }
    .bank-card { height: 100px; padding: 20px; }
    .bank-logo { max-height: 40px; }
}

/* Icon Fix */
.fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}




/* --- FAQ Section Styles --- */
:root {
    --solar-green: #10b981;
    --solar-yellow: #fbbf24;
    --dark-navy: #0f172a;
    --muted-slate: #64748b;
    --bg-white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-section {
    padding: 100px 0;
    background-color: #fcfdfe;
    font-family: 'Inter', sans-serif;
}

/* Header Styling */
.faq-main-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--dark-navy);
}

.faq-main-title .text-accent {
    color: var(--solar-green);
}

.faq-subtitle {
    color: var(--muted-slate);
    font-size: 18px;
    margin-bottom: 25px;
}

.faq-line {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--solar-green), var(--solar-yellow));
    margin: 0 auto 50px;
    border-radius: 10px;
}

/* Custom Accordion Styling */
.custom-faq .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.custom-faq .accordion-item:hover {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.custom-faq .accordion-button {
    padding: 25px;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-navy);
    background-color: #ffffff;
    border: none;
    box-shadow: none;
    transition: var(--transition);
}

.custom-faq .accordion-button:not(.collapsed) {
    background-color: rgba(16, 185, 129, 0.05);
    color: var(--solar-green);
}

/* Icon Box beside Question */
.icon-box {
    color: var(--solar-green);
    font-size: 18px;
    width: 30px;
    display: inline-block;
}

/* Arrow Icon Customization */
.custom-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f172a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: var(--transition);
}

.custom-faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2310b981'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.custom-faq .accordion-body {
    padding: 0 25px 25px 70px;
    color: var(--muted-slate);
    font-size: 16px;
    line-height: 1.7;
    background-color: rgba(16, 185, 129, 0.05);
}

/* FAQ CTA Styling */
.faq-cta {
    margin-top: 60px;
    padding: 40px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.faq-cta h5 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 10px;
}

.faq-cta p {
    color: var(--muted-slate);
    margin-bottom: 25px;
}

.btn-faq-contact {
    background: linear-gradient(90deg, var(--solar-green), var(--solar-yellow));
    color: #000 !important;
    font-weight: 800;
    padding: 15px 35px;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-faq-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .faq-section { padding: 60px 0; }
    .custom-faq .accordion-button { padding: 20px; font-size: 16px; }
    .custom-faq .accordion-body { padding: 0 20px 20px 20px; }
    .icon-box { display: none; } /* Hide icons on mobile for space */
}

/* Font Awesome Fix */
.fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}



/* --- Professional Certifications Styles --- */
:root {
    --solar-green: #10b981;
    --solar-yellow: #fbbf24;
    --dark-slate: #0f172a;
    --text-muted: #64748b;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cert-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    position: relative;
}

/* Header UI */
.cert-badge {
    background: rgba(16, 185, 129, 0.08);
    color: var(--solar-green);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
}

.cert-main-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--dark-slate);
    line-height: 1.2;
}

.cert-main-title .text-accent {
    color: var(--solar-green);
}

.cert-subtitle {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cert-line {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--solar-green), var(--solar-yellow));
    margin: 0 auto 50px;
    border-radius: 10px;
}

/* Certificate Card UI */
.cert-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    padding: 40px 25px;
    border-radius: 20px;
    height: 100%;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cert-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #f8fafc;
    color: var(--dark-slate);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.cert-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-slate);
    margin-bottom: 12px;
}

.cert-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Hover Effects */
.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}

.cert-card:hover .cert-icon-wrapper {
    background: var(--solar-green);
    color: #ffffff;
    transform: rotateY(180deg);
}

/* Highlight Important Card */
.highlight-card {
    background: #fcfdfe;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

/* Bottom Note UI */
.compliance-note {
    background: #f8fafc;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    border: 1px dashed #e2e8f0;
}

.compliance-note p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cert-section { padding: 60px 0; }
    .cert-card { padding: 30px 20px; }
    .compliance-note { border-radius: 15px; padding: 15px 20px; }
}

/* Font Awesome Icon Fix */
.fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}


/* --- Contact Our Solar Experts Styles --- */
:root {
    --solar-green: #10b981;
    --solar-yellow: #fbbf24;
    --dark-bg: #0f172a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-expert-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Background Glow Effect */
.contact-expert-section::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    top: -100px; left: -100px;
    z-index: 0;
}

/* Content Styling */
.cta-badge {
    background: rgba(251, 191, 36, 0.15);
    color: var(--solar-yellow);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 25px;
}

.cta-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 25px;
}

.cta-title .text-accent {
    color: var(--solar-green);
}

.cta-desc {
    color: #94a3b8;
    font-size: 18px;
    margin-bottom: 35px;
}

/* Features List */
.cta-features {
    list-style: none;
    padding: 0;
}

.cta-features li {
    color: #e2e8f0;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-features i {
    color: var(--solar-green);
    font-size: 18px;
}

/* Call Box */
.quick-call-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.call-icon {
    width: 60px; height: 60px;
    background: var(--solar-green);
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.call-text span {
    color: #94a3b8;
    font-size: 14px;
}

.call-text h5 {
    color: #fff;
    font-weight: 700;
    margin: 0;
}

/* Glassmorphism Card Form */
.glass-form-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.form-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 30px;
}

/* Custom Inputs */
.custom-input {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 15px;
    transition: var(--transition);
}

.custom-input:focus {
    border-color: var(--solar-green) !important;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
    outline: none;
}

.custom-input::placeholder {
    color: #64748b;
}

/* Button Styling */
.btn-cta-gradient {
    background: linear-gradient(90deg, var(--solar-green), var(--solar-yellow));
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
    color: #000;
}

.btn-cta-gradient:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
    color: #000;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .glass-form-card { padding: 30px; }
    .cta-title { font-size: 2.8rem; }
}

@media (max-width: 767px) {
    .contact-expert-section { padding: 60px 0; }
    .cta-title { font-size: 2.2rem; }
    .quick-call-box { margin-bottom: 30px; }
}

/* Font Awesome Icon Fix */
.fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}



/* --- Premium Footer Styles --- */
:root {
    --solar-green: #10b981;
    --solar-yellow: #fbbf24;
    --footer-dark: #020617;
    --footer-accent: #0f172a;
    --muted-text: #94a3b8;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-footer {
    background-color: var(--footer-dark);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    padding-top: 0;
}

/* Footer Top: Newsletter Section */
.footer-top {
    background: linear-gradient(90deg, #064e3b 0%, #065f46 100%);
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 5px;
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: var(--solar-yellow);
}

.btn-solar-yellow {
    background-color: var(--solar-yellow);
    color: #000;
    font-weight: 700;
    padding: 0 35px;
    border-radius: 0 50px 50px 0;
    border: none;
    transition: var(--transition);
}

.btn-solar-yellow:hover {
    background-color: #fff;
    transform: scale(1.02);
}

/* Footer Middle */
.footer-middle {
    padding: 80px 0;
}

.icon-brand {
    font-size: 30px;
    color: var(--solar-green);
    margin-right: 10px;
}

.brand-text {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -1px;
}

.about-text {
    color: var(--muted-text);
    font-size: 15px;
    line-height: 1.8;
    margin-top: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--footer-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--solar-green);
    transform: translateY(-5px);
}

/* Links & Headings */
.footer-heading {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background-color: var(--solar-yellow);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--muted-text);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.footer-links a:hover {
    color: var(--solar-green);
    padding-left: 10px;
}

/* Contact List */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-list i {
    color: var(--solar-green);
    font-size: 18px;
    margin-top: 5px;
}

.contact-list span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted-text);
}

.contact-list p {
    margin: 0;
    font-weight: 600;
    font-size: 15px;
}

/* Bottom Bar */
.footer-bottom {
    padding: 30px 0;
    background-color: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    color: var(--muted-text);
    font-size: 14px;
}

.bottom-links a {
    color: var(--muted-text);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.bottom-links a:hover {
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .footer-heading { margin-top: 20px; }
    .newsletter-form .form-control { border-radius: 50px; margin-bottom: 15px; }
    .btn-solar-yellow { border-radius: 50px; width: 100%; height: 50px; }
}

/* Font Awesome Fix */
.fa-solid, .fa-brands {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-weight: 900 !important;
}




/* --- Why Choose Us Premium Styles --- */
:root {
    --solar-green: #10b981;
    --solar-yellow: #fbbf24;
    --dark-navy: #0f172a;
    --muted-slate: #64748b;
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-choose-section {
    padding: 120px 0;
    background-color: #ffffff;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Image Side Styling */
.why-image-wrapper {
    position: relative;
    z-index: 1;
}

.main-why-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
    transition: var(--transition);
}

.why-image-wrapper:hover .main-why-img {
    transform: scale(1.02);
}

/* Floating Trust Card (Glassmorphism) */
.trust-floating-card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: var(--solar-green);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.trust-info h5 {
    margin: 0;
    font-weight: 800;
    color: var(--dark-navy);
    font-size: 24px;
}

.trust-info p {
    margin: 0;
    font-size: 13px;
    color: var(--muted-slate);
    font-weight: 600;
}

/* Shape Glow Behind Image */
.shape-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    z-index: -1;
}

/* Content Side Styling */
.section-tag {
    color: var(--solar-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 15px;
    display: block;
}

.why-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--dark-navy);
    line-height: 1.1;
}

.why-title .text-accent {
    color: var(--solar-green);
}

.why-subtitle {
    color: var(--muted-slate);
    font-size: 18px;
    margin-top: 20px;
    line-height: 1.6;
}

.why-divider {
    width: 70px;
    height: 5px;
    background: linear-gradient(90deg, var(--solar-green), var(--solar-yellow));
    border-radius: 10px;
    margin: 30px 0;
}

/* Feature Item Styling */
.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #f8fafc;
    color: var(--solar-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.feature-text h5 {
    font-weight: 700;
    font-size: 18px;
    color: var(--dark-navy);
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--muted-slate);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Hover State for Features */
.feature-item:hover .feature-icon {
    background: var(--solar-green);
    color: #ffffff;
    transform: rotate(10deg);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .why-choose-section { padding: 80px 0; }
    .why-image-wrapper { margin-bottom: 60px; padding-right: 20px; }
    .trust-floating-card { bottom: -20px; right: 0; padding: 15px 20px; }
}

/* Font Awesome Icon Fix */
.fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}



/* --- Our Solutions Premium Styles --- */
:root {
    --solar-green: #10b981;
    --solar-yellow: #fbbf24;
    --dark-slate: #0f172a;
    --text-muted: #64748b;
    --card-bg: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.solutions-section {
    padding: 100px 0;
    background-color: #f8fafc;
    font-family: 'Inter', sans-serif;
}

/* Header Styles */
.sol-tag {
    color: var(--solar-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 10px;
}

.sol-main-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--dark-slate);
    margin-bottom: 5px;
}

.sol-main-title .text-accent {
    color: var(--solar-green);
}

.sol-subtitle {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.sol-intro {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 25px;
}

.sol-line {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--solar-green), var(--solar-yellow));
    margin: 0 auto 50px;
    border-radius: 10px;
}

/* Solution Card Styling */
.sol-card {
    background: var(--card-bg);
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.02);
}

.sol-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
}

/* Image Wrapper */
.sol-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.sol-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.sol-card:hover .sol-img-wrapper img {
    transform: scale(1.1);
}

/* Badges */
.sol-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.badge-affordable { background-color: var(--solar-green); }
.badge-remote { background-color: var(--dark-slate); }
.badge-popular { background-color: var(--solar-yellow); color: #000; }

/* Content Area */
.sol-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sol-card-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--dark-slate);
    margin-bottom: 12px;
}

.sol-card-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Features List */
.sol-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.sol-features li {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-slate);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sol-features i {
    color: var(--solar-green);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Featured Card Highlight */
.featured-sol {
    border: 2px solid rgba(251, 191, 36, 0.3);
}

/* CTA Button */
.btn-sol-gradient {
    background: linear-gradient(90deg, var(--solar-green), var(--solar-yellow));
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 800;
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-sol-gradient:hover {
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
    transform: scale(1.02);
    color: #000;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .solutions-section { padding: 60px 0; }
    .sol-card { margin-bottom: 20px; }
}

/* Font Awesome Fix */
.fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

/* ROOT */
:root {
    --solar-green: #10b981;
    --solar-yellow: #fbbf24;
    --dark-navy: #0f172a;
    --muted-text: #64748b;
}

/* SECTION */
.about-us-section {
    padding: 120px 0;
    background: #ffffff;
    font-family: 'Syne', sans-serif;
    
}

/* IMAGE SIDE */
.about-img-container {
    position: relative;
}

.about-main-img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.about-badge-floating {
    position: absolute;
    top: -10px;
    left: -10px;
    background: linear-gradient(135deg, var(--solar-green), #059669);
    color: #fff;
    padding: 20px;
    border-radius: 20px;
    z-index: 2;
}

.experience-years {
    font-size: 28px;
    font-weight: 900;
}

.about-shape-bg {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 70%;
    height: 70%;
    background: rgba(251,191,36,0.2);
    border-radius: 20px;
    z-index: -1;
}

/* CONTENT */
.about-tag {
    color: var(--solar-green);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-navy);
}

.text-accent {
    color: var(--solar-green);
}

.about-desc {
    color: var(--muted-text);
    font-size: 16px;
    margin: 20px 0;
}

.about-divider {
    width: 60px;
    height: 4px;
    background: var(--solar-yellow);
    margin-bottom: 30px;
}

/* CARDS */
.about-mini-card {
    background: #f8fafc;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.about-mini-card i {
    color: var(--solar-green);
}

/* STATS */
.about-stats {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.stat-item h4 {
    font-weight: 800;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #ddd;
}

/* TABLET FIX */
@media (max-width: 1180px) {
    .about-stats {
        flex-wrap: wrap;
    }
    .stat-divider {
        display: none;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .about-us-section {
        padding: 80px 0;
    }

    .about-badge-floating {
        position: relative;
        margin-bottom: 15px;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-stats {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* contactUs */



/* --- Premium Contact Us Styles --- */
:root {
    --solar-green: #10b981;
    --solar-yellow: #fbbf24;
    --dark-navy: #0f172a;
    --muted-text: #94a3b8;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-page-section {
    padding: 100px 0;
    background-color: #f8fafc;
    font-family: 'Syne', sans-serif;

}

.contact-wrapper {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.08);
}

/* Left Info Side */
.contact-info-side {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #1e293b 100%);
    padding: 60px 50px;
    height: 100%;
    color: #fff;
}

.contact-tag {
    color: var(--solar-green);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    display: block;
    margin-bottom: 15px;
}

.contact-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-yellow { color: var(--solar-yellow); }

.contact-text {
    color: var(--muted-text);
    font-size: 16px;
    margin-bottom: 40px;
}

/* Info Items */
.contact-info-list .info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px; height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--solar-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.info-details span {
    display: block;
    font-size: 12px;
    color: var(--muted-text);
    text-transform: uppercase;
    font-weight: 700;
}

.info-details p {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
}

.contact-trust-points {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-trust-points p {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-trust-points i {
    color: var(--solar-green);
    margin-right: 10px;
}

/* Right Form Side */
.contact-form-side {
    padding: 60px 50px;
    background: #fff;
}

.form-group label {
    font-weight: 700;
    font-size: 13px;
    color: var(--dark-navy);
    margin-bottom: 8px;
    display: block;
}

.ct-input {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    padding: 14px 18px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    transition: var(--transition) !important;
}

.ct-input:focus {
    background: #fff !important;
    border-color: var(--solar-green) !important;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.1) !important;
    outline: none !important;
}

.btn-contact-submit {
    background: linear-gradient(90deg, var(--solar-green), #059669);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .contact-info-side, .contact-form-side { padding: 40px 30px; }
    .contact-wrapper { border-radius: 20px; }
}


/* --- Unique Solar Service Page Styles --- */
:root {
    --slr-srv-green: #10b981;
    --slr-srv-yellow: #fbbf24;
    --slr-srv-dark: #0f172a;
    --slr-srv-muted: #64748b;
    --slr-srv-ease: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hero Section */
.slr-srv-hero {
    padding: 140px 0 100px;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), 
                url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&q=80&w=1500');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.slr-srv-hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
}

.slr-srv-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 15px auto 0;
}

/* Grid Section */
.slr-srv-grid-wrapper {
    padding: 100px 0;
    background-color: #f8fafc;
}

.slr-srv-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: var(--slr-srv-ease);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    border: 1px solid rgba(0,0,0,0.02);
}

.slr-srv-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
}

.slr-srv-card-icon {
    width: 75px; height: 75px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--slr-srv-green);
    font-size: 28px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--slr-srv-ease);
}

.slr-srv-card:hover .slr-srv-card-icon {
    background: var(--slr-srv-green);
    color: #fff;
    transform: rotateY(180deg);
}

.slr-srv-card-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 22px;
}

.slr-srv-card-text {
    color: var(--slr-srv-muted);
    font-size: 15px;
    line-height: 1.6;
}

.slr-srv-card-link {
    font-weight: 700;
    color: var(--slr-srv-green);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.slr-srv-card-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--slr-srv-yellow);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
}

/* Featured Block */
.slr-srv-featured-box { padding: 100px 0; background: #fff; }

.slr-srv-featured-media img {
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.slr-srv-pre-title {
    color: var(--slr-srv-green);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
}

.slr-srv-main-heading {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--slr-srv-dark);
}

.slr-srv-text-green { color: var(--slr-srv-green); }

.slr-srv-check-list { list-style: none; padding: 0; margin: 30px 0; }

.slr-srv-check-list li {
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.slr-srv-check-list i { color: var(--slr-srv-green); }

.slr-srv-btn-primary {
    background: var(--slr-srv-green);
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--slr-srv-ease);
}

/* CTA Section */
.slr-srv-cta-final {
    padding: 80px 0;
    background: linear-gradient(90deg, var(--slr-srv-green), var(--slr-srv-yellow));
}

.slr-srv-cta-heading {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    color: #000;
    margin-bottom: 30px;
}

.slr-srv-btn-dark {
    background-color: var(--slr-srv-dark);
    color: #fff;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: var(--slr-srv-ease);
    display: inline-block;
}

.slr-srv-btn-dark:hover {
    transform: scale(1.05);
    color: #fff;
}



/* --- Solar About Us Premium Styles --- */
:root {
    --slr-green: #10b981;
    --slr-yellow: #fbbf24;
    --slr-dark: #0f172a;
    --slr-slate: #64748b;
    --slr-ease: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 1. Hero Section */
.slr-abt-hero {
    padding: 140px 0 100px;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), 
                url('https://images.unsplash.com/photo-1509391366360-fe5bb58583bb?auto=format&fit=crop&q=80&w=1500');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.slr-abt-hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
}

.slr-abt-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 15px auto 0;
}

/* 2. Who We Are */
.slr-abt-who-we-are {
    padding: 100px 0;
    background-color: #ffffff;
}

.slr-abt-img-box {
    position: relative;
    padding-right: 20px;
}

.slr-abt-main-img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    transition: var(--slr-ease);
}

.slr-abt-experience-badge {
    position: absolute;
    bottom: -20px;
    right: 40px;
    background: var(--slr-green);
    color: #fff;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
    text-align: center;
}

.badge-num { font-size: 30px; font-weight: 900; display: block; line-height: 1; }
.badge-text { font-size: 12px; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }

.slr-abt-tag {
    color: var(--slr-green);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
}

.slr-abt-heading {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    line-height: 1.2;
}

.text-green { color: var(--slr-green); }

.slr-abt-desc {
    color: var(--slr-slate);
    font-size: 18px;
    line-height: 1.7;
    margin: 25px 0;
}

.slr-abt-list { list-style: none; padding: 0; }
.slr-abt-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.slr-abt-list i { color: var(--slr-green); font-size: 20px; }

/* 3. Mission & Vision */
.slr-abt-mission-vision {
    padding: 80px 0;
    background-color: #f8fafc;
}

.slr-abt-mv-card {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    height: 100%;
    transition: var(--slr-ease);
    border: 1px solid rgba(0,0,0,0.02);
}

.slr-abt-mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.mv-icon {
    width: 60px; height: 60px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--slr-green);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.slr-abt-mv-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; margin-bottom: 15px; }
.slr-abt-mv-card p { color: var(--slr-slate); line-height: 1.6; }

/* 4. Stats Section */
.slr-abt-stats {
    padding: 80px 0;
    background-color: var(--slr-dark);
    color: #fff;
}

.stat-count {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--slr-yellow);
    margin-bottom: 5px;
}

.stat-item p {
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* 5. CTA Section */
.slr-abt-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--slr-green), #059669);
    color: #fff;
}

.cta-heading { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 3rem; }
.cta-text { font-size: 1.2rem; margin-bottom: 40px; opacity: 0.9; }

.slr-abt-btn-premium {
    background: var(--slr-yellow);
    color: #000;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--slr-ease);
    display: inline-block;
}

.slr-abt-btn-premium:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    color: #000;
}

/* Responsive */
@media (max-width: 991px) {
    .slr-abt-img-box { margin-bottom: 50px; padding-right: 0; }
    .slr-abt-heading { font-size: 2.2rem; }
}




/* --- Our Vision Unique Styles --- */
:root {
    --slr-green: #10b981;
    --slr-yellow: #fbbf24;
    --slr-dark: #0f172a;
    --slr-slate: #64748b;
    --slr-ease: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slr-vis-section {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Image Side */
.slr-vis-image-container {
    position: relative;
    padding: 20px;
}

.slr-vis-main-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
    z-index: 2;
    position: relative;
    transition: var(--slr-ease);
}

.slr-vis-image-container:hover .slr-vis-main-img {
    transform: scale(1.03) translateY(-5px);
}

.slr-vis-glow {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    z-index: 1;
    filter: blur(40px);
}

.slr-vis-insight-card {
    position: absolute;
    bottom: 40px;
    left: -10px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    z-index: 3;
    border: 1px solid rgba(16, 185, 129, 0.1);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.slr-vis-insight-icon {
    width: 40px; height: 40px;
    background: var(--slr-green);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* Content Side */
.slr-vis-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--slr-green);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.slr-vis-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--slr-dark);
    margin-bottom: 10px;
}

.slr-vis-divider {
    width: 50px;
    height: 4px;
    background: var(--slr-yellow);
    margin-bottom: 30px;
    border-radius: 2px;
}

.slr-vis-inspirational-heading {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.1;
    margin-bottom: 25px;
}

.text-green { color: var(--slr-green); }
.text-yellow { color: var(--slr-yellow); }

.slr-vis-desc {
    color: var(--slr-slate);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.slr-vis-points {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.slr-vis-points li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 15px;
    color: var(--slr-dark);
}

.vis-point-icon {
    width: 35px; height: 35px;
    background: #f8fafc;
    color: var(--slr-green);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    transition: var(--slr-ease);
}

.slr-vis-points li:hover .vis-point-icon {
    background: var(--slr-green);
    color: #fff;
    transform: scale(1.1);
}

.slr-vis-stats-line {
    margin-top: 40px;
    padding: 15px 0;
    border-top: 1px solid #e2e8f0;
    font-size: 14px;
    color: var(--slr-slate);
}

.slr-vis-stats-line strong {
    color: var(--slr-dark);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .slr-vis-section { padding: 80px 0; }
    .slr-vis-image-container { margin-top: 50px; }
    .slr-vis-insight-card { left: 20px; bottom: 20px; }
}


/* --- Our Team Unique Styles --- */
:root {
    --slr-tm-green: #10b981;
    --slr-tm-yellow: #fbbf24;
    --slr-tm-dark: #0f172a;
    --slr-tm-slate: #64748b;
    --slr-tm-ease: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.slr-tm-section {
    padding: 100px 0;
    background: #fcfdfe;
    font-family: 'Inter', sans-serif;
}

/* Header Styles */
.slr-tm-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--slr-tm-green);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 15px;
}

.slr-tm-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--slr-tm-dark);
}

.text-green { color: var(--slr-tm-green); }

.slr-tm-divider {
    width: 60px;
    height: 4px;
    background: var(--slr-tm-yellow);
    margin: 15px auto 25px;
    border-radius: 2px;
}

.slr-tm-subtitle {
    color: var(--slr-tm-slate);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

/* Team Card Styles */
.slr-tm-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 15px;
    transition: var(--slr-tm-ease);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
}

.slr-tm-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
}

.slr-tm-img-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 25px;
}

.slr-tm-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: var(--slr-tm-ease);
}

.slr-tm-card:hover .slr-tm-img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

/* Social Icons Overlay */
.slr-tm-socials {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-bottom: 20px;
    transition: var(--slr-tm-ease);
    opacity: 0;
}

.slr-tm-card:hover .slr-tm-socials {
    bottom: 20px;
    opacity: 1;
}

.slr-tm-socials a {
    width: 38px;
    height: 38px;
    background: #fff;
    color: var(--slr-tm-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.slr-tm-socials a:hover {
    background: var(--slr-tm-green);
    color: #fff;
    transform: translateY(-3px);
}

/* Info Section */
.slr-tm-name {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--slr-tm-dark);
    margin-bottom: 5px;
}

.slr-tm-role {
    color: var(--slr-tm-green);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.slr-tm-bio {
    color: var(--slr-tm-slate);
    font-size: 14px;
    line-height: 1.5;
    padding: 0 10px;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .slr-tm-section { padding: 60px 0; }
    .slr-tm-socials { bottom: 20px; opacity: 1; position: relative; padding-top: 15px; }
    .slr-tm-card:hover { transform: translateY(-5px); }
}



/* --- Our Investors Unique Styles --- */
:root {
    --slr-inv-green: #10b981;
    --slr-inv-yellow: #fbbf24;
    --slr-inv-dark: #0f172a;
    --slr-inv-slate: #94a3b8;
    --slr-inv-bg: #fdfdfd;
    --slr-inv-ease: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slr-inv-section {
    padding: 100px 0;
    background-color: var(--slr-inv-bg);
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

/* Header Section */
.slr-inv-badge {
    background: rgba(16, 185, 129, 0.08);
    color: var(--slr-inv-green);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 15px;
}

.slr-inv-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--slr-inv-dark);
}

.text-green { color: var(--slr-inv-green); }

.slr-inv-divider {
    width: 50px;
    height: 3px;
    background: var(--slr-inv-yellow);
    margin: 15px auto 20px;
    border-radius: 2px;
}

.slr-inv-subtitle {
    color: var(--slr-inv-slate);
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
}

/* Logo Box Style */
.slr-inv-logo-box {
    text-align: center;
    padding: 30px 15px;
    background: #fff;
    border-radius: 20px;
    transition: var(--slr-inv-ease);
    border: 1px solid transparent;
}

.slr-inv-logo {
    max-width: 100%;
    height: 45px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--slr-inv-ease);
    margin-bottom: 15px;
}

.slr-inv-logo-box:hover {
    background: #ffffff;
    border-color: rgba(16, 185, 129, 0.15);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
    transform: translateY(-8px);
}

.slr-inv-logo-box:hover .slr-inv-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Partner Caption */
.slr-inv-partner-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--slr-inv-slate);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    opacity: 0;
    transition: var(--slr-inv-ease);
}

.slr-inv-logo-box:hover .slr-inv-partner-name {
    opacity: 1;
}

/* Footer Trust Note */
.slr-inv-footer-text {
    font-size: 13px;
    color: var(--slr-inv-slate);
    font-weight: 600;
}

.slr-inv-footer-text i {
    color: var(--slr-inv-green);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .slr-inv-logo { height: 35px; }
    .slr-inv-logo-box { padding: 20px 10px; }
    .slr-inv-partner-name { opacity: 0.7; font-size: 9px; }
}





/* --- Our Dealers Unique Styles --- */
:root {
    --slr-dlr-green: #10b981;
    --slr-dlr-yellow: #fbbf24;
    --slr-dlr-dark: #0f172a;
    --slr-dlr-slate: #64748b;
    --slr-dlr-ease: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slr-dlr-section {
    padding: 100px 0;
    background-color: #f8fafc;
    font-family: 'Inter', sans-serif;
}

/* Header Area */
.slr-dlr-top-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--slr-dlr-green);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 15px;
}

.slr-dlr-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--slr-dlr-dark);
}

.text-green { color: var(--slr-dlr-green); }

.slr-dlr-divider {
    width: 60px;
    height: 4px;
    background: var(--slr-dlr-yellow);
    margin: 15px auto 25px;
    border-radius: 2px;
}

.slr-dlr-subtitle {
    color: var(--slr-dlr-slate);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

/* Dealer Card Style */
.slr-dlr-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: var(--slr-dlr-ease);
    border: 1px solid rgba(0,0,0,0.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.slr-dlr-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
    border-color: var(--slr-dlr-green);
}

.slr-dlr-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.slr-dlr-status-badge {
    background: #ecfdf5;
    color: var(--slr-dlr-green);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.slr-dlr-icon {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    color: var(--slr-dlr-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--slr-dlr-ease);
}

.slr-dlr-card:hover .slr-dlr-icon {
    background: var(--slr-dlr-green);
    color: #fff;
}

/* Body Content */
.slr-dlr-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}

.slr-dlr-location {
    color: var(--slr-dlr-slate);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.slr-dlr-location i { color: var(--slr-dlr-green); margin-right: 5px; }

.slr-dlr-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: var(--slr-dlr-dark);
}

.slr-dlr-contact i { color: var(--slr-dlr-yellow); width: 20px; }

/* Footer Tag */
.slr-dlr-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.slr-dlr-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--slr-dlr-slate);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Area */
.slr-dlr-btn-outline {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid var(--slr-dlr-green);
    color: var(--slr-dlr-green);
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--slr-dlr-ease);
}

.slr-dlr-btn-outline:hover {
    background: var(--slr-dlr-green);
    color: #fff;
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .slr-dlr-title { font-size: 2rem; }
    .slr-dlr-card { padding: 25px; }
}




/* --- Our Suppliers Unique Styles --- */
:root {
    --slr-sup-green: #10b981;
    --slr-sup-yellow: #fbbf24;
    --slr-sup-dark: #0f172a;
    --slr-sup-slate: #94a3b8;
    --slr-sup-bg: #ffffff;
    --slr-sup-ease: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slr-sup-section {
    padding: 100px 0;
    background-color: var(--slr-sup-bg);
    position: relative;
    overflow: hidden;
}

/* Header Section */
.slr-sup-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--slr-sup-green);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 15px;
}

.slr-sup-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--slr-sup-dark);
}

.text-green { color: var(--slr-sup-green); }

.slr-sup-divider {
    width: 60px;
    height: 4px;
    background: var(--slr-sup-yellow);
    margin: 15px auto 25px;
    border-radius: 2px;
}

.slr-sup-subtitle {
    color: var(--slr-sup-slate);
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
}

/* Logo Box Styles */
.slr-sup-box {
    text-align: center;
    padding: 35px 20px;
    background: #fff;
    border-radius: 24px;
    transition: var(--slr-sup-ease);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.slr-sup-logo {
    max-width: 100%;
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.4;
    transition: var(--slr-sup-ease);
    margin-bottom: 15px;
}

.slr-sup-category {
    font-size: 10px;
    font-weight: 800;
    color: var(--slr-sup-slate);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--slr-sup-ease);
}

/* Hover Effects */
.slr-sup-box:hover {
    background: #fff;
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
}

.slr-sup-box:hover .slr-sup-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.slr-sup-box:hover .slr-sup-category {
    opacity: 1;
    transform: translateY(0);
    color: var(--slr-sup-green);
}

/* Footer Trust Badges */
.slr-sup-footer-badges {
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
    margin-top: 60px;
}

.slr-sup-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    color: var(--slr-sup-dark);
    font-size: 14px;
}

.slr-sup-trust-item i {
    font-size: 20px;
    color: var(--slr-sup-green);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .slr-sup-logo { height: 30px; }
    .slr-sup-title { font-size: 2rem; }
    .slr-sup-box { padding: 25px 10px; }
}




/* --- Solar Gallery Styles --- */
:root {
    --slr-gal-green: #10b981;
    --slr-gal-yellow: #fbbf24;
    --slr-gal-dark: #0f172a;
    --slr-gal-ease: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.slr-gal-hero {
    padding: 120px 0 80px;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), 
                url('https://images.unsplash.com/photo-1542332213-31f87348057f?auto=format&fit=crop&q=80&w=1500');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.slr-gal-hero-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 3.5rem; }

/* Filters */
.slr-gal-filter-btn {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    margin: 5px;
    transition: var(--slr-gal-ease);
    color: var(--slr-gal-dark);
}

.slr-gal-filter-btn.active, .slr-gal-filter-btn:hover {
    background: var(--slr-gal-green);
    color: #fff;
    border-color: var(--slr-gal-green);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

/* Gallery Card */
.slr-gal-wrapper { padding: 80px 0; background: #f8fafc; }

.slr-gal-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    aspect-ratio: 16/10;
}

.slr-gal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--slr-gal-ease);
}

.slr-gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--slr-gal-ease);
}

.slr-gal-card:hover .slr-gal-overlay { opacity: 1; }
.slr-gal-card:hover img { transform: scale(1.1); filter: blur(2px); }

.slr-gal-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 50px; height: 50px;
    background: var(--slr-gal-yellow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #000;
    transition: var(--slr-gal-ease);
}

.slr-gal-card:hover .slr-gal-icon { transform: translate(-50%, -50%) scale(1); }

.slr-gal-info h5 { color: #fff; font-weight: 800; margin-bottom: 5px; }
.slr-gal-info span { color: var(--slr-gal-green); font-weight: 700; font-size: 13px; text-transform: uppercase; }

/* Lightbox Modal */
.slr-gal-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.95);
    padding: 40px;
    align-items: center;
    justify-content: center;
}

.slr-gal-modal-content { max-width: 90%; max-height: 90%; border-radius: 10px; animation: zoom 0.3s; }

@keyframes zoom { from {transform: scale(0)} to {transform: scale(1)} }

.slr-gal-close {
    position: absolute;
    top: 30px; right: 40px;
    color: #fff; font-size: 40px; cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .slr-gal-hero-title { font-size: 2.2rem; }
}


/* --- Solar Portfolio Styles --- */
:root {
    --slr-green: #10b981;
    --slr-yellow: #fbbf24;
    --slr-dark: #0f172a;
    --slr-slate: #64748b;
    --slr-ease: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.slr-port-hero {
    padding: 140px 0 100px;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), 
                url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&q=80&w=1500');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.slr-port-badge {
    background: rgba(16, 185, 129, 0.2);
    color: var(--slr-green);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slr-port-hero-title { font-family: 'Syne', sans-serif; font-size: 4rem; font-weight: 800; margin-top: 15px; }

/* Filter Buttons */
.slr-port-filter-btn {
    border: none;
    background: transparent;
    padding: 10px 25px;
    font-weight: 700;
    color: var(--slr-slate);
    transition: var(--slr-ease);
    border-bottom: 3px solid transparent;
}

.slr-port-filter-btn.active {
    color: var(--slr-green);
    border-bottom-color: var(--slr-green);
}

/* Project Card */
.slr-port-wrapper { padding: 80px 0; background: #fcfdfe; }

.slr-port-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: var(--slr-ease);
    border: 1px solid rgba(0,0,0,0.04);
    cursor: pointer;
    height: 100%;
}

.slr-port-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
}

.slr-port-img-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.slr-port-img-box img {
    width: 100%; height: 100%; object-fit: cover;
    transition: var(--slr-ease);
}

.slr-port-tag {
    position: absolute;
    top: 20px; left: 20px;
    background: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    color: var(--slr-dark);
}

.slr-port-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 185, 129, 0.8);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--slr-ease);
}

.slr-port-card:hover .slr-port-overlay { opacity: 1; }
.slr-port-card:hover img { transform: scale(1.1); }

/* .btn-premium {
    background: #fff; border: none; padding: 12px 25px;
    border-radius: 50px; font-weight: 800; font-size: 14px;
} */

/* Card Content */
.slr-port-content { padding: 30px; }
.slr-port-loc { color: var(--slr-green); font-weight: 700; font-size: 13px; margin-bottom: 10px; }
.slr-port-name { font-family: 'Syne', sans-serif; font-weight: 800; margin-bottom: 20px; }
.slr-port-stats {
    display: flex; justify-content: space-between;
    padding-top: 15px; border-top: 1px solid #f1f5f9;
}
.slr-port-stats span { font-size: 14px; color: var(--slr-slate); }
.slr-port-stats strong { color: var(--slr-dark); }

/* Modal Styling */
.slr-port-modal .modal-content { border-radius: 30px; overflow: hidden; border: none; }
.text-green { color: var(--slr-green); }

/* Responsive */
@media (max-width: 768px) {
    .slr-port-hero-title { font-size: 2.5rem; }
}





/* Unique Styles for Full Blog Cards */
.slr-full-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.02);
}

.slr-full-img {
    height: 300px;
    width: 100%;
}

.slr-full-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slr-full-body {
    padding: 40px;
}

.slr-full-tag {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.slr-full-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    margin-top: 20px;
    color: #0f172a;
}

.slr-full-meta {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 25px;
}

.slr-full-text p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

/* Pagination UI */
.slr-pagination-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.nav-btn {
    background: #0f172a;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.nav-btn:hover:not(:disabled) {
    background: #10b981;
    transform: translateY(-2px);
}

.nav-btn:disabled {
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
}

.page-indicators { display: flex; gap: 10px; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: #e2e8f0; }
.dot.active { background: #10b981; width: 30px; border-radius: 10px; }



/* Unique Prefix: rs-sol- */
:root {
    --rs-green: #10b981;
    --rs-dark: #0f172a;
    --rs-white: #ffffff;
}

.rs-sol-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), 
                url('https://images.unsplash.com/photo-1513694203232-719a280e022f?auto=format&fit=crop&q=80&w=1500');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--rs-white);
}

.rs-sol-tag {
    background: var(--rs-green);
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.rs-sol-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 20px 0;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(90deg, #10b981, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rs-sol-lead {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 600px;
}

/* Benefit Cards */
.rs-sol-benefit-card {
    background: var(--rs-white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.rs-sol-benefit-card i {
    font-size: 40px;
    color: var(--rs-green);
    margin-bottom: 20px;
}

.rs-sol-benefit-card.highlight {
    background: var(--rs-dark);
    color: var(--rs-white);
}

.rs-sol-benefit-card:hover {
    transform: translateY(-10px);
}

/* Process Steps */
.rs-sol-step {
    position: relative;
    padding: 20px;
}

.step-num {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(16, 185, 129, 0.1);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.rs-sol-step h4 {
    position: relative;
    z-index: 1;
    font-weight: 800;
}

/* CTA Box */
.rs-sol-cta-box {
    background: var(--rs-dark);
    padding: 60px;
    border-radius: 30px;
    color: var(--rs-white);
    margin: 50px 0;
}

/* Reusable Buttons */
.bj-btn-prime {
    background: var(--rs-green);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    transition: 0.3s;
}

.bj-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 13px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.bj-btn-prime:hover { background: #0d9668; transform: scale(1.05); color: #fff;}
.bj-btn-outline:hover { background: #fff; color: var(--rs-dark); }

@media (max-width: 768px) {
    .rs-sol-title { font-size: 2.5rem; }
}





/* Unique Prefix: cm-pow- */
:root {
    --cm-green: #10b981;
    --cm-dark: #0f172a;
    --cm-slate: #1e293b;
}

.cm-pow-hero {
    background: linear-gradient(90deg, var(--cm-dark) 30%, rgba(15, 23, 42, 0.2) 100%), 
                url('https://images.unsplash.com/photo-1497440001374-f26997328c1b?auto=format&fit=crop&q=80&w=1500');
    background-size: cover;
    background-position: right;
    padding: 120px 0;
    color: #fff;
}

.cm-pow-label {
    color: var(--cm-green);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
}

.cm-pow-h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.cm-pow-accent {
    color: var(--cm-green);
}

.cm-pow-desc {
    font-size: 18px;
    color: #94a3b8;
    max-width: 650px;
    margin-bottom: 40px;
}

/* Feature Cards */
.cm-pow-feat-card {
    background: #f8fafc;
    padding: 45px 35px;
    border-radius: 4px; /* More corporate sharp edges */
    border-bottom: 4px solid transparent;
    transition: all 0.4s ease;
    height: 100%;
}

.cm-pow-feat-card.active, .cm-pow-feat-card:hover {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-bottom-color: var(--cm-green);
    transform: translateY(-5px);
}

.cm-pow-icon {
    font-size: 35px;
    color: var(--cm-green);
    margin-bottom: 25px;
}

.cm-pow-feat-card h4 {
    font-weight: 800;
    color: var(--cm-dark);
}

/* Buttons */
.cm-pow-btn {
    background: var(--cm-green);
    color: #fff;
    border: none;
    padding: 16px 35px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.cm-pow-btn-alt {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 14px 35px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
}

.cm-pow-btn:hover { background: #059669; color: #fff; }
.cm-pow-btn-alt:hover { border-color: var(--cm-green); color: var(--cm-green); }

@media (max-width: 991px) {
    .cm-pow-h1 { font-size: 2.8rem; }
    .cm-pow-hero { background: var(--cm-dark); padding: 80px 0; }
}



/* Unique Prefix: sm-care- */
:root {
    --sm-green: #10b981;
    --sm-dark: #0f172a;
    --sm-slate: #64748b;
    --sm-bg: #f8fafc;
}

.sm-care-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 120px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Background Effect */
.sm-care-hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.sm-care-tag {
    background: rgba(16, 185, 129, 0.15);
    color: var(--sm-green);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sm-care-h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-top: 25px;
    line-height: 1.2;
}

.sm-care-glow { color: var(--sm-green); text-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }

.sm-care-lead {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 25px auto 0;
}

/* Service Tasks */
.sm-care-task {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.sm-care-task:hover {
    border-color: var(--sm-green);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.sm-care-icon {
    font-size: 35px;
    color: var(--sm-green);
    margin-bottom: 20px;
}

/* Pricing Card */
.sm-care-price-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.05);
    border: 2px solid var(--sm-green);
}

.price-header h4 { font-weight: 800; color: var(--sm-dark); }
.price-tag { font-size: 28px; font-weight: 900; color: var(--sm-green); margin: 15px 0; }
.price-tag span { font-size: 14px; color: var(--sm-slate); font-weight: 600; }

.price-list { list-style: none; padding: 0; margin: 30px 0; }
.price-list li { margin-bottom: 15px; color: var(--sm-slate); font-weight: 500; }
.price-list li i { color: var(--sm-green); margin-right: 10px; }

.sm-care-btn-dark {
    background: var(--sm-dark);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.sm-care-btn-dark:hover { background: var(--sm-green); }

@media (max-width: 768px) {
    .sm-care-h1 { font-size: 2.5rem; }
}