/* ======================================================================= */
:root {
    --navy: #001f3f;
    --warning-yellow: #ffc107;
    --dark-navy: #00152b;
    --light-bg: #f8f9fa;
}
/* Program Studi Cards */
        .prodi-section {
            padding: 80px 0;
        }

        .section-title {
            color: var(--navy);
            font-weight: 700;
            position: relative;
            margin-bottom: 20px;
            text-align: center;
        }

        .prodi-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            height: 350px;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .prodi-card .card-img-overlay {
            background: linear-gradient(to top, rgba(0, 31, 63, 0.9) 20%, rgba(0, 31, 63, 0.2));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            transition: all 0.3s ease;
        }

        .prodi-card:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 30px rgba(0, 31, 63, 0.3);
        }

        .prodi-card:hover .card-img-overlay {
            background: linear-gradient(to top, rgba(0, 31, 63, 1) 40%, rgba(0, 31, 63, 0.3));
        }

        .prodi-name {
            color: var(--warning-yellow);
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 5px;
        }

        .prodi-type {
            color: #fff;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .prodi-btn {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .prodi-card:hover .prodi-btn {
            opacity: 1;
            transform: translateY(0);
        }

/* ===================================================================== */

/* Step Number Circle */
    .step-circle {
        width: 70px;
        height: 70px;
        background-color: #f0f9ff;
        border: 3px solid #dc3545;
        border-radius: 50%;
        color: #001f3f;
        transition: all 0.3s ease;
    }
    
    .step-circle:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
        background-color: #dc3545;
    }
    
    .step-circle:hover span {
        color: #001f3f;
    }
    
    @media (max-width: 767px) {
        .step-circle {
            width: 60px;
            height: 60px;
        }
    }
    
    /* Connector lines for desktop */
    @media (min-width: 768px) {
        .row > .col-md-3:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 35px;
            right: -20px;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #dc3545, rgba(220, 53, 69, 0.3));
            border-radius: 2px;
        }
        
        .row > .col-md-3 {
            position: relative;
        }
    }

/* =============================================================================================== */

/* === Scholarship Card Base === */
.scholarship-card {
    background-color: #fff;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* === Hover Effect: Red Danger === */
.scholarship-card:hover {
    border-color: #dc3545;
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.15);
    transform: translateY(-5px);
}

/* === Responsive Adjustments === */
@media (max-width: 767px) {
    .scholarship-card {
        padding: 1.25rem;
    }
}

/* === Fade In Animation === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scholarship-card {
    animation: fadeInUp 0.4s ease forwards;
    opacity: 0;
}

.scholarship-card:nth-child(1) { animation-delay: 0.1s; opacity: 1; }
.scholarship-card:nth-child(2) { animation-delay: 0.2s; opacity: 1; }
.scholarship-card:nth-child(3) { animation-delay: 0.3s; opacity: 1; }
.scholarship-card:nth-child(4) { animation-delay: 0.4s; opacity: 1; }


/* ============================================================================ */


/* === Pathway Card Base === */
.pathway-card {
    background-color: #fff;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* === Hover Effect: Red Danger === */
.pathway-card:hover {
    border-color: #dc3545;
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.15);
    transform: translateY(-5px);
}

/* === Pathway Badge === */
.pathway-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === Pathway List === */
.pathway-list li {
    position: relative;
    padding-left: 0;
    line-height: 1.6;
}

/* === Responsive Adjustments === */
@media (max-width: 767px) {
    .pathway-card {
        padding: 1.25rem;
    }
    
    .pathway-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
}

/* === Fade In Animation === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pathway-card {
    animation: fadeInUp 0.4s ease forwards;
    opacity: 0;
}

.pathway-card:nth-child(1) { animation-delay: 0.1s; opacity: 1; }
.pathway-card:nth-child(2) { animation-delay: 0.2s; opacity: 1; }
.pathway-card:nth-child(3) { animation-delay: 0.3s; opacity: 1; }
.pathway-card:nth-child(4) { animation-delay: 0.4s; opacity: 1; }
.pathway-card:nth-child(5) { animation-delay: 0.5s; opacity: 1; }
.pathway-card:nth-child(6) { animation-delay: 0.6s; opacity: 1; }


/* ==================================================== */

/* === Registration Banner Base === */
.registration-banner {
    background: linear-gradient(135deg, #001f3f 0%, #0a4b8c 100%);
    position: relative;
    overflow: hidden;
}

/* === Decorative Elements (Optional) === */
.registration-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.registration-banner::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.registration-banner > * {
    position: relative;
    z-index: 1;
}

/* === Info Item Icons === */
.info-item i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.info-item span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* === Register Button === */
.btn-register {
    background-color: #fff;
    color: #001f3f !important;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-register:hover {
    background-color: #f8f9fa;
    color: #0a58ca !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn-register:active {
    transform: translateY(-1px);
}

/* === Responsive Adjustments === */
@media (max-width: 767px) {
    .registration-banner {
        text-align: center;
    }
    
    .info-item {
        justify-content: center;
    }
    
    .col-lg-4 {
        text-align: center !important;
    }
}

/* === Fade In Animation === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.registration-banner {
    animation: fadeInUp 0.5s ease forwards;
}