body {
    font-family: 'Segoe UI', sans-serif;
}

/* SECTION PADDING */
.section-padding {
    padding: 80px 0;
}

/* HERO SECTION */
.hero-section {
    min-height: 100vh;
    background:
        linear-gradient(to right,
            rgba(0, 70, 140, 0.85),
            rgba(0, 70, 140, 0.55),
            rgba(0, 70, 140, 0.15)),
        url("../images/quality-hero.webp");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    background-attachment: scroll;
    /* safer for mobile */
}

.hero-content {
    padding-top: 80px;
}

.hero-tag {
    display: inline-block;
    background: #ff7a18;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-section h1 span {
    color: #00e5ff;
}

.hero-section p {
    font-size: 1.1rem;
    margin: 20px 0 30px;
    max-width: 520px;
}

.hero-section .btn-primary {
    background: #0d6efd;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
}

/* ICON BOX */
.icon-box {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: 0.3s;
}

.icon-box:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* CTA */
.cta {
    background: #0d6efd;
    color: #fff;
    padding: 60px 0;
}

/* FOOTER */
.footer {
    background: #212529;
    color: #bbb;
    padding: 30px 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-section {
        background-position: center;
        text-align: center;
        background:
            linear-gradient(rgba(0, 60, 120, 0.9),
                rgba(0, 60, 120, 0.9)),
            url("../images/quality-hero.webp");
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        margin-left: auto;
        margin-right: auto;
    }
}