/*=====================================
PROGRAMS
=====================================*/

.programs{

    background:#f8fbff;
    position:relative;
    overflow:hidden;

}

.program-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

/*=====================================
CARD
=====================================*/

.program-card{

    background:#fff;

    border-radius:28px;

    padding:40px;

    position:relative;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 20px 40px rgba(0,0,0,.08);

    border:1px solid rgba(10,61,145,.06);

}

.program-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(90deg,#0A3D91,#4F8BFF);

}

.program-card:hover{

    transform:translateY(-15px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

/*=====================================
FEATURED
=====================================*/

.featured{

    background:linear-gradient(135deg,#0A3D91,#2563EB);

    color:#fff;

}

.featured p,
.featured li{

    color:#f5f5f5;

}

.featured .program-icon{

    background:rgba(255,255,255,.15);

}

.featured .program-icon i{

    color:#fff;

}

/*=====================================
ICON
=====================================*/

.program-icon{

    width:80px;
    height:80px;

    border-radius:22px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#eaf2ff;

    margin-bottom:25px;

}

.program-icon i{

    font-size:34px;

    color:#0A3D91;

}

/*=====================================
TEXT
=====================================*/

.program-card h3{

    font-size:28px;

    margin-bottom:18px;

}

.program-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

/*=====================================
LIST
=====================================*/

.program-card ul{

    list-style:none;

}

.program-card li{

    display:flex;

    align-items:center;

    gap:12px;

    padding:10px 0;

    color:#555;

}

.program-card li i{

    color:#0A3D91;

}

.featured li i{

    color:#FFD54F;

}

/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:1100px){

.program-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.program-grid{

    grid-template-columns:1fr;

}

.program-card{

    padding:30px;

}

.program-card h3{

    font-size:24px;

}

}


.featured {
    background: linear-gradient(135deg, #0A3D91, #2563EB);
    color: #fff;
}

.featured h3,
.featured p,
.featured li {
    color: inherit;
}