/* Services Section Styles */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    /* text-align: center; */
    margin-bottom: 56px;
}

.section-title {
    font-size: 32px;
    font-weight: 500;
    color: #1F1F1F;
    margin-bottom: 32px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-top-color: #ef5a29;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    color: #1F1F1F;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-link {
    color: #ef5a29;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #1F1F1F;
}

/* Service Card Color Variations */
.service-card:nth-child(1) .service-icon { color: #ef5a29; }
.service-card:nth-child(2) .service-icon { color: #289ff9; }
.service-card:nth-child(3) .service-icon { color: #ffd600; }
.service-card:nth-child(4) .service-icon { color: #28a745; }
.service-card:nth-child(5) .service-icon { color: #8B1538; }
.service-card:nth-child(6) .service-icon { color: #6f42c1; }

.service-card:nth-child(1):hover { border-top-color: #ef5a29; }
.service-card:nth-child(2):hover { border-top-color: #289ff9; }
.service-card:nth-child(3):hover { border-top-color: #ffd600; }
.service-card:nth-child(4):hover { border-top-color: #28a745; }
.service-card:nth-child(5):hover { border-top-color: #8B1538; }
.service-card:nth-child(6):hover { border-top-color: #6f42c1; }

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
}
