 :root {
    --solar-blue: #f39409;
    --solar-green: #026fb5;
    --white: #ffffff;
}
/* --- Base Hero Section --- */
.hero-section {
    height: 100vh;
    min-height: 600px; /* Mobile ke liye thoda kam kiya */
    background: #000;
    overflow: hidden;
    position: relative;
}

.hero-section .carousel-item {
    height: 100vh;
    min-height: 600px;
}

/* --- Responsive Background Image --- */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Sabse important: image ko ratio mein rakhta hai */
    object-position: center; /* Image ka center part dikhayega */
    z-index: 1;
    transition: transform 8s ease; /* Smooth slow zoom */
}

.carousel-item.active .hero-image {
    transform: scale(1.15);
}

/* --- Professional Overlay --- */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 20, 40, 0.8) 0%, 
        rgba(0, 20, 40, 0.4) 50%,
        rgba(0, 20, 40, 0.8) 100%
    );
    z-index: 5;
}

/* --- Content Styling --- */
.hero-content {
    position: relative;
    z-index: 10;
    color: #ffffff;
    padding: 0 15px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    top: 40px; /* Vertically better alignment */
}

.badge-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem); /* Responsive font size */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-title .highlight {
    color: #f39409; /* Theme color */
    display: inline-block;
}

.hero-desc {
    font-size: clamp(1rem, 4vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
    line-height: 1.6;
}

/* --- Buttons --- */
.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Mobile par buttons niche aa jayenge */
}

.btn-main {
    background: #f39409;
    color: white !important;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(243, 148, 9, 0.3);
    transition: 0.3s transform ease, 0.3s background ease;
}

.btn-main:hover {
    transform: translateY(-3px);
    background: #d68208;
}

.btn-video {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-video:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* --- Indicators --- */
.stylish-dots {
    bottom: 30px !important;
    gap: 12px;
}

.stylish-dots button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background-color: transparent !important;
    border: 2px solid rgba(255,255,255,0.5) !important;
    transition: 0.3s !important;
}

.stylish-dots button.active {
    background-color: #f39409 !important;
    border-color: #f39409 !important;
    transform: scale(1.3);
}

