﻿body {
    font-family: Arial, sans-serif;
}

.navbar {
    background: #0a0a23;
}

.navbar-brand img {
    height: 45px;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('your-hero-image.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

    .hero h1 {
        font-size: 2.5rem;
        font-weight: bold;
    }

    .hero p {
        font-size: 1.2rem;
    }

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.services img {
    height: 80px;
    margin-bottom: 15px;
}

footer {
    background: #0a0a23;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

    footer a {
        color: #fff;
        text-decoration: none;
    }

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }
}
