.elementor-60 .elementor-element.elementor-element-d20488d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-38d1169 */.coming-rotate {
    text-align: center;
    padding: 100px 20px;
    font-family: 'Anek Devanagari', sans-serif;
    background: #ffffff;
}

/* CENTER BOX */
.content-box {
    max-width: 600px;
    margin: auto;
}

/* ROTATING RING */
.rotate-ring {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    border-radius: 50%;
    border: 4px dashed #005FAD;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 12s linear infinite;
}

/* INNER CIRCLE */
.inner-circle {
    width: 120px;
    height: 120px;
    background: #E83F34;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    animation: counterRotate 12s linear infinite;
}

/* TITLE */
.title {
    font-size: 32px;
    color: #005FAD;
    margin-bottom: 10px;
}

/* DESCRIPTION */
.desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 12px 26px;
    background: #005FAD;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.btn:hover {
    background: #E83F34;
}

/* CREDIT */
.credit {
    margin-top: 40px;
    font-size: 14px;
    color: #777;
}

.credit a {
    color: #005FAD;
    text-decoration: none;
    font-weight: 500;
}

.credit a:hover {
    color: #E83F34;
}

/* ANIMATIONS */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes counterRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .rotate-ring {
        width: 150px;
        height: 150px;
    }

    .inner-circle {
        width: 90px;
        height: 90px;
        font-size: 14px;
    }

    .title {
        font-size: 24px;
    }
}/* End custom CSS */