body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.btn-primary-alt {
    @apply bg-[#D4A536] text-[#0A2940] px-8 py-3 rounded-full font-semibold transition-all duration-300 shadow-lg flex items-center justify-center;
}

.btn-primary-alt:hover {
    background-color: #D4A536 !important;
    color: #0A2940 !important;
    transform: scale(1.05);
    box-shadow: 0 8px 32px 0 rgba(212, 165, 54, 0.15), 0 1.5px 4px 0 rgba(10, 41, 64, 0.08);
}

.btn-primary-alt:active,
.btn-primary-alt:focus {
    @apply bg-[#D4A536] text-[#0A2940] scale-105;
}

.btn-primary-alt:active,
.btn-primary-alt:focus {
    background-color: #D4A536 !important;
    color: #0A2940 !important;
    box-shadow: 0 8px 32px 0 rgba(212, 165, 54, 0.15), 0 1.5px 4px 0 rgba(10, 41, 64, 0.08);
    border-color: transparent;
}

.btn-secondary-light {
    @apply bg-white text-[#0A2940] px-8 py-3 rounded-full font-semibold border border-[#0A2940] transition-all duration-300 shadow-lg flex items-center justify-center;
}

.btn-secondary-light:hover {
    @apply bg-[#0A2940] text-white scale-105;
    /* Added scale for animation */
}

/* Hero blob animation - kept for background visual */
@keyframes blobSlow {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

.animate-blob-slow {
    animation: blobSlow 12s infinite alternate;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

/* Animation classes for JavaScript (initial hidden state) */
.js-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.js-animate-pop {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.js-animate-pop-visible {
    opacity: 1;
    transform: scale(1);
}

/* Navbar specific styles and animations */
.navbar-link {
    position: relative;
    display: inline-block;
    padding: 8px 0;
    overflow: hidden;
}

.navbar-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #D4A536;
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
}

.navbar-link:hover::after,
.navbar-link.active::after {
    transform: translateX(0);
}

/* Mobile menu link hover animation */
#mobile-menu a {
    position: relative;
    transition: color 0.2s ease;
}

#mobile-menu a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #D4A536;
    transition: all 0.3s ease-out;
    transform: translateX(-50%);
}

#mobile-menu a:hover::after {
    width: 70%;
}

/* Footer specific styles */
.footer-link {
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
    color: #D4A536;
    transform: translateX(5px);
}

/* Custom button styles */
.btn-primary-alt {
    background: #D4A536;
    color: #0A2940;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 4px 24px 0 rgba(212, 165, 54, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-alt:hover {
    background: #0A2940;
    color: #D4A536;
    transform: scale(1.05);
}

.btn-white-outline {
    border: 1.5px solid #fff;
    color: #fff;
    background: transparent;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-white-outline:hover {
    background: #fff;
    color: #D4A536;
    transform: scale(1.05);
}

.btn-primary-small {
    background: #0A2940;
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
}

.btn-primary-small:hover {
    background: #D4A536;
    color: #0A2940;
    transform: scale(1.05);
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.testimonial-carousel-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
}

/* Timeline responsive tweaks */
@media (max-width: 1023px) {
    #home-shortcuts .flex-col.lg\:flex-row {
        flex-direction: column !important;
    }

    #home-shortcuts .hidden.lg\:block,
    #home-shortcuts .hidden.lg\:flex {
        display: none !important;
    }
}