.rw-words {
    text-align: center;
}

.rotating-text {
    font-family: "Protest Strike", sans-serif;
    white-space: nowrap; /* Prevent text from wrapping */
}

#rotatingWord {
    display: inline-block;
    color: #fd9900;
    animation: rotateWords 10s linear infinite; /* Adjust duration and timing function as needed */
    /* You can also use other animations like slide-in/slide-out */
}

@keyframes rotateWords {
    0% { content: 'Growing'; }
    25% { content: 'building'; }
    50% { content: 'innovating'; }
    75% { content: 'expanding'; }
    100% { content: 'Growing'; } /* Back to the first word */
}

.pricing-card {
    background: linear-gradient(135deg, #49366B 0%, #fd9900 100%);
    transition: transform 0.3s ease;
    border: none;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.price-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

.btn-custom {
    background: rgba(255, 255, 255, 0.9);
    color: #49366B;
    border: none;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: #fff;
    transform: scale(1.05);
    color: #49366B;
}

#monthly {
    border-bottom-right-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

#terms {
    padding-top: 9.5rem;
}

/* Language dropdown styling */
.dropdown-item.active {
    background-color: #49366B;
    color: white;
}

.dropdown-item:hover {
    background-color: rgba(73, 54, 107, 0.1);
}

.nav-link.dropdown-toggle .bi-globe {
    color: #fd9900;
}
