/* ----------------------------------------------------
   Support Logix – Base Styles
---------------------------------------------------- */

:root {
    --slx-primary: #0057b8; /* Deep blue */
    --slx-secondary: #00a8e8; /* Accent blue */
    --slx-dark: #1a1a1a;
    --slx-light: #f7f9fc;
    --slx-grey: #6c757d;
    --slx-radius: 8px;
    --slx-font: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--slx-font);
    background: white;
    color: var(--slx-dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* ----------------------------------------------------
   Header
---------------------------------------------------- */

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--slx-primary) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--slx-dark) !important;
}

    .nav-link:hover {
        color: var(--slx-primary) !important;
    }

.btn-primary {
    background: var(--slx-primary);
    border-color: var(--slx-primary);
    border-radius: var(--slx-radius);
}

    .btn-primary:hover {
        background: var(--slx-secondary);
        border-color: var(--slx-secondary);
    }

/* ----------------------------------------------------
   Hero Section
---------------------------------------------------- */

.hero {
    padding: 6rem 0;
    background: var(--slx-light);
    text-align: center;
}

    .hero h1 {
        font-size: 2.6rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.25rem;
        color: var(--slx-grey);
        max-width: 700px;
        margin: 0 auto 2rem;
    }

/* ----------------------------------------------------
   Section Headings
---------------------------------------------------- */

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ----------------------------------------------------
   Service Cards
---------------------------------------------------- */

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--slx-radius);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.10);
    }

    .service-card h3 {
        font-weight: 600;
        margin-bottom: 1rem;
    }

/* ----------------------------------------------------
   Footer
---------------------------------------------------- */

footer {
    background: var(--slx-light);
    padding: 2rem 0;
    text-align: center;
    color: var(--slx-grey);
    font-size: 0.9rem;
}
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Maintain a consistent hero height on all screens */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px; /* same as your current design */
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* prevents weird cropping on mobile */
    object-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}

/* Improve readability on very small screens */
@media (max-width: 480px) {
    .hero-image-wrapper {
        height: 260px;
    }
}