    :root {
        --main-blue: #084298;
        /* Deep Blue from Logo */
        --dark-blue: #052c65;
        --solar-orange: #ff8c00;
        /* Solar Orange */
        --light-blue: #e7f1ff;
        --deep-blue: #084298;
        --vibrant-orange: #ff8c00;
        --bg-gradient: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
        --solar-orange: #ff8c00;
        --soft-bg: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
        --text-gray: #555;
        --dark-blue-gke: #084298;
        --orange-gke: #ff8c00;
        --soft-bg-gke: #f4f7fa;
        --card-shadow: 0 15px 40px rgba(8, 66, 152, 0.12);
        --text-muted: #5f6c7b;
        --bg-light: #f4f7fa;
        --footer-dark: #020d1a;
        /* Professional Deep Midnight Blue */
        --accent-orange: #ff8c00;
        --accent-blue: #007bff;
        --text-light: #cbd5e1;
        --gke-blue: #084298;
        --gke-orange: #ff8c00;
        --white: #ffffff;
        --dark-navy: #020d1a;
    --text-main: #334155;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --bg-light: #f8fafc;
        --sh-heater-accent: #007bff;
            --sh-heater-blue: #084298;
            --sh-heater-orange: #ff8c00;
            --sh-heater-white: #ffffff;
            --sh-heater-navy: #020d1a;
            --sh-heater-gray: #64748b;
            --sh-heater-light: #f1f5f9;


    }

    body {
        font-family: 'Roboto', sans-serif;
        overflow-x: hidden;
    }

    /* --- Sliding Contact Form --- */
    #contactSlideForm {
        position: fixed;
        top: -146%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--main-blue), var(--dark-blue));
        color: white;
        z-index: 9999;
        transition: 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        padding: 50px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    #contactSlideForm.active {
        top: 0;
    }

    .close-btn {
        position: absolute;
        right: 25px;
        top: 15px;
        font-size: 35px;
        cursor: pointer;
        color: var(--solar-orange);
    }

    /* --- Navbar Styles --- */
    .header-top-bar {
        background: var(--dark-blue);
        color: white;
        font-size: 12px;
        padding: 5px 0;
    }

    .navbar {
        background-color: white;
        border-bottom: 4px solid var(--main-blue);
        padding: 10px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand img {
        height: 70px;
        transition: 0.3s;
    }

    .brand-text {
        color: var(--main-blue);
        font-weight: 700;
        line-height: 1.1;
        margin-left: 10px;
        text-transform: uppercase;
    }

    /* Navigation Links */
    .nav-link {
        color: var(--main-blue) !important;
        font-weight: 600;
        padding: 10px 18px !important;
        font-size: 15px;
        position: relative;
    }

    .nav-link i {
        color: var(--solar-orange);
        margin-right: 5px;
    }

    .nav-link:hover {
        color: var(--solar-orange) !important;
    }

    /* Mega Menu & Dropdown Customization */
    .dropdown-menu {
        border: none;
        border-top: 3px solid var(--solar-orange);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        background-color: white;
        padding: 10px 0;
    }

    .dropdown-item {
        color: var(--main-blue);
        font-weight: 500;
        padding: 10px 25px;
        border-bottom: 1px solid #f0f0f0;
    }

    .dropdown-item:hover {
        background-color: var(--light-blue);
        color: var(--dark-blue);
        padding-left: 30px;
        transition: 0.3s;
    }

    /* Nested Sub-menus Logic (Desktop) */


    /* Contact Button */
    .btn-call {
        background: var(--main-blue);
        color: white !important;
        border-radius: 5px;
        border: 2px solid var(--main-blue);
        transition: 0.4s;
    }

    .btn-call:hover {
        background: transparent;
        color: #fff !important;
        border-color: #ff8c00;
    }


    .hero-wrapper {
        background: var(--soft-bg);
        min-height: 90vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        position: relative;
        padding: 50px 0;
        font-family: 'Poppins', sans-serif;
    }

    /* Decorative Background Shapes */
    .hero-decor {
        position: absolute;
        width: 300px;
        height: 300px;
        background: rgba(8, 66, 152, 0.04);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        z-index: 0;
        animation: morphing 10s infinite alternate;
    }

    .decor-1 {
        top: -100px;
        right: -50px;
    }

    .decor-2 {
        bottom: -50px;
        left: -50px;
        background: rgba(255, 140, 0, 0.04);
    }

    .content-box {
        position: relative;
        z-index: 5;
    }

    .top-badge {
        display: inline-block;
        background: white;
        color: var(--deep-blue);
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 700;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 20px;
        border-left: 4px solid var(--solar-orange);
    }

    .main-heading {
        font-size: 3.5rem;
        font-weight: 800;
        color: var(--deep-blue);
        line-height: 1.1;
        margin-bottom: 25px;
    }

    .main-heading span {
        color: var(--solar-orange);
    }

    .sub-text {
        font-size: 1.15rem;
        color: #556070;
        margin-bottom: 40px;
        max-width: 520px;
    }

    /* Buttons */
    .btn-group-custom {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .btn-blue {
        background: var(--deep-blue);
        color: white;
        padding: 14px 35px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
        box-shadow: 0 10px 25px rgba(8, 66, 152, 0.25);
    }

    .btn-blue:hover {
        background: var(--solar-orange);
        color: white;
        transform: translateY(-3px);
    }

    .btn-outline-solar {
        border: 2px solid var(--solar-orange);
        color: var(--solar-orange);
        padding: 12px 35px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
    }

    .btn-outline-solar:hover {
        background: var(--solar-orange);
        color: white;
        transform: translateY(-3px);
    }

    /* --- Image Side Section --- */
    .image-container {
        position: relative;
        z-index: 5;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .square-img-box {
        width: 100%;
        max-width: 450px;
        aspect-ratio: 1 / 1;
        /* Makes it a perfect Square */
        background: url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&w=800&q=80');
        background-size: cover;
        background-position: center;
        border-radius: 40px;
        /* Curve from sides */
        border: 10px solid white;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        animation: floatImg 5s ease-in-out infinite;
    }

    /* Floating Cards */
    .float-card {
        position: absolute;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 18px 25px;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        z-index: 10;
        border: 1px solid rgba(255, 255, 255, 0.8);
    }

    /* Moving "Solar Efficiency" to the RIGHT side as requested */
    .card-efficiency {
        top: -20px;
        right: -30px;
        /* Moved to right to avoid text overlap */
        animation: floatImg 4s ease-in-out infinite reverse;
    }

    .card-projects {
        bottom: 20px;
        left: -20px;
        animation: floatImg 6s ease-in-out infinite;
    }

    .svg-icon {
        width: 32px;
        height: 32px;
        fill: var(--solar-orange);
        margin-bottom: 5px;
    }

    /* Animations */
    @keyframes floatImg {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-20px);
        }
    }

    @keyframes morphing {
        0% {
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        }

        100% {
            border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
        }
    }


    .services-section {
        padding: 80px 0;
        background-color: var(--light-gray);
        font-family: 'Poppins', sans-serif;
    }

    .section-title-box {
        text-align: center;
        margin-bottom: 60px;
    }

    .sub-title {
        color: var(--solar-orange);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 14px;
        display: block;
        margin-bottom: 10px;
    }

    .main-title {
        color: var(--deep-blue);
        font-size: 2.5rem;
        font-weight: 800;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }

    .main-title::after {
        content: '';
        position: absolute;
        width: 60px;
        height: 4px;
        background: var(--solar-orange);
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
    }

    /* --- Service Card Styles --- */
    .service-link {
        text-decoration: none !important;
        display: block;
        margin-bottom: 30px;
    }

    .service-card {
        position: relative;
        height: 400px;
        border-radius: 20px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        transition: all 0.5s ease;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .service-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: transform 0.8s ease;
        z-index: 1;
    }

    /* Dark Overlay for better text visibility */
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(8, 66, 152, 0) 40%, rgba(8, 66, 152, 0.9) 100%);
        z-index: 2;
        transition: 0.5s;
    }

    .service-content {
        position: relative;
        z-index: 3;
        padding: 30px;
        color: white;
        transition: transform 0.5s ease;
    }

    .service-icon-box {
        width: 50px;
        height: 50px;
        background: var(--solar-orange);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
    }

    .service-icon-box svg {
        width: 25px;
        height: 25px;
        fill: white;
    }

    .service-card h3 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: 0.9rem;
        opacity: 0;
        height: 0;
        transition: all 0.5s ease;
        margin-bottom: 0;
    }

    .read-more-btn {
        margin-top: 15px;
        display: inline-flex;
        align-items: center;
        color: var(--solar-orange);
        font-weight: 600;
        font-size: 14px;
        opacity: 0;
        transition: 0.5s;
    }

    /* --- Hover Effects --- */
    .service-link:hover .service-card {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(8, 66, 152, 0.25);
    }

    .service-link:hover .service-img {
        transform: scale(1.1);
    }

    .service-link:hover .service-card::before {
        background: linear-gradient(to bottom, rgba(8, 66, 152, 0.2) 0%, rgba(8, 66, 152, 0.95) 100%);
    }

    .service-link:hover p {
        opacity: 1;
        height: auto;
        margin-bottom: 10px;
    }

    .service-link:hover .read-more-btn {
        opacity: 1;
    }

    /* Animation for entrance */
    [data-aos="fade-up"] {
        opacity: 0;
        transform: translateY(30px);
        transition: 0.8s ease-out;
    }

    .visible {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    /* about */
    .about-section {
        padding: 100px 0;
        background-color: #ffffff;
        overflow: hidden;
        font-family: 'Poppins', sans-serif;
    }

    /* --- Image Side Styles --- */
    .about-img-wrapper {
        position: relative;
        padding: 20px;
        z-index: 1;
    }

    /* Decorative Back Frame */
    .about-img-wrapper::before {
        content: '';
        position: absolute;
        width: 80%;
        height: 90%;
        background: var(--solar-orange);
        bottom: 0;
        left: 0;
        z-index: -1;
        border-radius: 20px;
        opacity: 0.15;
    }

    .main-about-img {
        width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
        border: 8px solid #fff;
        transition: 0.5s;
    }

    .experience-badge {
        position: absolute;
        bottom: 40px;
        right: 0;
        background: var(--deep-blue);
        color: white;
        padding: 20px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(8, 66, 152, 0.3);
        animation: floatUpDown 4s ease-in-out infinite;
    }

    .experience-badge h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 0;
        color: var(--solar-orange);
    }

    .experience-badge p {
        font-size: 13px;
        margin-bottom: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* --- Content Side Styles --- */
    .about-content {
        padding-left: 30px;
    }

    .about-tagline {
        color: var(--solar-orange);
        font-weight: 700;
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
        display: block;
        margin-bottom: 15px;
    }

    .about-title {
        color: var(--deep-blue);
        font-size: 2.8rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .about-title span {
        color: var(--solar-orange);
    }

    .about-description {
        font-size: 1.05rem;
        color: var(--text-gray);
        line-height: 1.8;
        margin-bottom: 30px;
    }

    /* Custom Check List with SVG */
    .trust-list {
        list-style: none;
        padding: 0;
        margin-bottom: 40px;
    }

    .trust-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        font-weight: 600;
        color: var(--deep-blue);
    }

    .check-icon {
        width: 24px;
        height: 24px;
        background: rgba(255, 140, 0, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
    }

    .check-icon svg {
        width: 14px;
        height: 14px;
        fill: var(--solar-orange);
    }

    .btn-about {
        display: inline-block;
        background: var(--deep-blue);
        color: white;
        padding: 15px 40px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        transition: 0.4s;
        box-shadow: 0 10px 20px rgba(8, 66, 152, 0.2);
    }

    .btn-about:hover {
        background: var(--solar-orange);
        color: white;
        transform: scale(1.05);
    }

    @keyframes floatUpDown {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-15px);
        }
    }

    /* about end  */

    /* why choose us  */
    .why-choose-section {
        padding: 80px 0;
        background: var(--soft-bg-gke);
        font-family: 'Poppins', sans-serif;
        overflow: hidden;
    }

    .text-center-box {
        max-width: 700px;
        margin: 0 auto 60px;
        text-align: center;
    }

    .why-tagline {
        color: var(--orange-gke);
        font-weight: 700;
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
        display: block;
        margin-bottom: 10px;
    }

    .why-main-title {
        color: var(--dark-blue-gke);
        font-size: 2.5rem;
        font-weight: 800;
    }

    /* --- Feature Card Styles --- */
    .feature-card {
        background: #fff;
        padding: 40px 30px;
        border-radius: 20px;
        height: 100%;
        position: relative;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid transparent;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        z-index: 1;
    }

    .feature-card:hover {
        transform: translateY(-12px);
        border-color: var(--orange-gke);
        box-shadow: 0 20px 40px rgba(8, 66, 152, 0.15);
    }

    /* Background Numbering */
    .card-number {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 50px;
        font-weight: 900;
        color: rgba(8, 66, 152, 0.05);
        z-index: -1;
        line-height: 1;
    }

    .icon-outer {
        width: 70px;
        height: 70px;
        background: rgba(8, 66, 152, 0.08);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        transition: 0.3s;
    }

    .feature-card:hover .icon-outer {
        background: var(--orange-gke);
    }

    .icon-outer svg {
        width: 35px;
        height: 35px;
        fill: var(--dark-blue-gke);
        transition: 0.3s;
    }

    .feature-card:hover .icon-outer svg {
        fill: #fff;
    }

    .feature-card h4 {
        color: var(--dark-blue-gke);
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .feature-card p {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

    /* why choose end  */
    /* product start */
    .product-showcase {
        padding: 100px 0;
        background: #fdfdfd;
        font-family: 'Poppins', sans-serif;
        overflow: hidden;
    }

    /* Section Header */
    .p-header {
        text-align: center;
        margin-bottom: 70px;
    }

    .p-header span {
        color: var(--solar-orange);
        font-weight: 700;
        letter-spacing: 4px;
        text-transform: uppercase;
        font-size: 13px;
        display: block;
        margin-bottom: 15px;
    }

    .p-header h2 {
        color: var(--deep-blue);
        font-size: 3rem;
        font-weight: 800;
        line-height: 1.1;
    }

    /* --- Advanced Product Card --- */
    .product-link {
        text-decoration: none !important;
        display: block;
        margin-bottom: 30px;
    }

    .gke-product-card {
        background: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        height: 100%;
        box-shadow: var(--card-shadow);
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        border: 1px solid #f1f4f8;
    }

    .gke-product-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 60px rgba(8, 66, 152, 0.2);
    }

    /* Image Box */
    .p-image-wrap {
        height: 220px;
        position: relative;
        overflow: hidden;
        background: #f8fbff;
    }

    .p-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 20px;
        transition: transform 0.8s ease;
    }

    .gke-product-card:hover .p-image-wrap img {
        transform: scale(1.1) rotate(2deg);
    }

    /* Content Area */
    .p-card-body {
        padding: 30px;
        position: relative;
        background: #fff;
        z-index: 2;
    }

    .p-card-body h4 {
        color: var(--deep-blue);
        font-weight: 700;
        font-size: 1.3rem;
        margin-bottom: 12px;
        transition: 0.3s;
    }

    .p-card-body p {
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
        height: 75px;
        /* Fixed height for uniformity */
        overflow: hidden;
    }

    .learn-more-btn {
        display: flex;
        align-items: center;
        color: var(--solar-orange);
        font-weight: 700;
        font-size: 14px;
        text-transform: uppercase;
        gap: 8px;
    }

    /* Animated Line */
    .gke-product-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 5px;
        background: linear-gradient(90deg, var(--deep-blue), var(--solar-orange));
        transition: 0.5s ease;
    }

    .gke-product-card:hover::after {
        width: 100%;
    }

    /* product end */

    /* testonomial start */
    .testimonial-marquee-section {
        padding: 80px 0;
        background-color: var(--bg-light);
        overflow: hidden;
        /* Hide overflow for smooth scroll */
        font-family: 'Poppins', sans-serif;
    }

    .sec-title {
        text-align: center;
        margin-bottom: 50px;
    }

    .sec-title h2 {
        color: var(--deep-blue);
        font-weight: 800;
        font-size: 2.2rem;
    }

    .sec-title span {
        color: var(--solar-orange);
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 2px;
        font-size: 14px;
    }

    /* --- Marquee Animation Logic --- */
    .marquee-wrapper {
        display: flex;
        width: 100%;
    }

    .marquee-content {
        display: flex;
        animation: scroll-horizontal 40s linear infinite;
        /* Speed adjusted for readability */
    }

    /* Hover effect to stop scrolling */
    .marquee-wrapper:hover .marquee-content {
        animation-play-state: paused;
    }

    /* --- Testimonial Card --- */
    .testi-card {
        flex: 0 0 350px;
        /* Fixed width for cards */
        background: #fff;
        margin: 0 15px;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(8, 66, 152, 0.05);
        border: 1px solid #edf2f7;
        transition: 0.3s;
    }

    .testi-card:hover {
        border-color: var(--solar-orange);
        transform: scale(1.02);
    }

    .client-info {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .client-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 15px;
        border: 3px solid var(--solar-orange);
    }

    .client-meta h5 {
        margin: 0;
        color: var(--deep-blue);
        font-weight: 700;
        font-size: 1.1rem;
    }

    .client-meta span {
        font-size: 12px;
        color: #777;
    }

    .star-row {
        margin-bottom: 15px;
    }

    .star-row svg {
        width: 18px;
        height: 18px;
        fill: var(--solar-orange);
    }

    .testi-quote {
        color: #444;
        font-size: 0.95rem;
        line-height: 1.6;
        font-style: italic;
    }

    /* Keyframes for Continuous Scroll */
    @keyframes scroll-horizontal {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }

        /* Half of the total width of duplicated content */
    }

    /* testonomial end  */
    /* ready to go  */

    .ready-section {
        padding: 100px 0 60px;
        background-color: var(--light-bg);
        font-family: 'Poppins', sans-serif;
        text-align: center;
        overflow: hidden;
    }

    .ready-header {
        margin-bottom: 60px;
    }

    .ready-header h2 {
        color: var(--dark-blue);
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .ready-header h2 span {
        color: var(--solar-orange);
    }

    .ready-header p {
        color: #555;
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
    }

    /* --- Contact Cards Grid --- */
    .contact-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
        margin-bottom: 50px;
    }

    .contact-card {
        background: #fff;
        padding: 40px 30px;
        border-radius: 20px;
        width: calc(33.33% - 25px);
        min-width: 300px;
        box-shadow: 0 15px 35px rgba(8, 66, 152, 0.05);
        border: 1px solid #edf2f7;
        transition: 0.4s;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-card:hover {
        transform: translateY(-10px);
        border-color: var(--solar-orange);
        box-shadow: 0 20px 45px rgba(8, 66, 152, 0.12);
    }

    .icon-circle {
        width: 70px;
        height: 70px;
        background: rgba(255, 140, 0, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
    }

    .icon-circle svg {
        width: 30px;
        height: 30px;
        fill: var(--solar-orange);
    }

    .contact-card h4 {
        color: var(--dark-blue);
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 1.25rem;
    }

    .contact-card p,
    .contact-card a {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
        text-decoration: none;
        margin: 0;
    }

    .contact-card a:hover {
        color: var(--solar-orange);
    }

    /* --- GST Highlight Stripe --- */
    .gst-stripe {
        background: var(--dark-blue);
        color: white;
        padding: 20px;
        border-radius: 15px;
        display: inline-flex;
        align-items: center;
        gap: 15px;
        margin-top: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .gst-label {
        background: var(--solar-orange);
        padding: 4px 12px;
        border-radius: 5px;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 1px;
    }

    .gst-val {
        font-family: 'Courier New', Courier, monospace;
        font-size: 1.2rem;
        letter-spacing: 2px;
        font-weight: 700;
    }

    /* ready to go end  */
    /* footer start */
    .main-footer {
        background-color: var(--footer-dark);
        color: var(--text-light);
        font-family: 'Poppins', sans-serif;
        padding: 0;
        position: relative;
    }

    /* --- Top CTA --- */
    .footer-cta {
        background: linear-gradient(90deg, #084298, #001f3f);
        padding: 30px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cta-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .cta-btn {
        background: var(--accent-orange);
        color: #fff;
        padding: 10px 25px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        transition: 0.3s;
        text-align: center;
    }

    /* --- Footer Content --- */
    .footer-main-content {
        padding: 60px 0 30px;
    }

    .f-col h4 {
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 25px;
        position: relative;
    }

    .f-col h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 30px;
        height: 2px;
        background: var(--accent-orange);
    }

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

    .f-links li {
        margin-bottom: 12px;
    }

    .f-links a {
        color: var(--text-light);
        text-decoration: none;
        font-size: 14px;
        transition: 0.2s;
    }

    .f-links a:hover {
        color: var(--accent-orange);
        padding-left: 5px;
    }

    /* --- Contact Details --- */
    .contact-wrapper {
        margin-top: 20px;
    }

    .contact-item {
        display: flex;
        gap: 12px;
        margin-bottom: 15px;
        align-items: flex-start;
    }

    .icon-box {
        width: 35px;
        height: 35px;
        background: rgba(255, 140, 0, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .icon-box svg {
        width: 18px;
        height: 18px;
        fill: var(--accent-orange);
    }

    .detail-text span {
        display: block;
        font-size: 11px;
        color: var(--accent-orange);
        font-weight: 700;
        text-transform: uppercase;
    }

    .detail-text p {
        margin: 0;
        font-size: 13px;
        color: #fff;
        line-height: 1.4;
    }

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

    .gst-tag {
        border: 1px dashed var(--accent-orange);
        padding: 4px 12px;
        border-radius: 4px;
        font-size: 12px;
        color: #fff;
    }


    /* footer end */


    /* about start about.html */
    /* --- Hero Header Section --- */
    .about-hero {
        position: relative;
        width: 100%;
        height: 450px;
        /* Fixed Height as requested */
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        font-family: 'Poppins', sans-serif;
        text-align: center;
    }

    /* Background Image with Zoom Animation */
    .hero-bg-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://images.unsplash.com/photo-1509391366360-fe5bb62697b5?auto=format&fit=crop&w=1600&q=80');
        background-size: cover;
        background-position: center;
        z-index: 1;
        animation: slowZoom 20s infinite alternate;
    }

    /* Professional Overlay Gradient */
    .about-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(8, 66, 152, 0.9) 0%, rgba(5, 29, 61, 0.6) 100%);
        z-index: 2;
    }

    /* Content Area */
    .hero-container {
        position: relative;
        z-index: 3;
        padding: 0 20px;
        color: var(--white);
    }

    /* Breadcrumbs Navigation */
    .gke-breadcrumbs {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        display: inline-block;
        padding: 8px 25px;
        border-radius: 50px;
        margin-bottom: 25px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .gke-breadcrumbs a {
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        transition: 0.3s;
    }

    .gke-breadcrumbs span {
        color: var(--gke-orange);
        margin: 0 10px;
        font-weight: bold;
    }

    .gke-breadcrumbs a:hover {
        color: var(--gke-orange);
    }

    /* Main Heading */
    .hero-title-main {
        font-size: 4rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: -1px;
        line-height: 1;
        margin-bottom: 15px;
    }

    .hero-title-main span {
        color: var(--gke-orange);
        display: block;
        font-size: 1.5rem;
        letter-spacing: 5px;
        font-weight: 600;
        margin-top: 5px;
    }

    .hero-sub-para {
        font-size: 1.2rem;
        max-width: 650px;
        margin: 0 auto;
        opacity: 0.9;
        font-weight: 400;
    }

    /* Bottom Orange Accent Line */
    .accent-line {
        width: 80px;
        height: 5px;
        background: var(--gke-orange);
        margin: 25px auto 0;
        border-radius: 10px;
    }

    /* Background Animation Keyframes */
    @keyframes slowZoom {
        from {
            transform: scale(1);
        }

        to {
            transform: scale(1.15);
        }
    }

    /* mission and vision about start */
    .mission-vision-section {
        padding: 100px 0;
        background-color: var(--soft-bg);
        font-family: 'Poppins', sans-serif;
    }

    .section-header-box {
        text-align: center;
        margin-bottom: 70px;
    }

    .section-header-box span {
        color: var(--gke-orange);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 4px;
        font-size: 13px;
        display: block;
        margin-bottom: 15px;
    }

    .section-header-box h2 {
        color: var(--gke-blue);
        font-size: 3rem;
        font-weight: 800;
        line-height: 1.1;
    }

    /* --- Enhanced MV Card --- */
    .mv-feature-card {
        background: #ffffff;
        padding: 45px 35px;
        border-radius: 25px;
        height: 100%;
        text-align: center;
        transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid #f1f5f9;
        box-shadow: 0 15px 45px rgba(8, 66, 152, 0.05);
        position: relative;
    }

    .mv-feature-card:hover {
        transform: translateY(-15px);
        border-color: var(--gke-orange);
        box-shadow: 0 25px 60px rgba(8, 66, 152, 0.12);
    }

    /* SVG Icon Style */
    .icon-container {
        width: 80px;
        height: 80px;
        background: rgba(255, 140, 0, 0.08);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
        transition: 0.4s;
    }

    .mv-feature-card:hover .icon-container {
        background: var(--gke-orange);
        transform: rotate(10deg);
    }

    .icon-container svg {
        width: 40px;
        height: 40px;
        fill: var(--gke-orange);
        transition: 0.4s;
    }

    .mv-feature-card:hover .icon-container svg {
        fill: #ffffff;
    }

    .mv-feature-card h4 {
        color: var(--gke-blue);
        font-weight: 800;
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .mv-feature-card p {
        color: var(--text-gray);
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 0;
    }

    /* Side Accent Link Bar */
    .mv-feature-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0%;
        height: 6px;
        background: var(--gke-orange);
        transform: translateX(-50%);
        border-radius: 10px 10px 0 0;
        transition: 0.4s;
    }

    .mv-feature-card:hover::after {
        width: 50%;
    }

    /* mission and vision about end */

    /* life time start */
    .warranty-section {
        padding: 100px 0;
        background: linear-gradient(180deg, #ffffff 0%, var(--light-blue) 100%);
        font-family: 'Poppins', sans-serif;
        overflow: hidden;
    }

    .warranty-header {
        text-align: center;
        margin-bottom: 70px;
    }

    .warranty-header span {
        color: var(--gke-orange);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 13px;
        display: block;
        margin-bottom: 10px;
    }

    .warranty-header h2 {
        color: var(--gke-blue);
        font-size: 2.8rem;
        font-weight: 800;
        line-height: 1.2;
    }

    /* --- Warranty Card Styling --- */
    .warranty-card {
        background: #ffffff;
        padding: 40px 30px;
        border-radius: 20px;
        height: 100%;
        text-align: center;
        transition: 0.4s ease-in-out;
        border: 1px solid #e2e8f0;
        position: relative;
        box-shadow: 0 10px 30px rgba(8, 66, 152, 0.05);
    }

    .warranty-card:hover {
        transform: translateY(-12px);
        border-color: var(--gke-orange);
        box-shadow: 0 20px 50px rgba(8, 66, 152, 0.12);
    }

    /* Badge Style Icon */
    .warranty-badge-icon {
        width: 80px;
        height: 80px;
        background: var(--gke-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        border: 4px solid var(--light-blue);
        box-shadow: 0 5px 15px rgba(8, 66, 152, 0.2);
        transition: 0.4s;
    }

    .warranty-card:hover .warranty-badge-icon {
        background: var(--gke-orange);
        transform: rotateY(180deg);
    }

    .warranty-badge-icon svg {
        width: 35px;
        height: 35px;
        fill: #ffffff;
    }

    .warranty-card h4 {
        color: var(--gke-blue);
        font-weight: 800;
        font-size: 1.25rem;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    .warranty-card h3 {
        color: var(--gke-orange);
        font-weight: 900;
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .warranty-card p {
        color: #555c66;
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

    /* Corner Ribbon Decor */
    .ribbon {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 10px;
        height: 10px;
        background: var(--gke-orange);
        border-radius: 50%;
        opacity: 0.3;
    }

    /* life time end */
    /* about start about.html end*/

    /* service solar plant css start */
    /* Unique Class: sol-hero-container */

    /* Hero Wrapper - Responsive Height Fix */
    .sol-hero-wrapper {
        width: 100%;
        min-height: 350px;
        /* Minimum height ensures it looks good on desktop */
        background: linear-gradient(135deg, var(--dark-navy) 0%, var(--gke-blue) 100%);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        padding: 20px 0;
    }

    /* Background Glow */
    .sol-hero-wrapper::before {
        content: "";
        position: absolute;
        top: -50px;
        right: -50px;
        width: 150px;
        height: 150px;
        background: var(--gke-orange);
        opacity: 0.15;
        border-radius: 50%;
        filter: blur(50px);
        pointer-events: none;
    }

    .sol-main-content {
        width: 100%;
        max-width: 1200px;
        padding: 0 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 2;
    }

    .sol-text-area {
        flex: 1;
        max-width: 550px;
    }

    .sol-badge {
        display: inline-block;
        background: rgba(255, 140, 0, 0.15);
        color: var(--gke-orange);
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 600;
        margin-bottom: 12px;
        text-transform: uppercase;
        border: 1px solid rgba(255, 140, 0, 0.3);
    }

    .sol-headline {
        font-size: 2rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .sol-headline span {
        color: var(--gke-orange);
    }

    .sol-description {
        color: var(--text-light);
        font-size: 0.95rem;
        margin-bottom: 25px;
        max-width: 450px;
    }

    .sol-btn-group {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        /* Buttons won't overlap */
    }

    .sol-btn-primary {
        background-color: var(--gke-orange);
        color: var(--white);
        padding: 10px 20px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: 0.3s ease;
        text-align: center;
    }

    .sol-btn-outline {
        border: 2px solid var(--accent-blue);
        color: var(--white);
        padding: 8px 20px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: 0.3s ease;
        text-align: center;
    }

    /* Image Visual Container */
    .sol-visual {
        flex: 0 0 300px;
        display: flex;
        justify-content: flex-end;
    }

    .sol-panel-box {
        width: 260px;
        height: 180px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }


    /* how to solar work css start */
    .wks-section {
        padding: 60px 20px;
        background: #fdfdfd;
        font-family: 'Poppins', sans-serif;
    }

    .wks-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .wks-title-area {
        text-align: center;
        margin-bottom: 40px;
    }

    .wks-title-area h2 {
        color: #020d1a;
        font-size: 28px;
        font-weight: 700;
    }

    .wks-title-area span {
        color: #ff8c00;
    }

    .wks-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .wks-card {
        background: #fff;
        padding: 30px 20px;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        border: 1px solid #eee;
        text-align: center;
        transition: 0.3s;
        height: auto;
        /* Ensure dynamic height */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .wks-card:hover {
        transform: translateY(-5px);
        border-color: #ff8c00;
    }

    .wks-icon-circle {
        width: 60px;
        height: 60px;
        background: #084298;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 24px;
        font-weight: bold;
    }

    .wks-card h3 {
        font-size: 18px;
        color: #020d1a;
        margin-bottom: 10px;
    }

    .wks-card p {
        font-size: 14px;
        color: #444;
        line-height: 1.6;
        margin: 0;
    }

    /* how to solar work css end */

    /* install solar css start */
    /* Unique Prefix: ins- (Installation) */
    .ins-section {
        padding: 60px 20px;
        background-color: #f8fafc;
        /* Lighter background for a cleaner look */
        color: #334155;
        font-family: 'Poppins', sans-serif;
    }

    .ins-container {
        max-width: 850px;
        margin: 0 auto;
    }

    .ins-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .ins-header h2 {
        font-size: 32px;
        font-weight: 800;
        color: #020d1a;
        margin: 0;
    }

    .ins-header span {
        color: #ff8c00;
    }

    .ins-header p {
        color: #64748b;
        font-size: 15px;
        margin-top: 10px;
        font-weight: 400;
    }

    .ins-timeline {
        position: relative;
        padding-left: 40px;
    }

    /* Vertical Line - Multi-color gradient for attractive look */
    .ins-timeline::before {
        content: '';
        position: absolute;
        left: 15px;
        top: 5px;
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, #ff8c00, #007bff);
        border-radius: 10px;
        opacity: 0.3;
    }

    .ins-step {
        position: relative;
        margin-bottom: 30px;
    }

    /* Timeline Indicator Dot */
    .ins-step::after {
        content: '';
        position: absolute;
        left: -32px;
        top: 25px;
        width: 18px;
        height: 18px;
        background: #ffffff;
        border: 4px solid #084298;
        border-radius: 50%;
        z-index: 2;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .ins-content {
        background: #ffffff;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.03);
        transition: all 0.3s ease;
    }

    .ins-content:hover {
        transform: translateX(10px);
        box-shadow: 0 15px 35px rgba(0, 123, 255, 0.1);
        border-left: 5px solid #ff8c00;
    }

    .ins-step-no {
        color: #084298;
        font-weight: 800;
        font-size: 14px;
        display: block;
        margin-bottom: 5px;
        letter-spacing: 1px;
    }

    .ins-content h3 {
        font-size: 19px;
        color: #020d1a;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .ins-content p {
        font-size: 14px;
        color: #64748b;
        line-height: 1.6;
        margin: 0;
    }

    /* install solar css end */
    /* ongrid price section start */
    .prc-section {
        padding: 60px 20px;
        background-color: #ffffff;
        font-family: 'Poppins', sans-serif;
    }

    .prc-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .prc-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .prc-header h2 {
        font-size: 32px;
        font-weight: 800;
        color: #020d1a;
        margin-bottom: 10px;
    }

    .prc-header span {
        color: #084298;
    }

    .prc-header p {
        color: #64748b;
        font-size: 15px;
    }

    /* Pricing Grid */
    .prc-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        align-items: flex-start;
    }

    /* Individual Card */
    .prc-card {
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 20px;
        padding: 30px 20px;
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .prc-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(8, 66, 152, 0.1);
        border-color: #084298;
    }

    /* Popular Badge */
    .prc-badge {
        position: absolute;
        top: 20px;
        right: -35px;
        background: #ff8c00;
        color: #fff;
        padding: 5px 40px;
        transform: rotate(45deg);
        font-size: 12px;
        font-weight: 700;
    }

    .prc-capacity {
        font-size: 22px;
        font-weight: 700;
        color: #020d1a;
        margin-bottom: 5px;
    }

    .prc-panel-type {
        font-size: 13px;
        color: #007bff;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 20px;
        display: block;
    }

    .prc-price-box {
        margin-bottom: 25px;
        padding: 15px;
        background: #f8fafc;
        border-radius: 12px;
    }

    .prc-amount {
        font-size: 30px;
        font-weight: 800;
        color: #084298;
    }

    .prc-subsidy {
        font-size: 13px;
        color: #ff8c00;
        font-weight: 600;
        display: block;
        margin-top: 5px;
    }

    /* Feature List */
    .prc-features {
        list-style: none;
        padding: 0;
        margin: 0 0 30px 0;
        text-align: left;
    }

    .prc-features li {
        font-size: 14px;
        color: #475569;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
    }

    .prc-features li::before {
        content: '✓';
        margin-right: 10px;
        color: #10b981;
        font-weight: 900;
    }

    .prc-btn {
        display: block;
        width: 100%;
        padding: 12px;
        background: #084298;
        color: #fff;
        text-decoration: none;
        border-radius: 10px;
        font-weight: 600;
        transition: 0.3s;
    }

    .prc-btn:hover {
        background: #ff8c00;
    }

    /* ongrid price section end */
    /* solar plant css start */

    /* Unique Prefix: sph- (Solar Plant Header) */
    .sph-wrapper {
        width: 100%;
        height: 400px;
        /* Fixed height for desktop */
        background: linear-gradient(145deg, var(--dark-navy) 0%, var(--gke-blue) 100%);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        font-family: 'Poppins', sans-serif;
        color: var(--white);
    }

    /* Abstract Background Elements */
    .sph-wrapper::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        background: var(--gke-orange);
        filter: blur(80px);
        opacity: 0.15;
        top: -100px;
        right: -50px;
        border-radius: 50%;
    }

    .sph-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 10;
    }

    .sph-content {
        flex: 1;
        max-width: 600px;
    }

    .sph-badge {
        display: inline-block;
        background: rgba(255, 140, 0, 0.2);
        color: var(--gke-orange);
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 15px;
        border: 1px solid rgba(255, 140, 0, 0.3);
    }

    .sph-title {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .sph-title span {
        color: var(--gke-orange);
        display: block;
    }

    .sph-desc {
        font-size: 1rem;
        color: var(--text-light);
        margin-bottom: 25px;
        max-width: 480px;
        line-height: 1.5;
    }

    .sph-btn-group {
        display: flex;
        gap: 15px;
    }

    .sph-btn-main {
        background: var(--gke-orange);
        color: var(--white);
        padding: 12px 28px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 700;
        font-size: 14px;
        transition: 0.3s;
        box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    }

    .sph-btn-main:hover {
        background: #e67e00;
        transform: translateY(-2px);
    }

    .sph-btn-side {
        border: 2px solid var(--accent-blue);
        color: var(--white);
        padding: 10px 24px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: 0.3s;
    }

    .sph-btn-side:hover {
        background: var(--accent-blue);
    }

    /* Visual Graphic */
    .sph-visual {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .sph-icon-box {
        background: rgba(255, 255, 255, 0.05);
        padding: 40px;
        border-radius: 30px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        animation: sph-float 3s ease-in-out infinite;
    }

    @keyframes sph-float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-15px);
        }
    }

    /* Unique Prefix: spl- (Solar Plant Links) */
    .spl-section {
        padding: 60px 20px;
        background-color: var(--white);
        font-family: 'Poppins', sans-serif;
    }

    .spl-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .spl-header {
        text-align: center;
        margin-bottom: 45px;
    }

    .spl-header h2 {
        font-size: 28px;
        color: var(--dark-navy);
        font-weight: 800;
        margin-bottom: 10px;
    }

    .spl-header span {
        color: var(--gke-orange);
    }

    .spl-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .spl-card {
        background: var(--card-bg);
        border-radius: 20px;
        padding: 35px 25px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid #e2e8f0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
    }

    .spl-card:hover {
        transform: translateY(-10px);
        background: var(--white);
        border-color: var(--gke-orange);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    /* Card Top Icon Box */
    .spl-icon-box {
        width: 70px;
        height: 70px;
        background: var(--white);
        margin: 0 auto 20px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        color: var(--gke-orange);
    }

    .spl-card h3 {
        font-size: 22px;
        color: var(--gke-blue);
        margin-bottom: 15px;
        font-weight: 700;
    }

    .spl-card p {
        font-size: 14px;
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .spl-link-btn {
        text-decoration: none;
        background: var(--gke-blue);
        color: var(--white);
        padding: 12px 20px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 14px;
        transition: 0.3s;
        display: inline-block;
    }

    .spl-link-btn:hover {
        background: var(--gke-orange);
        letter-spacing: 0.5px;
    }

    /* Unique Prefix: spw- (Solar Plant Working) */
    .spw-section {
        padding: 80px 20px;
        background-color: #fcfdfe;
        font-family: 'Poppins', sans-serif;
        overflow: hidden;
    }

    .spw-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .spw-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .spw-header h2 {
        font-size: 32px;
        color: var(--dark-navy);
        font-weight: 800;
        margin-bottom: 10px;
    }

    .spw-header span {
        color: var(--gke-blue);
    }

    .spw-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        position: relative;
    }

    /* Connecting Line for Desktop */
    .spw-grid::before {
        content: '';
        position: absolute;
        top: 45px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: repeating-linear-gradient(to right, #e2e8f0 0, #e2e8f0 10px, transparent 10px, transparent 20px);
        z-index: 0;
    }

    .spw-step {
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .spw-icon-wrapper {
        width: 90px;
        height: 90px;
        background: var(--white);
        border: 2px solid #edf2f7;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        transition: all 0.4s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        position: relative;
    }

    .spw-step:hover .spw-icon-wrapper {
        border-color: var(--gke-orange);
        transform: scale(1.1);
        box-shadow: 0 15px 30px rgba(255, 140, 0, 0.2);
    }

    .spw-number {
        position: absolute;
        top: -5px;
        right: -5px;
        width: 30px;
        height: 30px;
        background: var(--gke-orange);
        color: var(--white);
        border-radius: 50%;
        font-size: 14px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 3px solid var(--white);
    }

    .spw-icon-wrapper svg {
        width: 40px;
        height: 40px;
        color: var(--gke-blue);
        transition: 0.3s;
    }

    .spw-step:hover svg {
        color: var(--gke-orange);
    }

    .spw-step h3 {
        font-size: 18px;
        color: var(--dark-navy);
        margin-bottom: 12px;
        font-weight: 700;
    }

    .spw-step p {
        font-size: 14px;
        color: #64748b;
        line-height: 1.6;
        padding: 0 10px;
    }

    /* solar plant css end */
    /* service solar plant css end */

    /* jal nigam project css start */
       /* Main Header Section */
        .jn-header {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--dark-navy) 0%, var(--gke-blue) 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            text-align: center;
            padding: 20px;
            border-bottom: 8px solid var(--gke-orange);
        }

        /* Background Pattern (Engineering/Water feel) */
        .jn-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(var(--white) 0.5px, transparent 0.5px);
            background-size: 30px 30px;
            opacity: 0.1;
            z-index: 1;
        }

        /* Floating Wave SVG for "Jal" Theme */
        .wave-container {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            line-height: 0;
            z-index: 1;
            opacity: 0.2;
        }

        .header-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
            width: 100%;
        }

        .badge {
            background-color: var(--gke-orange);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 15px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .header-content h1 {
            color: var(--white);
            font-size: clamp(24px, 8vw, 52px); /* Responsive Font */
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 15px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
        }

        .header-content h1 span {
            color: var(--gke-orange);
            display: block;
        }

        .header-content p {
            color: rgba(255, 255, 255, 0.9);
            font-size: clamp(14px, 3vw, 18px);
            max-width: 600px;
            margin: 0 auto 25px;
            line-height: 1.6;
        }

        .cta-group {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--gke-orange);
            color: var(--white);
            padding: 12px 28px;
            text-decoration: none;
            font-weight: 600;
            border-radius: 4px;
            transition: 0.3s;
            border: 2px solid var(--gke-orange);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 12px 28px;
            text-decoration: none;
            font-weight: 600;
            border-radius: 4px;
            border: 2px solid var(--white);
            transition: 0.3s;
        }

        .btn-primary:hover {
            background: transparent;
            color: var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--dark-navy);
        }

         .objectives-section {
            padding: 60px 0;
            background-color: #f9f9f9;
        }

        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Section Title Area */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: clamp(26px, 5vw, 40px);
            color: var(--dark-navy);
            font-weight: 800;
            text-transform: uppercase;
        }

        .section-header .line {
            width: 100px;
            height: 5px;
            background: var(--gke-orange);
            margin: 10px auto;
            border-radius: 10px;
        }

        /* Main Row Style */
        .obj-block {
            display: flex;
            flex-direction: row; /* Desktop par side by side */
            align-items: center;
            gap: 40px;
            background: var(--white);
            margin-bottom: 40px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: 0.3s;
        }

        .obj-block:hover {
            box-shadow: 0 15px 40px rgba(8, 66, 152, 0.1);
        }

        /* Image Container */
        .obj-img-container {
            flex: 1;
            width: 100%;
            height: 450px; /* Badi image desktop par */
        }

        .obj-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            display: block;
        }

        /* Content Container */
        .obj-text-container {
            flex: 1.2;
            padding: 40px;
        }

        .obj-text-container .category {
            color: var(--gke-orange);
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            display: block;
        }

        .obj-text-container h3 {
            font-size: clamp(22px, 3vw, 30px);
            color: var(--gke-blue);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .obj-text-container p {
            font-size: 16px;
            color: #444;
            line-height: 1.8;
            margin-bottom: 20px;
            text-align: justify;
        }

        .features-list {
            list-style: none;
        }

        .features-list li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            color: #555;
            font-size: 15px;
        }

        .features-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            width: 12px;
            height: 12px;
            background: var(--gke-orange);
            border-radius: 3px;
        }

        /* Alternating row for Desktop */
        .obj-block.reverse {
            flex-direction: row-reverse;
        }
 .automation-section {
            padding: 80px 5%;
            background-color: var(--bg-gray);
            position: relative;
            overflow: hidden;
        }

        /* Tech Pattern Background Overlay */
        .automation-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: radial-gradient(var(--gke-blue) 0.5px, transparent 0.5px);
            background-size: 30px 30px;
            opacity: 0.05;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: clamp(24px, 5vw, 38px);
            color: var(--dark-navy);
            font-weight: 800;
            margin-bottom: 10px;
        }

        .section-header p {
            color: var(--gke-blue);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 14px;
        }

        /* Grid Layout */
        .automation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        /* Automation Card */
        .auto-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: left;
            transition: all 0.4s ease;
            border-left: 5px solid var(--gke-blue);
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            position: relative;
        }

        .auto-card:hover {
            transform: translateY(-10px);
            border-left: 5px solid var(--gke-orange);
            box-shadow: 0 15px 35px rgba(8, 66, 152, 0.15);
        }

        /* Icon with Tech Circle */
        .icon-wrapper {
            width: 60px;
            height: 60px;
            background: rgba(8, 66, 152, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: 0.4s;
        }

        .auto-card:hover .icon-wrapper {
            background: var(--gke-blue);
            transform: scale(1.1);
        }

        .icon-wrapper svg {
            width: 32px;
            height: 32px;
            fill: var(--gke-blue);
            transition: 0.4s;
        }

        .auto-card:hover .icon-wrapper svg {
            fill: var(--white);
        }

        /* Card Content */
        .auto-card h3 {
            color: var(--dark-navy);
            font-size: 20px;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .auto-card p {
            color: #555;
            font-size: 14.5px;
            line-height: 1.7;
        }

        /* Status Light Effect */
        .status-dot {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 10px;
            height: 10px;
            background: #4CAF50;
            border-radius: 50%;
            box-shadow: 0 0 10px #4CAF50;
            animation: blink 2s infinite;
        }

        @keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0.3; }
            100% { opacity: 1; }
        }

         .process-section {
            padding: 60px 0;
        }

        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: clamp(26px, 5vw, 42px);
            color: var(--dark-navy);
            font-weight: 800;
            text-transform: uppercase;
        }

        .section-header h2 span {
            color: var(--gke-orange);
        }

        .section-header .line {
            width: 80px;
            height: 4px;
            background: var(--gke-blue);
            margin: 15px auto;
        }

        /* --- Main Process Block --- */
        .process-block {
            display: flex;
            flex-direction: column; /* Mobile Default: Image Top */
            background: var(--white);
            margin-bottom: 60px;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(2, 13, 26, 0.1);
            border: 1px solid #eee;
            transition: 0.3s;
        }

        .process-block:hover {
            box-shadow: 0 20px 50px rgba(8, 66, 152, 0.15);
        }

        /* Image Side - Fixed 400px Height */
        .block-img {
            width: 100%;
            height: 400px; /* USER REQUESTED HEIGHT */
            flex-shrink: 0;
            overflow: hidden;
            position: relative;
        }

        .block-img img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures image is not stretched */
            display: block;
            transition: 0.5s;
        }

        .process-block:hover .block-img img {
            transform: scale(1.05);
        }

        /* Content Side */
        .block-text {
            width: 100%;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .block-text .badge {
            background: rgba(255, 140, 0, 0.1);
            color: var(--gke-orange);
            padding: 5px 15px;
            font-size: 12px;
            font-weight: 700;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 15px;
            width: fit-content;
        }

        .block-text h3 {
            font-size: clamp(22px, 3vw, 30px);
            color: var(--gke-blue);
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
        }

        .block-text p {
            font-size: 15px;
            color: #444;
            line-height: 1.8;
            margin-bottom: 25px;
            text-align: justify;
        }

        .feature-list {
            list-style: none;
        }

        .feature-list li {
            font-size: 14px;
            margin-bottom: 12px;
            padding-left: 30px;
            position: relative;
            color: var(--gke-orange);
            font-weight: 600;
        }

        .feature-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--gke-orange);
            font-weight: 900;
            font-size: 18px;
        }


        /* jal jeevan mission css start */
        /* Unique Header Design */
        .smart-jjm-header {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--dark-navy) 0%, var(--gke-blue) 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            color: var(--white);
            border-bottom: 6px solid var(--gke-orange);
        }

        /* Abstract Tech Pattern */
        .smart-jjm-header::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 25px 25px;
            z-index: 1;
        }

        .header-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        /* Content Section */
        .content-area {
            flex: 1;
            max-width: 600px;
        }

        .automation-badge {
            display: inline-block;
            background: rgba(255, 140, 0, 0.15);
            color: var(--gke-orange);
            padding: 6px 15px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            border-left: 3px solid var(--gke-orange);
        }

        .content-area h1 {
            font-size: clamp(26px, 5vw, 46px);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .content-area h1 span {
            color: var(--gke-orange);
        }

        .content-area p {
            font-size: clamp(14px, 2vw, 17px);
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            margin-bottom: 25px;
            max-width: 500px;
        }

        /* --- Rotation Icon Section --- */
        .rotation-area {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .outer-ring {
            width: 280px;
            height: 280px;
            border: 2px dashed rgba(255, 140, 0, 0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: rotateGear 15s linear infinite;
            position: relative;
        }

        @keyframes rotateGear {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .inner-circle {
            width: 180px;
            height: 180px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(8px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: reverseRotate 10s linear infinite; /* Counter rotation for cool effect */
        }

        @keyframes reverseRotate {
            from { transform: rotate(360deg); }
            to { transform: rotate(0deg); }
        }

        .inner-circle svg {
            width: 90px;
            height: 90px;
            fill: var(--gke-orange);
            filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
        }
        .solutions-wrapper {
            padding: 60px 0;
            background-color: #fff;
        }

        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .header-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .header-title h2 {
            font-size: clamp(24px, 5vw, 38px);
            color: var(--dark-navy);
            font-weight: 800;
            text-transform: uppercase;
        }

        .header-title h2 span { color: var(--gke-orange); }

        /* --- Main Card Block --- */
        .solution-card {
            display: flex;
            flex-direction: row; /* Desktop Side-by-Side */
            background: #fff;
            margin-bottom: 40px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 1px solid #eee;
        }

        /* Image Height Fixed at 400px */
        .solution-img {
            flex: 1;
            width: 100%;
            height: 400px; /* Fixed Height */
            overflow: hidden;
        }

        .solution-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Content Area */
        .solution-info {
            flex: 1.2;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .solution-info .label {
            color: var(--gke-orange);
            font-weight: 800;
            font-size: 12px;
            text-transform: uppercase;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .solution-info h3 {
            font-size: 28px;
            color: var(--gke-blue);
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.2;
        }

        .solution-info p {
            font-size: 15px;
            color: #444;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        /* Value Proposition Box */
        .value-impact {
            background: rgba(8, 66, 152, 0.05);
            padding: 15px 20px;
            border-left: 5px solid var(--gke-blue);
            border-radius: 0 10px 10px 0;
        }

        .value-impact strong {
            display: block;
            color: var(--gke-blue);
            font-size: 14px;
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        .value-impact span {
            font-size: 14px;
            color: #333;
            font-weight: 500;
        }

        /* Desktop Alternate Layout */
        .solution-card.reverse {
            flex-direction: row-reverse;
        }

        /* jal jeevan mission css end */
    /* jal nigam project css end */


    /* up neda project css start */
    .upneda-header {
    /* Soft clean gradient instead of dark navy */
    background: linear-gradient(135deg, #f0f4f8 0%, var(--white) 100%);
    min-height: 400px; /* Exact 400px requirement for Desktop */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-bottom: 4px solid var(--gke-orange);
}

/* Very subtle background pattern for texture */
.upneda-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(8, 66, 152, 0.05) 2px, transparent 2px);
    background-size: 30px 30px;
    pointer-events: none;
}

.upneda-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

/* Left Content Area */
.upneda-content {
    flex: 0 0 55%;
}

.neda-badge {
    background-color: var(--gke-blue);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(8, 66, 152, 0.2);
}

.upneda-content h1 {
    color: var(--dark-navy); /* Dark text for light background */
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.upneda-content h1 span {
    color: var(--gke-orange);
}

.upneda-content p {
    color: var(--text-gray); /* Dark gray text */
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.upneda-content p strong {
    color: var(--dark-navy);
    font-weight: 700;
}

.highlight-text {
    color: var(--gke-blue);
    font-weight: 600;
}

.accent-line {
    width: 70px;
    height: 4px;
    background-color: var(--gke-orange);
    border-radius: 2px;
}

/* Right Image Area */
.upneda-image-area {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    /* Gentle floating animation */
    animation: floatImage 4s ease-in-out infinite;
}

/* Decorative offset box behind the image */
.decor-box {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 400px;
    border: 3px solid var(--gke-orange);
    border-radius: 12px;
    z-index: 1;
}

/* Main Image Styling */
.main-img {
    position: relative;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--white);
}

/* Floating Animation */
@keyframes floatImage {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.upneda-projects-section {
    background-color: var(--bg-light);
    padding: 80px 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container-N {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Title Styling --- */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.sub-title {
    display: inline-block;
    color: var(--gke-orange);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 140, 0, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.sub-title i { margin-right: 5px; }

.section-title h2 {
    font-size: 36px;
    color: var(--dark-navy);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-title h2 span { color: var(--gke-blue); }

.section-title p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.title-line {
    width: 60px;
    height: 4px;
    background-color: var(--gke-blue);
    margin: 0 auto;
    border-radius: 2px;
}

/* --- Projects Grid --- */
.projects-grid {
    display: grid;
    /* 3 Columns on desktop */
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* --- Card Styling (Equal Heights & Clean Layout) --- */
.project-card {
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column; /* Allows internal elements to stretch */
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(8, 66, 152, 0.1), 0 10px 10px -5px rgba(8, 66, 152, 0.04);
    border-color: var(--gke-blue);
}

.card-header-img {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.card-header-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .card-header-img img {
    transform: scale(1.05);
}

.modern-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--white);
    color: var(--gke-blue);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 2;
}

/* --- Card Body & Alignment Fix --- */
.card-body {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Makes all cards equal height */
}

.card-body h3 {
    font-size: 20px;
    color: var(--gke-blue);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Perfect alignment for list items */
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between list items */
    margin-top: auto; /* Pushes list to fill space evenly */
}

.feature-list li {
    display: flex;
    align-items: flex-start; /* Aligns icon and text to top */
    gap: 12px;
}

.feature-list li i {
    color: var(--gke-orange);
    font-size: 16px;
    margin-top: 3px; /* Perfect vertical alignment with text */
    flex-shrink: 0; /* Prevents icon from shrinking */
}

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

.feature-list li p strong {
    color: var(--gke-blue);
}

/* --- Contact Banner --- */
.action-banner {
    background-color: var(--dark-navy);
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: radial-gradient(circle at right, rgba(8, 66, 152, 0.8) 0%, transparent 50%);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    width: 55px;
    height: 55px;
    background: var(--gke-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.text-group h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 5px;
}

.text-group p {
    color: #cbd5e1;
    font-size: 14px;
    margin: 0;
}

.banner-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary, .btn-outline {
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--gke-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #e67e00;
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--text-muted);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark-navy);
}

    /* up neda project css end */
    /* solar water heater css start */
     /* Unique Wrapper: 400px height with a custom shape */
        .gke-master-header {
            position: relative;
            width: 100%;
            height: 400px;
            background: var(--bg-light);
            display: flex;
            align-items: center;
            overflow: hidden;
            border-bottom: 5px solid var(--gke-blue);
        }

        /* Unique Geometric Background Shape */
        .gke-master-header::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            width: 50%;
            height: 100%;
            background: var(--gke-blue);
            clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
            z-index: 1;
        }

        .gke-grid-layout {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        /* Left Side: Content Branding */
        .gke-brand-content {
            padding-right: 20px;
        }

        .gke-mfg-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gke-orange);
            color: var(--white);
            padding: 6px 15px;
            font-weight: 800;
            font-size: 11px;
            text-transform: uppercase;
            clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
            margin-bottom: 15px;
        }

        .gke-title {
            /* Responsive font size using Clamp (Unique way) */
            font-size: clamp(1.8rem, 4vw, 3rem);
            color: var(--dark-navy);
            line-height: 1;
            margin-bottom: 15px;
            font-weight: 900;
        }

        .gke-title span {
            display: block;
            color: var(--gke-blue);
            font-size: 0.9em;
        }

        .gke-description {
            color: var(--text-main);
            font-size: 16px;
            max-width: 450px;
            border-left: 3px solid var(--gke-orange);
            padding-left: 15px;
            margin-bottom: 25px;
        }

        .gke-action-btn {
            background: var(--gke-blue);
            color: var(--white);
            padding: 12px 30px;
            border: none;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.4s;
            box-shadow: 5px 5px 0px var(--gke-orange);
        }

        .gke-action-btn:hover {
            box-shadow: 0px 0px 0px var(--gke-orange);
            transform: translate(2px, 2px);
            background: var(--dark-navy);
        }

        /* Right Side: Image with shadow effect */
        .gke-visual-showcase {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .gke-product-img {
            max-width: 1200%;
            height: 350px; /* Adjusted to fit 400px header */
            object-fit: contain;
            filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4));
            z-index: 5;
            border-radius: 10px;
            transition: transform 0.5s;
        }

        .gke-product-img:hover {
            transform: scale(1.05) rotate(-2deg);
        }
           .unique-about-section {
            padding: 80px 20px;
            position: relative;
        }

        /* Decorative Background Elements */
        .unique-about-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: var(--soft-bg);
            border-radius: 50%;
            top: -50px;
            left: -100px;
            z-index: -1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .grid-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 50px;
            align-items: center;
        }
         .image-container {
            position: relative;
            padding: 15px;
        }

        .image-box {
            position: relative;
            z-index: 2;
            border-radius: 60px 20px 60px 20px;
            overflow: hidden;
            box-shadow: 20px 20px 0px var(--gke-blue);
            transition: 0.5s ease;
        }

        .image-box img {
            width: 100%;
            height: 600px;
            display: block;
            object-fit: cover;
        }

        .experience-badge {
            position: absolute;
            bottom: -10px;
            right: -10px;
            background: var(--gke-orange);
            color: white;
            padding: 20px;
            border-radius: 20px;
            text-align: center;
            z-index: 3;
            box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
        }

        .experience-badge span {
            display: block;
            font-size: 24px;
            font-weight: 800;
        }

        /* Content Styling */
        .section-tag {
            color: var(--gke-blue);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 14px;
            display: block;
            margin-bottom: 10px;
        }

        .main-title {
            font-size: clamp(28px, 5vw, 42px);
            color: var(--dark-navy);
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .main-title span {
            color: var(--gke-orange);
            position: relative;
        }

        .main-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(255, 140, 0, 0.2);
            z-index: -1;
        }

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

        /* Unique Feature List */
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 40px;
        }
         .feature-card {
            /* display: flex; */
            align-items: center;
            gap: 15px;
            padding: 10px;
            transition: 0.3s;
        }

        .icon-circle {
            width: 50px;
            height: 50px;
            background: var(--white);
            border: 2px solid var(--soft-bg);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gke-blue);
            font-size: 20px;
            transition: 0.3s;
        }

        .feature-card:hover .icon-circle {
            background: var(--gke-blue);
            color: var(--white);
            transform: rotateY(180deg);
        }

        .feature-info h4 {
            font-size: 15px;
            color: var(--dark-navy);
        }

        /* Unique Button */
        .btn-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .custom-btn {
            position: relative;
            padding: 16px 35px;
            background: var(--gke-blue);
            color: white;
            text-decoration: none;
            font-weight: 600;
            border-radius: 50px;
            overflow: hidden;
            z-index: 1;
            display: inline-block;
            transition: 0.4s;
        }

        .custom-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gke-orange);
            transition: 0.4s;
            z-index: -1;
        }

        .custom-btn:hover::before {
            left: 0;
        }
          /* --- Section Container --- */
        .sh-heater-section {
            padding: 80px 15px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .sh-heater-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .sh-heater-header h2 {
            font-size: clamp(26px, 5vw, 40px);
            color: var(--sh-heater-navy);
            font-weight: 800;
        }

        .sh-heater-header h2 span {
            color: var(--sh-heater-orange);
        }

        /* --- Grid Layout --- */
        .sh-heater-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px 25px;
        }

        /* --- Unique Card Design --- */
        .sh-heater-card {
            background: var(--sh-heater-white);
            border-radius: 25px;
            position: relative;
            padding: 20px;
            border: 1px solid var(--sh-heater-light);
            transition: 0.4s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }

        /* Floating Accent Line */
        .sh-heater-card::before {
            content: '';
            position: absolute;
            top: -5px;
            left: 20px;
            right: 20px;
            height: 5px;
            background: var(--sh-heater-blue);
            border-radius: 10px;
            transition: 0.3s;
        }

        .sh-heater-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(8, 66, 152, 0.1);
            border-color: var(--sh-heater-blue);
        }

        .sh-heater-card:hover::before {
            background: var(--sh-heater-orange);
            left: 10px;
            right: 10px;
        }

        /* Image Box */
        .sh-heater-img-box {
            width: 100%;
            height: 190px;
            border-radius: 18px;
            overflow: hidden;
            margin-bottom: 20px;
            position: relative;
        }

        .sh-heater-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }

        /* Floating Badge & Icon */
        .sh-heater-tech-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--sh-heater-navy);
            color: white;
            padding: 4px 12px;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .sh-heater-usage-icon {
            position: absolute;
            bottom: -20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--sh-heater-orange);
            color: white;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
            border: 4px solid var(--sh-heater-white);
        }

        /* Content */
        .sh-heater-content {
            margin-top: 25px;
        }

        .sh-heater-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--sh-heater-navy);
            margin-bottom: 10px;
        }

        .sh-heater-desc {
            font-size: 14px;
            color: var(--sh-heater-gray);
            line-height: 1.6;
            margin-bottom: 20px;
            min-height: 45px;
        }

        /* Capacity Styling */
        .sh-heater-label {
            font-size: 12px;
            font-weight: 700;
            color: var(--sh-heater-blue);
            text-transform: uppercase;
            margin-bottom: 10px;
            display: block;
        }

        .sh-heater-cap-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 25px;
        }

        .sh-heater-pill {
            background: var(--sh-heater-light);
            padding: 5px 12px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 700;
            color: var(--sh-heater-navy);
            transition: 0.3s;
        }

        .sh-heater-card:hover .sh-heater-pill {
            background: rgba(8, 66, 152, 0.05);
            color: var(--sh-heater-blue);
        }

        /* Button */
        .sh-heater-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            background: var(--sh-heater-blue);
            color: white;
            text-decoration: none;
            padding: 14px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            transition: 0.3s;
        }

        .sh-heater-btn:hover {
            background: var(--sh-heater-navy);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }


        /* product details start */
          .section-padding {
            padding: 75px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 42px;
        }

        .section-title span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--solar-orange);
            background: rgba(255, 140, 0, 0.1);
            padding: 8px 16px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 14px;
        }

        .section-title h2 {
            color: var(--dark-blue);
            font-size: clamp(26px, 4vw, 42px);
            line-height: 1.2;
            margin-bottom: 10px;
        }

        .section-title p {
            max-width: 650px;
            margin: 0 auto;
            color: var(--gray);
            line-height: 1.7;
            font-size: 16px;
        }

        /* Header */
        .product-header {
            min-height: 400px;
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 15% 25%, rgba(255, 140, 0, 0.25), transparent 24%),
                radial-gradient(circle at 85% 35%, rgba(231, 241, 255, 0.22), transparent 25%),
                linear-gradient(135deg, var(--dark-blue), var(--main-blue));
            display: flex;
            align-items: center;
            color: var(--white);
        }

        .product-header::before,
        .product-header::after {
            content: "";
            position: absolute;
            inset: auto;
            border-radius: 50%;
            filter: blur(5px);
            opacity: 0.55;
            animation: floatGlow 7s infinite alternate ease-in-out;
        }

        .product-header::before {
            width: 280px;
            height: 280px;
            background: rgba(255, 140, 0, 0.25);
            left: -80px;
            bottom: -120px;
        }

        .product-header::after {
            width: 320px;
            height: 320px;
            background: rgba(231, 241, 255, 0.16);
            right: -100px;
            top: -90px;
            animation-delay: 1.5s;
        }

        .solar-ray {
            position: absolute;
            width: 220%;
            height: 160px;
            left: -60%;
            top: 0;
            background: repeating-linear-gradient(
                115deg,
                transparent 0 55px,
                rgba(255, 255, 255, 0.08) 56px 58px,
                transparent 59px 110px
            );
            animation: moveRays 8s linear infinite;
        }

        .wave {
            position: absolute;
            left: 0;
            right: 0;
            bottom: -1px;
            height: 75px;
            background: linear-gradient(to top, #f8fbff 10%, transparent 100%);
            clip-path: polygon(0 35%, 15% 52%, 32% 38%, 50% 58%, 68% 36%, 84% 50%, 100% 34%, 100% 100%, 0 100%);
        }

        .header-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            align-items: center;
            gap: 45px;
            padding: 65px 0;
        }

        .header-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.14);
            border: 1px solid rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            padding: 9px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .header-content h1 {
            font-size: clamp(30px, 5vw, 58px);
            line-height: 1.08;
            margin-bottom: 18px;
        }

        .header-content h1 span {
            color: var(--solar-orange);
            text-shadow: 0 0 20px rgba(255, 140, 0, 0.45);
        }

        .header-content p {
            max-width: 610px;
            color: rgba(255, 255, 255, 0.86);
            line-height: 1.8;
            font-size: 17px;
            margin-bottom: 26px;
        }

        .btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            padding: 13px 22px;
            border-radius: 50px;
            font-weight: 800;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-size: 15px;
        }

        .btn-orange {
            background: var(--solar-orange);
            color: var(--white);
            box-shadow: 0 12px 30px rgba(255, 140, 0, 0.35);
        }

        .btn-orange:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 42px rgba(255, 140, 0, 0.48);
        }

        .btn-white {
            background: var(--white);
            color: var(--main-blue);
        }

        .btn-blue {
            background: var(--main-blue);
            color: var(--white);
        }

        .btn-dark {
            background: var(--dark-blue);
            color: var(--white);
        }

        .btn-outline {
            border: 1px solid var(--border);
            background: var(--white);
            color: var(--main-blue);
        }

        .header-product-card {
            position: relative;
            min-height: 280px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(12px);
            border-radius: 30px;
            padding: 26px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: floatProduct 4.5s ease-in-out infinite;
        }

        .header-product-card img {
            max-height: 260px;
            object-fit: contain;
            filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.35));
        }

        .mini-stat {
            position: absolute;
            left: 18px;
            bottom: 18px;
            background: rgba(255, 255, 255, 0.88);
            color: var(--dark-blue);
            padding: 12px 14px;
            border-radius: 18px;
            font-size: 13px;
            font-weight: 800;
            box-shadow: var(--shadow);
        }

        /* Product Quick Details */
        .product-detail-box {
            margin-top: -35px;
            position: relative;
            z-index: 3;
        }

        .product-detail-grid {
            background: var(--white);
            border-radius: 30px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            padding: 28px;
            display: grid;
            grid-template-columns: 0.95fr 1.05fr;
            gap: 35px;
            align-items: center;
        }

        .product-gallery {
            background: linear-gradient(145deg, var(--light-blue), #ffffff);
            border-radius: 26px;
            padding: 24px;
            border: 1px solid var(--border);
        }

        .main-product-img {
            height: 360px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: floatProduct 4s ease-in-out infinite;
        }

        .main-product-img img {
            max-height: 330px;
            object-fit: contain;
            filter: drop-shadow(0 25px 28px rgba(8, 66, 152, 0.24));
            transition: var(--transition);
        }

        .main-product-img img:hover {
            transform: scale(1.04);
        }

        .thumbs {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin-top: 18px;
        }

        .thumb {
            height: 78px;
            background: var(--white);
            border: 2px solid transparent;
            border-radius: 16px;
            padding: 8px;
            cursor: pointer;
            transition: var(--transition);
        }

        .thumb.active,
        .thumb:hover {
            border-color: var(--solar-orange);
            box-shadow: 0 8px 22px rgba(255, 140, 0, 0.22);
        }

        .thumb img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .product-info-card {
            padding: 10px;
        }

        .category {
            color: var(--solar-orange);
            font-weight: 800;
            margin-bottom: 8px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .product-info-card h2 {
            color: var(--dark-blue);
            font-size: clamp(26px, 4vw, 42px);
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--solar-orange);
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

        .rating small {
            color: var(--gray);
            font-weight: 700;
        }

        .price-row {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }

        .price {
            color: var(--main-blue);
            font-size: 32px;
            font-weight: 900;
        }

        .old-price {
            color: var(--gray);
            text-decoration: line-through;
            font-size: 18px;
        }

        .discount {
            background: rgba(255, 140, 0, 0.12);
            color: var(--solar-orange);
            padding: 7px 12px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 13px;
        }

        .short-desc {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .stock {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #e9fff2;
            color: #0b8a3a;
            padding: 9px 14px;
            border-radius: 50px;
            font-weight: 800;
            margin-bottom: 18px;
        }

        .qty-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .qty-box {
            display: inline-flex;
            border: 1px solid var(--border);
            border-radius: 50px;
            overflow: hidden;
            background: var(--light-blue);
        }

        .qty-box button {
            border: none;
            background: transparent;
            width: 42px;
            height: 42px;
            cursor: pointer;
            font-size: 18px;
            color: var(--main-blue);
            font-weight: 900;
        }

        .qty-box input {
            width: 52px;
            border: none;
            background: transparent;
            text-align: center;
            font-weight: 900;
            color: var(--dark-blue);
            outline: none;
        }

        .action-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 18px;
        }

        .icon-actions {
            display: flex;
            gap: 10px;
        }

        .icon-actions a {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--light-blue);
            color: var(--main-blue);
            transition: var(--transition);
        }

        .icon-actions a:hover {
            background: var(--solar-orange);
            color: var(--white);
            transform: translateY(-4px);
        }

        /* Cards */
        .grid-3,
        .grid-4,
        .grid-6 {
            display: grid;
            gap: 22px;
        }

        .grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .grid-4 {
            grid-template-columns: repeat(4, 1fr);
        }

        .grid-6 {
            grid-template-columns: repeat(6, 1fr);
        }

        .feature-card,
        .benefit-card,
        .application-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 26px 20px;
            box-shadow: 0 10px 28px rgba(8, 66, 152, 0.08);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .feature-card::after,
        .benefit-card::after,
        .application-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 140, 0, 0.08), transparent 55%);
            opacity: 0;
            transition: var(--transition);
        }

        .feature-card:hover,
        .benefit-card:hover,
        .application-card:hover {
            transform: translateY(-9px);
            border-color: rgba(255, 140, 0, 0.5);
            box-shadow: 0 18px 45px rgba(8, 66, 152, 0.16);
        }

        .feature-card:hover::after,
        .benefit-card:hover::after,
        .application-card:hover::after {
            opacity: 1;
        }

        .card-icon {
            width: 58px;
            height: 58px;
            border-radius: 18px;
            background: linear-gradient(135deg, var(--solar-orange), #ffb347);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 23px;
            margin-bottom: 18px;
            box-shadow: 0 12px 25px rgba(255, 140, 0, 0.3);
            position: relative;
            z-index: 2;
        }

        .feature-card h3,
        .benefit-card h3,
        .application-card h3 {
            color: var(--dark-blue);
            font-size: 19px;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
        }

        .feature-card p,
        .benefit-card p,
        .application-card p {
            color: var(--gray);
            line-height: 1.7;
            font-size: 14px;
            position: relative;
            z-index: 2;
        }

        /* Description */
        .description-section {
            background: linear-gradient(180deg, var(--light-blue), #ffffff);
        }

        .desc-grid {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 30px;
            align-items: stretch;
        }

        .desc-content,
        .desc-side-card {
            background: var(--white);
            border-radius: 28px;
            padding: 32px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }

        .desc-content h2 {
            color: var(--dark-blue);
            font-size: clamp(25px, 4vw, 38px);
            margin-bottom: 14px;
        }

        .orange-line {
            width: 80px;
            height: 5px;
            background: var(--solar-orange);
            border-radius: 20px;
            margin-bottom: 22px;
        }

        .desc-content p {
            color: var(--gray);
            line-height: 1.85;
            margin-bottom: 16px;
        }

        .highlight-list {
            display: grid;
            gap: 12px;
            margin-top: 20px;
        }

        .highlight-list li {
            list-style: none;
            background: var(--light-blue);
            padding: 13px 15px;
            border-radius: 14px;
            color: var(--dark-blue);
            font-weight: 700;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .highlight-list i {
            color: var(--solar-orange);
            margin-top: 3px;
        }

        .desc-side-card {
            background:
                radial-gradient(circle at top right, rgba(255, 140, 0, 0.18), transparent 40%),
                linear-gradient(145deg, var(--dark-blue), var(--main-blue));
            color: var(--white);
        }

        .desc-side-card i {
            font-size: 52px;
            color: var(--solar-orange);
            margin-bottom: 20px;
        }

        .desc-side-card h3 {
            font-size: 26px;
            margin-bottom: 14px;
        }

        .desc-side-card p {
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.8;
        }

        /* Specification */
        .spec-box {
            background: var(--white);
            border-radius: 28px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }

        .spec-row {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            border-bottom: 1px solid var(--border);
        }

        .spec-row:last-child {
            border-bottom: none;
        }

        .spec-row div {
            padding: 16px 20px;
        }

        .spec-row div:first-child {
            background: var(--light-blue);
            color: var(--dark-blue);
            font-weight: 900;
        }

        .spec-row div:last-child {
            color: var(--gray);
            font-weight: 700;
        }

        /* Timeline */
        .timeline {
            position: relative;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .process-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 25px 18px;
            box-shadow: 0 12px 30px rgba(8, 66, 152, 0.09);
            text-align: center;
            position: relative;
            transition: var(--transition);
        }

        .process-card:hover {
            transform: translateY(-8px);
        }

        .step-num {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--solar-orange);
            color: var(--white);
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            box-shadow: 0 10px 25px rgba(255, 140, 0, 0.32);
        }

        .process-card h3 {
            color: var(--dark-blue);
            font-size: 17px;
            margin-bottom: 8px;
        }

        .process-card p {
            color: var(--gray);
            line-height: 1.6;
            font-size: 14px;
        }

        /* FAQ */
        .faq-wrap {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            gap: 14px;
        }

        .faq-item {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 18px;
            box-shadow: 0 8px 24px rgba(8, 66, 152, 0.08);
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            border: none;
            background: var(--white);
            color: var(--dark-blue);
            padding: 18px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            cursor: pointer;
            font-weight: 900;
            font-size: 16px;
            text-align: left;
        }

        .faq-question i {
            color: var(--solar-orange);
            transition: var(--transition);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }

        .faq-answer p {
            padding: 0 20px 18px;
            color: var(--gray);
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            max-height: 180px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(45deg);
        }

        /* CTA */
        .cta-section {
            padding: 70px 0;
            background:
                radial-gradient(circle at 20% 20%, rgba(255, 140, 0, 0.3), transparent 28%),
                linear-gradient(135deg, var(--dark-blue), var(--main-blue));
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section h2 {
            font-size: clamp(27px, 4vw, 45px);
            margin-bottom: 14px;
        }

        .cta-section p {
            max-width: 680px;
            margin: 0 auto 26px;
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.8;
        }

        /* Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(35px);
            transition: all 0.8s ease;
        }

        .reveal.show {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes moveRays {
            0% { transform: translateX(-8%); }
            100% { transform: translateX(8%); }
        }

        @keyframes floatGlow {
            0% { transform: translateY(0) scale(1); }
            100% { transform: translateY(-28px) scale(1.08); }
        }

        @keyframes floatProduct {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-16px); }
        }
        /* product details end */
    /* solar water heater css end */

       .pro-del-page {
            --main-blue: #084298;
            --dark-blue: #052c65;
            --solar-orange: #ff8c00;
            --light-blue: #e7f1ff;
            --white: #ffffff;
            --black: #111827;
            --gray: #6b7280;
            --border: #dce8ff;
            --shadow: 0 18px 45px rgba(5, 44, 101, 0.14);
            --transition: all 0.35s ease;
        }

        .pro-del-page * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        .pro-del-page {
            font-family: Arial, sans-serif;
            background: #f8fbff;
            color: var(--black);
            overflow-x: hidden;
        }

        .pro-del-page a {
            text-decoration: none;
        }

        .pro-del-page img {
            max-width: 100%;
            display: block;
        }

        .pro-del-container {
            width: min(1180px, 100%);
            margin: 0 auto;
            padding: 0 18px;
        }

        .pro-del-section-padding {
            padding: 75px 0;
        }

        .pro-del-section-title {
            text-align: center;
            margin-bottom: 42px;
        }

        .pro-del-section-title span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--solar-orange);
            background: rgba(255, 140, 0, 0.1);
            padding: 8px 16px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 14px;
        }

        .pro-del-section-title h2 {
            color: var(--dark-blue);
            font-size: clamp(26px, 4vw, 42px);
            line-height: 1.2;
            margin-bottom: 10px;
        }

        .pro-del-section-title p {
            max-width: 650px;
            margin: 0 auto;
            color: var(--gray);
            line-height: 1.7;
            font-size: 16px;
        }

        /* Header */
        .pro-del-product-header {
            min-height: 400px;
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 15% 25%, rgba(255, 140, 0, 0.25), transparent 24%),
                radial-gradient(circle at 85% 35%, rgba(231, 241, 255, 0.22), transparent 25%),
                linear-gradient(135deg, var(--dark-blue), var(--main-blue));
            display: flex;
            align-items: center;
            color: var(--white);
        }

        .pro-del-product-header::before,
        .pro-del-product-header::after {
            content: "";
            position: absolute;
            inset: auto;
            border-radius: 50%;
            filter: blur(5px);
            opacity: 0.55;
            animation: pro-del-floatGlow 7s infinite alternate ease-in-out;
        }

        .pro-del-product-header::before {
            width: 280px;
            height: 280px;
            background: rgba(255, 140, 0, 0.25);
            left: -80px;
            bottom: -120px;
        }

        .pro-del-product-header::after {
            width: 320px;
            height: 320px;
            background: rgba(231, 241, 255, 0.16);
            right: -100px;
            top: -90px;
            animation-delay: 1.5s;
        }

        .pro-del-solar-ray {
            position: absolute;
            width: 220%;
            height: 160px;
            left: -60%;
            top: 0;
            background: repeating-linear-gradient(
                115deg,
                transparent 0 55px,
                rgba(255, 255, 255, 0.08) 56px 58px,
                transparent 59px 110px
            );
            animation: pro-del-moveRays 8s linear infinite;
        }

        .pro-del-wave {
            position: absolute;
            left: 0;
            right: 0;
            bottom: -1px;
            height: 75px;
            background: linear-gradient(to top, #f8fbff 10%, transparent 100%);
            clip-path: polygon(0 35%, 15% 52%, 32% 38%, 50% 58%, 68% 36%, 84% 50%, 100% 34%, 100% 100%, 0 100%);
        }

        .pro-del-header-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            align-items: center;
            gap: 45px;
            padding: 65px 0;
        }

        .pro-del-header-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.14);
            border: 1px solid rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            padding: 9px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .pro-del-header-content h1 {
            font-size: clamp(30px, 5vw, 58px);
            line-height: 1.08;
            margin-bottom: 18px;
        }

        .pro-del-header-content h1 span {
            color: var(--solar-orange);
            text-shadow: 0 0 20px rgba(255, 140, 0, 0.45);
        }

        .pro-del-header-content p {
            max-width: 610px;
            color: rgba(255, 255, 255, 0.86);
            line-height: 1.8;
            font-size: 17px;
            margin-bottom: 26px;
        }

        .pro-del-btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .pro-del-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            padding: 13px 22px;
            border-radius: 50px;
            font-weight: 800;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-size: 15px;
        }

        .pro-del-btn-orange {
            background: var(--solar-orange);
            color: var(--white);
            box-shadow: 0 12px 30px rgba(255, 140, 0, 0.35);
        }

        .pro-del-btn-orange:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 42px rgba(255, 140, 0, 0.48);
        }

        .pro-del-btn-white {
            background: var(--white);
            color: var(--main-blue);
        }

        .pro-del-btn-blue {
            background: var(--main-blue);
            color: var(--white);
        }

        .pro-del-btn-dark {
            background: var(--dark-blue);
            color: var(--white);
        }

        .pro-del-btn-outline {
            border: 1px solid var(--border);
            background: var(--white);
            color: var(--main-blue);
        }

        .pro-del-header-product-card {
            position: relative;
            min-height: 280px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(12px);
            border-radius: 30px;
            padding: 26px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pro-del-floatProduct 4.5s ease-in-out infinite;
        }

        .pro-del-header-product-card img {
            max-height: 260px;
            object-fit: contain;
            filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.35));
        }

        .pro-del-mini-stat {
            position: absolute;
            left: 18px;
            bottom: 18px;
            background: rgba(255, 255, 255, 0.88);
            color: var(--dark-blue);
            padding: 12px 14px;
            border-radius: 18px;
            font-size: 13px;
            font-weight: 800;
            box-shadow: var(--shadow);
        }

        /* Product Quick Details */
        .pro-del-product-detail-box {
            margin-top: -35px;
            position: relative;
            z-index: 3;
        }

        .pro-del-product-detail-grid {
            background: var(--white);
            border-radius: 30px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            padding: 28px;
            display: grid;
            grid-template-columns: 0.95fr 1.05fr;
            gap: 35px;
            align-items: center;
        }

        .pro-del-product-gallery {
            background: linear-gradient(145deg, var(--light-blue), #ffffff);
            border-radius: 26px;
            padding: 24px;
            border: 1px solid var(--border);
        }

        .pro-del-main-product-img {
            height: 360px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pro-del-floatProduct 4s ease-in-out infinite;
        }

        .pro-del-main-product-img img {
            max-height: 330px;
            object-fit: contain;
            filter: drop-shadow(0 25px 28px rgba(8, 66, 152, 0.24));
            transition: var(--transition);
        }

        .pro-del-main-product-img img:hover {
            transform: scale(1.04);
        }

        .pro-del-thumbs {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin-top: 18px;
        }

        .pro-del-thumb {
            height: 78px;
            background: var(--white);
            border: 2px solid transparent;
            border-radius: 16px;
            padding: 8px;
            cursor: pointer;
            transition: var(--transition);
        }

        .pro-del-thumb.pro-del-active,
        .pro-del-thumb:hover {
            border-color: var(--solar-orange);
            box-shadow: 0 8px 22px rgba(255, 140, 0, 0.22);
        }

        .pro-del-thumb img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .pro-del-product-info-card {
            padding: 10px;
        }

        .pro-del-category {
            color: var(--solar-orange);
            font-weight: 800;
            margin-bottom: 8px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .pro-del-product-info-card h2 {
            color: var(--dark-blue);
            font-size: clamp(26px, 4vw, 42px);
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .pro-del-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--solar-orange);
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

        .pro-del-rating small {
            color: var(--gray);
            font-weight: 700;
        }

        .pro-del-price-row {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }

        .pro-del-price {
            color: var(--main-blue);
            font-size: 32px;
            font-weight: 900;
        }

        .pro-del-old-price {
            color: var(--gray);
            text-decoration: line-through;
            font-size: 18px;
        }

        .pro-del-discount {
            background: rgba(255, 140, 0, 0.12);
            color: var(--solar-orange);
            padding: 7px 12px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 13px;
        }

        .pro-del-short-desc {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .pro-del-stock {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #e9fff2;
            color: #0b8a3a;
            padding: 9px 14px;
            border-radius: 50px;
            font-weight: 800;
            margin-bottom: 18px;
        }

        .pro-del-qty-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .pro-del-qty-box {
            display: inline-flex;
            /* border: 1px solid var(--border); */
            border-radius: 50px;
            overflow: hidden;
            /* background: var(--light-blue); */
        }

        .pro-del-qty-box button {
            border: none;
            background: transparent;
            width: 42px;
            height: 42px;
            cursor: pointer;
            font-size: 18px;
            color: var(--main-blue);
            font-weight: 900;
        }

        .pro-del-qty-box input {
            width: 52px;
            border: none;
            background: transparent;
            text-align: center;
            font-weight: 900;
            color: var(--dark-blue);
            outline: none;
        }

        .pro-del-action-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 18px;
        }

        .pro-del-icon-actions {
            display: flex;
            gap: 10px;
        }

        .pro-del-icon-actions a {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--light-blue);
            color: var(--main-blue);
            transition: var(--transition);
        }

        .pro-del-icon-actions a:hover {
            background: var(--solar-orange);
            color: var(--white);
            transform: translateY(-4px);
        }

        /* Cards */
        .pro-del-grid-3,
        .pro-del-grid-4,
        .pro-del-grid-6 {
            display: grid;
            gap: 22px;
        }

        .pro-del-grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .pro-del-grid-4 {
            grid-template-columns: repeat(4, 1fr);
        }

        .pro-del-grid-6 {
            grid-template-columns: repeat(3, 1fr);
        }

        .pro-del-feature-card,
        .pro-del-benefit-card,
        .pro-del-application-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 26px 20px;
            box-shadow: 0 10px 28px rgba(8, 66, 152, 0.08);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .pro-del-feature-card::after,
        .pro-del-benefit-card::after,
        .pro-del-application-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 140, 0, 0.08), transparent 55%);
            opacity: 0;
            transition: var(--transition);
        }

        .pro-del-feature-card:hover,
        .pro-del-benefit-card:hover,
        .pro-del-application-card:hover {
            transform: translateY(-9px);
            border-color: rgba(255, 140, 0, 0.5);
            box-shadow: 0 18px 45px rgba(8, 66, 152, 0.16);
        }

        .pro-del-feature-card:hover::after,
        .pro-del-benefit-card:hover::after,
        .pro-del-application-card:hover::after {
            opacity: 1;
        }

        .pro-del-card-icon {
            width: 58px;
            height: 58px;
            border-radius: 18px;
            background: linear-gradient(135deg, var(--solar-orange), #ffb347);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 23px;
            margin-bottom: 18px;
            box-shadow: 0 12px 25px rgba(255, 140, 0, 0.3);
            position: relative;
            z-index: 2;
        }

        .pro-del-feature-card h3,
        .pro-del-benefit-card h3,
        .pro-del-application-card h3 {
            color: var(--dark-blue);
            font-size: 19px;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
        }

        .pro-del-feature-card p,
        .pro-del-benefit-card p,
        .pro-del-application-card p {
            color: var(--gray);
            line-height: 1.7;
            font-size: 14px;
            position: relative;
            z-index: 2;
        }

        /* Description */
        .pro-del-description-section {
            background: linear-gradient(180deg, var(--light-blue), #ffffff);
        }

        .pro-del-desc-grid {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 30px;
            align-items: stretch;
        }

        .pro-del-desc-content,
        .pro-del-desc-side-card {
            background: var(--white);
            border-radius: 28px;
            padding: 32px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }

        .pro-del-desc-content h2 {
            color: var(--dark-blue);
            font-size: clamp(25px, 4vw, 38px);
            margin-bottom: 14px;
        }

        .pro-del-orange-line {
            width: 80px;
            height: 5px;
            background: var(--solar-orange);
            border-radius: 20px;
            margin-bottom: 22px;
        }

        .pro-del-desc-content p {
            color: var(--gray);
            line-height: 1.85;
            margin-bottom: 16px;
        }

        .pro-del-highlight-list {
            display: grid;
            gap: 12px;
            margin-top: 20px;
        }

        .pro-del-highlight-list li {
            list-style: none;
            background: var(--light-blue);
            padding: 13px 15px;
            border-radius: 14px;
            color: var(--dark-blue);
            font-weight: 700;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .pro-del-highlight-list i {
            color: var(--solar-orange);
            margin-top: 3px;
        }

        .pro-del-desc-side-card {
            background:
                radial-gradient(circle at top right, rgba(255, 140, 0, 0.18), transparent 40%),
                linear-gradient(145deg, var(--dark-blue), var(--main-blue));
            color: var(--white);
        }

        .pro-del-desc-side-card i {
            font-size: 52px;
            color: var(--solar-orange);
            margin-bottom: 20px;
        }

        .pro-del-desc-side-card h3 {
            font-size: 26px;
            margin-bottom: 14px;
        }

        .pro-del-desc-side-card p {
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.8;
        }

        /* Specification */
        .pro-del-spec-box {
            background: var(--white);
            border-radius: 28px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }

        .pro-del-spec-row {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            border-bottom: 1px solid var(--border);
        }

        .pro-del-spec-row:last-child {
            border-bottom: none;
        }

        .pro-del-spec-row div {
            padding: 16px 20px;
        }

        .pro-del-spec-row div:first-child {
            background: var(--light-blue);
            color: var(--dark-blue);
            font-weight: 900;
        }

        .pro-del-spec-row div:last-child {
            color: var(--gray);
            font-weight: 700;
        }

        /* Timeline */
        .pro-del-timeline {
            position: relative;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .pro-del-process-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 25px 18px;
            box-shadow: 0 12px 30px rgba(8, 66, 152, 0.09);
            text-align: center;
            position: relative;
            transition: var(--transition);
        }

        .pro-del-process-card:hover {
            transform: translateY(-8px);
        }

        .pro-del-step-num {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--solar-orange);
            color: var(--white);
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            box-shadow: 0 10px 25px rgba(255, 140, 0, 0.32);
        }

        .pro-del-process-card h3 {
            color: var(--dark-blue);
            font-size: 17px;
            margin-bottom: 8px;
        }

        .pro-del-process-card p {
            color: var(--gray);
            line-height: 1.6;
            font-size: 14px;
        }

        /* FAQ */
        .pro-del-faq-wrap {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            gap: 14px;
        }

        .pro-del-faq-item {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 18px;
            box-shadow: 0 8px 24px rgba(8, 66, 152, 0.08);
            overflow: hidden;
        }

        .pro-del-faq-question {
            width: 100%;
            border: none;
            background: var(--white);
            color: var(--dark-blue);
            padding: 18px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            cursor: pointer;
            font-weight: 900;
            font-size: 16px;
            text-align: left;
        }

        .pro-del-faq-question i {
            color: var(--solar-orange);
            transition: var(--transition);
        }

        .pro-del-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }

        .pro-del-faq-answer p {
            padding: 0 20px 18px;
            color: var(--gray);
            line-height: 1.8;
        }

        .pro-del-faq-item.pro-del-active .pro-del-faq-answer {
            max-height: 180px;
        }

        .pro-del-faq-item.pro-del-active .pro-del-faq-question i {
            transform: rotate(45deg);
        }

        /* CTA */
        .pro-del-cta-section {
            padding: 70px 0;
            background:
                radial-gradient(circle at 20% 20%, rgba(255, 140, 0, 0.3), transparent 28%),
                linear-gradient(135deg, var(--dark-blue), var(--main-blue));
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .pro-del-cta-section h2 {
            font-size: clamp(27px, 4vw, 45px);
            margin-bottom: 14px;
        }

        .pro-del-cta-section p {
            max-width: 680px;
            margin: 0 auto 26px;
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.8;
        }

        /* Reveal Animation */
        .pro-del-reveal {
            opacity: 0;
            transform: translateY(35px);
            transition: all 0.8s ease;
        }

        .pro-del-reveal.pro-del-show {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes pro-del-moveRays {
            0% { transform: translateX(-8%); }
            100% { transform: translateX(8%); }
        }

        @keyframes pro-del-floatGlow {
            0% { transform: translateY(0) scale(1); }
            100% { transform: translateY(-28px) scale(1.08); }
        }

        @keyframes pro-del-floatProduct {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-16px); }
        }

         .ser-del-container {
            width: min(1180px, 100%);
            margin: 0 auto;
            padding: 0 18px;
        }

        .ser-del-section {
            padding: 75px 0;
        }

        .ser-del-title {
            text-align: center;
            margin-bottom: 42px;
        }

        .ser-del-title span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 50px;
            background: rgba(255, 140, 0, 0.12);
            color: var(--solar-orange);
            font-size: 14px;
            font-weight: 800;
            margin-bottom: 14px;
        }

        .ser-del-title h2 {
            font-size: clamp(26px, 4vw, 42px);
            color: var(--dark-blue);
            line-height: 1.2;
            margin-bottom: 10px;
        }

        .ser-del-title p {
            max-width: 720px;
            margin: 0 auto;
            color: var(--gray);
            line-height: 1.7;
        }

        /* Header */
        .ser-del-header {
            min-height: 420px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            color: var(--white);
            background:
                radial-gradient(circle at 20% 25%, rgba(255, 140, 0, 0.28), transparent 26%),
                radial-gradient(circle at 80% 35%, rgba(231, 241, 255, 0.18), transparent 28%),
                linear-gradient(135deg, var(--dark-blue), var(--main-blue));
        }

        .ser-del-header::before {
            content: "";
            position: absolute;
            width: 220%;
            height: 180px;
            top: 0;
            left: -70%;
            background: repeating-linear-gradient(
                115deg,
                transparent 0 55px,
                rgba(255, 255, 255, 0.08) 56px 58px,
                transparent 59px 110px
            );
            animation: serDelRays 9s linear infinite;
        }

        .ser-del-header::after {
            content: "";
            position: absolute;
            width: 320px;
            height: 320px;
            right: -90px;
            bottom: -120px;
            border-radius: 50%;
            background: rgba(255, 140, 0, 0.22);
            filter: blur(8px);
            animation: serDelGlow 6s ease-in-out infinite alternate;
        }

        .ser-del-header-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            align-items: center;
            gap: 45px;
            padding: 70px 0;
        }

        .ser-del-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.14);
            border: 1px solid rgba(255, 255, 255, 0.25);
            padding: 9px 16px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            font-weight: 800;
            margin-bottom: 18px;
        }

        .ser-del-header-content h1 {
            font-size: clamp(31px, 5vw, 58px);
            line-height: 1.08;
            margin-bottom: 18px;
        }

        .ser-del-header-content h1 span {
            color: var(--solar-orange);
            text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
        }

        .ser-del-header-content p {
            max-width: 630px;
            color: rgba(255,255,255,0.86);
            line-height: 1.8;
            font-size: 17px;
            margin-bottom: 26px;
        }

        .ser-del-btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }

        .ser-del-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            padding: 13px 22px;
            border-radius: 50px;
            font-weight: 900;
            border: none;
            transition: var(--transition);
            cursor: pointer;
        }
         .ser-del-btn-group a{
            text-decoration: none;

         }
        .ser-del-btn-orange {
            background: var(--solar-orange);
            color: var(--white);
            box-shadow: 0 12px 30px rgba(255, 140, 0, 0.35);
        }

        .ser-del-btn-orange:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 42px rgba(255, 140, 0, 0.48);
        }

        .ser-del-btn-white {
            background: var(--white);
            color: var(--main-blue);
        }

        .ser-del-header-card {
            position: relative;
            border-radius: 30px;
            padding: 24px;
            background: rgba(255, 255, 255, 0.13);
            border: 1px solid rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(12px);
            box-shadow: 0 30px 80px rgba(0,0,0,0.2);
            animation: serDelFloat 4.5s ease-in-out infinite;
        }

        .ser-del-header-card img {
            height: 270px;
            object-fit: cover;
            border-radius: 22px;
        }

        .ser-del-mini-card {
            position: absolute;
            left: 12px;
            bottom: 12px;
            background: rgba(255,255,255,0.92);
            color: var(--dark-blue);
            padding: 12px 15px;
            border-radius: 16px;
            font-weight: 900;
            font-size: 13px;
            box-shadow: var(--shadow);
        }

        /* Quick Service */
        .ser-del-quick {
            margin-top: -45px;
            position: relative;
            z-index: 3;
        }

        .ser-del-quick-box {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 30px;
            box-shadow: var(--shadow);
            padding: 28px;
            display: grid;
            grid-template-columns: 0.95fr 1.05fr;
            gap: 35px;
            align-items: center;
        }

        .ser-del-service-img {
            background: linear-gradient(145deg, var(--light-blue), #ffffff);
            border-radius: 26px;
            padding: 18px;
            border: 1px solid var(--border);
        }

        .ser-del-service-img img {
            height: 360px;
            object-fit: cover;
            border-radius: 20px;
            filter: drop-shadow(0 22px 28px rgba(8, 66, 152, 0.2));
        }

        .ser-del-info h2 {
            color: var(--dark-blue);
            font-size: clamp(26px, 4vw, 42px);
            margin-bottom: 14px;
            line-height: 1.2;
        }

        .ser-del-category {
            display: inline-flex;
            gap: 8px;
            color: var(--solar-orange);
            font-weight: 900;
            margin-bottom: 10px;
        }

        .ser-del-rating {
            display: flex;
            align-items: center;
            gap: 7px;
            color: var(--solar-orange);
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

        .ser-del-rating small {
            color: var(--gray);
            font-weight: 700;
        }

        .ser-del-short {
            color: var(--gray);
            line-height: 1.85;
            margin-bottom: 18px;
        }

        .ser-del-service-points {
            display: grid;
            gap: 10px;
            margin-bottom: 22px;
        }

        .ser-del-service-points li {
            list-style: none;
            display: flex;
            gap: 10px;
            align-items: flex-start;
            color: var(--dark-blue);
            font-weight: 700;
            background: var(--light-blue);
            padding: 12px 14px;
            border-radius: 14px;
        }

        .ser-del-service-points i {
            color: var(--solar-orange);
            margin-top: 3px;
        }

        .ser-del-btn-blue {
            background: var(--main-blue);
            color: var(--white);
        }

        .ser-del-btn-dark {
            background: var(--dark-blue);
            color: var(--white);
        }

        .ser-del-btn-outline {
            background: var(--white);
            color: var(--main-blue);
            border: 1px solid var(--border);
        }

        /* Cards */
        .ser-del-grid-3,
        .ser-del-grid-4,
        .ser-del-grid-6 {
            display: grid;
            gap: 22px;
        }

        .ser-del-grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .ser-del-grid-4 {
            grid-template-columns: repeat(4, 1fr);
        }

        .ser-del-grid-6 {
            grid-template-columns: repeat(3, 1fr);
        }

        .ser-del-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 26px 20px;
            box-shadow: 0 10px 28px rgba(8, 66, 152, 0.08);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .ser-del-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 140, 0, 0.08), transparent 55%);
            opacity: 0;
            transition: var(--transition);
        }

        .ser-del-card:hover {
            transform: translateY(-9px);
            border-color: rgba(255, 140, 0, 0.5);
            box-shadow: 0 18px 45px rgba(8, 66, 152, 0.16);
        }

        .ser-del-card:hover::after {
            opacity: 1;
        }

        .ser-del-icon {
            width: 58px;
            height: 58px;
            border-radius: 18px;
            background: linear-gradient(135deg, var(--solar-orange), #ffb347);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 23px;
            margin-bottom: 18px;
            box-shadow: 0 12px 25px rgba(255, 140, 0, 0.3);
            position: relative;
            z-index: 2;
        }

        .ser-del-card h3 {
            color: var(--dark-blue);
            margin-bottom: 10px;
            font-size: 19px;
            position: relative;
            z-index: 2;
        }

        .ser-del-card p {
            color: var(--gray);
            line-height: 1.7;
            font-size: 14px;
            position: relative;
            z-index: 2;
        }

        /* Description */
        .ser-del-light-bg {
            background: linear-gradient(180deg, var(--light-blue), #ffffff);
        }

        .ser-del-desc-grid {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 30px;
            align-items: stretch;
        }

        .ser-del-desc-content,
        .ser-del-side-box {
            background: var(--white);
            border-radius: 28px;
            padding: 32px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }

        .ser-del-desc-content h2 {
            color: var(--dark-blue);
            font-size: clamp(25px, 4vw, 38px);
            margin-bottom: 14px;
        }

        .ser-del-orange-line {
            width: 80px;
            height: 5px;
            background: var(--solar-orange);
            border-radius: 20px;
            margin-bottom: 22px;
        }

        .ser-del-desc-content p {
            color: var(--gray);
            line-height: 1.85;
            margin-bottom: 16px;
        }

        .ser-del-highlight-list {
            display: grid;
            gap: 12px;
            margin-top: 20px;
        }

        .ser-del-highlight-list li {
            list-style: none;
            background: var(--light-blue);
            padding: 13px 15px;
            border-radius: 14px;
            color: var(--dark-blue);
            font-weight: 700;
            display: flex;
            gap: 10px;
        }

        .ser-del-highlight-list i {
            color: var(--solar-orange);
            margin-top: 3px;
        }

        .ser-del-side-box {
            background:
                radial-gradient(circle at top right, rgba(255, 140, 0, 0.18), transparent 40%),
                linear-gradient(145deg, var(--dark-blue), var(--main-blue));
            color: var(--white);
        }

        .ser-del-side-box i {
            color: var(--solar-orange);
            font-size: 52px;
            margin-bottom: 20px;
        }

        .ser-del-side-box h3 {
            font-size: 26px;
            margin-bottom: 14px;
        }

        .ser-del-side-box p {
            color: rgba(255,255,255,0.84);
            line-height: 1.8;
        }

        /* Process */
        .ser-del-process {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .ser-del-process-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 25px 18px;
            box-shadow: 0 12px 30px rgba(8, 66, 152, 0.09);
            text-align: center;
            transition: var(--transition);
        }

        .ser-del-process-card:hover {
            transform: translateY(-8px);
        }

        .ser-del-step {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--solar-orange);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-weight: 900;
            box-shadow: 0 10px 25px rgba(255, 140, 0, 0.32);
        }

        .ser-del-process-card h3 {
            color: var(--dark-blue);
            font-size: 17px;
            margin-bottom: 8px;
        }

        .ser-del-process-card p {
            color: var(--gray);
            line-height: 1.6;
            font-size: 14px;
        }

        /* FAQ */
        .ser-del-faq-wrap {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            gap: 14px;
        }

        .ser-del-faq-item {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 18px;
            box-shadow: 0 8px 24px rgba(8, 66, 152, 0.08);
            overflow: hidden;
        }

        .ser-del-faq-question {
            width: 100%;
            border: none;
            background: var(--white);
            color: var(--dark-blue);
            padding: 18px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            cursor: pointer;
            font-weight: 900;
            font-size: 16px;
            text-align: left;
        }

        .ser-del-faq-question i {
            color: var(--solar-orange);
            transition: var(--transition);
        }

        .ser-del-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }

        .ser-del-faq-answer p {
            padding: 0 20px 18px;
            color: var(--gray);
            line-height: 1.8;
        }

        .ser-del-faq-item.ser-del-active .ser-del-faq-answer {
            max-height: 180px;
        }

        .ser-del-faq-item.ser-del-active .ser-del-faq-question i {
            transform: rotate(45deg);
        }

        /* CTA */
        .ser-del-cta {
            padding: 70px 0;
            background:
                radial-gradient(circle at 20% 20%, rgba(255, 140, 0, 0.3), transparent 28%),
                linear-gradient(135deg, var(--dark-blue), var(--main-blue));
            color: var(--white);
            text-align: center;
            overflow: hidden;
        }

        .ser-del-cta h2 {
            font-size: clamp(27px, 4vw, 45px);
            margin-bottom: 14px;
        }

        .ser-del-cta p {
            max-width: 700px;
            margin: 0 auto 26px;
            color: rgba(255,255,255,0.84);
            line-height: 1.8;
        }

        /* Reveal */
        .ser-del-reveal {
            opacity: 0;
            transform: translateY(35px);
            transition: all 0.8s ease;
        }

        .ser-del-reveal.ser-del-show {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes serDelRays {
            0% { transform: translateX(-8%); }
            100% { transform: translateX(8%); }
        }

        @keyframes serDelGlow {
            0% { transform: translateY(0) scale(1); }
            100% { transform: translateY(-28px) scale(1.08); }
        }

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

    /* --- Mobile Responsiveness (320px focus) --- */
      @media (max-width: 1050px) {
            .pro-del-grid-6 {
                grid-template-columns: repeat(3, 1fr);
            }

            .pro-del-grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }

            .pro-del-timeline {
                grid-template-columns: repeat(2, 1fr);
            }
                .ser-del-grid-6 {
                grid-template-columns: repeat(3, 1fr);
            }

            .ser-del-grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }

            .ser-del-process {
                grid-template-columns: repeat(2, 1fr);
            }
        }
    @media (max-width: 1024px) {
        .spw-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 50px 30px;
        }

        .spw-grid::before {
            display: none;
        }
    }

    @media (min-width: 992px) {
        .dropdown-submenu {
            position: relative;
        }

        .dropdown-submenu .dropdown-menu {
            top: 0;
            left: 100%;
            margin-top: -5px;
            display: none;
        }

        .dropdown-submenu:hover>.dropdown-menu {
            display: block;
        }

        .sol-visual {
            display: none;
        }

        /* Hide icon on tablet/mobile to save space */
        .sol-text-area {
            text-align: center;
            max-width: 100%;
        }

        .sol-btn-group {
            justify-content: center;
        }

        .sol-description {
            margin: 0 auto 25px auto;
        }

        .sph-visual {
            display: none;
        }

        .sph-content {
            text-align: center;
            max-width: 100%;
        }

        .sph-btn-group {
            justify-content: center;
        }

        .sph-desc {
            margin-left: auto;
            margin-right: auto;
        }

        .spl-grid {
            grid-template-columns: repeat(2, 1fr);
        }
          .process-block {
                flex-direction: row; /* Desktop: Horizontal */
                height: 400px; /* Sync height with image */
            }

            .process-block.reverse {
                flex-direction: row-reverse;
            }

            .block-img {
                width: 45%; /* Image width on desktop */
                height: 100%;
            }

            .block-text {
                width: 55%;
                padding: 50px;
            }
              .outer-ring {
                width: 220px;
                height: 220px;
            }
            .inner-circle {
                width: 140px;
                height: 140px;
            }
            .inner-circle svg {
                width: 70px;
            }
             .solution-card,
            .solution-card.reverse {
                flex-direction: column !important; /* Force Image on TOP */
            }

            .solution-img {
                width: 100% !important;
                height: 400px !important; /* Fixed Image Height as requested */
            }

            .solution-info {
                width: 100% !important;
                padding: 30px 20px !important;
            }

            .solution-info h3 {
                font-size: 22px;
            }
            .upneda-container {
        gap: 30px;
    }
    .upneda-content h1 {
        font-size: 34px;
    }
    .decor-box {
        right: -10px;
        top: 10px;
    }
     .projects-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
    .action-banner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    .banner-content {
        flex-direction: column;
    }
     .grid-layout {
                grid-template-columns: 1fr 1.2fr;
            }
    }

    @media (max-width: 991px) {
        .navbar-brand img {
            height: 50px;
        }

        .brand-text {
            font-size: 12px;
        }

        .dropdown-menu {
            border-left: 3px solid var(--solar-orange);
            border-top: none;
        }

        .dropdown-item {
            font-size: 14px;
        }

        .navbar-collapse {
            background: white;
            padding: 20px;
            max-height: 80vh;
            overflow-y: auto;
        }

        .hero-wrapper {
            text-align: center;
            padding: 60px 0;
        }

        .main-heading {
            font-size: 2.8rem;
        }

        .sub-text {
            margin: 0 auto 35px;
        }

        .btn-group-custom {
            justify-content: center;
        }

        .square-img-box {
            max-width: 350px;
            margin-top: 60px;
        }

        .card-efficiency {
            right: 0;
            top: 20px;
        }

        .card-projects {
            left: 0;
            bottom: -20px;
        }

        .main-title {
            font-size: 2rem;
        }

        .service-card {
            height: 350px;
        }

        .about-section {
            padding: 60px 0;
        }

        .about-content {
            padding-left: 0;
            margin-top: 50px;
            text-align: center;
        }

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

        .trust-item {
            justify-content: center;
        }

        .experience-badge {
            right: 20px;
            padding: 15px;
        }

        .why-main-title {
            font-size: 2rem;
        }

        .feature-card {
            padding: 30px 20px;
        }

        .p-header h2 {
            font-size: 2.2rem;
        }

        .p-card-body {
            padding: 20px;
        }

        .p-image-wrap {
            height: 180px;
        }

        .contact-card {
            width: calc(50% - 25px);
        }

        .ready-header h2 {
            font-size: 2.2rem;
        }

        .cta-flex {
            text-align: center;
            justify-content: center;
        }

        .f-col {
            margin-bottom: 40px;
        }

        .about-hero {
            height: 400px;
        }

        .hero-title-main {
            font-size: 3rem;
        }

        .section-header-box h2 {
            font-size: 2.3rem;
        }

        .mv-feature-card {
            padding: 35px 25px;
        }

        .warranty-header h2 {
            font-size: 2.2rem;
        }

        .warranty-card h3 {
            font-size: 1.7rem;
        }
    }
     @media (max-width: 900px) {
            .pro-del-header-grid,
            .pro-del-product-detail-grid,
            .pro-del-desc-grid {
                grid-template-columns: 1fr;
            }

            .pro-del-product-header {
                min-height: auto;
            }

            .pro-del-header-grid {
                text-align: center;
                padding: 55px 0 90px;
            }

            .pro-del-header-content p {
                margin-left: auto;
                margin-right: auto;
            }

            .pro-del-btn-group {
                justify-content: center;
            }

            .pro-del-header-product-card {
                max-width: 460px;
                margin: 0 auto;
            }

            .pro-del-product-detail-box {
                margin-top: -55px;
            }
               .ser-del-header-grid,
            .ser-del-quick-box,
            .ser-del-desc-grid {
                grid-template-columns: 1fr;
            }

            .ser-del-header-grid {
                text-align: center;
                padding: 55px 0 90px;
            }

            .ser-del-header-content p {
                margin-left: auto;
                margin-right: auto;
            }

            .ser-del-btn-group {
                justify-content: center;
            }

            .ser-del-header-card {
                max-width: 480px;
                margin: 0 auto;
            }

            .ser-del-quick {
                margin-top: -55px;
            }
        }
        @media (max-width: 850px) {
            .obj-block, .obj-block.reverse {
                flex-direction: column; /* Mobile par stack hoga */
            }

            .obj-img-container {
                height: 300px; /* Mobile par bhi badi image */
                order: 1; /* Image hamesha upar rahegi */
            }

            .obj-text-container {
                padding: 30px 20px;
                order: 2; /* Content niche aayega */
            }

            .obj-text-container h3 {
                font-size: 24px;
            }
              .header-container {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }
            .rotation-area {
                justify-content: center;
                order: -1; /* Icon above text in tablet/small devices */
            }
            .outer-ring {
                width: 180px;
                height: 180px;
            }
            .inner-circle {
                width: 120px;
                height: 120px;
            }
            .inner-circle svg {
                width: 60px;
            }
        }
    @media (max-width: 768px) {
        .testi-card {
            flex: 0 0 280px;
            padding: 20px;
        }

        .sec-title h2 {
            font-size: 1.8rem;
        }

        .contact-card {
            width: 100%;
            max-width: 400px;
        }
        .upneda-header {
        min-height: auto;
        padding: 50px 20px;
    }
    .upneda-container {
        flex-direction: column-reverse; /* Image on top, Text on bottom */
        text-align: center;
        padding: 0;
        gap: 40px;
    }
    .upneda-content, .upneda-image-area {
        flex: 0 0 100%;
        width: 100%;
    }
    .accent-line {
        margin: 0 auto; /* Center the line */
    }
    .image-wrapper {
        max-width: 350px; /* Limit image size on mobile */
        margin: 0 auto;
    }
    .section-title h2 { font-size: 30px; }
    .projects-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
    .banner-buttons {
        flex-direction: column;
        width: 100%;
    }
    .btn-primary, .btn-outline {
        justify-content: center;
        width: 100%;
    }
 .gke-master-header {
                height: auto;
                min-height: 400px;
                padding: 40px 0;
            }
            .gke-master-header::before {
                width: 100%;
                clip-path: polygon(0 60%, 100% 40%, 100% 100%, 0% 100%);
            }
            .gke-grid-layout {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .gke-brand-content {
                padding-right: 0;
                margin-bottom: 30px;
            }
            .gke-description {
                margin: 0 auto 20px;
                border-left: none;
                border-top: 3px solid var(--gke-orange);
                padding: 10px 0;
            }
            .gke-product-img {
                height: 200px;
            }
    }
  @media (max-width: 650px) {
            .pro-del-section-padding {
                padding: 55px 0;
            }

            .pro-del-product-detail-grid,
            .pro-del-desc-content,
            .pro-del-desc-side-card {
                padding: 20px;
                border-radius: 22px;
            }

            .pro-del-main-product-img {
                height: 270px;
            }

            .pro-del-main-product-img img {
                max-height: 245px;
            }

            .pro-del-thumbs {
                grid-template-columns: repeat(2, 1fr);
            }

            .pro-del-grid-6,
            .pro-del-grid-4,
            .pro-del-grid-3,
            .pro-del-timeline {
                grid-template-columns: 1fr;
            }

            .pro-del-spec-row {
                grid-template-columns: 1fr;
            }

            .pro-del-spec-row div {
                padding: 13px 15px;
            }

            .pro-del-action-buttons .pro-del-btn {
                width: 100%;
            }
              .ser-del-section {
                padding: 55px 0;
            }

            .ser-del-quick-box,
            .ser-del-desc-content,
            .ser-del-side-box {
                padding: 20px;
                border-radius: 22px;
            }

            .ser-del-service-img img {
                height: 270px;
            }

            .ser-del-grid-6,
            .ser-del-grid-4,
            .ser-del-grid-3,
            .ser-del-process {
                grid-template-columns: 1fr;
            }

            .ser-del-btn {
                width: 100%;
            }
        }
    @media (max-width: 600px) {
        .spw-grid {
            grid-template-columns: 1fr;
        }

        .spw-header h2 {
            font-size: 26px;
        }

        .spw-icon-wrapper {
            width: 80px;
            height: 80px;
        }
    }

    @media (max-width: 576px) {

        /* Ise 100% width kar diya taaki 2 do karke na aaye */
        .col-6 {
            width: 100% !important;
        }

        .f-col h4 {
            margin-bottom: 15px;
        }

        .about-hero {
            height: 350px;
        }

        .hero-title-main {
            font-size: 2.2rem;
        }

        .hero-title-main span {
            font-size: 1.1rem;
            letter-spacing: 3px;
        }

        .hero-sub-para {
            font-size: 1rem;
        }

        .spl-grid {
            grid-template-columns: 1fr;
        }

        .spl-header h2 {
            font-size: 24px;
        }
    }

    @media (max-width: 480px) {
        .hero-main-title {
            font-size: 2.2rem;
        }

        .image-frame {
            width: 280px;
            height: 280px;
        }

        .why-main-title {
            font-size: 1.7rem;
        }

        .p-header h2 {
            font-size: 1.8rem;
        }

        .p-card-body h4 {
            font-size: 1.1rem;
        }

        .p-card-body p {
            font-size: 0.85rem;
            height: auto;
        }

        .gke-product-card {
            border-radius: 15px;
        }

        .cta-text h3 {
            font-size: 20px;
        }

        .footer-main-content {
            padding-top: 50px;
        }

        .f-col h4 {
            font-size: 16px;
        }

        .sol-hero-wrapper {
            padding: 40px 0;
        }

        .sol-headline {
            font-size: 1.6rem;
        }

        .sol-description {
            font-size: 0.9rem;
        }

        .sol-btn-group {
            flex-direction: column;
            width: 100%;
            align-items: center;
        }

        .sol-btn-primary,
        .sol-btn-outline {
            width: 100%;
            max-width: 250px;
        }

        .ins-header h2 {
            font-size: 26px;
        }

        .ins-timeline {
            padding-left: 30px;
        }

        .ins-timeline::before {
            left: 8px;
        }

        .ins-step::after {
            left: -28px;
            width: 14px;
            height: 14px;
            top: 28px;
        }

        .ins-content {
            padding: 20px;
        }

        .ins-content h3 {
            font-size: 17px;
        }

        .prc-header h2 {
            font-size: 26px;
        }

        .prc-grid {
            gap: 20px;
        }

        .prc-card {
            padding: 25px 15px;
        }

        .sph-wrapper {
            height: auto;
            min-height: 400px;
            padding: 40px 0;
        }

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

        .sph-desc {
            font-size: 0.9rem;
        }
         .automation-section {
                padding: 50px 15px;
            }
            .auto-card {
                padding: 30px 20px;
            }
            .section-header h2 {
                font-size: 22px;
            }
              .smart-jjm-header {
                height: 400px;
                padding: 20px 0;
            }
            .content-area h1 {
                font-size: 28px;
            }
            .content-area p {
                font-size: 14px;
            }
            .rotation-area {
                display: flex; /* Keeping the icon visible as requested */
            }
             .feature-grid {
                grid-template-columns: 1fr 1fr;
            }
    }

     @media (max-width: 380px) {
            .pro-del-container {
                padding: 0 12px;
            }

            .pro-del-header-content h1 {
                font-size: 27px;
            }

            .pro-del-header-content p {
                font-size: 14px;
            }

            .pro-del-btn {
                width: 100%;
                padding: 12px 14px;
                font-size: 14px;
            }

            .pro-del-header-product-card {
                padding: 16px;
                border-radius: 22px;
                min-height: 230px;
            }

            .pro-del-header-product-card img {
                max-height: 200px;
            }

            .pro-del-product-detail-grid {
                padding: 14px;
            }

            .pro-del-product-gallery {
                padding: 14px;
            }

            .pro-del-main-product-img {
                height: 230px;
            }

            .pro-del-product-info-card h2 {
                font-size: 24px;
            }

            .pro-del-price {
                font-size: 25px;
            }

            .pro-del-feature-card,
            .pro-del-benefit-card,
            .pro-del-application-card,
            .pro-del-process-card {
                padding: 20px 15px;
            }

            .pro-del-faq-question {
                font-size: 14px;
                padding: 15px;
            }
               .ser-del-container {
                padding: 0 12px;
            }

            .ser-del-header-content h1 {
                font-size: 22px;
                width: 300px;
            }

            .ser-del-header-content p {
                font-size: 14px;
            }

            .ser-del-header-card {
                padding: 15px;
                border-radius: 22px;
            }

            .ser-del-header-card img {
                height: 210px;
            }

            .ser-del-service-img img {
                height: 230px;
            }

            .ser-del-quick-box {
                padding: 14px;
            }

            .ser-del-info h2 {
                font-size: 24px;
            }

            .ser-del-card,
            .ser-del-process-card {
                padding: 20px 15px;
            }

            .ser-del-faq-question {
                font-size: 14px;
                padding: 15px;
            }
        }
    @media (max-width: 320px) {
        .brand-text {
            font-size: 10px;
        }

        .navbar-brand img {
            height: 40px;
        }

        .nav-link {
            font-size: 13px;
            padding: 8px 10px !important;
        }

        .main-heading {
            font-size: 1.8rem;
        }

        .sub-text {
            font-size: 0.95rem;
        }

        .btn-blue,
        .btn-outline-solar {
            width: 100%;
            padding: 12px;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .square-img-box {
            max-width: 250px;
            border-radius: 25px;
            border-width: 6px;
        }

        .float-card {
            padding: 10px 15px;
            font-size: 12px;
        }

        .svg-icon {
            width: 24px;
            height: 24px;
        }

        .service-card {
            height: 320px;
            border-radius: 15px;
        }

        .service-content {
            padding: 20px;
        }

        .service-card h3 {
            font-size: 1.1rem;
        }

        .service-card p {
            font-size: 0.8rem;
        }

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

        .about-description {
            font-size: 0.9rem;
        }

        .experience-badge h2 {
            font-size: 1.8rem;
        }

        .experience-badge p {
            font-size: 10px;
        }

        .btn-about {
            width: 100%;
            text-align: center;
            padding: 12px 20px;
        }

        .why-choose-section {
            padding: 50px 0;
        }

        .why-main-title {
            font-size: 1.4rem;
        }

        .feature-card {
            text-align: center;
        }

        .icon-outer {
            margin: 0 auto 20px;
        }

        .feature-card p {
            font-size: 0.85rem;
        }

        .card-number {
            font-size: 35px;
            top: 10px;
            right: 15px;
        }

        .p-header h2 {
            font-size: 1.5rem;
        }

        .p-image-wrap {
            height: 160px;
        }

        .p-card-body {
            padding: 15px;
        }

        .testi-card {
            flex: 0 0 260px;
        }

        .sec-title h2 {
            font-size: 1.4rem;
        }

        .testi-quote {
            font-size: 0.85rem;
        }

        .ready-section {
            padding: 60px 15px 40px;
        }

        .ready-header h2 {
            font-size: 1.6rem;
        }

        .ready-header p {
            font-size: 0.9rem;
        }

        .contact-card {
            padding: 30px 20px;
        }

        .contact-card h4 {
            font-size: 1.1rem;
        }

        .gst-stripe {
            flex-direction: column;
            padding: 15px;
            width: 100%;
        }

        .gst-val {
            font-size: 1rem;
            letter-spacing: 1px;
        }

        .company-summary h2 {
            font-size: 18px;
        }

        .cta-btn {
            width: 100%;
            text-align: center;
        }

        .contact-detail {
            gap: 10px;
        }

        .icon-wrap {
            width: 35px;
            height: 35px;
        }

        .detail-text p {
            font-size: 12px;
        }

        .gst-tag {
            font-size: 11px;
            padding: 5px 8px;
        }

        .cta-text h3 {
            font-size: 16px;
        }

        .cta-btn {
            width: 100%;
            font-size: 14px;
        }

        .footer-brand img {
            height: 35px;
        }

        .brand-text {
            font-size: 12px !important;
        }

        .detail-text p {
            font-size: 12px;
        }

        .footer-main-content {
            padding-top: 40px;
        }

        .gst-tag {
            display: block;
            margin-top: 10px;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }

        .about-hero {
            height: 320px;
        }

        .hero-title-main {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .hero-title-main span {
            font-size: 1rem;
            letter-spacing: 2px;
        }

        .gke-breadcrumbs {
            padding: 5px 15px;
            margin-bottom: 15px;
        }

        .gke-breadcrumbs a {
            font-size: 12px;
        }

        .hero-sub-para {
            font-size: 0.85rem;
            line-height: 1.4;
        }

        .accent-line {
            width: 50px;
            height: 3px;
            margin-top: 15px;
        }

        .mission-vision-section {
            padding: 60px 0;
        }

        .section-header-box h2 {
            font-size: 1.7rem;
        }

        .mv-feature-card {
            padding: 30px 20px;
            border-radius: 18px;
        }

        .mv-feature-card h4 {
            font-size: 1.2rem;
        }

        .mv-feature-card p {
            font-size: 0.85rem;
        }

        .icon-container {
            width: 60px;
            height: 60px;
            margin-bottom: 20px;
        }

        .icon-container svg {
            width: 30px;
            height: 30px;
        }

        .warranty-section {
            padding: 60px 0;
        }

        .warranty-header h2 {
            font-size: 1.6rem;
        }

        .warranty-card {
            padding: 25px 15px;
            border-radius: 15px;
        }

        .warranty-badge-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 20px;
        }

        .warranty-badge-icon svg {
            width: 25px;
            height: 25px;
        }

        .warranty-card h4 {
            font-size: 1.1rem;
        }

        .warranty-card h3 {
            font-size: 1.5rem;
        }

        .warranty-card p {
            font-size: 0.8rem;
        }

        .sol-hero-wrapper {
            padding: 30px 0;
            min-height: 380px;
        }

        /* Increased min-height to fit text */
        .sol-headline {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        .sol-badge {
            font-size: 10px;
            padding: 3px 8px;
        }

        .sol-description {
            font-size: 0.85rem;
            line-height: 1.3;
            margin-bottom: 20px;
        }

        .sol-btn-primary,
        .sol-btn-outline {
            padding: 10px;
            font-size: 13px;
            max-width: 100%;
        }

        .sol-main-content {
            padding: 0 10px;
        }

        .wks-title-area h2 {
            font-size: 22px;
        }

        .wks-card {
            padding: 20px 15px;
        }

        .wks-card p {
            font-size: 13px;
        }

        .ins-section {
            padding: 40px 10px;
        }

        .ins-container {
            padding: 0 5px;
        }

        .ins-content {
            padding: 15px;
        }

        .ins-content p {
            font-size: 13px;
        }

        .ins-header h2 {
            font-size: 21px;
        }

        .ins-timeline::before {
            left: 5px;
        }

        .ins-step::after {
            left: -31px;
        }

        .ins-content:hover {
            transform: none;
        }

        .prc-section {
            padding: 40px 10px;
        }

        .prc-amount {
            font-size: 26px;
        }

        .prc-capacity {
            font-size: 20px;
        }

        .prc-features li {
            font-size: 13px;
        }

        .prc-header h2 {
            font-size: 22px;
        }

        .sph-wrapper {
            padding: 30px 0;
            min-height: 420px;
        }

        .sph-container {
            padding: 0 15px;
        }

        .sph-title {
            font-size: 1.5rem;
        }

        .sph-badge {
            font-size: 10px;
            padding: 4px 10px;
        }

        .sph-btn-group {
            flex-direction: column;
            width: 100%;
            align-items: center;
        }

        .sph-btn-main,
        .sph-btn-side {
            width: 100%;
            text-align: center;
            font-size: 13px;
        }

        .sph-desc {
            font-size: 0.85rem;
            line-height: 1.4;
        }

        .spl-section {
            padding: 40px 10px;
        }

        .spl-card {
            padding: 25px 15px;
        }

        .spl-header h2 {
            font-size: 20px;
        }

        .spl-card h3 {
            font-size: 19px;
        }

        .spl-card p {
            font-size: 13px;
        }

        .spl-link-btn {
            width: 100%;
            text-align: center;
        }

        .spw-section {
            padding: 50px 10px;
        }

        .spw-header h2 {
            font-size: 21px;
        }

        .spw-step h3 {
            font-size: 17px;
        }

        .spw-step p {
            font-size: 13px;
            padding: 0;
        }

        .spw-icon-wrapper {
            width: 70px;
            height: 70px;
            margin-bottom: 15px;
        }

        .spw-icon-wrapper svg {
            width: 30px;
            height: 30px;
        }

        .spw-number {
            width: 25px;
            height: 25px;
            font-size: 12px;
        }
        .jn-header {
                height: 420px; /* Extra space for small screens */
                padding: 10px;
            }
            .header-content h1 {
                font-size: 22px;
            }
            .cta-group {
                flex-direction: column;
                gap: 10px;
            }
            .btn-primary, .btn-secondary {
                width: 100%;
                padding: 10px;
            }
            .container {
                padding: 0 10px;
            }
            .obj-img-container {
                height: 220px; /* Screen ke hisab se adjusted height */
            }
            .obj-text-container {
                padding: 20px 15px;
            }
            .obj-text-container p {
                font-size: 14px;
            }
            .section-header h2 {
                font-size: 22px;
            }
             .automation-grid {
                grid-template-columns: 1fr;
            }
            .auto-card h3 {
                font-size: 18px;
            }
            .auto-card p {
                font-size: 13.5px;
            }
             .container {
                padding: 0 10px;
            }

            .block-img {
                height: 400px; /* Stays 400px as requested */
            }

            .block-text {
                padding: 25px 15px;
            }

            .block-text h3 {
                font-size: 20px;
            }

            .block-text p {
                font-size: 13.5px;
            }

            .section-header h2 {
                font-size: 22px;
            }
              .header-container {
                padding: 0 15px;
            }
            .content-area h1 {
                font-size: 22px;
                margin-bottom: 10px;
            }
            .content-area p {
                font-size: 12.5px;
                line-height: 1.4;
                margin-bottom: 15px;
            }
            .outer-ring {
                width: 140px;
                height: 140px;
            }
            .inner-circle {
                width: 90px;
                height: 90px;
            }
            .inner-circle svg {
                width: 45px;
            }
            .automation-badge {
                font-size: 9px;
                padding: 4px 10px;
                margin-bottom: 10px;
            }
            .container { padding: 0 10px; }
            .solution-info h3 { font-size: 20px; }
            .solution-info p { font-size: 13.5px; }
            .solution-img { height: 400px !important; } /* Big image even on tiny screens */
            .header-title h2 { font-size: 22px; }
             .upneda-header {
        padding: 40px 15px;
    }
    .neda-badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 15px;
    }
    .upneda-content h1 {
        font-size: 26px; /* Perfect for 320px without breaking words */
        margin-bottom: 10px;
    }
    .upneda-content p {
        font-size: 13.5px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    .image-wrapper {
        max-width: 260px; /* Small enough so border doesn't overflow on 320px */
        margin-top: 10px;
    }
    .decor-box {
        border-width: 2px; /* Thinner border for small screens */
        right: -10px;
        top: 10px;
    }
    .main-img {
        border-width: 2px;
    }
    .upneda-projects-section {
        padding: 50px 10px; /* Reduced outer space */
    }
    .section-title h2 {
        font-size: 24px;
    }
    .section-title p {
        font-size: 13.5px;
    }

    .card-header-img {
        height: 180px; /* Adjust image height */
    }
    .card-body {
        padding: 20px 15px; /* Adjust padding to fit content safely */
    }
    .card-body h3 {
        font-size: 18px;
    }
    /* Prevents alignment breaking on extremely tight screens */
    .feature-list li p {
        font-size: 13px;
    }

    .action-banner {
        padding: 25px 15px;
    }
    .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .text-group h4 {
        font-size: 18px;
    }
    .text-group p {
        font-size: 13px;
    }
    .btn-primary, .btn-outline {
        font-size: 14px;
        padding: 10px 15px;
    }
     .gke-grid-layout { padding: 0 15px; }
            .gke-title { font-size: 1.5rem; }
            .gke-description { font-size: 13px; }
            .gke-mfg-label { font-size: 10px; }
            .gke-product-img { height: 160px; }
            .gke-action-btn { width: 100%; padding: 10px; }
              .unique-about-section { padding: 40px 10px; }
            .image-box { border-radius: 30px 10px 30px 10px; box-shadow: 10px 10px 0px var(--gke-blue); }
            .experience-badge { padding: 10px; right: 5px; bottom: 5px; }
            .experience-badge span { font-size: 18px; }
            .main-title { font-size: 24px; }
            .feature-card { padding: 5px; }
            .custom-btn { width: 100%; text-align: center; padding: 14px 20px; }
              .sh-heater-section { padding: 40px 10px; }
            .sh-heater-card { padding: 15px; }
            .sh-heater-img-box { height: 160px; }
            .sh-heater-title { font-size: 19px; }
            .sh-heater-usage-icon { width: 42px; height: 42px; font-size: 16px; bottom: -15px; }
            .sh-heater-desc { font-size: 13px; }
    }

/* =====================================================
   SERVICE DETAIL PAGE - FINAL FIXED RESPONSIVE CSS
   320px तक horizontal scrolling और layout breaking fix
   Paste/keep this block at the VERY END of your CSS file
   ===================================================== */

/* 1) Global width calculation fix - padding की वजह से 100% width overflow नहीं होगी */
*,
*::before,
*::after {
    box-sizing: border-box !important;
}

html,
body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

body {
    position: relative !important;
}

/* Sliding form भी horizontal scroll दे रहा था क्योंकि width:100% + padding था */
#contactSlideForm {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

/* 2) Service detail page hard lock */
.ser-del-header,
.ser-del-header::before,
.ser-del-header::after,
.ser-del-quick,
.ser-del-section,
.ser-del-light-bg,
.ser-del-cta {
    max-width: 100vw !important;
    overflow-x: clip !important;
}

@supports not (overflow: clip) {
    .ser-del-header,
    .ser-del-quick,
    .ser-del-section,
    .ser-del-light-bg,
    .ser-del-cta {
        overflow-x: hidden !important;
    }
}

/* 3) Container proper mobile safe */
.ser-del-container {
    width: 100% !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow-x: visible !important;
}

/* 4) Grid/flex children overflow control */
.ser-del-header-grid,
.ser-del-quick-box,
.ser-del-desc-grid,
.ser-del-grid-6,
.ser-del-grid-4,
.ser-del-grid-3,
.ser-del-process,
.ser-del-btn-group,
.ser-del-rating {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

.ser-del-header-grid > *,
.ser-del-quick-box > *,
.ser-del-desc-grid > *,
.ser-del-grid-6 > *,
.ser-del-grid-4 > *,
.ser-del-grid-3 > *,
.ser-del-process > * {
    min-width: 0 !important;
    max-width: 100% !important;
}

/* 5) Images safe */
.ser-del-header-card,
.ser-del-service-img,
.ser-del-quick-box,
.ser-del-desc-content,
.ser-del-side-box,
.ser-del-card,
.ser-del-process-card,
.ser-del-faq-wrap,
.ser-del-faq-item {
    max-width: 100% !important;
}

.ser-del-header-card img,
.ser-del-service-img img {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: block !important;
    object-fit: cover !important;
}

/* 6) Text overflow break */
.ser-del-header-content,
.ser-del-info,
.ser-del-desc-content,
.ser-del-side-box,
.ser-del-title,
.ser-del-cta {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

.ser-del-header-content h1,
.ser-del-header-content h1 span,
.ser-del-header-content p,
.ser-del-info h2,
.ser-del-short,
.ser-del-category,
.ser-del-rating,
.ser-del-rating small,
.ser-del-title h2,
.ser-del-title p,
.ser-del-desc-content h2,
.ser-del-desc-content p,
.ser-del-card h3,
.ser-del-card p,
.ser-del-process-card h3,
.ser-del-process-card p,
.ser-del-side-box h3,
.ser-del-side-box p,
.ser-del-faq-question,
.ser-del-faq-answer p,
.ser-del-cta h2,
.ser-del-cta p,
.ser-del-service-points li,
.ser-del-highlight-list li {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
}

/* 7) Buttons safe */
.ser-del-btn-group {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.ser-del-btn {
    max-width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.3 !important;
    text-decoration: none !important;
}

/* 8) Animations can create extra mobile width, disable only on mobile */
@media (max-width: 767px) {
    .ser-del-reveal,
    .ser-del-reveal.ser-del-show,
    .ser-del-header-card,
    .ser-del-card:hover,
    .ser-del-process-card:hover,
    .ser-del-btn:hover,
    .ser-del-btn-orange:hover {
        transform: none !important;
        animation: none !important;
    }

    .ser-del-header::before,
    .ser-del-header::after {
        animation: none !important;
        transform: none !important;
    }

    .ser-del-header {
        min-height: auto !important;
        padding: 38px 0 72px !important;
    }

    .ser-del-header-grid,
    .ser-del-quick-box,
    .ser-del-desc-grid,
    .ser-del-grid-6,
    .ser-del-grid-4,
    .ser-del-grid-3,
    .ser-del-process {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 22px !important;
    }

    .ser-del-header-grid {
        padding: 0 !important;
        margin: 0 !important;
        text-align: center !important;
    }

    .ser-del-header-content p {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .ser-del-btn-group {
        justify-content: center !important;
    }

    .ser-del-btn {
        width: 100% !important;
        max-width: 310px !important;
        min-height: 46px !important;
        padding: 12px 14px !important;
        font-size: 14px !important;
    }

    .ser-del-header-card {
        width: 100% !important;
        margin: 0 auto !important;
        padding: 12px !important;
        border-radius: 22px !important;
    }

    .ser-del-header-card img {
        height: 235px !important;
        border-radius: 17px !important;
    }

    .ser-del-mini-card {
        left: 14px !important;
        right: 14px !important;
        bottom: 14px !important;
        width: auto !important;
        max-width: calc(100% - 28px) !important;
        padding: 9px 11px !important;
        font-size: 12px !important;
    }

    .ser-del-quick {
        margin-top: -38px !important;
    }

    .ser-del-quick-box,
    .ser-del-desc-content,
    .ser-del-side-box {
        padding: 16px !important;
        border-radius: 22px !important;
    }

    .ser-del-service-img {
        padding: 10px !important;
        border-radius: 20px !important;
    }

    .ser-del-service-img img {
        height: 235px !important;
        border-radius: 16px !important;
        filter: none !important;
    }

    .ser-del-section {
        padding: 50px 0 !important;
    }

    .ser-del-title {
        margin-bottom: 28px !important;
    }

    .ser-del-header-content h1 {
        width: 100% !important;
        font-size: 28px !important;
        line-height: 1.16 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 14px !important;
    }

    .ser-del-header-content h1 span {
        display: block !important;
        font-size: 22px !important;
        line-height: 1.18 !important;
        margin-top: 4px !important;
    }

    .ser-del-header-content p,
    .ser-del-short,
    .ser-del-desc-content p,
    .ser-del-card p,
    .ser-del-process-card p,
    .ser-del-side-box p,
    .ser-del-title p,
    .ser-del-cta p {
        font-size: 14px !important;
        line-height: 1.62 !important;
    }

    .ser-del-info h2,
    .ser-del-title h2,
    .ser-del-desc-content h2 {
        font-size: 23px !important;
        line-height: 1.25 !important;
    }

    .ser-del-card,
    .ser-del-process-card {
        padding: 20px 15px !important;
        border-radius: 20px !important;
    }

    .ser-del-faq-question {
        font-size: 14px !important;
        padding: 15px !important;
        align-items: flex-start !important;
    }

    .ser-del-faq-question i {
        flex: 0 0 auto !important;
        margin-top: 3px !important;
    }

    .ser-del-cta {
        padding: 50px 0 !important;
    }

    .ser-del-cta h2 {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }
}

/* 9) Small mobile final lock */
@media (max-width: 380px) {
    .ser-del-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .ser-del-header {
        padding-top: 30px !important;
    }

    .ser-del-badge {
        font-size: 11px !important;
        padding: 7px 10px !important;
        line-height: 1.3 !important;
    }

    .ser-del-header-content h1 {
        width: 100% !important;
        font-size: 24px !important;
    }

    .ser-del-header-content h1 span {
        font-size: 20px !important;
    }

    .ser-del-header-card {
        padding: 10px !important;
    }

    .ser-del-header-card img {
        height: 205px !important;
    }

    .ser-del-service-img img {
        height: 210px !important;
    }

    .ser-del-quick-box,
    .ser-del-desc-content,
    .ser-del-side-box,
    .ser-del-card,
    .ser-del-process-card {
        padding: 14px !important;
    }

    .ser-del-btn {
        max-width: 100% !important;
    }
}

/* 10) 320px perfect fit */
@media (max-width: 330px) {
    .ser-del-container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .ser-del-header-content h1 {
        font-size: 22px !important;
        line-height: 1.18 !important;
    }

    .ser-del-header-content h1 span {
        font-size: 18px !important;
    }

    .ser-del-header-content p,
    .ser-del-short,
    .ser-del-desc-content p,
    .ser-del-card p,
    .ser-del-process-card p,
    .ser-del-side-box p,
    .ser-del-service-points li,
    .ser-del-highlight-list li {
        font-size: 13px !important;
    }

    .ser-del-category,
    .ser-del-rating small {
        font-size: 12px !important;
    }

    .ser-del-header-card img {
        height: 182px !important;
    }

    .ser-del-service-img img {
        height: 190px !important;
    }

    .ser-del-info h2,
    .ser-del-title h2,
    .ser-del-desc-content h2 {
        font-size: 20px !important;
    }

    .ser-del-card h3,
    .ser-del-process-card h3 {
        font-size: 16px !important;
    }

    .ser-del-btn {
        font-size: 13px !important;
        padding: 11px 10px !important;
        min-height: 43px !important;
    }

    .ser-del-faq-question {
        font-size: 13px !important;
        padding: 13px !important;
    }
}

.ser-list-page {
    background: #f7fafc;
    overflow: hidden;
}

.ser-list-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 18px;
}

.ser-list-hero {
    position: relative;
    padding: 95px 0 70px;
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(255, 122, 24, 0.22), transparent 32%),
        radial-gradient(circle at bottom right, rgba(14, 116, 144, 0.20), transparent 35%),
        linear-gradient(135deg, #07162b, #0f334a 55%, #06111f);
    color: #ffffff;
}

.ser-list-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 19px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.ser-list-hero h1 {
    max-width: 860px;
    margin: 0 auto 18px;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 900;
}

.ser-list-hero h1 span {
    color: #ff8a24;
}

.ser-list-hero p {
    max-width: 760px;
    margin: auto;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
}

.ser-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 65px 0;
}

.ser-list-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e7edf3;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    transition: all 0.35s ease;
}

.ser-list-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 26px 65px rgba(15, 23, 42, 0.15);
}

.ser-list-img-box {
    position: relative;
    display: block;
    height: 240px;
    overflow: hidden;
    text-decoration: none;
}

.ser-list-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.45s ease;
}

.ser-list-card:hover .ser-list-img-box img {
    transform: scale(1.08);
}

.ser-list-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.68));
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: all 0.35s ease;
}

