/* ✅ Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* ✅ Gallery Container */
.gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
    background: #0a285f; /* Dark Blue Background */
}

/* ✅ Gallery Title */
.gallery-title-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom right, #0a285f, blue);
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.gallery-title {
    font-size: 24px;
    font-weight: bold;
    color: #acda4d;
}

/* ✅ Gallery Frame */
.gallery-frame {
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    border-radius: 8px;
    background: #acda4d; /* Light Green Background */
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ✅ Product Gallery */
.gallery-wrapper {
    overflow: hidden;
    width: 200%
    position: relative;
}

.gallery {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 15px;
    width: max-content;
    padding: 10px;
}

/* ✅ Product Card */
.product {
    background: white;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    min-width: 300px;
}

.product img {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
    border-radius: 4px;
}

/* ✅ Call Inquiry Button */
.call-btn {
    margin-top: 10px;
    padding: 10px 14px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.call-btn:hover {
    background: #0056b3;
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
    .gallery-wrapper {
        width: 100%;
        overflow-x: auto;
    }
    .product {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .gallery-wrapper {
        width: 100%;
        overflow-x: auto;
    }
    .product {
        min-width: 280px;
    }
}
