/* Rotating Text Styles */
.hero-title h2 {
    display: inline-block;
}

.rotating-text {
    display: inline-block;
    margin-left: 8px;
    color: #FF4500;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.rotating-text.fade {
    opacity: 0;
}

/* About page specific rotating text */
.count-bottom h4 .rotating-text {
    display: inline-block;
    margin-left: 4px;
    margin-right: 4px;
    color: #FF4500 !important;
    font-weight: 600;
    opacity: 1;
    transition: all 0.3s ease;
    position: relative;
}

.count-bottom h4 .rotating-text.fade {
    opacity: 0;
}

.count-bottom h4 {
    font-size: 24px;
    line-height: 1.5;
    margin-top: 40px;
    text-align: center;
}

/* Override any other styles that might affect the color */
#role-text, #purpose-text {
    color: #FF4500 !important;
}

/* Animation styles */
.fade {
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .word-rotate {
        min-width: 160px;
    }
} 