/* --- High-End Mobile Responsiveness --- */
@media (max-width: 768px) {
    .hero-section, .hero-section .carousel-item {
        height: auto; /* Use SVH for mobile browser bars */
    }
    
    .hero-content {
        top: 200px; /* Adjust for mobile notch */
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-main, .btn-video {
        width: auto !important;
        justify-content: center;
            padding: 8px 15px !important;
        font-size: 13px;
    }

    .hero-desc {
        display: -webkit-box;
        -webkit-line-clamp: 3; /* Limit text on small screens */
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 30px;
    }
}
/* --- Animations --- */
.animate-box {
    opacity: 0;
    transform: translateY(30px);
}

.active .animate-box {
    animation: fadeInUp 1s forwards 0.5s;
}

  :root {
            --primary-dark: #002244;
            --primary-green: #67bc45;
            --text-gray: #555;
            --bg-light: #f8f9fa;
        }

    
        .about-company { 
            padding: 100px 0; 
        }

        /* --- Left Side: Images & Floating Boxes --- */
        .about-image-wrapper { 
            position: relative; 
            padding-bottom: 0px; 
        }
        
        .img-main { 
            width: 100%; 
            border-radius: 5px; 
            display: block;
        }

        .stats-container {
            display: flex;
            position: absolute;
            bottom: -30px;
            left: 25px;
            gap: 15px;
            z-index: 5;
        }

        .stat-box {
            width: 200px;
            padding: 30px 20px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 12px;
            border-radius: 2px;
        }

        .blue-box { background-color: var(--primary-dark); }
        .green-box { background-color: var(--primary-green); }

        .icon-circle {
            min-width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            position: relative;
        }

        /* Reference image jaisa circular line effect */
        .icon-circle::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            border: 1px solid rgba(255,255,255,0.4);
            border-radius: 50%;
            transform: scale(1.3);
        }

        .stat-content h3 { 
            font-size: 2rem; 
            font-weight: 800; 
            margin: 0; 
            line-height: 1; 
        }

        .stat-content p { 
            font-size: 0.85rem; 
            margin: 3px 0 0 0; 
            font-weight: 600; 
        }

        /* --- Right Side: Text & Data Grid --- */
        .sub-tag { 
            color: var(--primary-green); 
            font-weight: 700; 
            text-transform: uppercase; 
            font-size: 0.85rem; 
            margin-bottom: 15px; 
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sub-tag::before {
            content: "";
            width: 20px;
            height: 2px;
            background: var(--primary-green);
        }

       /* about company */
       .about-img2{
        margin-bottom: 20px;
        border-radius: 5px;
       }
        .about-company  h2 { 
            font-size:40px; 
            color: var(--primary-dark); 
            font-weight: 800; 
            margin-bottom: 25px; 
            line-height: 1.1;
        }

        .main-desc {
            color: #5c6972;
            font-size: 1.05rem;
            line-height: 1.7;
            font-weight: 400;
            margin-bottom: 30px;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            background: var(--bg-light);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid #ececec;
        }

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

        .info-item i {
            font-size: 1.1rem;
            color: var(--primary-green);
            background: #fff;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.04);
        }

        .info-text label {
            display: block;
            font-size: 0.7rem;
            color: #999;
            text-transform: uppercase;
            font-weight: 800;
            margin-bottom: 2px;
            letter-spacing: 0.5px;
        }

        .info-text span {
            display: block;
            font-size: 1rem;
            color: var(--primary-dark);
            font-weight: 700;
        }

        .gst-full-width {
            grid-column: span 2;
            background: #fff;
            padding: 15px 20px;
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px dashed var(--primary-green);
        }
.soil-image{
    margin-top: 10px;
    float: right;
        margin-top: 10px;
    float: right;
    position: absolute;
    top: 10px;
    right: 10px;
    filter: brightness(0.5);

}


    .why-choose-us {
        background-color: #001d3d; /* Dark Navy Blue */
        background-image: repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 10px
        );
        padding:100px 0;
        font-family: 'Montserrat', sans-serif;
        position: relative;
        overflow: hidden;
    }
    .why-choose-us .row{
        padding-left:40px;
        padding-right:40px;
    }

    /* Green Glow Effect */
    .why-choose-us::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 50%, rgba(103, 176, 62, 0.05) 0%, transparent 70%);
        pointer-events: none;
    }

    .sub-tag-center {
        color: #f1940c; /* Solar Green */
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 15px;
          /* Left Divider */
 
    }

   

    .main-title-white {
        color: #ffffff;
        font-size: 3rem;
        font-weight: 800;
        line-height: 1.2;
    }

    /* Expert Card Styles */
    .expert-card {
        background: rgba(255, 255, 255, 0.03); /* Glass effect */
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px;
        border-radius: 10px;
        position: relative;
        transition: 0.4s ease;
        height: 100%;
        z-index: 1;
    }

    .expert-card:hover {
        background: rgba(255, 255, 255, 0.05);

    }

    .card-number {
        position: absolute;
        top: 20px;
        right: 10px;
        font-size: 5rem;
        font-weight: 900;
        color: rgba(255, 255, 255, 0.04); /* Faded background numbers */
        line-height: 1;
        z-index: -1;
    }

    .expert-card h3 {
        color: #ffffff;
        font-weight: 700;
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .expert-card p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 40px;
    }

    .card-footer-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: auto;
    }

    .view-more {
        color: #ffffff;
        text-decoration: none;
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .icon-box-green {
        width: 70px;
        height: 70px;
        background-color: #f1940c !important; /* Solar Green */
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: #ffffff;
    }


    /* ourproducts */.our-products {
        padding: 80px 0;
        background-color: #fcfcfc;
     
    }
    .viewallbtn{
        background: #f1940c; /* Solar Green */;
        width: auto !important;
        margin:auto !important;
        border:none;
        color:white;
        margin-top:50px  !important;
        padding:10px 20px;
        border-radius:50px;
    }.services-section .sub-title {
    color: #f1940c; /* Solar Green */
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;

    /* Left Divider */
    border-left: 3px solid #f1940c;
    padding-left: 8px; /* spacing between line and text */
}


   .sub-tag {
    color: #f1940c; /* Solar Green */
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;

    /* New Divider on Left */
    border-left: 3px solid #f1940c; /* same color as text */
    padding-left: 8px; /* spacing between line and text */
}

    .section-title {
        color: #002244;
        font-weight: 800;
        font-size: 40px;
        margin-bottom: 15px;
    }

.sub-tagh1 {
 color: #f1940c;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
    border-left: 3px solid #f1940c;
    padding-left: 8px;
    display:inline;
}

.sub-tagh2 {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff; /* normal text color */
    line-height: 1.6;
}

    /* Stunning Product Card */
    .product-card {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
        border: 1px solid rgba(0,0,0,0.03);
        box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    }

    .product-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 30px 60px rgba(0,34,68,0.12);
        border-color: rgba(103, 176, 69, 0.2);
    }

    .product-img-wrapper {
        position: relative;
        height: 260px;
        overflow: hidden;
    }

    .product-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

    .product-card:hover .product-img-wrapper img {
        transform: scale(1.15);
    }

    /* Category Tag Styling */
    .category-tag {
        position: absolute;
        top: 20px;
        left: 20px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        color: #002244;
        padding: 6px 14px;
        font-size: 0.7rem;
        font-weight: 700;
        border-radius: 50px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 2;
    }

    /* Overlay Button Effect */
    .product-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 34, 68, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: 0.4s;
    }

    .product-card:hover .product-overlay {
        opacity: 1;
    }

    .btn-view {
        background: #f1940c; /* Solar Green */;
        color: white;
        border: none;
        padding: 12px 25px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.85rem;
        transform: translateY(20px);
        transition: 0.4s;
    }

    .product-card:hover .btn-view {
        transform: translateY(0);
    }

    .product-info {
        padding: 25px;
    }

    .product-info h3 {
        font-size: 1.15rem;
        color: #002244;
        font-weight: 800;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .product-info p {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* Custom Footer inside Card */
    .product-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 15px;
        border-top: 1px solid #f0f0f0;
    }

    .availability {
        font-size: 0.75rem;
        color: #f1940c; /* Solar Green */;
        font-weight: 700;
    }

    .detail-link {
        width: 35px;
        height: 35px;
        background: #f8f9fa;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #002244;
        transition: 0.3s;
        text-decoration: none;
    }

    .product-card:hover .detail-link {
        background: #002244;
        color: #fff;
    }


    /* products */
    .shop1 {
    background-image: url('images/bg-sky.webp');
    padding: 150px;
    /* Image ko container ke hisaab se poora fill karega bina stretch kiye */
    background-size: cover; 
    
    /* Image ko hamesha center mein rakhega */
    background-position: center;
    
    /* Scroll karne par image move nahi hogi (Parallax effect) - Optional */
    background-attachment: fixed;
    
    /* Image repeat nahi hogi agar container bada ho jaye */
    background-repeat: no-repeat;
    
    /* Background color fallback (agar image load na ho) */
    background-color: #000000;
margin-top:200px;
    width: 100%;
}
.breadcrumb-wrapper {margin-top: 130px !important;
}


/* about */

/* Modern Styling */
:root {
    --primary-color: #f39409;
    --dark-blue: #061625;
    --light-bg: #f8fafc;
}

.about-modern {
    background: var(--light-bg);
    padding: 100px 0;
    overflow: hidden;
}

/* Image Stack Styling */
.image-stack {
    position: relative;
    padding-bottom: 50px;
}

.main-img-wrapper {
    position: relative;
    z-index: 2;
    width: 85%;
}

.about-img1 {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.about-modern .about-img2 {
    position: absolute;
   
    bottom: -35px;
    right: 0;
    width: 30%;
    border-radius: 20px;
    border: 8px solid #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(243, 148, 9, 0.3);
    z-index: 4;
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Typography */
.badge-top {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    /* Left border divider */
    border-left: 3px solid var(--primary-color);
    padding-left: 8px;   /* space between border and text */
}
.product-hero{
       min-height: 400px !important;
}
.badge-top2 {
    color: #f39409;;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline;
    margin-bottom: 10px;
    font-size: 14px;
    /* Left border divider */
    border-left: 3px solid var(--primary-color);
    padding-left: 8px;   /* space between border and text */
}
a{
text-decoration: none !important;
}

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

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

.about-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Features List */
.features-grid {
    display: flex;
    gap: 20px;
    margin: 25px 0;
}

.feature-item {
    font-weight: 600;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item i {
    color: var(--primary-color);
}

/* Button Styling */
.btn-about-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-blue);
    color: #fff;
    padding: 16px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(6, 22, 37, 0.2);
}

.btn-about-modern:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 15px 30px rgba(243, 148, 9, 0.4);
}
.about-company img{
    width: 100% !important;
}

/* --- Hero Section Background --- */
.product-hero {
    background-image: url("images/slide2.webp");
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Darker Gradient Overlay for better contrast */
.product-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.4));
    z-index: 1;
}

