         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header Styles */
        header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #2c3e50;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #3498db;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                        url('images/main-banner.jpg');
            background-size: cover;
            background-position: center;
            height: 800px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            font-weight: 800;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

        /* Categories Section */
        .categories-section {
            padding: 4rem 0;
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #2c3e50;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .category-box {
            background: white;
            height: 280px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            overflow: hidden;
            position: relative;
            background-size: cover;
            background-position: center;
        }

        .category-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
        }

        .category-content {
            position: relative;
            z-index: 1;
            padding: 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
        }

        .category-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.2);
        }

        .category-box h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            font-weight: 700;
        }

        .category-box p {
            font-size: 1rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
        }

        /* Boxing category backgrounds */
        .cat-1 { background-image: url('images/boxing-gloves.jpg'); }
        .cat-2 { background-image: url('images/bjj-gi.jpg'); }
        .cat-3 { background-image: url('images/focus-pads.jpg'); }
        .cat-4 { background-image: url('images/karate-uniform.jpg'); }
        .cat-5 { background-image: url('images/martial-arts-uniform.jpg'); }
        .cat-6 { background-image: url('images/mma-gloves.jpg'); }
        .cat-7 { background-image: url('images/muay-thai-shorts.jpg'); }
        .cat-8 { background-image: url('images/shin-guards.jpg'); }
        .cat-9 { background-image: url('images/taekwondo-uniform.jpg'); }

        /* Banner Section */
        .banner-section {
            height: 400px;
            background-image: linear-gradient(rgba(43, 43, 43, 0.7), rgba(153, 27, 27, 0.7)), 
                              url('images/other-banner.jpg');
            background-size: cover;
            background-position: center center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 2rem;
            height: 500px;
        }

        .banner-content {
            max-width: 900px;
        }

        .banner-content h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
            font-weight: 800;
        }

        .banner-content p {
            font-size: 1.5rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
        }

        /* Products Section */
        .products-section {
            padding: 4rem 0;
            background: #f8f9fa;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.2);
        }

        .product-image {
            width: 100%;
            height: 300px;
            background-size: cover;
            background-position: center;
        }

        .product-info {
            padding: 1.5rem;
            text-align: center;
        }

        .product-info h3 {
            font-size: 1.3rem;
            color: #2c3e50;
            font-weight: 600;
        }

        /* Product images */
        .prod-1 { background-image: url('images/boxing-gloves-01.jpg'); }
        .prod-2 { background-image: url('images/taekwondo-uniform-02.jpg'); }
        .prod-3 { background-image: url('images/shin-guards-03.jpg'); }
        .prod-4 { background-image: url('images/muay-thai-shorts-04.jpg'); }
        .prod-5 { background-image: url('images/focus-pads-05.jpg'); }
        .prod-6 { background-image: url('images/martial-arts-uniform-06.jpg'); }
        .prod-7 { background-image: url('images/mma-gloves-07.jpg'); }
        .prod-8 { background-image: url('images/bjj-gi-08.jpg'); }
        

        /* Footer */
        footer {
            background: #000;
            color: white;
            padding: 6rem 0 2rem;
            text-align: center;
            height:300px;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .footer-contact {
            margin-top: 1rem;
        }

        .footer-contact a {
            margin: 0.5rem 0;
            font-size: 1.3rem;
            color:#fff;
            text-decoration: none;
            
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .categories-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .banner-item {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }

            nav ul.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .banner-content h2 {
                font-size: 1.8rem;
            }

            .banner-content p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .categories-grid {
                grid-template-columns: 1fr;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .hero {
                height: 400px;
            }

            .hero h1 {
                font-size: 1.5rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .navbar {
                padding: 1rem 3%;
            }

            .banner-item {
                font-size: 1rem;
            }

            .category-box {
                height: 220px;
            }

            .banner-content h2 {
                font-size: 2rem;
            }

            .banner-content p {
                font-size: 1.1rem;
            }
        }
        
   