/* Service Card Improvements */
.services-other .col-sm-4 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #eee;
}

.services-other .col-sm-4:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #ffda44;
}

.services-other .services-info ul li {
    padding: 5px 0;
    color: #555;
    font-size: 15px;
}

.services-other .services-info ul li i {
    color: #ffda44;
    margin-right: 8px;
}

.services-other .img-box i {
    transition: transform 0.3s ease;
}

.services-other .col-sm-4:hover .img-box i {
    transform: scale(1.1);
}

/* Service Detail Page */
.service-detail {
    padding: 80px 0;
}

.service-content {
    background: #fff;
    padding: 40px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.service-content .img-box {
    margin-bottom: 30px;
}

.service-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-content ul.list-unstyled li {
    padding: 10px 0;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
}

.service-content ul.list-unstyled li:last-child {
    border-bottom: none;
}

.service-content ul.list-unstyled li i {
    color: #ffda44;
    margin-right: 15px;
    font-size: 18px;
}