* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f4f7fb;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 8%;
    background: #081a36;
    color: white;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

.nav-links a.active {
    color: #00bfff;
}

/* HERO */
.services-hero {
    background: url("services-bg.jpg") center/cover no-repeat;
    height: 300px;
    position: relative;
}

.overlay {
    background: rgba(8, 26, 54, 0.85);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

/* GRID */
.services-grid {
    padding: 100px 8%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-left: 4px solid #00bfff;
}

.service-card.active {
    border-left: 4px solid #00bfff;
}

/* DETAIL */
.service-detail {
    background: #0a1f44;
    color: white;
    padding: 100px 8%;
}

.detail-container {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.detail-text {
    flex: 1;
    min-width: 300px;
}

.detail-text h2 {
    margin-bottom: 20px;
}

.detail-text p {
    line-height: 1.7;
    color: #ddd;
}

.detail-image {
    flex: 1;
    min-width: 300px;
}

.detail-image img {
    width: 100%;
    border-radius: 14px;
}








/* ================= OUTSOURCED SECTION ================= */

.outsourced-section {
    padding: 120px 8%;
    background: #f4f7fb;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 36px;
    color: #0a1f44;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 16px;
}

.outsourced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.outsourced-card {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.outsourced-card:hover {
    transform: translateY(-8px);
}

.outsourced-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #0a1f44;
}

.outsourced-card h3 span {
    color: #00bfff;
}

.outsourced-card p {
    line-height: 1.7;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }

    .outsourced-card {
        padding: 35px;
    }
}













/* FOOTER */
.footer {
    background: #081a36;
    color: #ccc;
    padding: 30px;
    text-align: center;
}