/* ==========================================
   YEVUS AI Academy
   style.css
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:Arial, Helvetica, sans-serif;
    line-height:1.7;
    background:#f7f9fc;
    color:#333;

}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/* ================= HEADER ================= */

header{

    background:#5B21B6;
    color:white;
    position:sticky;
    top:0;
    z-index:999;

}

header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;

}

.logo h2{

    font-size:28px;

}

.logo p{

    font-size:13px;
    color:#E9D5FF;

}

nav a{

    color:white;
    text-decoration:none;
    margin-left:25px;
    font-weight:bold;

}

nav a:hover{

    color:#ffd54f;

}

/* ================= HERO ================= */

.hero{

    background:linear-gradient(rgba(91,33,182,.82),rgba(76,29,149,.88)),
    url("images/ai-banner.jpg");

    background-size:cover;
    background-position:center;

    color:white;

    text-align:center;

    padding:120px 20px;

}

.hero h1{

    font-size:52px;
    margin-bottom:20px;

}

.hero h3{

    margin-bottom:20px;

    font-size:28px;

}

.hero p{

    font-size:22px;

    margin-bottom:15px;

}

.btn{

    display:inline-block;

    margin-top:30px;

    padding:15px 40px;

    background:#ff9800;

    color:white;

    text-decoration:none;

    border-radius:6px;

    font-size:20px;

    transition:.3s;

}

.btn:hover{

    background:#f57c00;

}

/* ================= SECTIONS ================= */

section{

    padding:70px 0;

}

section h2{

    text-align:center;

    color:#5B21B6;

    margin-bottom:40px;

    font-size:36px;

}

/* ================= ABOUT ================= */

#about p{

    max-width:900px;

    margin:20px auto;

    text-align:center;

    font-size:18px;

}

/* ================= CARDS ================= */

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

}

.card{

    background:white;

    padding:30px;

    border-radius:10px;

    box-shadow:0 4px 15px rgba(0,0,0,.08);

    transition:.3s;

}

.card:hover{

    transform:translateY(-6px);

}

.card h3{

    color:#5B21B6;

    margin-bottom:15px;

}

.card ul{

    margin-left:20px;

}

.card li{

    margin-bottom:8px;

}

/* ================= PROGRAM ================= */

#program{

    background:white;

}

#program ul{

    max-width:700px;

    margin:auto;

}

#program li{

    margin:15px 0;

    font-size:18px;

}

/* ================= FORM ================= */

form{

    max-width:700px;

    margin:auto;

    background:white;

    padding:35px;

    border-radius:10px;

    box-shadow:0 4px 15px rgba(0,0,0,.1);

}

form input,
form select{

    width:100%;

    padding:15px;

    margin-bottom:18px;

    border:1px solid #ccc;

    border-radius:5px;

    font-size:16px;

}

form button{

    width:100%;

    padding:15px;

    background:#6D28D9;

    color:white;

    border:none;

    border-radius:5px;

    font-size:18px;

    cursor:pointer;

}

form button:hover{

    background:#5B21B6;

}

/* ================= FAQ ================= */

#faq h3{

    margin-top:25px;

    color:#003366;

}

#faq p{

    margin-top:8px;

}

/* ================= CONTACT ================= */

#contact{

    background:white;

    text-align:center;

}

#contact p{

    margin:12px 0;

    font-size:18px;

}

/* ================= FOOTER ================= */

footer{

    background:#4C1D95;

    color:white;

    text-align:center;

    padding:30px 10px;

}

footer p{

    margin:8px 0;

}

/* ================= MOBILE ================= */

@media(max-width:768px){

header .container{

    flex-direction:column;

}

nav{

    margin-top:20px;

}

nav a{

    display:block;

    margin:10px 0;

}

.hero{

    padding:80px 20px;

}

.hero h1{

    font-size:36px;

}

.hero h3{

    font-size:22px;

}

.hero p{

    font-size:18px;

}

section h2{

    font-size:28px;

}

}