* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}



.nav {
    list-style: none; 
    display: flex;
    gap: 20px;
}

.nav-item {
    display: inline-block;
    margin-left: -350px;
}

.nav-bar {
    background-color: #222222; 
    padding: 25px 20px;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100px;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 15px;
    transition: 0.3s ease-in-out;
    border-radius: 5px;
    margin-left: 130px;
}

.nav-link:hover {
    background-color: #444;
}


#main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}



 .all-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; 
    justify-content: center;
    padding: 40px; 
}

.card {
background-color: 1px solid black;
    border-radius: 12px;
    box-shadow: 0 10px 12px rgba(231, 146, 146, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    text-align: center;
    margin: 15px; 
    width: 400px; 
    height: 500px;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.card img {
    max-height: 100px;
    object-fit: contain;
    padding: 10px;
    margin-top: -50px;
}

.card-body {
    padding: 20px; 
}

.card-title {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-top: -50px;

}

.card-text {
    font-size: 16px;
    color: #666;
    margin-top: 10px;   
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    margin-top: 15px;
    background-color: #007bff;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}




.add-to-cart {
    background-color: #06B6D4; 
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    width: 100%;
    text-align: center;
}
.add-to-cart:hover {
    background-color: #0E7490; 
    transform: scale(1.05);
}

.add-to-cart:active {
    background-color: #0A4D68; 
    transform: scale(0.98);
}
 


.me {
    width: 130%; 
    max-width: 350px; 
    height: 50px;
    position: relative;
    top: 20px;
    border-radius: 10px;
    border: none;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 15px;
    color: #d46f10;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    outline: none;
    margin-left: 0;
    margin-top:20px ; 
    
}
.me:hover {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 12px rgba(212, 111, 16, 0.4);
}

.me:focus {
    border: 2px solid #d46f10;
    box-shadow: 0 0 10px rgba(212, 111, 16, 0.6);
    transform: scale(1.05);
}




.you{
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(45deg, #06B6D4, #0E7490);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(6, 182, 212, 0.4);
    position: relative;
    overflow: hidden;
    position: relative;
    left: 370px;
    top: -45px;
    width: 60%;
    height: 50px;
}

.you:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(6, 182, 212, 0.6);
}

.you:active {
    transform: scale(0.95);
    background: linear-gradient(45deg, #0A4D68, #0E7490);
}







@media (max-width: 768px) {
  
    .nav-item {
        position: relative;
        left: 430px;
        top: -38px;
    }

} 




@media (max-width: 480px) {
    .me {
        width: 100%;
        font-size: 14px;
        height: 45px;
        text-align: left;
    }

    .you {
        width: 40%;
        font-size: 14px;
        height: 38px;
        position: relative;
        left: 170px;
        top: -37px;
    }
}
/* js css */
        #main{
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        .abc{
            border: 2px solid black;
            text-align: center;
            width: 20%;
            margin: 5px;
            padding: 10px;
        }

