* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-dark: #2C2C2C;
            --accent-orange: #F97316;
            --accent-orange-dark: #F57C00;
            --text-white: #FFFFFF;
            --text-gray: #E0E0E0;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --spacing: 24px;
            --gradient-primary: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-gray);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Poppins', sans-serif;
            color: var(--text-white);
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes pulseGlow {
            0% { 
                text-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
                transform: scale(1);
            }
            100% { 
                text-shadow: 0 0 40px rgba(249, 115, 22, 0.8), 0 0 60px rgba(249, 115, 22, 0.4);
                transform: scale(1.05);
            }
        }

        /* Top Strip */
        .top-strip {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(44, 44, 44, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--glass-border);
            padding: 12px 0;
            z-index: 1000;
        }

        .top-strip-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .logo-text {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--accent-orange);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .owner-contacts {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
        }

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

        /* Hero Section */
        .hero {
            margin-top: 60px;
            min-height: 90vh;
            background: linear-gradient(rgba(44, 44, 44, 0.7), rgba(44, 44, 44, 0.8)),
                url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1920') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: var(--spacing);
        }

        .hero-content {
            max-width: 800px;
            backdrop-filter: blur(20px);
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 48px 32px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .hero h1 {
            font-size: 3.5rem;
            color: var(--accent-orange);
            margin-bottom: 16px;
            font-weight: 700;
        }

        .hero h2 {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 32px;
            color: var(--text-gray);
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 1rem;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: var(--accent-orange);
            color: var(--text-white);
            box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
        }

        .btn-primary:hover {
            background: var(--accent-orange-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(249, 115, 22, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-white);
            border: 2px solid var(--accent-orange);
        }

        .btn-secondary:hover {
            background: var(--accent-orange);
            transform: translateY(-2px);
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing);
        }

        /* Section */
        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 48px;
            color: var(--accent-orange);
        }

        /* Product Grid - FIXED VERSION */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
            gap: 24px;
            margin-top: 32px;
        }

        .product-card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(249, 115, 22, 0.3);
            border-color: var(--accent-orange);
        }

        .product-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .product-info {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-category {
            font-size: 0.85rem;
            color: var(--accent-orange);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .product-name {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-white);
        }

        .product-description {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-bottom: 16px;
            flex-grow: 1;
        }

        .product-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-orange);
            margin-bottom: 16px;
        }

        .view-details-btn {
            width: 100%;
            padding: 12px;
            background: var(--accent-orange);
            color: var(--text-white);
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .view-details-btn:hover {
            background: var(--accent-orange-dark);
            transform: scale(1.05);
        }

        /* Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            padding: 20px;
            overflow-y: auto;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            max-width: 900px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: modalSlideIn 0.3s ease;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

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

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--accent-orange);
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: var(--accent-orange-dark);
            transform: rotate(90deg);
        }

        .modal-close svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .modal-content {
            padding: 32px;
        }

        .carousel {
            position: relative;
            margin-bottom: 24px;
            border-radius: 12px;
            overflow: hidden;
        }

        .carousel-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: none;
        }

        .carousel-image.active {
            display: block;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(249, 115, 22, 0.8);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .carousel-btn:hover {
            background: var(--accent-orange);
        }

        .carousel-btn.prev {
            left: 16px;
        }

        .carousel-btn.next {
            right: 16px;
        }

        .carousel-btn svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .modal-product-title {
            font-size: 2rem;
            margin-bottom: 16px;
        }

        .modal-product-category {
            color: var(--accent-orange);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .specs-table {
            width: 100%;
            margin: 24px 0;
            border-collapse: collapse;
        }

        .specs-table td {
            padding: 12px;
            border-bottom: 1px solid var(--glass-border);
        }

        .specs-table td:first-child {
            font-weight: 600;
            color: var(--text-white);
            width: 30%;
        }

        .bulk-pricing-table {
            margin: 24px 0;
        }

        .bulk-pricing-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .bulk-pricing-table th,
        .bulk-pricing-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid var(--glass-border);
        }

        .bulk-pricing-table th {
            background: rgba(249, 115, 22, 0.1);
            color: var(--accent-orange);
            font-weight: 600;
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            gap: 16px;
            margin: 24px 0;
        }

        .quantity-selector button {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: var(--accent-orange);
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .quantity-selector button:hover {
            background: var(--accent-orange-dark);
        }

        .quantity-selector input {
            width: 80px;
            text-align: center;
            padding: 8px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 8px;
            color: var(--text-white);
            font-size: 1rem;
        }

        .price-calculation {
            background: rgba(249, 115, 22, 0.1);
            border: 1px solid var(--accent-orange);
            border-radius: 12px;
            padding: 16px;
            margin: 16px 0;
        }

        .price-calculation .total {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-orange);
        }

        .modal-actions {
            display: flex;
            gap: 16px;
            margin-top: 24px;
            flex-wrap: wrap;
        }

        .modal-actions .btn {
            flex: 1;
            text-align: center;
            min-width: 150px;
        }

        /* Form */
        .form-section {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 40px;
            margin: 48px 0;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

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

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-white);
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            border-radius: 8px;
            color: var(--text-white);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-orange);
            background: rgba(255, 255, 255, 0.08);
        }

        /* Custom dropdown styling */
        .form-group select {
            appearance: none;
            background-color: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            cursor: pointer;
        }

        .form-group select::-ms-expand {
            display: none;
        }

        .form-group select option {
            background-color: #1c1c1c;
            color: #ffffff;
        }

        .form-group select option:hover,
        .form-group select option:focus,
        .form-group select option:checked {
            background-color: var(--accent-orange);
            color: #ffffff;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 48px;
        }

        .contact-info {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 32px;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 24px;
            color: var(--accent-orange);
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
        }

        .contact-detail svg {
            width: 24px;
            height: 24px;
            fill: var(--accent-orange);
            flex-shrink: 0;
            margin-top: 4px;
        }

        .contact-detail-content h4 {
            font-size: 1rem;
            margin-bottom: 4px;
            color: var(--text-white);
        }

        .contact-detail-content p {
            margin: 4px 0;
            line-height: 1.6;
        }

        .map-container {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            overflow: hidden;
            padding: 16px;
        }

        .map-container iframe {
            width: 100%;
            height: 400px;
            border: none;
            border-radius: 12px;
        }

        .map-link {
            display: inline-block;
            margin-top: 16px;
            padding: 10px 20px;
            background: var(--accent-orange);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .map-link:hover {
            background: var(--accent-orange-dark);
            transform: translateY(-2px);
        }

        /* Partners Section */
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Brands Container - FIXED VERSION */
        .brands-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
            gap: 32px;
            margin-top: 48px;
        }

        .brand-card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 280px;
            position: relative;
            overflow: hidden;
        }

        .brand-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-dark));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .brand-card:hover::before {
            transform: scaleX(1);
        }

        .brand-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(249, 115, 22, 0.3);
            border-color: var(--accent-orange);
        }

        .brand-logo {
            width: 200px;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .brand-card:hover .brand-logo {
            transform: scale(1.05);
            border-color: var(--accent-orange);
        }

        .brand-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 8px;
        }

        .brand-logo-placeholder {
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
            color: white;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .brand-name {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-white);
            margin-bottom: 8px;
        }

        .brand-description {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 16px;
            flex-grow: 1;
            display: flex;
            align-items: center;
        }

        .brand-category {
            background: rgba(249, 115, 22, 0.1);
            color: var(--accent-orange);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: 1px solid rgba(249, 115, 22, 0.3);
        }

        /* About Section */
        .about-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 48px;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .counters {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }

        .counter-card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 32px;
            text-align: center;
        }

        .counter-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-orange);
            margin-bottom: 8px;
        }

        .counter-label {
            font-size: 1rem;
            color: var(--text-gray);
        }

        /* Footer */
        .footer {
            background: rgba(249, 115, 22, 0.1);
            border-top: 1px solid var(--glass-border);
            padding: 32px 0;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-orange);
        }

        /* Success Toast */
        .toast {
            position: fixed;
            bottom: 32px;
            right: 32px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--accent-orange);
            border-radius: 12px;
            padding: 20px 24px;
            color: var(--text-white);
            box-shadow: 0 8px 32px rgba(249, 115, 22, 0.4);
            opacity: 0;
            visibility: hidden;
            transform: translateX(100%);
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
            z-index: 3000;
            max-width: 400px;
        }

        .toast.show {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            /* Product Grid - 2 columns on tablets/mobile */
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            /* Brands Grid - 2 columns on tablets/mobile */
            .brands-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .brands-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .brand-card {
                min-height: 240px;
                padding: 20px;
            }

            .brand-logo {
                width: 140px;
                height: 140px;
                margin-bottom: 12px;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero h2 {
                font-size: 1.3rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .modal-content {
                padding: 24px;
            }

            .carousel-image {
                height: 200px;
            }

            .contact-grid {
                gap: 24px;
            }

            .brands-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .brand-card {
                min-height: 240px;
                padding: 20px;
            }

            .brand-logo {
                width: 140px;
                height: 140px;
                margin-bottom: 12px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                margin-top: 120px;
                min-height: 70vh;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero h2 {
                font-size: 1.1rem;
            }

            .section {
                padding: 40px 0;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .modal {
                width: 95%;
            }

            .modal-product-title {
                font-size: 1.5rem;
            }

            .carousel-image {
                height: 200px;
            }

            .modal-actions {
                flex-direction: column;
            }

            .modal-actions .btn {
                width: 100%;
            }

            .owner-contacts {
                flex-direction: column;
                gap: 8px;
            }

            .logo-text {
                font-size: 1.2rem;
            }

            .map-container iframe {
                height: 300px;
            }

            .toast {
                right: 16px;
                left: 16px;
                bottom: 16px;
                max-width: 90%;
            }

            .product-image {
                height: 200px;
            }

            .brands-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .brand-card {
                min-height: 240px;
                padding: 20px;
            }

            .brand-logo {
                width: 120px;
                height: 120px;
                margin-bottom: 12px;
            }

            .brand-name {
                font-size: 1.2rem;
            }

            .brand-description {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 600px) {
            /* Product Grid - 1 column on very small screens */
            .product-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            /* Brands Grid - 1 column on very small screens */
            .brands-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .hero-content {
                padding: 24px 16px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                margin-bottom: 8px;
            }

            .product-image {
                height: 180px;
            }

            .product-name {
                font-size: 1.1rem;
            }

            .product-price {
                font-size: 1.2rem;
            }

            .quantity-selector input {
                width: 60px;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 10px 12px;
                font-size: 0.9rem;
            }

            .contact-detail {
                flex-direction: column;
                align-items: flex-start;
            }

            .counter-number {
                font-size: 2rem;
            }

            .brand-card {
                min-height: 220px;
                padding: 16px;
            }

            .brand-logo {
                width: 100px;
                height: 100px;
                margin-bottom: 12px;
            }

            .brand-name {
                font-size: 1.1rem;
            }

            .brand-description {
                font-size: 0.85rem;
            }

            .brand-category {
                font-size: 0.8rem;
                padding: 4px 8px;
            }
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Animation on Scroll */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Remove Chrome's white/yellow autofill background */
        input:-webkit-autofill,
        input:-webkit-autofill:hover,
        input:-webkit-autofill:focus,
        textarea:-webkit-autofill,
        textarea:-webkit-autofill:hover,
        textarea:-webkit-autofill:focus,
        select:-webkit-autofill,
        select:-webkit-autofill:hover,
        select:-webkit-autofill:focus {
            -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.05) inset !important;
            -webkit-text-fill-color: #fff !important;
            transition: background-color 5000s ease-in-out 0s;
        }

        /* For WebKit browsers (Chrome, Edge, Safari) */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: transparent;
        }

        ::-webkit-scrollbar-thumb {
            background-color: var(--accent-orange);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background-color: var(--accent-orange-dark);
        }

        /* For Firefox */
        * {
            scrollbar-width: thin;
            scrollbar-color: var(--accent-orange) transparent;
        }
        /* Trusted Partners Section */
#brandsContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop: 3 per row */
  gap: 20px;
  padding: 30px 0;
  justify-items: center;
  align-items: stretch;
}

/* Brand Cards */
#brandsContainer .brand-card {
  background: #141414;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  width: 100%;
}

#brandsContainer .brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.25);
}

/* Brand Logo */
#brandsContainer .brand-logo img {
  max-width: 80px;
  height: auto;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

#brandsContainer .brand-card:hover .brand-logo img {
  transform: scale(1.1);
}

/* Brand Name and Description */
#brandsContainer .brand-name {
  font-size: 1rem;
  font-weight: 600;
  color: #ff6a00; /* same orange accent */
  margin-top: 10px;
}

#brandsContainer .brand-description {
  font-size: 0.9rem;
  color: #bbb;
  margin-top: 5px;
  line-height: 1.4;
}

/* Responsive Layouts */
@media (max-width: 1024px) {
  #brandsContainer {
    grid-template-columns: repeat(3, 1fr); /* still 3 for tablets */
  }
}

@media (max-width: 768px) {
  #brandsContainer {
    grid-template-columns: repeat(2, 1fr); /* Mobile: 2 per row */
    gap: 15px;
  }
}

@media (max-width: 420px) {
  #brandsContainer {
    grid-template-columns: 1fr; /* Very small: 1 per row */
  }
}