/* Offers Section */
.offers {
    text-align: center;
    padding: 30px 20px;
    background: #f8f8f8;
    margin-top: 20px;
    animation: fadeIn 1s ease-in-out;
}

.offers h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ff5722;
}

/* Offer Container */
.offer-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Individual Offer Item */
.offer-item {
    width: 220px;
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
}

/* Offer Image */
.offer-item img {
    width: 200px;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effects */
.offer-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.offer-item:hover img {
    transform: scale(1.1);
}

/* Offer Description */
.offer-item p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .offer-container {
        flex-direction: column;
        align-items: center;
    }
}
