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

body{
    background:#f5f7fb;
    color:#222;
    line-height:1.6;
}

/* HERO */

.hero{
    background:linear-gradient(135deg,#2563eb,#0ea5e9);
    color:white;
    text-align:center;
    padding:120px 20px;
}

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

.hero p{
    font-size:22px;
    opacity:.95;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    background:white;
    color:#2563eb;
    text-decoration:none;
    padding:16px 40px;
    border-radius:50px;
    font-size:20px;
    font-weight:bold;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.btn:hover{
    transform:translateY(-5px);
}

/* NAVBAR */

nav{
    background:white;
    position:sticky;
    top:0;
    display:flex;
    justify-content:center;
    gap:35px;
    padding:18px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    z-index:100;
}

nav a{
    color:#222;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#2563eb;
}

/* SECTION */

section{
    max-width:1100px;
    margin:auto;
    padding:80px 20px;
}

section h2{
    font-size:42px;
    margin-bottom:30px;
}

/* CARD */

.card{
    display:block;
    background:white;
    text-decoration:none;
    color:#222;
    padding:35px;
    border-radius:25px;
    margin:25px 0;
    transition:.3s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(37,99,235,.18);
}

.card h3{
    color:#2563eb;
    font-size:32px;
    margin-bottom:12px;
}

.card p{
    font-size:18px;
    color:#666;
}

/* LIST */

ul{
    padding-left:25px;
}

li{
    margin:12px 0;
}

/* FOOTER */

footer{
    background:#111827;
    color:white;
    text-align:center;
    padding:35px;
    margin-top:60px;
}

/* MOBILE */

@media(max-width:768px){

.hero{
padding:90px 20px;
}

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

.hero p{
font-size:18px;
}

nav{
gap:18px;
}

nav a{
font-size:15px;
}

section h2{
font-size:34px;
}

.card h3{
font-size:26px;
}

}
.logo{
    width:180px;
    height:auto;
    margin-bottom:25px;
    border-radius:20px;
    filter:drop-shadow(0 10px 25px rgba(0,0,0,.25));
}
/* Founder Section */

#founder{
    text-align:center;
    background:#ffffff;
    padding:80px 20px;
}

.founder-img{
    width:320px;
    max-width:90%;
    border-radius:20px;
    margin:25px 0;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
    transition:0.3s;
}

.founder-img:hover{
    transform:scale(1.05);
}

#founder h2{
    color:#2563eb;
    font-size:42px;
    margin-bottom:20px;
}

#founder h3{
    margin-top:15px;
    font-size:30px;
    color:#222;
}

#founder strong{
    color:#555;
}
#founder blockquote{
    font-size:32px;
    font-weight:700;
    font-style:italic;
    color:#1d4ed8;
    background:#eef6ff;
    border-left:6px solid #2563eb;
    padding:25px;
    margin:40px auto;
    max-width:750px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(37,99,235,0.15);
    line-height:1.6;
    text-align:center;
}

#founder p{
    max-width:800px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    color:#444;
}
