/*
============================================================
 Jordan Guild Tech - IT Services Page
============================================================
*/

/* ================= PAGE HEADER ================= */
.page-header.services-page-header {
    background: linear-gradient(rgba(17,24,39,0.85), rgba(17,24,39,0.85)),
                url("images/frontend.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #ffffff;
    padding: 90px 5% 70px 5%;
    text-align: center;
}

/* ================= SERVICES LAYOUT ================= */
.it-services-section {
    background-color: #f9fafb;
    padding: 70px 5%;
}

.it-services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* ================= LEFT MENU ================= */
.service-menu {
    width: 30%;
    background: #f3f4f6;
    display: flex;
    flex-direction: column;
}

.service-item {
    padding: 20px 25px;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e5e7eb;
}

.service-item:hover {
    background-color: #e5e7eb;
    color: #1e3a8a;
}

.service-item.active {
    background-color: #ffffff;
    color: #1e3a8a;
    font-weight: 600;
}

/* ================= RIGHT PANEL ================= */
.service-content {
    width: 70%;
    padding: 40px;
}

.service-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

.service-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.service-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-panel ul li {
    font-size: 1.05rem;
    color: #374151;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.service-panel ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #1e3a8a;
    border-radius: 50%;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .it-services-container {
        flex-direction: column;
    }

    .service-menu,
    .service-content {
        width: 100%;
    }

    .service-menu {
        flex-direction: row;
        overflow-x: auto;
    }

    .service-item {
        flex: 1;
        white-space: nowrap;
        border-bottom: none;
        border-right: 1px solid #e5e7eb;
    }
}