* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #08111f;
    color: white;
    line-height: 1.6;
}

/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(8, 17, 31, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    z-index: 1000;
}

.logo {
    height: 60px;
    border-radius: 8px;
}

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

.nav-links a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #3b82f6;
}

.call-btn {
    background: #2563eb;
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

/* HERO */

.hero {
    height: 100vh;
    background:
        linear-gradient(
            rgba(8,17,31,.75),
            rgba(8,17,31,.85)
        ),
        url("hero.png");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #60a5fa;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.primary-btn,
.secondary-btn {
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: bold;
}

.primary-btn {
    background: #2563eb;
    color: white;
}

.secondary-btn {
    border: 2px solid white;
    color: white;
}

/* SECTIONS */

section {
    padding: 100px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* TRUST BAR */

.trust-bar {
    background: #0f172a;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
}

.trust-item {
    font-weight: bold;
}

/* SERVICES */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}

.service-card {
    background: #111c31;
    padding: 30px;
    border-radius: 15px;
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* WHY CHOOSE US */

.why-us {
    background: #0d172a;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}

.why-card {
    background: #111c31;
    padding: 30px;
    border-radius: 15px;
}

/* SERVICE AREAS */

.areas-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.area-card {
    background: #111c31;
    padding: 15px 25px;
    border-radius: 10px;
}

/* CONTACT */

.contact {
    background: #0d172a;
    text-align: center;
}

.contact-container h2 {
    margin-bottom: 15px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    margin: 12px 0;
}

.contact a {
    color: #60a5fa;
    text-decoration: none;
}

/* FOOTER */

footer {
    text-align: center;
    padding: 50px 20px;
    background: #050b14;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

/* MOBILE */

@media (max-width: 768px) {

    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .trust-bar {
        grid-template-columns: 1fr 1fr;
    }

    section {
        padding: 80px 20px;
    }
}
