.program-heading {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #dee2e6;
    color: #cf2027 !important; /* Your requested color */
    font-weight: 600;
}

.course-item {
    padding: 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    margin-bottom: 5px;
}

.course-item:hover {
 
    color: #cf2027 !important;
    
}

.program-title {
    font-weight: 500;
    color: #333;
    font-size: 16px;
}
.program-title:hover {
    color: #cf2027 !important;
    text-decoration: underline;
}

/* Arrow color: yellow by default, #cf2027 on hover */
.program-icon {
    margin-left: 8px;
    font-size: 18px;
    color: #FFD700; /* Yellow color */
    transition: all 0.3s ease; /* Changed from transform to all */
}



/* Modal styles */
.modal-content {
    border-radius: 12px;
    border: none;
}

.modal-header {
    border-bottom: 2px solid #f0f0f0;
    padding: 20px 25px;
}

.custom-close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.custom-close:hover {
    background-color: #f8f9fa;
    color: #cf2027; /* Changed to your color */
}

.modal-body {
    padding: 25px;
}

.fee-row {
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Test indicator - optional, you can remove if not needed */
.test-indicator {
    font-size: 12px;
    color: #666;
    margin-left: 10px;
    font-style: italic;
}

/* PhD specific styles */
.phd-note {
    display: none;
    background-color: #fff3cd;
    padding: 10px 15px;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
    margin-top: 15px;
}

.modal-content.phd-active .phd-note {
    display: block !important;
}

.modal-content.phd-active #modalMainFee::before {
    content: "Minimum ";
    font-weight: 600;
    margin-right: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fee-row {
        gap: 15px !important;
    }
    
    .modal-body {
        padding: 20px 15px;
    }
    
    .program-title {
        font-size: 15px;
    }
}

/* Additional styling for better visual hierarchy */
.program-block {
    margin-bottom: 30px;
}

.program-heading::before {
    content: "▸ ";
    color: #cf2027;
    font-weight: bold;
    margin-right: 8px;
}