/**
 * Nxtlogic - Service page styles (moved from service.html inline)
 */

/* ========== Hero Section ========== */
.nxt-svc-hero {
    position: relative;
    height: 450px;
    background-image: url('https://www.nxtlogic.com/images/Nxtlogic_service.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}
.nxt-svc-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 1;
}
.nxt-svc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}
.nxt-svc-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.nxt-svc-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    font-weight: 300;
    margin-bottom: 30px;
}
.nxt-btn-hero {
    background-color: var(--color-brand-primary);
    color: var(--color-white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #919c23;
}
.nxt-btn-hero:hover {
    background-color: transparent;
    color: var(--color-white);
}

/* ========== Intro Section ========== */
.nxt-svc-intro {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}
.nxt-svc-intro h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text-primary);
}
.nxt-svc-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    max-width: 900px;
    margin: 0 auto;
}

/* ========== Services Grid ========== */
.nxt-svc-grid-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}
.nxt-svc-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-bottom: 4px solid transparent;
}
.nxt-svc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom: 4px solid #919c23;
}
.nxt-svc-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #f0f2d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--color-brand-primary);
    font-size: 32px;
    transition: all 0.3s;
}
.nxt-svc-card:hover .nxt-svc-icon-wrapper {
    background: #919c23;
    color: var(--color-white);
}
.nxt-svc-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 15px;
}
.nxt-svc-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}
.nxt-svc-link {
    color: var(--color-brand-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
}
.nxt-svc-link:hover {
    text-decoration: underline;
}

/* ========== Clean list (no bullets) ========== */
ul.nxt-clean-list {
    list-style-type: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}
ul.nxt-clean-list li {
    list-style-type: none !important;
}

/* ========== Experience badge & image holder (mobile) ========== */
@media (max-width: 768px) {
    .nxt-svc-hero h1 { font-size: 2rem; }
    .nxt-svc-card { padding: 30px 20px; }
    .experience-badge {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        margin-top: -30px;
        margin-left: 20px;
        display: inline-block;
    }
    .image-holder {
        padding: 0 !important;
        margin-bottom: 40px;
    }
}
