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 {
    @apply bg-[#0A2940] text-[#D4A536] scale-105;
}

.btn-white-outline {
    @apply border border-white text-white px-8 py-3 rounded-full font-semibold transition-all duration-300 flex items-center justify-center;
}

.btn-white-outline:hover {
    @apply bg-white text-[#D4A536] scale-105;
}

.btn-primary-small {
    @apply bg-[#0A2940] text-white px-5 py-2 rounded-full text-sm font-medium transition-all duration-300 hover:bg-[#D4A536] hover:text-[#0A2940] hover:scale-105;
}



@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-pop-in {
    animation: popIn 0.6s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.delay-600 {
    animation-delay: 0.6s;
}

.delay-700 {
    animation-delay: 0.7s;
}

.delay-800 {
    animation-delay: 0.8s;
}

.delay-1000 {
    animation-delay: 1s;
}

.delay-1200 {
    animation-delay: 1.2s;
}

.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-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 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-link {
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
    color: #D4A536;
    transform: translateX(5px);
}

.bootcamp-card {
    @apply bg-white p-8 rounded-2xl shadow-lg border border-gray-100 transform transition-transform duration-300 hover:scale-105 hover:shadow-xl;
}

.bootcamp-card:hover {
    z-index: 10;
    box-shadow: 0 12px 40px 0 rgba(212, 165, 54, 0.18), 0 2px 8px 0 rgba(10, 41, 64, 0.10);
    transform: scale(1.08) translateY(-8px);
}

.reason-card {
    @apply bg-white p-6 rounded-xl shadow-md text-center flex flex-col items-center;
}

.reason-card i {
    @apply text-4xl text-[#0A2940] mb-4;
}

.reason-card h5 {
    @apply text-lg font-semibold text-[#0A2940] mb-2;
}

.reason-card p {
    @apply text-sm text-gray-700;
}

/* 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);
}

.btn-primary-kategori {
    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-kategori:hover {
    transform: scale(1.05);
}