.graduate-program-section{
    max-width:1200px;
    margin:50px auto;
    padding:20px;
    font-family:'Segoe UI', Arial, sans-serif;
}

.graduate-header{
    text-align:center;
    margin-bottom:40px;
}

.graduate-header h2{
    color:#0056a6;
    font-size:34px;
    font-weight:700;
    margin-bottom:15px;
    text-transform:uppercase;
}

.title-line{
    width:100px;
    height:4px;
    background:linear-gradient(90deg,#0056a6,#00a3e0);
    margin:auto;
    border-radius:20px;
}

.graduate-card{
    background:#ffffff;
    border-left:6px solid #0056a6;
    padding:22px 28px;
    margin-bottom:20px;
    border-radius:0 10px 10px 0;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.graduate-card p{
    margin:0;
    font-size:17px;
    line-height:1.9;
    text-align:justify;
    color:#333;
}

.graduate-highlight{
    background:linear-gradient(135deg,#0056a6,#0077cc);
    color:#fff;
    padding:28px;
    border-radius:12px;
    margin:30px 0;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,86,166,0.25);
}

.graduate-highlight p{
    margin:0;
    font-size:20px;
    font-weight:600;
}

.topics-section{
    margin-top:40px;
}

.topics-section h3{
    text-align:center;
    color:#0056a6;
    margin-bottom:25px;
    font-size:28px;
}

.topics-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:18px;
}

.topic-box{
    background:#f5faff;
    border:1px solid #d7e8f8;
    border-left:5px solid #0056a6;
    padding:18px;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    color:#003b73;
    transition:all 0.3s ease;
}

.topic-box:hover{
    background:#0056a6;
    color:#fff;
    transform:translateY(-4px);
}

@media(max-width:768px){

    .graduate-header h2{
        font-size:26px;
    }

    .topics-section h3{
        font-size:22px;
    }

    .graduate-card{
        padding:18px;
    }
}