/* ===============================
FILE: assets/css/style.css
=============================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'DM Sans',sans-serif;
    color:#111;
    background:#fff;
    line-height:1.6;
}

/* NAVBAR */
.navbar{
    background:#0D1B3E;
    padding:16px 6%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.nav-logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo-box{
    width:42px;
    height:42px;
    border-radius:10px;
    background:#1A56C4;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
}

.logo-text span{
    color:#fff;
    font-family:'Syne',sans-serif;
    font-size:22px;
    font-weight:800;
}

.logo-text span b{
    color:#F5A623;
}

.logo-text small{
    color:#bbb;
    font-size:10px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:24px;
}

.nav-links a{
    color:#ddd;
    text-decoration:none;
    font-weight:500;
}

.nav-links a.active,
.nav-links a:hover{
    color:#fff;
}

.nav-btn{
    background:#F5A623;
    color:#000;
    padding:10px 18px;
    border-radius:30px;
    text-decoration:none;
    font-weight:700;
}

/* HERO */
.hero{
    padding:100px 6%;
    background:linear-gradient(135deg,#0D1B3E,#1A56C4);
    color:#fff;
    text-align:center;
}

.hero h1{
    font-size:52px;
    font-family:'Syne',sans-serif;
    font-weight:800;
    margin-bottom:18px;
}

.hero h1 span{
    color:#F5A623;
}

.hero p{
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
    color:#e0e0e0;
}

.hero-badge{
    display:inline-block;
    margin-bottom:20px;
    background:#ffffff20;
    padding:8px 18px;
    border-radius:30px;
}

/* BUTTONS */
.btn-primary,
.btn-outline{
    display:inline-block;
    padding:14px 26px;
    border-radius:30px;
    text-decoration:none;
    font-weight:700;
    margin:8px;
}

.btn-primary{
    background:#F5A623;
    color:#000;
}

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

/* PAGE BANNER */
.page-banner{
    padding:80px 6%;
    background:#f7f9fc;
    text-align:center;
}

.page-banner h1{
    margin-bottom:12px;
    font-family:'Plus Jakarta Sans', sans-serif;
     font-size: clamp(2.2rem, 5vw, 3.6rem);
     font-weight: 800;
}

/* GRID */
.features,
.feature-grid,
.course-grid{
    padding:70px 6%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.feature-card,
.course-card{
    background:#fff;
    border:1px solid #eee;
    padding:28px;
    border-radius:18px;
    box-shadow:0 10px 20px rgba(0,0,0,0.04);
}

.feature-card h3,
.course-card h3{
    margin-bottom:12px;
}

/* CONTACT */
.contact-section{
    padding:70px 6%;
    display:flex;
    justify-content:center;
}

.contact-box{
    width:100%;
    max-width:700px;
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.contact-box h2{
    margin-bottom:20px;
}

.contact-box input,
.contact-box select,
.contact-box textarea{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
}

/* CTA */
.cta{
    padding:80px 6%;
    text-align:center;
    background:#0D1B3E;
    color:#fff;
}

.cta h2{
    font-size:38px;
    margin-bottom:14px;
    font-family:'Syne',sans-serif;
}

.cta p{
    margin-bottom:25px;
    color:#ddd;
}

/* FOOTER */
.footer{
    background:#081126;
    color:#fff;
    padding:60px 6% 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    margin-bottom:30px;
}

.footer-col h3,
.footer-col h4{
    margin-bottom:14px;
}

.footer-col a{
    display:block;
    color:#ccc;
    text-decoration:none;
    margin-bottom:8px;
}

.footer-bottom{
    border-top:1px solid #ffffff15;
    padding-top:18px;
    text-align:center;
    color:#bbb;
}

/* FLASH */
.flash-msg{
    background:#16a34a;
    color:#fff;
    padding:14px;
    text-align:center;
}

/* MOBILE */
@media(max-width:768px){

.navbar{
    flex-direction:column;
    gap:18px;
}

.nav-links{
    flex-wrap:wrap;
    justify-content:center;
}

.hero h1{
    font-size:36px;
}

.page-banner h1,
.cta h2{
    font-size:30px;
}

}