/* استایل های سفارشی برای سایت کلینیک */
body {
    font-family: 'Vazir', 'Tanha', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* هدر */
.navbar-brand {
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-size: 1.1rem;
    margin-left: 1rem;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    right: 0;
    background-color: #0d6efd;
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* اسلایدر */
.carousel-caption {
    bottom: 30%;
}

/* کارت خدمات */
.service-card {
    border: none;
    border-radius: 10px;
}

.service-card .card-body {
    padding: 2rem;
}

/* فوتر */
footer {
    margin-top: auto;
}

.social-icons a {
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #0d6efd !important;
}

/* صفحه درباره ما */
.display-4 {
    font-weight: 700;
}

/* صفحه تماس */
.contact-info-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.map-container {
    position: relative;
    overflow: hidden;
}

/* رسپانسیو */
@media (max-width: 768px) {
    .hero-slider, .hero-slider .carousel-item {
        height: 300px;
    }

    .carousel-caption h2 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }
}