.rot-circle {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
}

/* Rotating globe background */
.rot-circle::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../image/globimag2.png") no-repeat center/cover;
    border-radius: 50%;
    animation: rot-rotateCircle 60s linear infinite;
    transform-origin: 50% 50%; /* Center axis */
    z-index: 0;
}

@keyframes rot-rotateCircle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Middle band gap */
.rot-circle::before {
    content: "";
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    height: 20%;
    /* background: #ffffff; */
    z-index: 2;
}

/* Slider band */
.rot-slider-band {
    position: absolute;
    top: 50%;
    left: 51%;
    transform: translate(-50%, -50%);
    width: 152%;
    height: 20%;
    z-index: 3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
}

.rot-slider {
    display: flex;
    transition: transform 0.6s ease;
    width: max-content;
}

.rot-slider img {
    flex: 0 0 100%;
    width: 560px;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

/* Arrows */
.rot-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: white;
    color: #ff7a00;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    user-select: none;
    z-index: 5;
}

.rot-arrow.rot-left {
    left: -55px;
}
.rot-arrow.rot-right {
    right: -55px;
}

.rot-arrow:hover {
    background: #ff7a00;
    color: white;
}

@media (max-width: 500px) {
    .rot-circle {
        width: 220px;
        height: 220px;
    }
    .rot-slider-band {
        width: 145%;
        height: 20%;
        top: 50%;
    }
    .rot-arrow {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
    .rot-arrow.rot-left {
        left: -40px;
    }
    .rot-arrow.rot-right {
        right: -40px;
    }
}

.ql-align-center {
    text-align: center;
}

.ql-align-right {
    text-align: right;
}

.ql-align-justify {
    text-align: justify;
}

.ql-align-left {
    text-align: left; /* usually default */
}

.quill-box {
    height: 180px;
}

.ql-editor {
    padding: 8px !important;
    line-height: 1.4 !important;
}

.ql-editor p {
    margin: 0 0 6px 0;
}

.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4 {
    margin: 0 0 8px 0;
}
