   :root {
            --solar-green: #28a745;
            --solar-light-green: #89ff9e;
            --solar-dark: #1a3c1e;
            --hex-gradient: linear-gradient(135deg, #00d2ff 0%, #28a745 100%);
        }

        body {
            font-family: 'Outfit', sans-serif;
            margin: 0;
            padding: 0;
            background: #ffffff;
            overflow-x: hidden;
        }

        /* --- 1. Top Info Bar --- */
        .info-bar {
            display: flex;
            font-size: 13px;
            color: white;
            font-weight: 500;
            position: absolute;
            /* Overlap ke liye absolute use kiya */
            width: 100%;
            top: 0;
            z-index: 1100;
        }

        @media (max-width: 767px) {
            .info-bar {
                display: none;
            }
        }

        .info-left {
            background: linear-gradient(90deg,var(--solar-green) ,  var(--solar-dark));
            padding: 10px 30px;
            flex: 1.2;
            clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
        }

        .info-right {
            padding: 10px 30px;
            text-align: right;
            flex: 1;
            color: white;
        }

        /* --- 2. Overlapping Navbar --- */
        .navbar-wrapper {
            position: fixed;
            /* Always on top */
            width: 100%;
            padding: 0 4%;
            top: 45px;
            /* Info bar ke niche */
            z-index: 1050;
            transition: all 0.4s ease;
        }

        /* Scrolled State */
        .scrolled .navbar-wrapper {
            top: 10px;
            padding: 0 10%;
        }

        .navbar {
            background: linear-gradient(135deg, rgba(255, 253, 253, 0.968) 0% , rgba(40, 167, 69, 0.85) 100%);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 60px 10px 60px 10px;
            padding: 10px 40px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scrolled .navbar {
            border-radius: 50px;
            background: rgb(171 205 147 / 95%);
            padding: 8px 40px;
            border: 1px solid var(--solar-green);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            font-weight: 800;
            color: #ffffff !important;
            font-size: 1.6rem;
        }

        .scrolled .navbar-brand {
            color: var(--solar-green) !important;
        }

        .navbar-brand span {
            color: var(--solar-light-green);
        }

        .scrolled .navbar-brand span {
            color: var(--solar-dark);
        }

        .nav-link {
            color: #ffffff !important;
            font-weight: 500;
            margin: 0 10px;
        }

        .scrolled .nav-link {
            color: var(--solar-dark) !important;
        }

        .btn-solar {
            background: var(--solar-green);
            color: white !important;
            border-radius: 50px;
            padding: 8px 25px;
            font-weight: 600;
            border: none;
        }

        /* --- 3. Hero Section --- */
        .hero-wrapper {
            background-color: #52c234;
            background-image: linear-gradient(135deg, #52c234 0%, #061700 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 160px 0 80px 0;
            /* Top padding for overlap */
            color: white;
        }

        /* Particles */
        .particle-dot {
            position: absolute;
            background: white;
            border-radius: 50%;
            opacity: 0.4;
            animation: pulse 4s infinite alternate;
        }

        .hero-title {
            font-size: clamp(2.2rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
        }

        .hero-title span {
            color: var(--solar-light-green);
        }

        .hero-subtitle {
            font-size: 1.1rem;
            opacity: 0.85;
            margin-bottom: 35px;
            max-width: 550px;
        }

        /* --- Hexagon Image Area --- */
        .hero-image-box {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hex-frame {
            position: relative;
            width: 100%;
            max-width: 480px;
            aspect-ratio: 1/1;
            padding: 8px;
            /* Border thickness */
            background: var(--hex-gradient);
            clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
            animation: floatHex 5s ease-in-out infinite;
            z-index: 5;
        }

        .hex-inner {
            width: 100%;
            height: 100%;
            background: white;
            clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
            overflow: hidden;
        }

        .hex-inner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @keyframes floatHex {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(1deg);
            }
        }

        @keyframes pulse {
            0% {
                opacity: 0.2;
                transform: scale(1);
            }

            100% {
                opacity: 0.6;
                transform: scale(1.5);
            }
        }

        /* Mobile Adjustments */
        @media (max-width: 991px) {
            .navbar-wrapper {
                top: 15px;
            }

            .hero-wrapper {
                text-align: center;
                padding-top: 140px;
                min-height: auto;
            }

            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-image-box {
                margin-top: 40px;
                padding: 20px;
            }

            .hex-frame {
                max-width: 320px;
            }

            /* Sidebar Menu */
            .navbar-collapse {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 280px;
                background: #c8ebb7;
                padding: 80px 30px;
                transition: 0.4s;
            }

            .navbar-collapse.show {
                right: 0;
            }

            .navbar-collapse .nav-link {
                color: var(--solar-dark) !important;
                margin-bottom: 15px;
            }
        }


        /* ===== WHY GO SOLAR SECTION ===== */
        .why-solar-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #f6fff8 0%, #ffffff 100%);
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--solar-dark);
        }

        .section-title span {
            color: var(--solar-green);
        }

        .section-subtitle {
            font-size: 1rem;
            color: #555;
            max-width: 520px;
        }

        /* IMAGE FULL HEIGHT */
        .why-solar-image {
            height: 100%;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .why-solar-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* RIGHT SIDE FULL HEIGHT */
        .why-solar-right {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        /* GRID SAME HEIGHT AS IMAGE */
        .solar-benefit-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 20px;
            flex: 1;
            /* 👈 this matches image height */
        }

        /* CARD */
        .solar-benefit-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 22px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-left: 5px solid var(--solar-green);
            transition: all 0.3s ease;
        }

        .solar-benefit-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 40px rgba(40, 167, 69, 0.25);
        }

        .solar-benefit-card h5 {
            font-weight: 700;
            color: var(--solar-dark);
            margin-bottom: 8px;
        }

        .solar-benefit-card p {
            font-size: 0.9rem;
            color: #666;
            margin: 0;
        }

        /* MOBILE STACK */
        @media (max-width: 991px) {
            .solar-benefit-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }
        }

        /* ===== FOOTER ILLUSTRATION ===== */
        .footer-illustration {
            width: 100%;
            background: #fff;
            overflow: hidden;
        }

        .footer-illustration img {
            width: 100%;
            display: block;
        }

        /* ===== FOOTER ===== */
        .solar-footer {
            background: linear-gradient(135deg, #061700 0%, #1a3c1e 100%);
            color: #ffffff;
            padding: 80px 0 30px;
        }

        .footer-logo {
            font-weight: 800;
            font-size: 1.8rem;
        }

        .footer-logo span {
            color: var(--solar-light-green);
        }

        .footer-title {
            font-weight: 700;
            margin-bottom: 15px;
        }

        .footer-text {
            opacity: 0.85;
            font-size: 0.95rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: #ffffff;
            opacity: 0.8;
            text-decoration: none;
            transition: 0.3s;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--solar-light-green);
        }

        .footer-divider {
            border-color: rgba(255, 255, 255, 0.2);
            margin: 40px 0 20px;
        }

        .footer-bottom {
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* ===== STICKY BUTTONS ===== */
        /* ===== STICKY ICON BASE ===== */
        .sticky-icon {
            position: fixed;
            bottom: 25px;
            z-index: 9999;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 26px;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: floatPulse 2.2s infinite ease-in-out;
            transition: transform 0.3s ease;
        }

        /* POSITIONS */
        .sticky-icon.whatsapp {
            left: 22px;
            background: #25d366;
        }

        .sticky-icon.call {
            right: 22px;
            background: var(--solar-green);
            animation-delay: 0.8s;
        }

        /* HOVER */
        .sticky-icon:hover {
            transform: scale(1.12);
        }

        /* ICON */
        .sticky-icon i {
            z-index: 2;
        }

        /* PULSE RING */
        .sticky-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: inherit;
            opacity: 0.5;
            animation: ringPulse 2.2s infinite;
            z-index: 1;
        }

        /* KEYFRAMES */
        @keyframes floatPulse {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-6px);
            }

            100% {
                transform: translateY(0);
            }
        }

        @keyframes ringPulse {
            0% {
                transform: scale(1);
                opacity: 0.6;
            }

            100% {
                transform: scale(1.7);
                opacity: 0;
            }
        }

        /* MOBILE */
        @media (max-width: 767px) {
            .sticky-icon {
                width: 52px;
                height: 52px;
                font-size: 24px;
            }
        }


        /* ===== WHO WE ARE ===== */
        .who-we-are-section {
            padding: 110px 0;
            background: #ffffff;
        }

        /* TAG */
        .section-tag {
            display: inline-block;
            font-weight: 600;
            color: var(--solar-green);
            background: rgba(40, 167, 69, 0.1);
            padding: 6px 16px;
            border-radius: 30px;
            margin-bottom: 15px;
        }

        /* HEADING */
        .section-heading {
            font-size: clamp(2.1rem, 4vw, 3rem);
            font-weight: 800;
            color: var(--solar-dark);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .section-heading span {
            color: var(--solar-green);
        }

        /* TEXT */
        .section-description {
            font-size: 1rem;
            color: #555;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        /* RIGHT SIDE CARDS */
        .who-card-wrapper {
            display: grid;
            gap: 22px;
        }

        .who-card {
            background: #ffffff;
            border-radius: 22px;
            padding: 28px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            border-left: 5px solid var(--solar-green);
            transition: all 0.35s ease;
        }

        .who-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 50px rgba(40, 167, 69, 0.25);
        }

        .who-card h4 {
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--solar-dark);
        }

        .who-card p {
            font-size: 0.95rem;
            color: #666;
            margin: 0;
        }

        /* MOBILE */
        @media (max-width: 991px) {
            .who-we-are-section {
                padding: 80px 0;
                text-align: center;
            }

            .who-card-wrapper {
                margin-top: 30px;
            }
        }

        /* ===== SOLAR SOLUTIONS WITH IMAGE ===== */
        .solar-solutions-section {
            padding: 110px 0;
            background: linear-gradient(180deg, #f6fff8 0%, #ffffff 100%);
        }

        /* CARD */
        .solution-card {
            background: #ffffff;
            border-radius: 26px;
            overflow: hidden;
            height: 100%;
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
        }

        /* IMAGE */
        .solution-image {
            height: 210px;
            overflow: hidden;
        }

        .solution-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .solution-card:hover .solution-image img {
            transform: scale(1.08);
        }

        /* CONTENT */
        .solution-content {
            padding: 30px 26px 34px;
            text-align: center;
        }

        .solution-content h4 {
            font-weight: 800;
            color: var(--solar-dark);
            margin-bottom: 14px;
        }

        .solution-content p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 22px;
        }

        /* LINK */
        .solution-link {
            font-weight: 600;
            color: var(--solar-green);
            text-decoration: none;
        }

        .solution-link:hover {
            text-decoration: underline;
        }

        /* HOVER CARD */
        .solution-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(40, 167, 69, 0.25);
        }

        /* FEATURED */
        .solution-card.featured {
            border: 2px solid var(--solar-green);
        }

        /* MOBILE */
        @media (max-width: 991px) {
            .solar-solutions-section {
                padding: 80px 0;
            }

            .solution-image {
                height: 190px;
            }
        }

        /* SECTION */
        .why-choose-image {
            padding: 120px 0;
            background: linear-gradient(180deg, #ffffff, #f6fff8);
        }

        /* ITEM */
        .why-item {
            margin-bottom: 90px;
        }

        /* IMAGE */
        .why-image {
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
        }

        .why-image img {
            width: 100%;
            height: 360px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .why-image:hover img {
            transform: scale(1.08);
        }

        /* CONTENT */
        .why-content {
            padding: 30px 40px;
        }

        .why-content h4 {
            font-weight: 800;
            color: var(--solar-dark);
            margin-bottom: 15px;
        }

        .why-content p {
            font-size: 1rem;
            color: #555;
            line-height: 1.7;
        }

        /* REVERSE */
        .why-item.reverse {
            flex-direction: row-reverse;
        }

        /* MOBILE */
        @media (max-width: 991px) {
            .why-item {
                margin-bottom: 60px;
                text-align: center;
            }

            .why-content {
                padding: 25px 15px;
            }

            .why-image img {
                height: 260px;
            }
        }

        /* SECTION BACKGROUND */
        .contact-dark-section {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--solar-dark) 0%, #0f2e18 60%);
            color: #ffffff;
        }

        /* FORM BOX */
        .contact-form-box {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            padding: 50px;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
        }

        .contact-form-box h2 {
            font-weight: 800;
            margin-bottom: 10px;
        }

        .contact-form-box p {
            margin-bottom: 30px;
            opacity: 0.8;
        }

        /* INPUT */
        .contact-form-box .form-control {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #ffffff;
            padding: 14px 16px;
            border-radius: 12px;
        }

        .contact-form-box .form-control::placeholder {
            color: #cccccc;
        }

        .contact-form-box .form-control:focus {
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--solar-green);
            box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.3);
            color: #ffffff;
        }

        /* BUTTON */
        .contact-btn {
            background: var(--solar-green);
            color: #fff;
            font-weight: 600;
            padding: 14px;
            border-radius: 50px;
            border: none;
            transition: 0.3s ease;
        }

        .contact-btn:hover {
            background: var(--solar-light-green);
            color: var(--solar-dark);
        }

        /* INFO BOX */
        .contact-info-box {
            padding-left: 40px;
        }

        .contact-info-box h2 {
            font-weight: 800;
            margin-bottom: 15px;
        }

        .contact-info-box p {
            opacity: 0.85;
            margin-bottom: 30px;
        }

        /* INFO ITEM */
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }

        /* ICON BOX */
        .icon-box {
            width: 45px;
            height: 45px;
            background: var(--hex-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 18px;
            color: #fff;
            flex-shrink: 0;
        }

        /* TEXT */
        .contact-info-item h6 {
            font-weight: 700;
            margin-bottom: 4px;
        }

        .contact-info-item p {
            margin: 0;
            font-size: 0.95rem;
        }

        /* MOBILE */
        /* ===== MOBILE FIX FOR CONTACT SECTION ===== */
        @media (max-width: 991px) {

            .contact-dark-section {
                padding: 70px 0;
                text-align: center;
            }

            /* FORM BOX */
            .contact-form-box {
                padding: 30px 20px;
                border-radius: 20px;
            }

            /* INPUT */
            .contact-form-box .form-control {
                font-size: 14px;
                padding: 12px;
            }

            .contact-btn {
                padding: 12px;
                font-size: 14px;
            }

            /* INFO BOX */
            .contact-info-box {
                padding-left: 0 !important;
                margin-top: 40px;
            }

            /* INFO ITEM */
            .contact-info-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 10px;
            }

            .contact-info-item h6 {
                margin-bottom: 2px;
            }

            /* ICON */
            .icon-box {
                margin-bottom: 5px;
            }

        }

        /* ===== FIX LOGO + TOGGLER ALIGNMENT ===== */
        .navbar .container-fluid {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .navbar-brand {
            margin: 0;
            line-height: 1;
        }

        /* MOBILE NAV FIX */
        @media (max-width: 991px) {

            .navbar {
                padding: 12px 20px;
            }

            .navbar-brand {
                font-size: 1.3rem;
                color: #0b0b0b !important;
            }

            /* Sidebar */
            .navbar-collapse {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 280px;
                background: white;
                padding: 60px 30px 30px;
                transition: 0.4s ease;
                z-index: 2000;
            }

            .navbar-collapse.show {
                right: 0;
            }

            .navbar-collapse .nav-link {
                color: var(--solar-dark) !important;
                margin-bottom: 15px;
                font-weight: 600;
            }

            /* CLOSE BUTTON */
            .mobile-close {
                position: absolute;
                top: 20px;
                right: 20px;

                border: none;
                font-size: 22px;
            }

        }

        /* ===== MODERN PM SECTION ===== */
.pm-modern-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #ffffff, #f2fff6);
}

