.section-heading {
    font-size: 2.3rem;
    font-weight: 800;
    color: #0A2940;
    margin-bottom: 0.7rem;
    letter-spacing: -0.5px;
}

.section-subheading {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.team-group-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #D4A536;
    margin-bottom: 0.7rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.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);
}

.team-members-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem 2rem;
    margin-top: 2.5rem;
}

.team-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px 0 rgba(10, 41, 64, 0.10);
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-width: 210px;
    max-width: 300px;
    transition: box-shadow 0.3s cubic-bezier(.4, 0, .2, 1), transform 0.3s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    box-shadow: 0 8px 32px 0 rgba(10, 41, 64, 0.18);
    transform: translateY(-6px) scale(1.04);
}

.team-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.1rem;
    border: 3px solid #D4A536;
    box-shadow: 0 2px 8px 0 rgba(212, 165, 54, 0.10);
}

.team-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0A2940;
    margin-bottom: 0.2rem;
}

.team-card p {
    margin-bottom: 0.3rem;
}

.team-card .nim-info {
    font-size: 0.8rem;
    color: #b3a369;
    margin-bottom: 0.5rem;
}

.team-card .portfolio-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 41, 64, 0.9);
    color: white;
    padding: 0.4rem 0;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 0%;
}

.team-card:hover .portfolio-btn {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}


body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.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);
}

@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;
}

.bootcamp-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 4px 24px 0 rgba(10, 41, 64, 0.08);
    border: 1px solid #f3f3f3;
    transition: transform 0.3s cubic-bezier(.4, 0, .2, 1), box-shadow 0.3s cubic-bezier(.4, 0, .2, 1);
}

.bootcamp-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px 0 rgba(10, 41, 64, 0.13);
}

.reason-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 12px 0 rgba(10, 41, 64, 0.07);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reason-card i {
    font-size: 2.25rem;
    color: #0A2940;
    margin-bottom: 1rem;
}

.reason-card h5 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0A2940;
    margin-bottom: 0.5rem;
}

.reason-card p {
    font-size: 0.95rem;
    color: #555;
}

.reason-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 12px 0 rgba(10, 41, 64, 0.07);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reason-card i {
    font-size: 2.25rem;
    color: #0A2940;
    margin-bottom: 1rem;
}

.reason-card h5 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0A2940;
    margin-bottom: 0.5rem;
}

.reason-card p {
    font-size: 0.95rem;
    color: #555;
}