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

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

.hero {
    min-height: 100vh;

    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1494412651409-8963ce7935a7?q=80&w=1600&auto=format&fit=crop');

    background-size: cover;
    background-position: center;

    color: white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 8%;
}

.dark-nav {
    background: #0c1c35;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: white;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.hero-content {
    max-width: 700px;
    padding: 120px 8%;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;

    background: #ff7a00;
    color: white;

    padding: 14px 28px;

    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.features {
    padding: 70px 8%;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 25px;
}

.feature-card {
    background: white;
    padding: 30px;

    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.about {
    padding: 70px 8%;

    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 14px;
}

.stats {
    background: #0c1c35;
    color: white;

    display: flex;
    justify-content: center;

    gap: 50px;

    text-align: center;

    padding: 70px 8%;
}

.stat h2 {
    font-size: 48px;
}

.page-banner {
    background: #11284a;
    color: white;

    text-align: center;

    padding: 90px 20px;
}

.service-grid {
    padding: 70px 8%;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;
}

.service-box {
    background: white;

    border-radius: 12px;
    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-box h3,
.service-box p {
    padding: 15px 20px;
}

.contact-section {
    padding: 70px 8%;

    display: flex;
    flex-wrap: wrap;

    gap: 40px;
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 280px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;

    border: 1px solid #ccc;
    border-radius: 6px;
}

.contact-form button {
    background: #ff7a00;
    color: white;

    border: none;

    padding: 14px;

    border-radius: 6px;

    cursor: pointer;
    font-size: 16px;
}

footer {
    background: #091321;
    color: white;

    text-align: center;

    padding: 40px 20px 20px;
}

.footer-info {
    margin-bottom: 20px;
    font-size: 15px;
    color: #ddd;
    line-height: 1.8;
}

.copyright {
    font-size: 14px;
    color: #888;
}

@media(max-width: 768px) {

    .hero-content h1 {
        font-size: 40px;
    }

    .stats {
        flex-direction: column;
    }

    .navbar {
        flex-direction: column;
        gap: 15px;
    }
}