.icon-with-ripple {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rotating-text-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    animation: rotateTextClockwise 10s linear infinite;
}

.rotating-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.circular-text {
    fill: #FFFFFF;
    font-size: 10px;
    text-transform: uppercase;
}

.play-center-white {
    position: relative;
    width: 55px;
    height: 55px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.play-center-white i {
    color: #000000;
    font-size: 18px;
    margin-left: 3px;
}

@keyframes rotateTextClockwise {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.video-play-magnet .ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1;
    animation: whitePulse 3s infinite ease-out;
}

.ripple-2 {
    animation-delay: 1s;
}

@keyframes whitePulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.video-play-magnet:hover .play-center-white {
    transform: scale(1.1);
    transition: 0.3s ease;
}

.theme-btn:hover .blink-icon {
    animation: none;
    opacity: 1;
}

.login-form .login-header img {
    width: 135px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
    .m-none {
        display: none;
    }
    .t-align {
        text-align: center;
    }
    .site-title {
        font-weight: 500;
        text-transform: inherit;
        font-size: 24px;
        color: var(--color-dark);
        margin-top: 4px;
    }
}

.journey-area {
    padding: 90px 0;
    background-color: #ffffff;
}

.journey-welcome {
    color: #28a745;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

.journey-title {
    font-size: 28px;
    color: #000;
    margin-bottom: 50px;
    text-align: center;
}

.journey-item {
    text-align: center;
    padding: 15px;
}

.journey-img-circle {
    width: 220px;
    height: 220px;
    margin: 0 auto 25px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.journey-img-circle::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed #28a745;
    animation: rotate-border 10s linear infinite;
}

@keyframes rotate-border {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.journey-img-circle img {
    width: 195px;
    height: 195px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    z-index: 1;
}

.journey-item h4 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
    color: #111;
}

.journey-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 350px;
}

@media (max-width: 767px) {
    .journey-area {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    .journey-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .journey-img-circle {
        width: 180px;
        height: 180px;
    }
    .journey-img-circle img {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 767px) {
    .about-img .img-2,
    .img-3 {
        display: none;
    }
    .about-img .img-1 {
        width: 100% !important;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    .about-img {
        padding: 0;
        width: 100%;
    }
}