:root {
    --primary: #2563eb;
    --dark: #1e293b;
    --light: white;
    --accent: #3b82f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    background-color: var(--light);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5 rem 0;
    background: rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width:1200px;
    margin: 0 auto;
    padding: 1rem rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    height: auto;
    width: 85px;
  
    transition: transform 0.3s ease;
}
.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger i {
    font-size: 1.5rem;
    color: var(--dark);
}
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.0)),
                url('./images/image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 1rem 0rem;
    width: 100%;
}

/* For very large screens */
@media (min-width: 2000px) {
    .hero {
        background-size: 100% 100%;
    }
}

/* For mobile in landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 120vh;
        background-position:center;
    }
}

/* For mobile devices */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
}
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.hero-text {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.2s forwards;
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.4s forwards;
}

.btn {
    padding: 1rem 2rem;
    border: 2px solid white;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 30px;
    letter-spacing: 1px;
}

.btn:hover {
    background: white;
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn.primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn.primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: auto; /* Ensures footer stays at the bottom */
        }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-text {
        font-size: 1.2rem;
    }

    .btn-group {
        flex-direction: column;
        padding: 0 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .nav-container {
        padding: 1rem;
    }
}
/* Services Section */
.services {
    padding: 6rem 2rem;
    background: var(--light);
    text-align: center;
}

.services-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    transform: rotate(45deg);
    transition: all 0.5s ease;
    z-index: 1;
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    top: 0;
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    z-index: 2;
    position: relative;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    z-index: 2;
    position: relative;
}

.card-text {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    z-index: 2;
    position: relative;
}

.card-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 2;
    position: relative;
}

.card-link i {
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}
/* About Us Section */
.about {
    padding: 6rem 2rem;
    background: var(--light);
    text-align: center;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.about-text {
    text-align: left;
    max-width: 600px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 2rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

.about-map {
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }

    .contact-info {
        padding: 1.5rem;
    }
}
/* Cart Section */
.cart {
    padding: 6rem 2rem;
    background: var(--light);
    text-align: center;
}

.cart-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.cart-content {
    max-width: 1200px;
    margin: 0 auto;
}



/* Brands Section */
.brands-section {
    text-align: center;
}

.brands-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.brand-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,178,255);
}

.brand-logo {
    width: 160px; /* Fixed width for desktop */
    height: auto; /* Maintain aspect ratio */
    transition: filter 0.3s ease;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .brand-logo {
        width: 160px; /* Slightly smaller for tablets */
    }
}

@media (max-width: 480px) {
    .brand-logo {
        width: 100px; /* Even smaller for mobile */
    }
}
.brand-card:hover .brand-logo {
    filter: grayscale(0%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cart-title {
        font-size: 2.5rem;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 480px) {
    .cart-title {
        font-size: 2rem;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}
/* Middle Header */
.middle-header {
    margin-top: 4rem; /* Adds space between the two sections */
    padding-top: 2rem;
    border-top: 2px solid var(--primary); /* Adds a decorative line */
}
/* General Styles */
 .service-details {
            padding: 8rem 2rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .service-details h1 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #007bff;
        }

        .service-details h2 {
            font-size: 2rem;
            margin: 2rem 0 1rem;
            color: #333;
        }

        .service-details p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 1.5rem;
        }

        .service-details ul {
            text-align: left;
            max-width: 800px;
            margin: 0 auto 2rem;
            padding: 0;
            list-style: none;
        }

        .service-details ul li {
            background: #f1f1f1;
            margin: 0.5rem 0;
            padding: 1rem;
            border-radius: 5px;
            font-size: 1rem;
            color: #555;
        }

        .service-details img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2rem 0;
        }
