.edumi-landing-page .hero {
    display: flex;
    min-height: 560px;
    margin: 0;
    overflow: hidden;
    background: #ffffff;
}

.edumi-landing-page .box {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    min-height: 560px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.edumi-landing-page .box:hover {
    z-index: 3;
    box-shadow: 0 14px 30px rgba(16, 42, 67, 0.16);
    transform: translateY(-3px);
}

.edumi-landing-page .box1 {
    background-image: url("../../image/edutourism/ireland.webp");
}

.edumi-landing-page .box2 {
    background-image: url("../../image/edutourism/malaysia.webp");
}

.edumi-landing-page .box3 {
    background-image: url("../../image/edutourism/united-kingdom.webp");
}

.edumi-landing-page .box::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 72% 18%, rgba(4, 102, 194, 0.24), transparent 32%),
        linear-gradient(180deg, rgba(16, 42, 67, 0.12), rgba(16, 42, 67, 0.58));
    content: "";
}

.edumi-landing-page .box-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    text-align: center;
}

.edumi-landing-page .box-title {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 800;
}

@media (max-width: 767.98px) {
    .edumi-landing-page .hero {
        flex-direction: column;
    }

    .edumi-landing-page .box {
        min-height: 260px;
    }
}