/* HEADER */
.pm-badge {
    background: var(--solar-green);
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
}

.pm-modern-heading {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--solar-dark);
}

.pm-modern-heading span {
    color: var(--solar-green);
}

.pm-modern-sub {
    max-width: 650px;
    margin: auto;
    color: #555;
}

/* FEATURE BOX */
.pm-feature-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    margin-bottom: 25px;
}

/* STATS GRID */
.pm-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.pm-stat-card {
    background: linear-gradient(135deg, var(--solar-green), var(--solar-light-green));
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.pm-stat-card h4 {
    font-weight: 800;
    margin-bottom: 5px;
}

/* BUTTON */
.btn-pm-modern {
    background: var(--solar-dark);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
}

.btn-pm-modern:hover {
    background: var(--solar-green);
    color: #fff;
}

/* IMAGE */
.pm-modern-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.pm-modern-image img {
    width: 100%;
    height: auto;
}

/* CAPACITY CARDS */
.pm-capacity-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    text-align: center;
    transition: 0.3s ease;
}

.pm-capacity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(40,167,69,0.2);
}

.pm-capacity-card strong {
    color: var(--solar-green);
    display: block;
    margin-top: 10px;
}

/* MOBILE */
@media (max-width: 991px) {

    .pm-modern-section {
        padding: 80px 0;
        text-align: center;
    }

    .pm-stats-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== PM SUBSIDY TABLE ===== */
.pm-subsidy-table-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #ffffff, #f6fff8);
}

.pm-table-heading {
    font-weight: 800;
    color: var(--solar-dark);
}

.pm-table-sub {
    color: #666;
}

/* TABLE STYLE */
.pm-modern-table {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.pm-modern-table thead {
    background: linear-gradient(135deg, var(--solar-green), var(--solar-light-green));
    color: #ffffff;
}

.pm-modern-table th {
    padding: 18px;
    font-weight: 600;
    border: none;
}

.pm-modern-table td {
    padding: 16px;
    border-top: 1px solid #eee;
    font-weight: 500;
}

.pm-modern-table tbody tr:hover {
    background: #f1fff5;
    transition: 0.3s ease;
}

/* TOTAL COLUMN HIGHLIGHT */
.total-highlight {
    font-weight: 700;
    color: var(--solar-green);
}

/* MOBILE */
@media (max-width: 991px) {

    .pm-subsidy-table-section {
        padding: 70px 0;
    }

    .pm-modern-table th,
    .pm-modern-table td {
        font-size: 0.85rem;
        padding: 12px;
    }
}
