.flyer-container {
    max-width: 350px; /* smaller than default col-lg-6 width */
    margin: 0 auto;   /* center the container */
    border-radius: 18px;

     /* 3D shadow effect */
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(0, 0, 0, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;

    perspective: 1000px;
    transform-style: preserve-3d;
}

.flyer-container:hover {
    border-color: #007bff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}



.flyer-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 15px !important;
}



