/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7fa;
    color: #222;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVIGATION */
.navbar {
    background: #0a0f1f;
    padding: 20px 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.2s;
}

nav a:hover,
nav a.active {
    color: #4da3ff;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #0a0f1f 0%, #1a2a4a 100%);
    height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    position: relative;
    padding: 60px 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/background.png') center/cover;
    opacity: 0.18;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* BUTTONS */
.btn-primary {
    display: inline-block;
    margin-top: 20px;
    background: #0073e6;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.btn-primary:hover {
    background: #005bb5;
}

.btn-secondary {
    background: #fff;
    color: #0a0f1f;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #0a0f1f;
    transition: 0.2s;
}

.btn-secondary:hover {
    background: #0a0f1f;
    color: #fff;
}

/* SERVICES */
.services {
    padding: 80px 0;
    background: #fff;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #f0f4fa;
    padding: 30px;
    border-radius: 8px;

    /* LEFT ALIGNMENT FIX APPLIED HERE */
    text-align: left;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card ul {
    padding-left: 1.2rem;
    margin-top: 10px;
}

.service-card li {
    list-style-position: outside;
    margin-bottom: 6px;
}

/* ABOUT */
.about {
    padding: 80px 0;
    background: #eef2f7;
}

.about-inner {
    display: flex;
    justify-content: center;
}

.about-text {
    max-width: 700px;
    text-align: center;
}

/* CTA */
.cta {
    padding: 80px 0;
    background: #1a2a4a;
    color: #fff;
    text-align: center;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

/* FOOTER */
.footer {
    background: #0a0f1f;
    padding: 20px 0;
    text-align: center;
    color: #fff;
}

/* CONTACT FORM */
.contact-form {
    max-width: 600px;
    margin: auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero {
        height: auto;
        padding: 40px 0;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        height: auto;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}
