    /* ===== ENTERPRISE BENTO-BOX THEME ===== */
        @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;700;800&display=swap');

        :root {
            --surface-color: #ffffff;
            --background-color: #F3F4F6;
            --text-primary: #111827;
            --text-secondary: #6B7280;
            --accent-color: #10B981;
            /* Emerald Green */
            --accent-dark: #059669;
            --border-light: #E5E7EB;
        }

        body {
            font-family: 'Manrope', sans-serif;
            background-color: var(--background-color);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Minimalist Navbar */
        .navbar {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
           
            border-bottom: 1px solid var(--border-light);
        }


        .product-item i {
            color: #10b981 !important;
        }


.load-more-card {
    display: none;
}
        .nav-link {
            color: var(--text-primary) !important;
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--accent-color) !important;
        }

        /* Editorial Hero Section */
        .hero {


            padding-top: 80px;
            padding-right: 0px;
            padding-bottom: 60px;
            padding-left: 0px;


            background: var(--surface-color);
            border-bottom: 1px solid var(--border-light);
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin-bottom: 2.5rem;
            font-weight: 400;
        }

        .btn-custom {
            background: var(--text-primary);
            color: white;
            padding: 16px 40px;
            border-radius: 0;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }

        .btn-custom:hover {
            background: var(--accent-color);
            color: white;
        }

        /* Stats Ribbon */
        .stats-ribbon {
            display: flex;
            gap: 3rem;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-light);
        }

        .stat-item h4 {
            font-size: 2rem;
            font-weight: 800;
            margin: 0;
        }

        .stat-item p {
            margin: 0;
            font-size: 0.85rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Bento Box Grid for Process */
        .section-spacing {
            padding: 120px 0;
        }

        .section-header {
            margin-bottom: 4rem;
            max-width: 700px;
        }

        .section-header h2 {
            font-size: 3rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto auto;
            gap: 1.5rem;
        }

        .bento-item {
            background: var(--surface-color);
            border: 1px solid var(--border-light);
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s ease;
        }

        .bento-item:hover {
            transform: translateY(-5px);
        }

        .bento-large {
            grid-column: span 2;
        }

        .bento-icon {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 2rem;
        }

        .bento-number {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-secondary);
            margin-bottom: 1rem;
            display: block;
        }

        .bento-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        /* Minimalist Product List */
        .product-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 0;
            border-top: 1px solid var(--border-light);
            border-left: 1px solid var(--border-light);
        }

        .product-item {
            background: var(--surface-color);
            border-right: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            padding: 3rem 2rem;
            position: relative;
            overflow: hidden;
            group: hover;
        }

        .product-item img {
            width: 150px;
            height: 150px;
            object-fit: contain;
            transition: opacity 0.3s ease;
        }

       

        .product-item h3 {
            font-size: 1.5rem;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }

        .product-item p {
            color: var(--text-secondary);
            margin: 0;
            position: relative;
            z-index: 2;
            font-size: 0.95rem;
        }

        /* High-End Split Contact Form */
        .contact-section {
            background: var(--text-primary);
            color: white;
            padding: 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .contact-info-block {
            padding: 100px 80px;
            background: #0a0f18;
        }

        .contact-form-block {
            padding: 100px 80px;
            background: var(--text-primary);
        }

        .contact-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 2rem;
            color: white;
        }

        .agency-input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding: 15px 0;
            color: white;
            font-size: 1.1rem;
            margin-bottom: 2rem;
            transition: border-color 0.3s ease;
        }

        .agency-input:focus {
            outline: none;
            border-bottom: 1px solid var(--accent-color);
        }

        .agency-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }


select.agency-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;

    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 14px;
}

select.agency-input option {
    color: black;
}
        .btn-submit {
            background: var(--accent-color);
            color: white;
            border: none;
            padding: 20px 40px;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .btn-submit:hover {
            background: var(--accent-dark);
        }

        .footer-minimal {
            background: #0a0f18;
            color: var(--text-secondary);
            padding: 60px 80px 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .site-logo{
       padding: 1px 1px 1px 1px;
       height: 60px;
       width: 100%;
       object-fit: cover;
        }
        .whatsapp-btn{
          background: #25D366;
    color: white;
    padding: 1px 13px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-btn i{
    font-size:22px;
}

        @media (max-width: 992px) {
            .bento-grid {
                grid-template-columns: 1fr;
            }

            .bento-large {
                grid-column: span 1;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .hero-title {
                font-size: 3rem;
            }

            .contact-info-block,
            .contact-form-block {
                padding: 50px 30px;
            }

            .stats-ribbon {
                flex-direction: column;
                gap: 1.5rem;
            }
        }
