/* Reset */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f6f8;
    color: #222;
}

/* Header */
header {
    background: linear-gradient(90deg, #1f3a5f, #2c5c8a);
    color: white;
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    margin: 0;
}

header p {
    margin-top: 10px;
    opacity: 0.9;
}

/* Nav */
nav {
    background: #16304d;
    padding: 12px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Main */
main {
    max-width: 900px;
    margin: 30px auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 10px 18px;
    background: #1f3a5f;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 15px;
}

.button:hover {
    background: #2c5c8a;
}

/* Services */
.services {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 200px;
    background: #eef2f6;
    padding: 20px;
    border-radius: 6px;
}
.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}
/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #ddd;
    margin-top: 30px;
}


/* logo */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

/* welcome background */
.welcome-box {
    background-image: url("images/photo1.jpg");
    background-size: cover;
    background-position: center;
    padding: 60px;
    border-radius: 8px;
    color: white;
}