* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f8fc;
    color: #222;
}


/* HEADER */

.header {
    background: #5b6167;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.logo {
    width: 300px;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
}

.header h1 {
    margin: 5px 0;
    font-size: 34px;
}

.header p {
    margin: 8px 0 0;
    font-size: 17px;
}


/* HERO */

.hero {
    text-align: center;
    padding: 60px 20px;
    background: white;
}

.hero h2 {
    color: #0a4d8c;
    font-size: 32px;
    margin-bottom: 15px;
}

.hero p {
    max-width: 650px;
    margin: auto;
    line-height: 1.6;
    font-size: 17px;
}


/* BUTTON */

.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 13px 25px;
    background: #0a4d8c;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
}

.btn:hover {
    background: #083b6b;
}


/* SERVICES */

.services {
    padding: 50px 20px;
    text-align: center;
}

.services h2,
.contact h2 {
    color: #0a4d8c;
    margin-bottom: 30px;
}

.card {
    max-width: 400px;
    margin: 15px auto;
    padding: 22px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    font-size: 18px;
    font-weight: bold;
}


/* CONTACT */

.contact {
    padding: 50px 20px;
    text-align: center;
    background: white;
}

.contact p {
    font-size: 17px;
    margin: 12px;
}


/* FOOTER */

footer {
    background: #0a4d8c;
    color: white;
    text-align: center;
    padding: 18px;
}

footer p {
    margin: 0;
}


/* MOBILE */

@media (max-width: 600px) {

    .logo {
        width: 300px;
        height: 150px;
    }

    .header h1 {
        font-size: 28px;
    }

    .hero {
        padding: 45px 18px;
    }

    .hero h2 {
        font-size: 25px;
    }

    .services,
    .contact {
        padding: 40px 15px;
    }

    .card {
        font-size: 16px;
    }
}

/* FOUNDER */

.founder {
    padding: 55px 20px;
    text-align: center;
    background: #f4f8fc;
}

.founder h2 {
    color: #0a4d8c;
    margin-bottom: 30px;
}

.founder-card {
    max-width: 500px;
    margin: auto;
    padding: 30px 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.founder-icon {
    font-size: 55px;
    margin-bottom: 10px;
}

.founder-card h3 {
    margin: 10px 0 5px;
    font-size: 25px;
    color: #0a4d8c;
}

.designation {
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.founder-card p {
    line-height: 1.6;
}

/* FOUNDER SECTION */

.founder {
    padding: 55px 20px;
    text-align: center;
    background: #f4f8fc;
}

.founder h2 {
    color: #0a4d8c;
    margin-bottom: 30px;
}

.founder-card {
    max-width: 500px;
    margin: auto;
    padding: 30px 25px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.10);
}

.founder-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 18px;
    border: 5px solid #0a4d8c;
}

.founder-card h3 {
    margin: 10px 0 5px;
    font-size: 26px;
    color: #0a4d8c;
}

.founder-card .designation {
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.founder-card p {
    line-height: 1.6;
}