/**
 * Services IT Solution Component Styles
 *
 * Component-specific styles that extend Bootstrap 5.
 * Uses global CSS variables from the main stylesheet.
 *
 * @package RIKAI_Marketing
 * @since 1.0.0
 */

/* Strength Card */
.service-card {
    background: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* Strength Icon */
.service-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.service-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: var(--filter-drop-shadow);
}

/* Strength Number Badge */
.service-number .badge {
    font-size: 20px;
    padding: 8px 16px;
    border-radius: 50px;
    background-color: var(--primary-color);
}

/* Strength Title */
.service-title {
    color: var(--primary-text-color);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

/* Strength Description */
.service-description {
    color: var(--muted-text-color);
    font-size: 15.2px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-card {
        margin-bottom: 16px;
    }

    .service-icon {
        width: 100px;
        height: 100px;
    }

    .service-title {
        font-size: 16px;
    }

    .service-description {
        font-size: 14.4px;
    }

    .service-number .badge {
        font-size: 16px;
        padding: 6.4px 12.8px;
    }
}