.ser-list-card:hover .ser-list-img-overlay {
    opacity: 1;
}

.ser-list-img-overlay span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #ff7a18;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
}

.ser-list-content {
    padding: 24px;
}

.ser-list-top span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 50px;
    background: #fff3e8;
    color: #e76600;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 15px;
}

.ser-list-content h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.32;
    font-weight: 900;
}

.ser-list-content h3 a {
    color: #102033;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ser-list-content h3 a:hover {
    color: #ff7a18;
}

.ser-list-content p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 17px;
}

.ser-list-rating {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #475569;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ser-list-rating i {
    color: #ffb703;
}

.ser-list-btn-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.ser-list-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff7a18, #ff9f1c);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 12px 25px rgba(255, 122, 24, 0.25);
    transition: all 0.3s ease;
}

.ser-list-btn:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

.ser-list-call {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #102033;
    color: #ffffff;
    display: grid;
    place-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ser-list-call:hover {
    background: #ff7a18;
    color: #ffffff;
}

.ser-list-empty {
    grid-column: 1 / -1;
    text-align: center;
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: 22px;
    padding: 60px 20px;
}

.ser-list-empty i {
    font-size: 48px;
    color: #ff7a18;
    margin-bottom: 14px;
}

.ser-list-empty h3 {
    font-size: 24px;
    color: #102033;
    margin-bottom: 8px;
}

.ser-list-empty p {
    color: #64748b;
}

/* Responsive */
@media (max-width: 991px) {
    .ser-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ser-list-hero h1 {
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    .ser-list-hero {
        padding: 72px 0 50px;
    }

    .ser-list-hero h1 {
        font-size: 30px;
    }

    .ser-list-hero p {
        font-size: 14px;
    }

    .ser-list-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 45px 0;
    }

    .ser-list-img-box {
        height: 220px;
    }

    .ser-list-content {
        padding: 20px;
    }

    .ser-list-content h3 {
        font-size: 20px;
    }

    .ser-list-btn {
        padding: 11px 15px;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .ser-list-container {
        padding: 0 12px;
    }

    .ser-list-hero h1 {
        font-size: 26px;
    }

    .ser-list-badge {
        font-size: 12px;
        padding: 8px 14px;
    }

    .ser-list-img-box {
        height: 195px;
    }

    .ser-list-content {
        padding: 17px;
    }

    .ser-list-content h3 {
        font-size: 18px;
    }

    .ser-list-content p {
        font-size: 14px;
    }

    .ser-list-btn-row {
        gap: 10px;
    }

    .ser-list-btn {
        padding: 10px 13px;
    }

    .ser-list-call {
        width: 42px;
        height: 42px;
    }
}
