*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{
line-height:1.7;
color:#333;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#003366;
color:#fff;
padding:20px 0;
position:sticky;
top:0;
z-index:100;
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo span{
color:#FFD43B;
}

nav ul{
display:flex;
list-style:none;
}

nav ul li{
margin-left:25px;
}

nav a{
color:white;
text-decoration:none;
}

.btn-nav{
background:#FFD43B;
padding:10px 18px;
border-radius:30px;
color:#003366;
font-weight:bold;
}



.hero h1{
font-size:52px;
margin-bottom:20px;
}

.hero p{
font-size:20px;
max-width:700px;
margin:auto;
margin-bottom:30px;
}

.btn,
.btn-outline{
padding:14px 30px;
text-decoration:none;
margin:10px;
display:inline-block;
border-radius:40px;
}

.btn{
background:#FFD43B;
color:#003366;
}

.btn-outline{
border:2px solid white;
color:white;
}

section{
padding:80px 0;
}

.cards,
.course-grid,
.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}

.card,
.course,
.features div{
padding:30px;
background:#f5f7fa;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
transition:.3s;
}

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

.why{
background:#003366;
color:white;
}

footer{
background:#111;
color:white;
text-align:center;
padding:20px;
}

button{
padding:15px 30px;
background:#003366;
color:white;
border:none;
cursor:pointer;
border-radius:6px;
margin-top:20px;
}
/* WHY CHOOSE US */

.why {
    background: #0d3b73;
    padding: 70px 20px;
}

.why h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
    font-size: 40px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,.15);
    transition: all .3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0,0,0,.25);
}

.feature-card h3 {
    color: #0d3b73;
    margin-bottom: 15px;
    font-size: 22px;
}

.feature-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 16px;
}

.feature-card button {
    background: #0d3b73;
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    transition: .3s;
}

.feature-card button:hover {
    background: #1e5bb8;
}
.hero{

    background:#2E4E74;

    color:white;

     padding:120px 8% 70px;

}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    max-width:1300px;
    margin:auto;
}

.hero-text{

    flex:1;

}

.hero-text h1{
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom:20px;
}

.hero-text span{

    color:#FFC72C;

}

.hero-text p{
    max-width:600px;
    font-size:1.2rem;
    line-height:1.8;
    margin:25px 0;
}

.course-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px 40px;
    margin:30px 0;
}

.course-list div{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:1.05rem;
}

.course-list i{

    color:#FFC72C;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.hero-image{
    position:relative;
    display:inline-block;
}

.hero-image img{
    width:100%;
    max-width:650px;
    border-radius:20px;
    display:block;
}

.hero-image::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:20px;

    background:
        linear-gradient(to right,
        rgba(56,87,129,0.4),
        rgba(56,87,129,0));

    pointer-events:none;
}

.hero-image img{
    width:100%;
    max-width:650px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.35);
}
.stats{

    display:grid;

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

    padding:60px 8%;

    background:white;

    text-align:center;

}

.stat-box h2{

    color:#21456c;

    font-size:42px;

}

.stat-box p{

    margin-top:10px;

    color:#666;

}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:35px;
}