/* ============================================
   Service Feature Section - Bogura Bazar Theme
   Version: 2.2.0 (শুধু ডেস্কটপে দৃশ্যমান)
============================================ */

.service-feature-section {
    margin: 5px 0;
    padding: 5px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 10px;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.service-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    background: #ffffff;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.service-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00A65A, #28B86E);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-feature-item:hover::before {
    transform: scaleX(1);
}

.service-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #00A65A, #28B86E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 28px;
    color: #ffffff;
}

.service-feature-item:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 166, 90, 0.3);
}

.service-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1e1e2e;
    margin-bottom: 6px;
}

.service-content p {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 8px;
}

.service-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: #00A65A;
    background: #e8f5e9;
    padding: 3px 10px;
    border-radius: 20px;
}

/* ============================================
   রেসপন্সিভ - শুধু ডেস্কটপে দেখাবে
============================================ */

/* ✅ ডেস্কটপ (768px এর উপরে) - দেখাবে */
@media (min-width: 769px) {
    .service-feature-section {
        display: block;
    }
}

/* ❌ মোবাইল (768px এর নিচে) - সম্পূর্ণ লুকাবে */
@media (max-width: 768px) {
    .service-feature-section {
        display: none !important;
    }
}