/* --- Modern Breadcrumb Box (Glassmorphism) --- */
.modern-breadcrumb-box {
    position: relative;
    z-index: 2;
    padding-left: 25px;
    border-left: 5px solid #f39409; /* Solar Orange accent line */
    margin-top: 50px;
}

.modern-breadcrumb-box h1 {
    letter-spacing: -1px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1); /* Glass effect */
    backdrop-filter: blur(5px);
    display: inline-flex;
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breadcrumb-item a:hover {
    color: #f39409;
}

.breadcrumb-item.active {
    color: #f39409 !important;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Custom modern separator (forward slash ko styling dena) */
.breadcrumb-item + .breadcrumb-item::before {
    content: "\f105"; /* FontAwesome Chevron Right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: rgba(255,255,255,0.4);
    padding-right: 15px;
    padding-left: 15px;
}
/* LAYOUT */
.fixed-layout{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:25px !important;
    align-items:flex-start;
}
.product-content {
border-radius: 20px !important;
}
/* Floating animation for subtle effect */
.modern-breadcrumb-box {
    animation: fadeInUp 0.8s ease-out;
}
.go_green {
      /* fallback color */
      padding: 40px;
}
   :root {
        --solar-orange: #f39409;
        --dark-navy: #0f172a; /* Slightly deeper navy for better contrast */
        --light-bg: #f8fafc;
    }

    .about_dolphin {
        padding: 40px 0;
        background: var(--light-bg);
        position: relative;
        overflow: hidden;
    }

    /* Decorative Background Element */
    .about_dolphin::before {
        content: "";
        position: absolute;
        top: -10%;
        right: -5%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(243, 148, 9, 0.05) 0%, transparent 70%);
        z-index: 0;
    }

 
    .image-stack {
        position: relative;
        z-index: 1;
      
    }

    .main-img {
        width: 90%;
        border-radius: 30px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.12);
        border: 4px solid #fff;
    }

    .second-img-overlay {
        position: absolute;
        bottom: -20px;
        right: 0;
        width: 45%; /* Slightly larger for better visibility */
        border: 8px solid #fff;
        border-radius: 25px;
        box-shadow: 0 20px 40px rgba(243, 148, 9, 0.25);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .second-img-overlay:hover {
        transform: scale(1.1) rotate(-3deg);
        z-index: 5;
    }

    /* Content Styling */
    .dolphin-badge {
        background: #fff;
        color: var(--solar-orange);
        padding: 10px 24px;
        border-radius: 50px;
        font-weight: 800;
        font-size: 13px;
        letter-spacing: 1.5px;
        display: inline-flex;
        align-items: center;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        margin-bottom: 25px;
        border-left: 4px solid var(--solar-orange);
    }

    .main-title {
        font-size: 40px;
        font-weight: 900;
        color: var(--dark-navy);
        line-height: 1.1;
        margin-bottom: 25px;
    }

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

    /* Highlight Card with Glassmorphism */
    .save-electricity-card {
        background: linear-gradient(135deg, var(--solar-orange) 0%, #ffb443 100%);
        color: #fff;
        padding: 30px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        gap: 20px;
        margin: 35px 0;
        position: relative;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(243, 148, 9, 0.3);
    }
  .save-electricity-card h4{
    font-size:20px;
    font-weight:800;
  }
    .save-electricity-card::after {
        content: "";
        position: absolute;
        width: 100px;
        height: 100%;
        top: 0;
        left: -100px;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        animation: shine 3s infinite;
    }

    @keyframes shine {
        0% { left: -100px; }
        20% { left: 100%; }
        100% { left: 100%; }
    }

    .save-electricity-card i {
        font-size: 45px;
        background: rgba(255,255,255,0.25);
        width: 80px;
        height: 80px;
        display: flex;
        padding: 15px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        backdrop-filter: blur(5px);
    }

    /* Feature Items */
    .feature-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
        padding: 12px;
        background: #fff;
        border-radius: 12px;
        transition: 0.3s;
        border: 1px solid transparent;
    }
      .feature-item span{
        font-size:14px;
      }

    .feature-item:hover {
        border-color: var(--solar-orange);
        transform: translateX(10px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .feature-item i {
        color: var(--solar-orange);
        font-size: 20px;
        background: rgba(243, 148, 9, 0.1);
        padding: 10px;
        border-radius: 10px;
    }

    /* Stunning Button */
    .cta-btn {
        background: var(--dark-navy);
        color: #fff;
        padding: 18px 45px;
        border-radius: 15px;
        font-weight: 700;
        text-decoration: none;
        display: inline-block;
        margin-top: 30px;
        transition: all 0.4s;
        position: relative;
        z-index: 1;
    }

    .cta-btn:hover {
        background: var(--solar-orange);
        color: #fff;
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(243, 148, 9, 0.4);
    }
 .gradient-text {
        background: linear-gradient(90deg, #198754, #2bb16a);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 800;
    }

    /* Modern Benefit Card - Icon Left Layout */
    .benefit-card {
        background: #ffffff;
        padding: 1.25rem;
        border-radius: 18px;
        border: 1px solid rgba(0, 0, 0, 0.04);
        display: flex;
        align-items: flex-start;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        height: 100%;
    }

    .benefit-card:hover {
        transform: translateX(10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
        border-color: #198754;
    }

    /* Icon Box Styles */
    .icon-box {
        width: 50px;
        height: 50px;
        background: #f0fdf4;
        color: #198754;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        margin-right: 1rem;
        flex-shrink: 0;
        font-size: 1.3rem;
        transition: 0.3s ease;
    }

    .benefit-card:hover .icon-box {
        background: #198754;
        color: #ffffff;
        transform: scale(1.1) rotate(-8deg);
    }

    /* Card Text Styles */
    .benefit-card h5 {
        font-weight: 700;
        font-size: 1.05rem;
        margin-bottom: 0.3rem;
        color: #212529;
    }

    .benefit-card p {
        font-size: 0.85rem;
        color: #6c757d;
        margin-bottom: 0;
        line-height: 1.5;
    }

    /* Premium Button Style */
    .btn-premium {
        padding: 14px 30px;
        border-radius: 50px;
        font-weight: 600;
        background: #198754;
        border: none;
        transition: all 0.3s;
    }

    .btn-premium:hover {
        background: #146c43;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(25, 135, 84, 0.3) !important;
    }

    /* Image wrapper & Decorative Blob */
    .image-wrapper {
        position: relative;
    }

    .blob-bg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 130%;
        height: 130%;
        background: radial-gradient(circle, rgba(25, 135, 84, 0.07) 0%, transparent 70%);
        z-index: 1;
    }
    .image-wrapper img{
        padding:10px;
    }
       .infra-section {
        padding: 50px 0;
        background-color: #f8f9fa;
    }
    .infra-card {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        border: none;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        height: 300px; /* Aap height adjust kar sakte hain */
    }
    .infra-card:hover {
        transform: translateY(-10px);
    }
    .infra-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .infra-card:hover img {
        transform: scale(1.1);
    }
    /* Overlay Design */
    .infra-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 29, 61, 0.9), transparent);
        padding: 25px;
        color: white;
    }
    .infra-title {
        font-size: 1.25rem;
        font-weight: 700;
        margin: 0;
        letter-spacing: 0.5px;
    }
    .infra-line {
        width: 40px;
        height: 3px;
        background-color: #f39409; /* Solar Green */
        margin-bottom: 10px;
        transition: width 0.3s ease;
    }
    .infra-card:hover .infra-line {
        width: 60px;
    }

    :root {
        --primary-green: #67bc45;
        --dark-navy: #002244;
        --accent-blue: #026fb5;
        --soft-bg: #f6fcf5;
        --text-gray: #666;
    }

    .contact-section {
        padding: 100px 0;
   
    }

    /* Info Side Styling */
    .sub-tag-contact {
        color: var(--primary-green);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.75rem;
        margin-bottom: 15px;
        display: block;
    }

 
    /* Icon Left - Text Right Layout */
    .contact-info-block {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
        transition: transform 0.3s ease;
    }

    .contact-info-block:hover {
        transform: translateX(10px);
    }

    .info-icon {
        background: white;
        width: 60px;
        height: 60px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-green);
        font-size: 1.5rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        flex-shrink: 0;
    }

    .info-content label {
        color: var(--primary-green);
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        margin-bottom: 4px;
        display: block;
    }

    .info-content h3 {
        color: var(--dark-navy);
        font-weight: 700;
        font-size: 1.25rem;
        margin: 0;
    }

    /* Stunning Form Card */
    .contact-form-card {
        background: white;
        padding: 50px;
        border-radius: 20px;
        position: relative;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0,0,0,0.02);
    }

    .contact-form-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 30px;
        right: 30px;
        height: 5px;
     
        border-radius: 0 0 10px 10px;
    }

    .form-group-custom {
        margin-bottom: 20px;
    }

    .form-control-custom {
        width: 100%;
        padding: 18px 25px;
        border: 2px solid #f0f0f0;
        border-radius: 12px;
        font-size: 1rem;
        color: var(--dark-navy);
        transition: all 0.3s ease;
        background: #fcfcfc;
    }

    .form-control-custom:focus {
        border-color: var(--primary-green);
        background: white;
        box-shadow: 0 0 0 4px rgba(103, 188, 69, 0.1);
        outline: none;
    }

    /* Button Styling */
    .btn-send {
        background: var(--accent-blue);
        color: white;
        padding: 18px 45px;
        border: none;
        border-radius: 12px;
        font-weight: 700;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        width: 100%;
        box-shadow: 0 10px 20px rgba(2, 111, 181, 0.2);
    }

    .btn-send:hover {
        background: var(--dark-navy);
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0, 34, 68, 0.3);
    }
  .hybrid-section { background-color: #f9fbff; }
  .solar-card {
    transition: all 0.3s ease;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
  }
  .solar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
  }
  .icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .check-icon { color: #28a745; margin-right: 10px; }
  .cta-btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
  }
  .cta-btn:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(255,193,7,0.3); }
  .iconrow i{
    color: var(--solar-orange);
  }
