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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7fa;
    color: #333;
    line-height: 1.7;
}

nav {
    background: #0b5ed7;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: sticky;
    top: 0;
}

.logo a{
    display:flex;
    align-items:center;
    text-decoration:none;
    color:white;
}

.logo img{
    width:70px;
    height:70px;
    object-fit:contain;
    border-radius:50%;
    margin-right:15px;
    background:white;
    padding:4px;
}

.logo span{
    font-size:28px;
    font-weight:bold;
    letter-spacing:0.5px;
}

.hero-logo{
    width:180px;
    height:180px;
    object-fit:cover;
    border-radius:50%;
    background:white;
    padding:8px;
    margin-bottom:25px;
}

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

nav li {
    margin-left: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    background: #0b5ed7;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

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

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

.button {
    background: white;
    color: #0b5ed7;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

section {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

section h2 {
    color: #0b5ed7;
    margin-bottom: 20px;
}

section h3 {
    margin-top: 25px;
    margin-bottom: 10px;
}

section ul {
    margin-left: 25px;
    margin-top: 10px;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}

footer p {
    margin-bottom: 10px;
}

a {
    color: #0b5ed7;
}

/* ---------- Founder Section ---------- */

.founder-container{
    display:flex;
    align-items:flex-start;
    gap:35px;
    margin-top:25px;
    flex-wrap:wrap;
}

.founder-photo{
    width:220px;
    border-radius:15px;
    box-shadow:0 6px 18px rgba(0,0,0,.15);
}

.founder-text{
    flex:1;
    min-width:300px;
}

.founder-text blockquote{
    font-style:italic;
    border-left:5px solid #0b5ed7;
    padding-left:20px;
    margin-bottom:20px;
    color:#555;
}

.video-container{
    position:relative;
    width:100%;
    max-width:800px;
    aspect-ratio:16/9;
    margin-top:20px;
}

.video-container iframe{
    width:100%;
    height:100%;
    border:none;
    border-radius:12px;
}