* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}
.logo img {
    height: 100px;   /* adjust size */
    width: auto;
    display: block;
}

.hero-image img {
    height: Auto;   /* adjust size */
    width: Auto;
    display: block;
}


body {
    background: #f8f9fc;
    color: #222;
}

/* Common */f
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.btn-primary {
    background: #0057d9;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #003f9e;
}

.btn-outline {
    background: transparent;
    border: 2px solid #0057d9;
    color: #0057d9;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
}

/* Header */
.header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #0057d9;
}

.nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav a:hover {
    color: #0057d9;
}

/* Hero Section */
.hero {
    padding: 30px 0;
    background:linear-gradient(120deg, #0057d9, #00a8ff);
    color: white;
}

.hero-grid {
    display: grid;
    align-items: center;
    gap: 10px;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.hero p {
    margin-bottom: 25px;
    font-size: 18px;
}

/* Services */
.services {
    padding: 70px 0;
    background: #fff;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: #f4f6fb;
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Why Us */
.why-us {
    padding: 60px 0;
    background: #f8f9fc;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.why-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

/* CTA */
.cta {
    padding: 60px 0;
    background: #0057d9;
    color: white;
    text-align: center;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.footer h3, .footer h4 {
    margin-bottom: 10px;
}

.footer p {
    margin-bottom: 6px;
    font-size: 14px;
}

copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav {
        display: none;
    }
}