/* Spec Cards Styling */
.spec-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 20px 15px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.spec-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: #f39409 !important;
    transform: translateY(-5px);
}

.spec-card i {
    font-size: 24px;
    color: #f39409 !important;
    margin-bottom: 10px;
}

/* Feature Icons */
.feature-icon-sm {
    width: 32px;
    height: 32px;
    background: #e7f1ff;
    color: #f39409 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

/* Tech Badge on Image */
.tech-badge {
    position: absolute;
    top: 20px;
 right: 20px;
    background: #f39409 !important;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.product-image-container img {
    transition: transform 0.5s ease;
}

.product-image-container:hover img {
    transform: scale(1.05);
}

.tracking-wider {
    letter-spacing: 2px;
}

:root {
    --solar-orange: #f39409;
    --deep-navy: #002147;
    --soft-gray: #f8f9fa;
    --text-main: #444;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}


/* --- Modern Product Card --- */
.modern-product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #eee;
    height: 100%;
    position: relative;
}

.modern-product-card:hover {
  
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Image Wrapper & Overlay */
.product-img-wrapper {
    position: relative;
    background: var(--soft-gray);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img-wrapper img {
    max-width: 80%;
 
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 33, 71, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.modern-product-card:hover .card-overlay {
    opacity: 1;
}

.modern-product-card:hover .product-img-wrapper img {

}

/* View Details Button */
.view-btn {
    background: var(--solar-orange);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transform: translateY(20px);
    transition: var(--transition);
}

.modern-product-card:hover .view-btn {
    transform: translateY(0);
}

.view-btn:hover {
    background: var(--white);
    color: var(--solar-orange);
}

/* Product Info */
.product-content {
    padding: 20px;
    text-align: left;
}

.cat-tag {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--solar-orange);
    font-weight: 700;
    letter-spacing: 1px;
}

.product-content h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 8px 0;
    color: var(--deep-navy);
    line-height: 1.4;
}

.product-content .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--solar-orange);
    margin: 0;
}

