/* RESET */

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

/* BODY */

body {
    font-family: Segoe UI, Arial, sans-serif;
    background: #f5f7fa;
    color: #333;
    line-height: 1.7;
}

/* CONTAINER */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
/* HEADER */

header {
    background: #08254a;
    box-shadow: 0 2px 10px rgba(0,0,0,.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

/* LEFT SIDE */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 55px;
    width: auto;
}


.company-info h2 {
    margin: 0;
    color: white;
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
}

/* RIGHT SIDE */

.menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .menu li {
        margin: 0;
    }

    .menu a {
        color: white;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        transition: .3s;
    }

        .menu a:hover {
            color: #ff8800;
        }
@media(max-width:991px) {

    .nav-container {
        flex-direction: column;
        padding: 15px 0;
    }

    .brand {
        margin-bottom: 10px;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .company-info h2 {
        font-size: 18px;
    }
}
/* HERO */

.hero {
    min-height: 90vh;
    background: linear-gradient(rgba(11,35,65,.80), rgba(11,35,65,.80)), url('../images/cctv-banner.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

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

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

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

.btn {
    display: inline-block;
    background: #ff8800;
    color: white;
    padding: 15px 30px;
    border-radius: 40px;
    text-decoration: none;
    margin: 5px;
    transition: .3s;
}

    .btn:hover {
        background: #ff6a00;
        transform: translateY(-3px);
    }

.btn-outline {
    background: transparent;
    border: 2px solid white;
}

/* PAGE BANNER */

.page-banner {
    background: #0b2341;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

    .page-banner h1 {
        font-size: 48px;
    }

/* SECTION */

section {
    padding: 80px 0;
}

    section h2 {
        text-align: center;
        margin-bottom: 30px;
        color: #0b2341;
        font-size: 36px;
    }

/* STATS */

.stats {
    background: #0b2341;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    text-align: center;
    gap: 30px;
}

.stats h3 {
    color: #ff8800;
    font-size: 50px;
}

/* CARDS */

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

.card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    transition: .3s;
}

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0,0,0,.15);
    }

    .card i {
        font-size: 45px;
        color: #ff8800;
        margin-bottom: 15px;
    }

    .card h3 {
        margin-bottom: 10px;
    }

/* CONTENT BOX */

.content-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

    .content-box p {
        margin-bottom: 20px;
    }

    .content-box ul {
        margin-left: 25px;
    }

/* CONTACT */

.contact-form {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    max-width: 700px;
    margin: auto;
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 15px;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 8px;
    }

    .contact-form button {
        border: none;
        cursor: pointer;
    }

/* FOOTER */

footer {
    background: #08172d;
    color: white;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
    padding: 50px 0;
}

    .footer-grid h3 {
        color: #ff8800;
        margin-bottom: 15px;
    }

    .footer-grid ul {
        list-style: none;
    }

        .footer-grid ul li {
            margin-bottom: 10px;
        }

    .footer-grid a {
        color: white;
        text-decoration: none;
    }

        .footer-grid a:hover {
            color: #ff8800;
        }

.copyright {
    text-align: center;
    background: #06101f;
    padding: 15px;
}

/* MOBILE */

@media(max-width:768px) {

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 18px;
    }

    .nav-container {
        flex-direction: column;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 15px;
    }

    .page-banner h1 {
        font-size: 32px;
    }
}
