/* Default Theme */
.joimagegallery.default .gallery-item {
    position: relative;
    padding: 10px;
    transition: box-shadow 0.3s ease;
}

.joimagegallery.default .gallery-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.joimagegallery.default .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.joimagegallery.default .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.joimagegallery.default .gallery-overlay i {
    color: #fff;
    font-size: 24px;
}

.joimagegallery.default .row {
    margin-right: 0px;
    margin-left: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

/* Minimal Theme */
.joimagegallery.minimal .gallery-item {
    position: relative;
    padding: 5px;
    transition: transform 0.3s ease;
}

.joimagegallery.minimal .gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.joimagegallery.minimal .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.joimagegallery.minimal .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.joimagegallery.minimal .gallery-overlay i {
    color: #fff;
    font-size: 20px;
}

.joimagegallery.minimal .row {
    margin-right: 0px;
    margin-left: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

/* Elegant Theme */
.joimagegallery.elegant .gallery-item {
    position: relative;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.joimagegallery.elegant .gallery-item:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.joimagegallery.elegant .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.joimagegallery.elegant .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.joimagegallery.elegant .gallery-overlay i {
    color: #fff;
    font-size: 28px;
}

.joimagegallery.elegant .gallery-item img {
    border-radius: 10px;
}

.joimagegallery.elegant .row {
    margin-right: 0px;
    margin-left: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}


.joimagegallery .jogallery-title {
  text-transform: capitalize;
}