/* Polaroid Style */
    .polaroid-card {
        display: block;
        background-color: #fff;
        padding: 15px 15px 40px 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        border: 1px solid #eee;
        /* transform: rotate(-1deg); */
    }

    .polaroid-card:hover {
        transform: rotate(0.5deg) scale(1.02);
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        z-index: 5;
    }

    .polaroid-image-container {
        width: 100%;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        margin-bottom: 15px;
        background-color: #f0f0f0;
    }

    .polaroid-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: sepia(0.1);
        transition: filter 0.3s ease;
    }

    .polaroid-card:hover .polaroid-img {
        filter: sepia(0);
    }

    .polaroid-caption {
        color: #333;
        letter-spacing: 1px;
    }

    .col-md-6:nth-child(even) .polaroid-card:hover {
        transform: rotate(-0.5deg) scale(1.02);
    }

    .polaroid-container{
        bottom:16px;
    }