.courses-hero{
    padding:40px 0;
    background:#f8fbff;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-subtitle{
    display:block;
    color:var(--gold);
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:15px;
}

.hero-content h1{
    font-size:3.5rem;
    line-height:1.15;
    color:var(--primary-blue);
    margin-bottom:25px;
    max-width:650px;
}

.hero-content p{
    font-size:1.15rem;
    line-height:1.9;
    color:#555;
    max-width:550px;
}

.hero-image img{
    width:100%;
    height:380px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

@media(max-width:992px){

    .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-content h1{
        font-size:3rem;
        max-width:100%;
    }

    .hero-content p{
        max-width:100%;
    }

    .hero-image img{
        height:350px;
    }
}

.academic-section{
    padding:100px 0;
}

.academic-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.academic-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
    transition:0.3s;
}

.academic-card{
    height:100%;
    display:flex;
    flex-direction:column;
}

.academic-card:hover{
    transform:translateY(-8px);
}

.academic-icon{
    font-size:3rem;
    color:var(--primary-blue);
    margin-bottom:20px;
}

.academic-card h3{
    color:var(--primary-blue);
    margin-bottom:10px;
}

.grades{
    color:#777;
    font-weight:600;
    margin-bottom:20px;
}

.academic-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.academic-card li{
    margin-bottom:10px;
    color:#555;
}

.academic-card li i{
    color:#28a745;
    margin-right:8px;
}

@media(max-width:992px){

    .academic-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .academic-grid{
        grid-template-columns:1fr;
    }

}

.curriculum-section{
    padding:80px 0;
    background:#f8fbff;
}

.curriculum-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.curriculum-card{
    background:white;
    border-radius:16px;
    padding:35px 20px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    transition:.3s;
}

.curriculum-card:hover{
    transform:translateY(-6px);
}

.curriculum-card i{
    font-size:2.5rem;
    color:var(--primary-blue);
    margin-bottom:15px;
}

.curriculum-card h4{
    margin:0;
    color:var(--primary-blue);
}

.curriculum-note{
    text-align:center;
    max-width:700px;
    margin:40px auto 0;
    color:#666;
}

@media(max-width:992px){

    .curriculum-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .curriculum-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

.skills-section{
    padding:100px 0;
}

.skills-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    width:100%;
}

.skill-card{
    background:white;
    border-radius:18px;
    padding:20px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    transition:.3s;
    min-width:0;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.skill-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.skill-icon{
    font-size:2.8rem;
    color:var(--primary-blue);
    margin-bottom:20px;
}

.skill-card h4{
    color:var(--primary-blue);
    margin-bottom:15px;
}

.skill-card p{
    color:#666;
    font-size:0.95rem;
    line-height:1.7;
}

@media(max-width:992px){

    .skills-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .skills-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

.international-section{
    padding:100px 0;
    background:#f8fbff;
}

.international-card{
    background:white;
    border-radius:24px;
    padding:60px;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
    align-items:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.international-content h2{
    color:var(--primary-blue);
    margin:15px 0 20px;
}

.international-content p{
    color:#666;
    line-height:1.9;
}

.international-content ul{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.international-content li{
    margin-bottom:15px;
}

.international-content li i{
    color:#28a745;
    margin-right:10px;
}

.international-image{
    text-align:center;
}

.international-image i{
    font-size:10rem;
    color:var(--primary-blue);
    opacity:.15;
}

@media(max-width:992px){

    .international-card{
        grid-template-columns:1fr;
        text-align:center;
    }

    .international-content ul{
        text-align:left;
    }

}

.international-image img{
    width:100%;
    max-width:350px;
    border-radius:16px;
    opacity:1;
}

.international-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.international-image img{
    width:100%;
    max-width:350px;
    border-radius:20px;
    object-fit:cover;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

@media (max-width:768px){

    .courses-hero{
        padding:20px 0;
    }

    .hero-grid{
        grid-template-columns:1fr;
        gap:20px;
        text-align:center;
    }

    .hero-subtitle{
        margin-bottom:10px;
        font-size:0.85rem;
    }

    .hero-content h1{
        font-size:2rem;
        line-height:1.1;
        margin-bottom:12px;
        max-width:100%;
    }

    .hero-content p{
        font-size:0.95rem;
        line-height:1.6;
        max-width:100%;
        margin-bottom:0;
    }

    .hero-image img{
        height:200px;
        width:100%;
        object-fit:cover;
    }

}