/* FAQ Section Images */
.image-three-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.4s ease;
}

.main-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-three-wrapper:hover .main-image {
    transform: scale(1.03);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(52, 152, 219, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    backdrop-filter: blur(2px);
}

.image-one-wrapper,
.image-two-wrapper {
    overflow: hidden;
    border-radius: 12px;
    height: 180px;
    transition: all 0.3s ease;
}

.team-image,
.code-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-one-wrapper:hover .team-image,
.image-two-wrapper:hover .code-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.image-one-wrapper:hover .image-overlay,
.image-two-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-icon {
    font-size: 28px;
    color: #fff;
}

.team_box .image_box {
    position: relative;
    overflow: hidden;
}

.team-hover {
    position: absolute;
    bottom: -50%;
    /* start hidden below */
    left: 0;
    width: 100%;
    height: 30%;
    /* only 20% height */
    background: #2d4a6b;
    opacity: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: bottom 0.3s ease;
}

.team-hover span {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.team_box .image_box:hover .team-hover {
    bottom: 0;
    /* slide up on hover */
}

/* Responsive */
@media (max-width: 767.98px) {
    .main-image {
        height: 300px;
    }

    .image-one-wrapper,
    .image-two-wrapper {
        height: 140px;
    }
}



.image-layer {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.image-layer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}


.slide-item {
    position: relative;
    z-index: 2;
}

