
        :root {
            --primary-dark: #0f172a;
            --secondary-dark: #1e293b;
            --deep-black: #090d16;
            --accent-yellow: #fbbf24;
            --accent-orange: #f59e0b;
            --text-muted: #94a3b8;
            --light-bg: #f8fafc;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.25);
            --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background-color: var(--light-bg);
            color: #334155;
            width: 100%;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            width: 100%;
        }

        /* --- Header & Navbar --- */
        #topBar {
            background: #ffffff;
            font-size: 0.8rem;
            color: #64748b;
        }

        .navbar {
            background: rgba(15, 23, 42, 0.98) !important;
            backdrop-filter: blur(15px);
            border-bottom: 1px solid var(--glass-border);
            padding: 15px 0;
            transition: var(--transition-smooth);
        }

        .navbar-brand {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            letter-spacing: 1px;
        }

        .nav-link {
            font-weight: 500;
            transition: var(--transition-smooth);
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--accent-yellow) !important;
        }

        .btn-call {
            background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
            border: none;
            color: var(--primary-dark) !important;
            font-weight: 600;
            border-radius: 50px;
        }

        /* --- Hero Section --- */
        .hero-section {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin: 0 !important;
            display: block !important;
            overflow: hidden;
            position: relative;
        }

        .hero-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(2rem, 5vw, 5rem);
            font-weight: 800;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .text-gradient {
            background: linear-gradient(to right, var(--accent-yellow), var(--accent-orange), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* --- Headings --- */
        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            position: relative;
            padding-bottom: 20px;
            font-size: clamp(1.75rem, 4vw, 2.5rem);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(to right, var(--accent-yellow), var(--accent-orange));
            border-radius: 2px;
        }

        /* --- Product Catalog Layout --- */
        .filter-btn {
            padding: 10px 25px;
            border-radius: 50px;
            border: 1px solid #e2e8f0;
            background: #fff;
            color: var(--primary-dark);
            font-weight: 600;
            transition: var(--transition-smooth);
            white-space: nowrap;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary-dark);
            color: var(--accent-yellow);
            border-color: var(--primary-dark);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .product-card {
            background: #ffffff;
            border: none;
            border-radius: 22px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            transition: var(--transition-smooth);
        }

        .product-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        .product-img-wrapper {
            position: relative;
            background: #f1f5f9;
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .badge-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary-dark);
            color: var(--accent-yellow);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 5;
        }

        .product-img-fit {
            max-width: 90%;
            max-height: 85%;
            object-fit: contain;
            display: block;
        }

        .specs-grid {
            font-size: 0.8rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .spec-item {
            background: #f8fafc;
            padding: 6px 10px;
            border-radius: 8px;
            border-left: 3px solid var(--accent-orange);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .btn-whatsapp {
            background: #25D366;
            color: white;
            font-weight: 600;
            border-radius: 50px;
            transition: var(--transition-smooth);
        }

        .btn-whatsapp:hover {
            background: #1da851;
            color: white;
            transform: scale(1.03);
        }

        /* --- Services Styling --- */
        #services {
            background-color: #f1f5f9 !important;
        }

        .service-card {
            background: #ffffff;
            border-radius: 20px;
            transition: var(--transition-smooth);
            border: 1px solid #e2e8f0 !important;
        }

        .service-card h4 {
            color: var(--primary-dark);
            transition: var(--transition-smooth);
        }

        .service-card .service-desc {
            color: #64748b;
            transition: var(--transition-smooth);
        }

        .service-card:hover {
            transform: translateY(-10px);
            background: var(--primary-dark) !important;
            box-shadow: var(--shadow-premium);
        }

        .service-card:hover h4 {
            color: #ffffff !important;
        }

        .service-card:hover .service-desc {
            color: #cbd5e1 !important;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: rgba(245, 158, 11, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            transition: var(--transition-smooth);
        }

        .service-card:hover .service-icon {
            background: var(--accent-yellow);
            color: var(--primary-dark) !important;
        }

        /* --- Contact & Live Map Box --- */
        .bg-glass {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(12px);
        }

        .map-box {
            border-radius: 20px;
            overflow: hidden;
            width: 100%;
            height: 260px;
            margin-top: 20px;
        }

        .map-box iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .live-status {
            padding: 8px 16px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .status-open {
            background: rgba(37, 211, 102, 0.1);
            color: #25D366;
        }

        .status-closed {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
            animation: blink 1.2s infinite;
        }

        .status-open .status-dot {
            background: #25D366;
        }

        .status-closed .status-dot {
            background: #ef4444;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 0.4;
            }

            50% {
                opacity: 1;
            }
        }

        .contact-form-card {
            background: var(--primary-dark);
            border-radius: 25px;
            padding: 40px;
        }

        .form-control,
        .form-select {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            color: #ffffff;
            padding: 14px 20px;
            border-radius: 12px;
        }

        .form-control:focus,
        .form-select:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--accent-yellow);
            box-shadow: none;
            color: #fff;
        }

        .form-select option {
            background: var(--deep-black);
            color: #fff;
        }

        /* --- Rich Footer Layout --- */
        footer {
            background: var(--deep-black);
            color: var(--text-muted);
            border-top: 1px solid var(--glass-border);
        }

        footer h5 {
            color: #fff;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        footer a {
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        footer a:hover {
            color: var(--accent-yellow);
        }

        /* --- Google Reviews Section --- */
        .reviews-section {
            padding: 80px 0;
            background: #0f172a;
        }

        .google-rating-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 12px 24px;
            border-radius: 50px;
            margin-top: 15px;
            backdrop-filter: blur(10px);
        }

        .rating-info {
            margin-left: 15px;
            text-align: left;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .rating-number {
            font-size: 1.4rem;
            font-weight: 700;
            color: #fff;
        }

        .review-count {
            color: #94a3b8;
            font-size: 0.9rem;
        }

        .carousel-wrapper {
            position: relative;
            max-width: 650px;
            margin: 0 auto;
            overflow: hidden;
            padding-bottom: 40px;
        }

        .carousel-wrapper input[type="radio"] {
            display: none;
        }

        .carousel-track {
            display: flex;
            width: 300%;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .carousel-slide {
            width: 33.333%;
            padding: 10px;
            box-sizing: border-box;
        }

        #slide-1:checked~.carousel-track {
            transform: translateX(0%);
        }

        #slide-2:checked~.carousel-track {
            transform: translateX(-33.333%);
        }

        #slide-3:checked~.carousel-track {
            transform: translateX(-66.666%);
        }

        .review-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            border-radius: 20px;
            padding: 35px;
            text-align: left;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .featured-card {
            border-color: rgba(245, 158, 11, 0.3);
            background: linear-gradient(rgba(255, 255, 255, 0.02), rgba(245, 158, 11, 0.01));
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .user-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #0ea5e9, #2563eb);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .user-info {
            margin-left: 15px;
        }

        .user-info h4 {
            color: #f8fafc;
            font-size: 1.2rem;
            margin: 0 0 4px 0;
        }

        .review-text {
            color: #cbd5e1;
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 1.05rem;
        }

        .review-card a {
            color: #38bdf8;
            text-decoration: none;
        }

        .review-date {
            font-size: 0.8rem;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .carousel-dots-nav {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        #slide-1:checked~.carousel-dots-nav label:nth-child(1),
        #slide-2:checked~.carousel-dots-nav label:nth-child(2),
        #slide-3:checked~.carousel-dots-nav label:nth-child(3) {
            background: #38bdf8;
            width: 28px;
            border-radius: 10px;
        }

        /* --- Hero Image Setup --- */
        .hero-img {
            width: 100%;
            height: 75vh;
            object-fit: cover;
            filter: brightness(35%);
            display: block;
        }

        .carousel-item {
            position: relative;
            background: #000;
        }

        .carousel-caption {
            position: absolute !important;
            top: 50% !important;
            left: 50% !important;
            transform: translate(-50%, -50%) !important;
            width: 90% !important;
            max-width: 850px !important;
            height: auto !important;
            bottom: auto !important;
            right: auto !important;
            z-index: 5;
            padding: 0;
        }

        .hero-main-title {
            font-size: clamp(1.8rem, 4.5vw, 3.8rem);
            line-height: 1.2;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
        }

        .small-title {
            font-size: clamp(0.8rem, 1.5vw, 1.05rem);
            letter-spacing: 2px;
        }

        .hero-desc {
            font-size: clamp(0.9rem, 1.8vw, 1.2rem);
            max-width: 650px;
            margin: 0 auto;
        }

        /* --- FAQ Accordion Modifications --- */
        .service-card:hover .text-target {
            color: #ffffff !important;
        }

        .service-card:hover .arrow-target {
            color: rgba(255, 255, 255, 0.8) !important;
        }

        .service-card:hover .desc-target {
            color: rgba(255, 255, 255, 0.9) !important;
            background-color: transparent !important;
        }

        /* Floating UI */
        .floating-wa {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
            transition: var(--transition-smooth);
        }

        .floating-wa:hover {
            transform: scale(1.1) rotate(5deg);
            color: white;
        }

        /* ==========================================================================
           CORE ULTIMATE RESPONSIVENESS BREAKPOINTS (MOBILE & TABLET OPTIMIZATIONS)
           ========================================================================== */

        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--primary-dark);
                margin-top: 15px;
                padding: 20px;
                border-radius: 15px;
                border: 1px solid var(--glass-border);
            }

            .hero-img {
                height: 65vh;
            }

            #products .d-flex.gap-2 {
                overflow-x: auto;
                justify-content: flex-start !important;
                padding-bottom: 12px;
                -webkit-overflow-scrolling: touch;
            }
        }

        @media (max-width: 767px) {
            section {
                padding: 40px 0 !important;
            }

            .hero-img {
                height: 65vh;
            }

            .py-5 {
                padding-top: 2.5rem !important;
                padding-bottom: 2.5rem !important;
            }

            .specs-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }

            .spec-item {
                white-space: nowrap;
                font-size: 0.75rem;
            }

            .contact-form-card {
                padding: 25px 20px;
            }

            .review-card {
                padding: 25px 20px;
            }

            footer {
                text-align: center;
            }

            footer .col-md-6 {
                margin-bottom: 30px;
            }

            footer ul {
                padding: 0;
            }
        }

        @media (max-width: 575px) {

            /* Text content perfectly fit ho sake, isliye carousel container height badhayein */
            .hero-img {
                height: 65vh;
            }

            /* Main Caption Box padding and width calibration */
            .carousel-caption {
                width: 95% !important;
                padding: 0 5px !important;
            }

            /* Custom text configuration overriding Bootstrap default layouts for mobile safety */
            .hero-main-title {
                font-size: 1.35rem !important;
                line-height: 1.3 !important;
                margin-bottom: 10px !important;
            }

            .small-title {
                font-size: 0.75rem !important;
                letter-spacing: 1px !important;
                margin-bottom: 6px !important;
            }

            .hero-desc {
                font-size: 0.85rem !important;
                line-height: 1.4 !important;
                margin-bottom: 18px !important;
                padding: 0 8px;
            }

            .hero-section .d-flex.gap-3 {
                flex-direction: column;
                width: 100%;
                gap: 10px !important;
                padding: 0 15px;
            }

            .hero-section .btn {
                width: 100%;
                padding: 10px !important;
                font-size: 0.9rem;
            }

            .map-box {
                height: 200px;
            }

            .floating-wa {
                width: 50px;
                height: 50px;
                font-size: 24px;
                bottom: 20px;
                right: 20px;
            }

            .navbar-brand span:first-child {
                font-size: 1.3rem !important;
            }
        }

        @media (max-width: 576px) {
            .d-flex.flex-wrap {
                display: grid !important;
                grid-template-columns: repeat(2, 1fr);
                /* Mobile par ek row me 2 buttons dikhenge */
                gap: 10px !important;
                /* Buttons ke bich ka gap */
                padding: 0 10px;
            }

            .filter-btn {
                width: 100%;
                /* Button layout ke hisab se stretch hoga */
                padding: 10px 5px;
                /* Text fit karne ke liye thoda padding kam kiya */
                font-size: 13px;
                /* Mobile par font size perfectly readable rahega */
                text-align: center;
            }

            /* Pehle button (All Scale Matrices) ko full width dena ho toh (Optional) */
            .filter-btn:first-child {
                grid-column: span 2;
            }
        }

        /* Custom Subtitle color toggle on hover */
        .service-card .service-subtitle {
            color: #000000;
            /* Dark background hone se pehle black rahega */
            transition: var(--transition-smooth);
        }

        .service-card:hover .service-subtitle {
            color: var(--accent-yellow) !important;
            /* Jab card dark ho tab text-warning (yellow) ho jaye */
        }
        /* ye table wala part hai  */
        .business-scale-section {
        padding: 60px 20px;
        background-color: #326190; /* Aapka naya background color */
        font-family: sans-serif;
    }
    .scale-container {
        max-width: 900px;
        margin: 0 auto;
    }
    .scale-heading-wrapper {
        text-align: center;
        margin-bottom: 40px;
    }
    .scale-heading-wrapper h2 {
        color: #caced8; /* Aapka heading color */
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .scale-heading-wrapper p {
        color: #1e1e33; /* Tip: Dark background par padhne me dikkat ho sakti hai, ise #ffffff try karein */
        font-size: 1.2rem;
        font-weight: 550;
    }
    
    .scale-table-wrapper {
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
        border: 1px solid #e2e8f0;
        overflow: hidden;
    }
    
    .custom-scale-table {
        width: 100%;
        border-collapse: collapse;
        text-align: left;
    }
    
    .custom-scale-table th {
        background-color: #1d4ed8;
        color: #ffffff;
        padding: 16px 24px;
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .custom-scale-table td {
        padding: 18px 24px;
        font-size: 1rem;
        color: #334155;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .custom-scale-table tr:last-child td {
        border-bottom: none;
    }
    
    .custom-scale-table tr:nth-child(even) {
        background-color: #f8fafc;
    }
    
    .custom-scale-table tr:nth-child(odd) {
        background-color: #ffffff;
    }

    .biz-type { font-weight: 600; color: #1e3a8a; }
    .scale-desc { color: #64748b; font-size: 0.9rem; display: block; margin-top: 4px; }

    /* =========================================
       RESPONSIVE MEDIA QUERIES
       ========================================= */

    /* For Medium Screens (Laptops & Tablets Landscape - Max 991px) */
    @media (max-width: 991px) {
        .business-scale-section { padding: 50px 15px; }
        .scale-heading-wrapper h2 { font-size: 1.8rem; }
        .custom-scale-table th, .custom-scale-table td { padding: 15px 20px; font-size: 0.95rem; }
    }

    /* For Small Screens (Tablets Portrait - Max 767px) */
    @media (max-width: 767px) {
        .business-scale-section { padding: 40px 10px; }
        .scale-heading-wrapper h2 { font-size: 1.6rem; }
        .scale-heading-wrapper p { font-size: 1.05rem; }
        .custom-scale-table th { font-size: 1rem; padding: 12px 15px; }
        .custom-scale-table td { padding: 12px 15px; font-size: 0.9rem; }
    }

    /* For Mobile Phones (Smart Stacked Card Layout - Max 576px) */
    @media (max-width: 576px) {
        .scale-table-wrapper {
            background: transparent;
            box-shadow: none;
            border: none;
        }
        
        .custom-scale-table, .custom-scale-table thead, .custom-scale-table tbody, 
        .custom-scale-table th, .custom-scale-table td, .custom-scale-table tr {
            display: block;
        }
        
        .custom-scale-table thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }
        
        .custom-scale-table tr {
            background: #ffffff !important;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            margin-bottom: 15px;
            box-shadow: 0 2px 4px rgb(0 0 0 / 0.05);
        }
        
        .custom-scale-table td:nth-of-type(1) {
            background-color: #eff6ff;
            border-bottom: 1px solid #e2e8f0;
            border-radius: 10px 10px 0 0;
            padding: 12px 15px;
            font-size: 1.05rem;
        }
        
        .custom-scale-table td:nth-of-type(2) {
            padding: 15px;
            border-bottom: none;
        }
        
        .custom-scale-table td:nth-of-type(2)::before {
            content: "Recommended:";
            display: block;
            font-size: 0.8rem;
            text-transform: uppercase;
            font-weight: 700;
            color: #1d4ed8;
            margin-bottom: 5px;
            letter-spacing: 0.5px;
        }
    }
