/* Animation for the relocation path */
.relocation-map {
    position: relative;
    width: 100%;
    max-width: 750px;
    height: 160px;
    margin: 15px auto;
}

.landmark {
    position: absolute;
    font-size: 50px;
    color: #133b85;
    text-align: center;
}

.landmark-name {
    font-size: 12px;
    font-weight: bold;
    margin-top: 5px;
    color: #133b85;
}

.toronto {
    left: 15%;
    top: 10px;
}

.dubai {
    left: 50%;
    top: 10px;
}

.shanghai {
    left: 85%;
    top: 10px;
}

.path-toronto {
    position: absolute;
    top: 80px;
    left: 15%;
    width: 0;
    height: 3px;
    background-color: #133b85;
    transform-origin: left center;
    transform: rotate(15deg);
    animation: drawPathToronto 3s forwards;
}

.path-dubai {
    position: absolute;
    top: 80px;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #133b85;
    transform-origin: left center;
    transform: rotate(-15deg);
    animation: drawPathDubai 3s forwards;
}

.dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #133b85;
    top: 75px;
}

.dot-toronto {
    left: calc(15% - 5px);
}

.dot-dubai {
    left: calc(50% - 5px);
}

.dot-shanghai {
    left: calc(85% - 5px);
}

.plane-toronto {
    position: absolute;
    top: 70px;
    left: 15%;
    font-size: 24px;
    animation: movePlaneToronto 3s forwards;
    transform: rotate(15deg);
}

.plane-dubai {
    position: absolute;
    top: 70px;
    left: 50%;
    font-size: 24px;
    animation: movePlaneDubai 3s forwards;
    transform: rotate(-15deg);
}

@keyframes drawPathToronto {
    0% {
        width: 0;
    }
    100% {
        width: 70%;
    }
}

@keyframes drawPathDubai {
    0% {
        width: 0;
    }
    100% {
        width: 35%;
    }
}

@keyframes movePlaneToronto {
    0% {
        left: 15%;
        top: 70px;
    }
    100% {
        left: 85%;
        top: 90px;
    }
}

@keyframes movePlaneDubai {
    0% {
        left: 50%;
        top: 70px;
    }
    100% {
        left: 85%;
        top: 60px;
    }
}