/* --- Sidebar Styling --- */
.sidebar-wrapper {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 20px;
    border-left: 4px solid var(--solar-orange);
    padding-left: 15px;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f8f8f8;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    cursor: pointer;
}

.category-list li:hover {
    color: var(--solar-orange);
    padding-left: 8px;
}

.badge-count {
    background: #fff3e0;
    color: var(--solar-orange);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
}

.btn-filter-sidebar {
    width: 100%;
    background: var(--solar-orange);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-filter-sidebar:hover {
    background: var(--deep-navy);
}

.custom-range::-webkit-slider-thumb {
    background: var(--solar-orange);
}

@media (max-width: 991px) {
    .sidebar-wrapper { margin-bottom: 40px; }
}
    @media (max-width: 991px) {
        .contact-title { font-size: 2.2rem; }
        .contact-form-card { padding: 30px; }
    }
    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .benefit-card {
            padding: 1rem;
        }
    }
    @media (max-width: 991px) {
        .main-title { font-size: 2.5rem; }
        .image-stack { margin-bottom: 80px; }
    }

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

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .product-hero { min-height: 300px; }
    .modern-breadcrumb-box h1 { font-size: 2rem; }
    .breadcrumb { padding: 8px 15px; }
}
/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.card1{
    padding: 20px;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .about-title {
        font-size: 26px;
    }
    .experience-badge{
        left: 2px;
    }
    .about-text {
    font-size: 14px;}
    .feature-item{
        font-size: 14px;
    }
    .main-img-wrapper { width: 100%; }
    .about-img2 { width: 45%; right: 10px; }
}
    @media (max-width: 768px) {
        .section-title { font-size: 2.2rem; }
    }
        /* --- Responsive --- */
        @media (max-width: 991px) {
          
            .stats-container { position: relative; left: 0; bottom: 0; margin-top: 20px; flex-direction: column; }
            .stat-box { width: 100%; }
            .info-grid { grid-template-columns: 1fr; }
            .gst-full-width { grid-column: span 1; }
        }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Mobile --- */
