/* Image Wrapper */
.about-image-wrapper {
    min-height: 400px;
}

/* Image Cards */
.image-card {
    position: absolute;
    width: 600px;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.6s ease-in-out;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Default Positions */
.image-card-1 {
    top: 0;
    right: 40px;
    z-index: 2;
}

.image-card-2 {
    top: 120px;
    right: 0;
    z-index: 1;
}

/* Swapped State */
.image-card-1.swapped {
    top: 120px;
    right: 0;
    z-index: 1;
}

.image-card-2.swapped {
    top: 0;
    right: 40px;
    z-index: 2;
}

/* Hover Effect */
.image-card:hover {
    transform: scale(1.05);
}