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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8fafc;
        }
        /* Utility Bar Styles */
.utility-bar {
    background-color: #f8f9fa; /* Light gray background */
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.utility-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.utility-contacts a {
    margin-right: 15px;
    color: #333;
    text-decoration: none;
}

.utility-contacts a:hover {
    color: #007bff;
}

.utility-contacts i,
.utility-social i {
    margin-right: 5px;
}

.utility-social a {
    color: #555;
    margin-left: 12px;
    font-size: 16px;
}

.utility-social a:hover {
    color: #007bff;
}

/* Hide Utility Bar on Scroll */
.utility-bar.hidden {
    transform: translateY(-100%);
}

/*

        /* Discount Banners */
        .discount-banners {
            padding: 1rem;
            background: #fff;
        }

        .banner-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 3rem;
            padding: 0 2rem;
        }

        .discount-banner {
            flex: 1;
            background: linear-gradient(45deg, #f59e0b, #d97706);
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            animation: pulse 2s infinite;
        }

        .discount-banner:nth-child(2) {
            background: linear-gradient(45deg, #10b981, #059669);
            animation-delay: 0.5s;
        }

        .discount-banner:nth-child(3) {
            background: linear-gradient(45deg, #8b5cf6, #7c3aed);
            animation-delay: 1s;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Device Categories */
        .device-categories {
            padding: 4rem 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 ;
            overflow: hidden;
        }
        .category-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #2563eb;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .category-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
        }

        .category-icon {
         position: absolute;
    background: rgba(255, 255, 255, 0.9);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .category-card h3 {
             margin: 1.5rem 1rem 0.5rem;
        }
        .category-card p {
    padding: 0 1rem 1.5rem;
    margin: 0;
}

        /* Why Choose Us */
        .why-choose-us {
            background: #2563eb;
            color: white;
            padding: 1rem 0;
        }

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

        .feature {
            text-align: center;
            padding: 2rem;
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        /* Booking Form */
        .booking-form {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 1rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .form-step {
            display: none;
        }

        .form-step.active {
            display: block;
        }

        .progress-bar {
            width: 100%;
            height: 4px;
            background: #e5e7eb;
            border-radius: 2px;
            margin-bottom: 2rem;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: #2563eb;
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #374151;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2563eb;
        }

        .checkbox-group {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .form-navigation {
            display: flex;
            justify-content: between;
            gap: 1rem;
            margin-top: 2rem;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: #2563eb;
            color: white;
        }

        .btn-primary:hover {
            background: #1d4ed8;
        }

        .btn-secondary {
            background: #6b7280;
            color: white;
        }

        .btn-secondary:hover {
            background: #4b5563;
        }

        /* Status Check */
        .status-container {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .status-progress {
            display: flex;
            justify-content: space-between;
            margin: 2rem 0;
            position: relative;
        }

        .status-step {
            flex: 1;
            padding: 1rem;
            background: #e5e7eb;
            margin: 0 0.5rem;
            border-radius: 8px;
            position: relative;
        }

        .status-step.completed {
            background: #10b981;
            color: white;
        }

        .status-step.current {
            background: #2563eb;
            color: white;
        }

        /* Contact Form */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 2rem;
        }

        .contact-info {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-item i {
            font-size: 1.5rem;
            color: #2563eb;
            width: 30px;
        }

        /* FAQ */
        .faq-item {
            background: white;
            margin-bottom: 1rem;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            padding: 1.5rem;
            background: #f8fafc;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 1.5rem;
            display: none;
        }

        .faq-answer.active {
            display: block;
        }

        /* Footer */
  /* Footer Base */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 1rem 1rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #60a5fa;
    font-size: 1.2rem;
}

.footer-section p, .footer-section i {
    color: #d1d5db;
    font-size: 0.95rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #374151;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Responsive Spacing */
@media (max-width: 768px) {
    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-links a {
        font-size: 0.9rem;
    }
}


        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-toggle {
                display: block;
            }

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

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

            .banner-container {
                flex-direction: column;
            }

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

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

            .booking-form {
                margin: 1rem;
                padding: 2rem 1rem;
            }
        }

        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid #2563eb;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

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

        .hidden {
            display: none;
        }
.brands-section {
    padding: 4rem 0;
    background-color: #f9fafb;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.section-subtitle {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}


.brand-slider-section {
  padding: 2rem;
  background: #f9fafb;
  text-align: center;
}
.brand-slider-container {
  max-width: 1200px;
  margin: 0 auto;
}
.brand-slider {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
}



.brand-swiper {
  padding: 2rem 0;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-swiper {
  width: 100%;
  padding: 2rem 0;
}

.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-logo {
  width: 150px;
  height: 100px;
  object-fit: contain;
  display: block;
  margin: auto;
}