@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .stylish-dots { bottom: 30px !important; }
}

@media screen and (min-width:300px) and (max-width:768px) {
    body,html{
        overflow-x: hidden;
        overflow-y: none;
    }
    .hero-title{
        font-size:25px
    }
    .hero-desc{
        font-size: 14px;
    }
    .hero-btns{
        flex-direction: row;
    }
    .about-company {
    padding: 20px 0;
    }
    .about-company h2{
        font-size: 26px !important;
    }
    .about-image-wrapper{
    margin-bottom: 0px !important;
    }
    .info-grid {
    padding: 15px;
    }
    .main-title-white{
        font-size:26px
    }
    .why-choose-us{
        padding: 20px 0;
    }
    .why-choose-us .row{
        padding-left: 0px;
        padding-right: 0px;
    }
    .our-products {
padding: 20px 0;
}
    .section-title {

        font-size:26px
}
.soil-image {
left:35%;
filter: brightness(0.3);
}
.product1{
        min-height: 300px !important;
}
.breadcrumb-wrapper {
    margin-top: 87px !important;
}
.card1{
    padding: 5px;
}
 .contact-numbers h3{
     font-size: 2px !important;
     display: -ms-inline-grid;
        
     }
       .contact-section {
        padding: 0px !important;
        margin-bottom: 10px;
    }
        .contact-card-highlight{
            padding: 15px 10px !important;
            margin-bottom: 12px;
        }
            .contact-form-card {
        padding: 18px;
    }
        .contact-numbers h3 a {
        font-size:15px !important;
        }
        .sub-tagh2 {
            font-size: 26px !important;
        }
        .expert-card {

padding: 15px
        }
        .expert-card h3 {
        font-size: 20px;
        }
        .expert-card p {
        font-size: 14px;
        margin-bottom: 10px;
        }
        .card-number {
        
            top: 11px;
    right: 10px;
    font-size: 3rem;}
    .sub-tag-contact{
        margin-top: 20px;
    }
    .gcep-title {
    font-size: 26px !important;
    }
    .gcep-subtitle {
    font-size: 14px;
    }
    .gcep-benefits-pro h2{
font-size: 26px !important;
    }
    .gcep-pro-card {
    padding: 21px 18px !important;
    }
    .gcep-pro-card::before{
        font-size: 4rem !important;
    }
    
    .content-spacer{
        height: 0px !important;
    }
    .main-title{
        font-size:26px !important;
    }
    .go_green{
        padding: 10px;
    }
    .premium-badge{
        margin-top: 20px !important;
    }
    .image-stack{
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
}