/**
 * GRPCMedia Service Card Widget Styles
 * 
 * 🇹🇷 TR: Hizmet kartı widget stil dosyası
 * 🇬🇧 EN: Service card widget stylesheet
 * 🎯 PURPOSE: Individual service card styling
 */

.grpcmedia-service-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.grpcmedia-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 25px rgba(47, 36, 131, 0.2);
}

.grpcmedia-service-card .service-icon {
    font-size: 48px;
    color: #2F2483;
    margin-bottom: 20px;
}

.grpcmedia-service-card .service-icon img {
    width: 64px;
    height: 64px;
}

.grpcmedia-service-card .service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.grpcmedia-service-card .service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.grpcmedia-service-card .service-link {
    display: inline-block;
    padding: 10px 25px;
    background: #2F2483;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.grpcmedia-service-card .service-link:hover {
    background: #1e1850;
}

.grpcmedia-service-card.featured {
    border: 2px solid #2F2483;
}

.grpcmedia-service-card.featured .service-title {
    color: #2F2483;
}

