html {
    scroll-behavior: smooth;
}

.hero-overlay {
    background: linear-gradient(to right, rgba(46, 62, 75, 0.9), rgba(46, 62, 75, 0.7));
}

.text-brand-dark {
    color: #2E3E4B;
}

.bg-brand-dark {
    background-color: #2E3E4B;
}

.text-brand-green {
    color: #22C16B;
}

.bg-brand-green {
    background-color: #22C16B;
}

.hover\:bg-brand-green-dark:hover {
    background-color: #1eab5f;
}

.border-brand-green {
    border-color: #22C16B;
}

.focus\:ring-brand-green:focus {
    --tw-ring-color: #22C16B;
}

/* Ticker Animation - Seamless Loop */
@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.ticker-content {
    display: inline-flex;
    animation: ticker 60s linear infinite;
    font-size: 0.95rem;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 4rem;
    font-weight: 600;
}

/* Entrance Animations */
@keyframes reveal-up {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes reveal-left {
    0% {
        transform: translateX(-30px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes reveal-right {
    0% {
        transform: translateX(30px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    animation: reveal-up 0.8s forwards;
}

.reveal-left.active {
    animation: reveal-left 0.8s forwards;
}

.reveal-right.active {
    animation: reveal-right 0.8s forwards;
}

/* Stagger delays */
.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

.delay-400 {
    animation-delay: 400ms;
}

/* Dropdown styles moved to Tailwind utilities in header.php */