/*Write your custom style or CSS code here*/

/* Minimalist Service Section */
.tt-service-minimal {
    padding: 20px;
    transition: all 0.3s ease;
}

.tt-service-minimal:hover {
    transform: translateY(-5px);
}

.tt-service-icon-minimal {
    margin-bottom: 20px;
}

.tt-service-icon-minimal img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.tt-service-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.tt-service-link {
    color: #3498db;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tt-service-link:hover {
    color: #2980b9;
    text-decoration: none;
}

.tt-service-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.tt-service-link:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tt-service-icon-minimal img {
        width: 60px;
        height: 60px;
    }
    
    .tt-service-title {
        font-size: 16px;
    }
}