/* -------------------------------------------------
   DEGREE PROGRAMME SECTION (2026 UPDATE)
---------------------------------------------------*/
.degree-section {
    margin-top: 40px;
}

.degree-title {
    text-align: center;
    font-size: 30px;
    color: #800000; /* Maroon Primary */
    font-weight: 700;
    margin-bottom: 25px;
}

/* Each degree block */
.degree-item {
    background: #ffffff; /* White Background */
    border-left: 4px solid #D4AF37; /* Soft Gold Accent */
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(128, 0, 0, 0.1); /* Subtle Maroon Shadow */
    transition: transform 0.2s ease;
}

.degree-item:hover {
    transform: translateX(5px);
    border-left-color: #800000; /* Maroon on hover */
}

.degree-name {
    font-size: 20px;
    color: #800000; /* Maroon Primary */
    margin-bottom: 8px;
    font-weight: 600;
}

.degree-duration {
    font-size: 16px;
    color: #333;
    margin: 0;
    padding-left: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .degree-title {
        font-size: 24px;
    }
    .degree-name {
        font-size: 18px;
    }
    .degree-duration {
        font-size: 15px;
    }
}
