/* Page Header Background */
.page-header {
    background: linear-gradient(rgba(0, 188, 212, 0.9), rgba(33, 150, 243, 0.9)), url("../Assets/services.jpg");
    background-size: cover;
    background-position: center;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

/* Service Categories */
.service-categories {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.category-tabs {
    border-bottom: 2px solid #e0e0e0;
    justify-content: center;
    margin-bottom: 50px;
}

.category-tabs .nav-link {
    border: none;
    color: var(--dark-color);
    font-weight: 600;
    padding: 10px 25px;
    margin: 0 5px;
    border-radius: 5px 5px 0 0;
    transition: all 0.3s ease;
}

.category-tabs .nav-link:hover {
    color: var(--primary-blue);
    background-color: rgba(0, 188, 212, 0.05);
}

.category-tabs .nav-link.active {
    color: var(--primary-blue);
    background-color: rgba(0, 188, 212, 0.05);
    border-bottom: 2px solid var(--primary-blue);
}

/* Service Cards */
.service-card {
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(9, 84, 122, 0.246);
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease;
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(5, 82, 117, 0.595);
    border-top-color: var(--primary-blue);
}

.service-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: var(--primary-blue);
    margin-right: 10px;
}

/* Service Details */
.service-details {
    padding: 100px 0;
    background-color: var(--light-color);
}

.detail-card {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(9, 84, 122, 0.246);
}

.detail-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.process-steps {
    position: relative;
    padding-left: 30px;
}

.process-step {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #ddd;
}

.process-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    position: absolute;
    left: -45px;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Fleet Services Section */
.fleet-services {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.fleet-service-card {
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.fleet-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(3, 68, 98, 0.287);
}

.fleet-service-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.fleet-service-content {
    padding: 25px;
}


/* Responsive Styles */
@media (max-width: 992px) {
    .category-tabs .nav-link {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {

    .services-section,
    .service-categories,
    .service-details,
    .fleet-services,
    .pricing-section {
        padding: 60px 0;
    }

    .category-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        /* white-space: nowrap; */
        padding-bottom: 10px;
    }

    .category-tabs .nav-link {
        margin: 0 3px;
    }
}

@media (max-width: 576px) {

    .service-content,
    .fleet-service-content,
    .pricing-body {
        padding: 20px;
    }

    .detail-card {
        padding: 25px;
    }
}