/* Our Services Section Styles */
.our-services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services-categories {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.service-category {
    flex: 1;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 32px;
    color: #fff;
}

.service-category h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.service-category p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
}

.category-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: var(--text-color);
}

.category-features li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.service-category .btn {
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .services-categories {
        flex-direction: column;
    }
    
    .service-category {
        margin-bottom: 30px;
    }
}
