
    /* .logo img{
        width: 100px;
        height: 100px;
        border-radius: 50%
    } */

    *{
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        
    }
 
    
    main{
        width: 100vw;
        height: 100vh;
        position: relative;
    }
    /* body{
        overflow-x:hidden ;
    } */
    nav{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;

    }
    .navbar{
        height: 60px; 
        display: flex;
        align-items: center;
        padding-bottom: 0;
    }
    .mencontent, .womencontent, .kidscontent, .sportscontent {
        display: none;
        position: absolute;
        top: 60px; 
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px;
        z-index: 1000;
}

    .mencontent a{
        text-decoration: none;
        color:gray;
    }
    .womencontent a{
        text-decoration: none;
        color:gray;
    }
    .sportscontent a{
        text-decoration: none;
        color:gray;
    }
    .kidscontent a{
        text-decoration: none;
        color:gray;
    }

    .mencontent a:hover{

        color:crimson;
    }
    .womencontent a:hover{

        color:crimson;
    }
    .kidscontent a:hover{

        color:crimson;
    }
    .sportscontent a:hover{

        color:crimson;
    }

    .sportsimage{
        width:200px;
        height:130px;
    }
    .sportsimage img{
        object-fit: contain;
        object-position: center;
    }
   
.cardcontainer{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 0px; 
    padding: 20px; 
}
.nav-link {
    padding-top: 6px;
    padding-bottom: 24px;
    margin-bottom: 0;
  }
  
/* Add to assets/css/navbar.css */
.mega-menu .container {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
}

.nav-item {
    position: relative;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: crimson;
}

.mega-menu h6 {
    color: #666;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 600;
}

.mega-menu ul {
    list-style: none;
    padding: 0;
}

.mega-menu ul li {
    margin-bottom: 10px;
}

.mega-menu img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar {
        height: auto;
        padding: 10px 15px;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        background: white;
        padding: 15px;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 12px 15px;
        width: 100%;
        border-bottom: 1px solid #f5f5f5;
    }

    .mencontent,
    .womencontent,
    .kidscontent,
    .sportscontent {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 15px;
        background: #fafafa;
        display: none;
    }

    .mega-menu .row {
        flex-direction: column;
    }

    .mega-menu .col-md-2,
    .mega-menu .col-md-3,
    .mega-menu .col-md-1 {
        width: 100%;
        margin-bottom: 20px;
    }

    .position-relative {
        width: 100%;
        margin-bottom: 10px;
    }

    .position-relative input {
        width: 100%;
    }

    .d-flex.align-items-center.gap-3 {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .mega-menu h6 {
        font-size: 0.95rem;
    }

    .mega-menu a {
        font-size: 0.85rem;
    }

    .sportsimage {
        width: 150px;
        height: auto;
    }
}