.gallery-card {
    background: #111827;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 1rem;
    overflow: hidden;
    
    transition: transform .2s ease, box-shadow .2s ease;
}

    .gallery-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 36px rgba(0,0,0,0.45);
    }

.img-wrap {
    position: relative;
    cursor: zoom-in;
    overflow: hidden;
}

    .img-wrap img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        transition: transform .35s ease;
        display: block;
    }

    .img-wrap:hover img {
        transform: scale(1.04);
    }

.zoom-badge {
    position: absolute;
    bottom: .75rem;
    right: .75rem;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: .8rem;
    padding: .35rem .5rem;
    border-radius: .5rem;
    border: 1px solid rgba(255,255,255,0.15);
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    margin: .5rem 0 0;
    color: #f1f5f9;
}

/* Modal tweaks for a “zoomed” feel */
.modal-content {
    background: transparent;
    border: 0;
    width:auto !important;
}

.modal-body {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .modal-body img {
        width: 100%;
        height: auto;
        max-height: 90vh;
        object-fit: contain;
        border-radius: .75rem;
        box-shadow: 0 20px 60px rgba(0,0,0,0.65);
    }


    /*Gallery css*/

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 10px;
}

.image-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .image-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
        transition: transform 0.3s ease;
    }

    .image-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

        .image-item:hover img {
            transform: scale(1.1);
        }

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    text-align: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    margin-top: 3%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .close:hover {
        color: #ccc;
    }

    /*Gallery css*/
	
.desc{
	font-size:18px;
	line-height:30px;
}