body {
    background-color: #f8f9fa;
}
/* Parent container to ensure cards are aligned and evenly spaced */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between cards */
    justify-content: center;
}

/* Program Cards */
.program-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Icons for Cards */
.program-card i {
    font-size: 3rem; /* Adjust size of the icon */
    color: #0056b3;
    margin-bottom: 15px;
}

/* Title and Description */
.program-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 10px;
}

.program-card p {
    font-size: 1rem;
    color: #555;
    margin: 0 auto 10px auto;
}

/* Hover Effect */
.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .program-card {
        max-width: 100%; /* Full-width cards on smaller screens */
        height: auto; /* Flexible height */
    }

    .program-card i {
        font-size: 2.5rem; /* Smaller icons for smaller screens */
    }
}



/* Modal Styles */
.modal-content {
    border-radius: 10px;
    overflow: hidden;
}
.modal-header {
    background-color: #0056b3;
    color: white;
}
.modal-body ul {
    list-style-type: disc;
    margin-left: 20px;
}
