

.home-slider-image .splide__slide img{
    height: 350px!important;
}

/* هدر بیمارمحور (hero-card) */
.hero-card {
    background: linear-gradient(135deg, var(--primary-light), rgba(238, 242, 255, 0.7));
    border-radius: 24px;
    padding: 2rem 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    margin: 0 !important; /* Overriding the mx-3 */
    margin-bottom: 2rem !important; /* Overriding the mb-3 */
    position: relative;
    overflow: hidden;
}

.hero-chip {
    background: var(--primary);
    color: white;
    border-radius: 20px;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--primary-light);
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.6;
    max-width: 70%; /* محدود کردن عرض متن */
}

/* ریسپانسیو برای هدر */
@media (max-width: 768px) {
    .hero-card {
        padding: 1.5rem;
    }
    .hero-title {
        font-size: 1.7rem;
    }
    .hero-text {
        max-width: 100%;
    }
}
/* هدر بیمارمحور (hero-card) */


/* دکمه نارنجی */
.btn-consultation {
    background: #ff7e00;
    color: white !important;
    padding: 12px 20px;
    border-radius: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(255, 126, 0, 0.2);
    transition: all 0.3s;
}

.btn-consultation:active, .btn-record:active {
    transform: scale(0.95);
}

.btn-consultation i, .btn-record i {
    font-size: 16px;
}

@media (max-width: 380px) {
    .btn-consultation, .btn-record { padding: 10px 15px; font-size: 12px; }
}
/* دکمه نارنجی */
