/* Services Page Specific Styles */
.services-overview {
    padding: 80px 0;
}

.service-tab .nav-pills {
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.service-tab .nav-link {
    border-radius: 50px;
    padding: 10px 25px;
    margin: 0 5px;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-tab .nav-link.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.service-tab .nav-link:not(.active):hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.service-tab .tab-content {
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-tab h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.service-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-image:hover img {
    transform: scale(1.05);
}

.all-services {
    padding: 80px 0;
    background-color: var(--light-color);
}

.service-process {
    padding: 80px 0;
    background-color: var(--white);
}

.process-steps {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 30px;
    position: relative;
    z-index: 1;
}

.step-content {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    flex-grow: 1;
}

.step-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--white);
    left: -10px;
    top: 30px;
    transform: rotate(45deg);
    z-index: -1;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .service-tab .nav-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        white-space: nowrap;
    }
    
    .service-tab .nav-link {
        margin: 0 3px;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .step-content::before {
        left: 30px;
        top: -10px;
    }
}