﻿/* ===== Services / Industry Section ===== */
.service-wrapper {
    background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
}

    /* عنوان بخش */
    .service-wrapper h3 {
        font-weight: 600;
        color: #2b4f5b;
        border-right: 4px solid #e7c27d;
        padding-right: 12px;
        margin-bottom: 0;
    }

/* کارت صنعت */
.industry-card {
    border: none;
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}

    /* افکت hover دسکتاپ */
    .industry-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.10);
    }

    /* تصویر سمت راست */
    .industry-card img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    /* بدنه کارت */
    .industry-card .card-body {
        padding: 1.2rem 1.4rem;
    }

    /* عنوان کارت */
    .industry-card .card-title {
        font-size: 1.05rem;
        font-weight: 600;
        color: #2b4f5b;
        margin-bottom: 0.6rem;
    }

    /* متن کارت */
    .industry-card .card-text {
        font-size: 0.92rem;
        line-height: 1.7;
        color: #555555;
        margin-bottom: 0;
    }

/* فاصله بهتر در موبایل */
@media (max-width: 768px) {
    .industry-card {
        max-width: 100% !important;
    }

        .industry-card img {
            border-radius: 0;
        }
}


/* ستون تصویر */
.industry-image {
    height: 100%;
    min-height: 180px; /* ارتفاع حداقلی مناسب کارت */
    overflow: hidden;
}

    /* خود تصویر */
    .industry-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* ✅ تصویر کامل، بدون کشیدگی */
        display: block;
    }
