  
        .test{
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
       
        /* hero section style */
        .hero-section {
            background: url('https://via.placeholder.com/1500x500') no-repeat center center/cover;
            color: white;
            padding: 100px 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .product-card {
            transition: transform 0.2s;
        }
        .product-card:hover {
            transform: translateY(-5px);
        }
        footer {
            background-color: #f8f9fa;
            padding: 40px 0;
        }
     /* cart page style */
        .cart-item-img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: .25rem;
        }
        .quantity-input {
            width: 60px;
            text-align: center;
        }
        .cart-summary .list-group-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
   /* contact_us style */
 
        footer {
            background-color: #f8f9fa;
            padding: 40px 0;
            margin-top: 5rem; /* Add some space above footer */
        }

        /* Specific styles for contact page */
        .contact-info-card {
            min-height: 180px; /* Ensure consistent height for cards */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .contact-form-section {
            background-color: #f8f9fa;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
        }
