  @import url("fonts.css");
:root {
    --primary-color: #1a73e8;
    --secondary-color: #0d47a1;
    --accent-color: #4fc3f7;
    --light-color: #f8f9fa;
    --dark-color: #1a237e;
    --gradient-start: #1a73e8;
    --gradient-end: #0d47a1;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}
        
body {
    font-family: 
    "Vazir",
    "IRANSans",
    "Tahoma",
    sans-serif;
    background-color: white;
    color: #333;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    width: 100%;
    /* padding: 20px; */
}

/* استایل تاپ بار - ارتفاع 35px */
.top-bar {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    padding: 6px 0; /* کاهش بیشتر padding */
    font-size: 0.8rem; /* کاهش سایز فونت */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid var(--glass-border);
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
    height: 35px; /* ارتفاع ثابت */
    display: flex;
    align-items: center;
}

.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.contact-info {
    display: flex;
    gap: 15px; /* کاهش فاصله */
    flex-wrap: wrap;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 5px; /* کاهش فاصله */
    transition: all 0.3s ease;
    font-size: 0.75rem; /* کاهش سایز فونت */
    line-height: 1;
}

.contact-item:hover {
    color: var(--accent-color);
    transform: translateY(-1px);
}

.contact-item i {
    font-size: 0.85rem; /* کاهش سایز آیکون */
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 8px; /* کاهش فاصله */
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px; /* کاهش سایز */
    height: 24px;
    background: var(--glass-bg);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    font-size: 0.8rem;
    line-height: 0;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(79, 195, 247, 0.4);
    color: white;
}

/* رسپانسیو برای تاپ بار */
@media (max-width: 768px) {
    .top-bar {
        height: auto; /* ارتفاع خودکار در موبایل */
        padding: 8px 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-info {
        justify-content: center;
        gap: 10px;
    }
    
    .contact-item {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .contact-info {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-links {
        gap: 6px;
    }
    
    .social-link {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }
}

/* منوی اصلی */
.main-nav {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    margin: 0;
}

.navbar-brand span {
    color: var(--secondary-color);
}

.navbar-nav {
    gap: 5px;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 15px 15px !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* خط زیر همه منوها هنگام hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after, 
.nav-link.active::after,
.dropdown:hover .nav-link::after {
    width: calc(100% - 40px);
}

/* بخش جستجو */
.search-container {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.search-form {
    display: flex;
    align-items: center;
    background: var(--light-color);
    border-radius: 25px;
    padding: 5px 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.search-form:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    padding: 5px 10px;
    width: 180px;
    font-family: 'Vazirmatn', sans-serif;
}

.search-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.search-btn:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* منوی دو سطحی */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: right;
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: var(--dark-color);
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: rgba(26, 115, 232, 0.1);
    color: var(--primary-color);
}

.dropdown-toggle::after {
    margin-right: 5px;
}
.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: unset!important;
    border-bottom: unset!important;
    border-left: unset!important;
}
/* منوی مگا */
.mega-dropdown {
    position: static !important;
}

.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-title {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 8px;
}

.mega-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-links li {
    margin-bottom: 8px;
}

.mega-menu-links a {
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.mega-menu-links a:hover {
    color: var(--primary-color);
    padding-right: 10px;
}

/* محتوای نمونه */
.content-section {
    padding: 100px 0;
    background: var(--light-color);
}

.content-section:nth-child(even) {
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* رسپانسیو */
@media (max-width: 992px) {
    .search-container {
        margin: 15px 0;
        width: 100%;
        justify-content: center;
    }
    
    .search-input {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .mega-menu {
        padding: 20px;
    }
    
    /* در موبایل از dropdown پیشفرض bootstrap استفاده می‌کنیم */
    /* .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .dropdown-menu.show {
        display: block;
    }
     */
          .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        text-align: right;
        margin-top: 0 !important;
        background-color: #f8f9fa !important;
        border: none !important;
        box-shadow: none !important;
        display: none !important; /* این خط رو اضافه کنید */
    }
    
    .dropdown-menu.show {
        display: block !important; /* این خط رو اضافه کنید */
    }
    
    .dropdown-item {
        padding: 12px 20px !important;
        border-bottom: 1px solid #dee2e6 !important;
    }
    
    .dropdown-item:last-child {
        border-bottom: none !important;
    }
    .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .mega-menu.show {
        display: block;
    }
}

@media (max-width: 576px) {
    .contact-info {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .nav-link {
        padding: 10px 15px !important;
    }
    
    .logo-container {
        gap: 10px;
    }
    
    .logo {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
}
        .section-title {
    text-align: center;
    margin: 60px 0 40px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}



/* اسلایدر خدمات - مدل 2 */
.services-slider {
    padding: 60px 0;
    background: var(--light-color);
}

.service-slide {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 10px;
}

.service-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 25px;
    text-align: center;
}

.service-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 20px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

/* اسلایدر نظرات - مدل 3 */
.testimonials-slider {
    padding: 80px 0;
    background: white;
}

.testimonial-slide {
    background: var(--light-color);
    border-radius: 15px;
    padding: 30px;
    margin: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    padding: 20px 0;
}

.testimonial-content::before {
    content: "";
    font-size: 5rem;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    right: 10px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-info h4 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    color: #777;
    font-size: 0.9rem;
}

/* اسلایدر تصاویر - مدل 4 */
.gallery-slider {
    padding: 60px 0;
    background: var(--light-color);
}

.gallery-slide {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 10px;
}

.gallery-slide:hover {
    transform: scale(1.03);
}

.gallery-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-slide:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin: 0 0 10px;
    font-size: 1.3rem;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* استایل‌های عمومی برای اسلایدرها */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
}

.swiper-button-next, .swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary-color);
}

/* رسپانسیو */
@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .hero-btns .btn {
        display: block;
        width: 80%;
        margin: 10px auto;
    }
}
    
/* اسلایدر هیرو مدرن */
.modern-hero-slider {
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: transform 8s ease;
}

.swiper-slide-active .slide-bg {
    transform: scale(1.1);
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, 
        rgba(131, 183, 252, 0.6) 0%,      
        rgba(202, 204, 207, 0.5) 50%,     
        rgba(180, 229, 252, 0.4) 100%);    */
    z-index: -1;
}

.slide-content {
    color: white;
    text-align: center;
    max-width: 900px;
    padding: 0 30px;
    z-index: 2;
}

/* افکت‌های متن */
.title-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.main-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.2;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(50px);
    animation: titleSlideUp 1s ease 0.5s forwards;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: subtitleSlideUp 1s ease 0.8s forwards;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
}

.accent-text {
    /* color: var(--accent-color); */
    font-weight: 600;
}

.title-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: badgeSlideUp 1s ease 0.3s forwards;
}

/* دکمه‌ها با افکت */
.hero-btns {
    margin-top: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: buttonsSlideUp 1s ease 1s forwards;
}

.btn-modern {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 10px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary-modern {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.4);
}

.btn-primary-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(79, 195, 247, 0.6);
}

.btn-outline-modern {
    background: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-outline-modern:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* افکت ripple برای دکمه‌ها */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-ripple:hover::after {
    width: 300px;
    height: 300px;
}

/* آیکون‌های floating */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
.floating-icon:nth-child(3) { top: 80%; left: 20%; animation-delay: 2s; }
.floating-icon:nth-child(4) { top: 30%; left: 70%; animation-delay: 3s; }
.floating-icon:nth-child(5) { top: 70%; left: 30%; animation-delay: 4s; }

/* ناوبری و pagination سفارشی */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

.swiper-button-next, .swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.5rem;
    font-weight: bold;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* انیمیشن‌ها */
@keyframes titleSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes buttonsSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* شمارنده اسلاید */
.slide-counter {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    font-size: 1rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* رسپانسیو */
@media (max-width: 768px) {
    .modern-hero-slider {
        height: 70vh;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .btn-modern {
        padding: 12px 25px;
        font-size: 1rem;
        margin: 5px;
    }
    
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .floating-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .slide-content {
        padding: 0 20px;
    }
}
    /* بخش خدمات اسلایدر */
.services-slider-section {
    /* padding: 100px 0; */
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 2px;
}

.section-title p {
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.8;
}

/* استایل اسلایدر خدمات */
.services-swiper {
    padding: 40px 10px 80px;
    position: relative;
}

.service-slide {
    height: 420px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-slide:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-header {
    height: 180px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
} 

 .service-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-slide:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(255, 255, 255, 0.3);
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 0.95rem;
}

.service-btn {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4);
    color: white;
}

/* ناوبری سفارشی برای اسلایدر */
.services-swiper .swiper-button-next,
.services-swiper .swiper-button-prev {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.services-swiper .swiper-button-next:after,
.services-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.services-swiper .swiper-button-next:hover,
.services-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.services-swiper .swiper-button-prev {
    left: -30px;
    right: auto;
}

.services-swiper .swiper-button-next {
    right: -30px;
    left: auto;
}

/* Pagination سفارشی */
.services-swiper .swiper-pagination {
    bottom: 20px;
}

.services-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(26, 115, 232, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.services-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

/* دکمه مشاهده همه خدمات */
.view-all-services {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.view-all-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.3);
}

/* رسپانسیو */
@media (max-width: 1200px) {
    .services-swiper .swiper-button-prev {
        right: -10px;
    }
    
    .services-swiper .swiper-button-next {
        left: -10px;
    }
}

@media (max-width: 768px) {
    .services-slider-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .section-title p {
        font-size: 1.1rem;
    }
    
    .service-slide {
        height: 380px;
    }
    
    .services-swiper .swiper-button-next,
    .services-swiper .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .service-slide {
        height: 350px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
}
        /* بخش معرفی کلینیک */
.clinic-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.clinic-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(26, 115, 232, 0.03)"/></svg>');
    background-size: cover;
}

.intro-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
}

.intro-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 2px;
}

.intro-text .lead {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.features-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.3);
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.intro-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.intro-buttons .btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.intro-buttons .btn-primary {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border: none;
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

.intro-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4);
}

.intro-buttons .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.intro-buttons .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.intro-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-content {
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--dark-color);
    font-weight: 600;
}

/* رسپانسیو */
@media (max-width: 992px) {
    .clinic-intro {
        padding: 60px 0;
    }
    
    .intro-text h2 {
        font-size: 2.2rem;
    }
    
    .intro-text .lead {
        font-size: 1.2rem;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .intro-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .intro-text h2::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .intro-text .lead {
        text-align: center;
    }
    
    .intro-buttons {
        justify-content: center;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .image-badge {
        top: 20px;
        left: 20px;
    }
}

@media (max-width: 576px) {
    .clinic-intro {
        padding: 40px 0;
    }
    
    .intro-text h2 {
        font-size: 1.8rem;
    }
    
    .intro-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .badge-number {
        font-size: 1.8rem;
    }
}

/* بخش چرا ما را انتخاب می‌کنند */
.why-choose-us {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.wave-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-background.bottom {
    top: auto;
    bottom: 0;
    transform: rotate(180deg);
}

.wave-background svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-background .shape-fill {
    fill: rgba(26, 115, 232, 0.1);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

/* ایجاد طرح موج‌دار برای کارت‌ها */
.reasons-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="rgba(26, 115, 232, 0.05)"/></svg>');
    background-size: cover;
    z-index: 0;
    transform: translateY(-50%);
}

.reason-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(26, 115, 232, 0.1);
    backdrop-filter: blur(10px);
}

/* ایجاد طرح موج‌دار با موقعیت‌های مختلف برای کارت‌ها */
.reason-card:nth-child(1) {
    transform: translateY(-20px);
}

.reason-card:nth-child(2) {
    transform: translateY(10px);
}

.reason-card:nth-child(3) {
    transform: translateY(-10px);
}

.reason-card:nth-child(4) {
    transform: translateY(15px);
}

.reason-card:nth-child(5) {
    transform: translateY(-15px);
}

.reason-card:nth-child(6) {
    transform: translateY(5px);
}

.reason-card:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
}

.reason-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.reason-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.reason-card:hover .reason-icon {
    transform: scale(1.1) rotate(5deg);
}

.reason-card:hover .reason-icon::before {
    transform: scale(1);
}

.reason-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.reason-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* انیمیشن‌های ظاهر شدن */
[data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* رسپانسیو */
@media (max-width: 992px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .reason-card:nth-child(n) {
        transform: translateY(0);
    }
    
    .reason-card:hover {
        transform: translateY(-10px) !important;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 80px 0;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .reason-card {
        padding: 30px 20px;
    }
    
    .reason-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .wave-background svg {
        height: 60px;
    }
}

@media (max-width: 576px) {
    .why-choose-us {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .reason-card h3 {
        font-size: 1.3rem;
    }
}
/* بخش تیم پزشکی */
.medical-team {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.medical-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(26, 115, 232, 0.02)"/></svg>');
    background-size: cover;
}

.doctors-slider {
    position: relative;
    padding: 40px 0 80px;
}

.doctor-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    margin: 20px;
    position: relative;
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.doctor-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.doctor-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.1);
}

.doctor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 60%, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
}

.doctor-card:hover .doctor-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    /* width: 45px;
    height: 45px; */
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.doctor-info {
    padding: 30px;
    text-align: center;
}

.doctor-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.specialty {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 20px;
}

.doctor-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.stat i {
    color: var(--primary-color);
    font-size: 1rem;
}

.doctor-bio {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.doctor-skills {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.skill-tag {
    background: rgba(26, 115, 232, 0.1);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.doctor-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-appointment, .btn-profile {
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-appointment {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

.btn-appointment:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4);
    color: white;
}

.btn-profile {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-profile:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* استایل‌های اسلایدر */
.doctorsSwiper {
    padding: 20px 10px 60px;
}

.doctorsSwiper .swiper-button-next,
.doctorsSwiper .swiper-button-prev {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
    transition: all 0.3s ease;
    top: 45%;
}

.doctorsSwiper .swiper-button-next:after,
.doctorsSwiper .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.doctorsSwiper .swiper-button-next:hover,
.doctorsSwiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.doctorsSwiper .swiper-button-prev {
    right: -30px;
    left: auto;
}

.doctorsSwiper .swiper-button-next {
    left: -30px;
    right: auto;
}

.doctorsSwiper .swiper-pagination {
    bottom: 20px;
}

.doctorsSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(26, 115, 232, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.doctorsSwiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

/* آمار تیم */
.team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* رسپانسیو */
@media (max-width: 1200px) {
    .doctorsSwiper .swiper-button-prev {
        right: -10px;
    }
    
    .doctorsSwiper .swiper-button-next {
        left: -10px;
    }
}

@media (max-width: 992px) {
    .medical-team {
        padding: 80px 0;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .doctor-image {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .medical-team {
        padding: 60px 0;
    }
    
    .doctorsSwiper .swiper-button-next,
    .doctorsSwiper .swiper-button-prev {
        display: none;
    }
    
    .doctor-actions {
        flex-direction: column;
    }
    
    .btn-appointment, .btn-profile {
        justify-content: center;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .doctor-card {
        margin: 10px;
    }
    
    .doctor-info {
        padding: 20px;
    }
    
    .doctor-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .doctor-image {
        height: 250px;
    }
}
/* بخش تیم پزشکی - طراحی مدرن */
.doctors-team {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.doctors-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(79, 195, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 115, 232, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

/* اسلایدر پزشکان */
.doctors-slider-wrapper {
    position: relative;
    padding: 40px 0;
    z-index: 1;
}

.doctors-swiper {
    padding: 20px 10px 60px;
}

.doctor-profile {
    background: white;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.doctor-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

.doctor-profile:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.9);
}

.doctor-avatar {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
}

.doctor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.doctor-profile:hover .doctor-avatar img {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.doctor-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.doctor-details h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.specialty {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
    padding: 6px 15px;
    background: rgba(26, 115, 232, 0.1);
    border-radius: 20px;
    width: fit-content;
    margin: 0 auto 20px;
}

.doctor-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.meta-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
    min-height: 48px;
}

.doctor-cta .btn-primary {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

.doctor-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4);
}

/* ناوبری اسلایدر */
.doctors-swiper .swiper-button-next,
.doctors-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
    transition: all 0.3s ease;
    top: 45%;
}

.doctors-swiper .swiper-button-next:after,
.doctors-swiper .swiper-button-prev:after {
    display: none;
}

.doctors-swiper .swiper-button-next i,
.doctors-swiper .swiper-button-prev i {
    font-size: 1.2rem;
}

.doctors-swiper .swiper-button-next:hover,
.doctors-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.doctors-swiper .swiper-button-prev {
    right: -25px;
    left: auto;
}

.doctors-swiper .swiper-button-next {
    left: -25px;
    right: auto;
}

.doctors-swiper .swiper-pagination {
    bottom: 20px;
}

.doctors-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(26, 115, 232, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.doctors-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 25px;
    border-radius: 10px;
}

/* آمار سریع */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.stat-content {
    text-align: right;
    flex: 1;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-weight: 600;
    font-size: 1rem;
}

/* رسپانسیو */
@media (max-width: 1200px) {
    .doctors-swiper .swiper-button-prev {
        right: -15px;
    }
    
    .doctors-swiper .swiper-button-next {
        left: -15px;
    }
}

@media (max-width: 992px) {
    .doctors-team {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2.4rem;
    }
    
    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .doctors-team {
        padding: 60px 0;
    }
    
    .doctors-swiper .swiper-button-next,
    .doctors-swiper .swiper-button-prev {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 40px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .doctor-profile {
        padding: 25px 20px;
    }
    
    .doctor-avatar {
        width: 120px;
        height: 120px;
    }
    
    .doctor-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
}
/* استایل فوتر */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-right: 8px;
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--accent-color);
}

.contact-info-footer {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-footer li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info-footer i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-newsletter {
    margin-top: 20px;
}

.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 25px;
    padding: 12px 20px;
    margin-bottom: 10px;
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter .btn {
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.footer-newsletter .btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.4);
}

.clinic-badge {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
}

.badge-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.4);
}

.badge-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    font-weight: 500;
}

.hours-list .time {
    color: var(--accent-color);
}

/* رسپانسیو */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer h5 {
        margin-top: 30px;
    }
    
    .footer h5:first-child {
        margin-top: 0;
    }
    
    .footer-social {
        justify-content: center;
    }
}
       /* استایل اسلایدر بیمه‌ها با چیدمان نیم‌دایره‌ای */
        /* .insurance-slider-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        } */
.insurance-slider-section {
    /* padding: 120px 0; */
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.insurance-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(26, 115, 232, 0.05) 49%, rgba(26, 115, 232, 0.05) 51%, transparent 51%) 0 0 / 60px 60px,
        linear-gradient(-45deg, transparent 49%, rgba(13, 71, 161, 0.03) 49%, rgba(13, 71, 161, 0.03) 51%, transparent 51%) 0 0 / 60px 60px,
        radial-gradient(circle at 20% 30%, rgba(26, 115, 232, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(248, 249, 250, 0.6) 0%, transparent 50%);
}

.insurance-slider-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent, #f8f9fa);
}
        .semicircle-layout {
            position: relative;
            height: 400px;
            margin: 0 auto 60px;
            width: 100%;
            max-width: 900px;
            display: flex;
            justify-content: center;
            align-items: flex-end;
        }
        
        .insurance-slider {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .insurance-swiper {
            width: 100%;
            height: 100%;
            padding: 20px 0;
        }
        
        .insurance-swiper .swiper-wrapper {
            align-items: flex-end;
        }
        
        .insurance-swiper .swiper-slide {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            transition: all 0.5s ease;
            position: relative;
            padding-bottom: 20px;
            opacity: 0.7;
            transform: scale(0.85);
        }
        
        /* ایجاد چیدمان نیم‌دایره‌ای */
        .insurance-swiper .swiper-slide-prev {
            transform: scale(0.9) translateX(80px) translateY(20px) !important;
            opacity: 0.8;
            z-index: 1;
        }
        
        .insurance-swiper .swiper-slide-next {
            transform: scale(0.9) translateX(-80px) translateY(20px) !important;
            opacity: 0.8;
            z-index: 1;
        }
        
        .insurance-swiper .swiper-slide-active {
            transform: scale(1) translateY(0) !important;
            opacity: 1;
            z-index: 2;
        }
        
        .insurance-card {
            background: white;
            border-radius: 20px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            width: 220px;
            position: relative;
            border: 1px solid rgba(26, 115, 232, 0.1);
        }
        
        .insurance-swiper .swiper-slide-active .insurance-card {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transform: translateY(-10px);
        }
        
        .insurance-logo {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            border: 2px solid var(--light-color);
            transition: all 0.3s ease;
        }
        
        .insurance-swiper .swiper-slide-active .insurance-logo {
            transform: scale(1.1);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .insurance-logo i {
            font-size: 2rem;
        }
        
        .insurance-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 10px;
        }
        
        .insurance-type {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: block;
        }
        
        .insurance-coverage {
            color: #666;
            font-size: 0.85rem;
            line-height: 1.5;
            margin-bottom: 0;
        }
        
        /* ناوبری اسلایدر بیمه */
        .insurance-swiper .swiper-button-next,
        .insurance-swiper .swiper-button-prev {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            color: var(--primary-color);
            transition: all 0.3s ease;
            top: 50%;
            margin-top: -25px;
        }
        
        .insurance-swiper .swiper-button-next:after,
        .insurance-swiper .swiper-button-prev:after {
            font-size: 1.2rem;
            font-weight: bold;
        }
        
        .insurance-swiper .swiper-button-next:hover,
        .insurance-swiper .swiper-button-prev:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.1);
        }
        
        .insurance-swiper .swiper-button-prev {
            right: 20px;
            left: auto;
        }
        
        .insurance-swiper .swiper-button-next {
            left: 20px;
            right: auto;
        }
        
        .insurance-swiper .swiper-pagination {
            bottom: -40px;
        }
        
        .insurance-swiper .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: rgba(26, 115, 232, 0.3);
            opacity: 1;
            transition: all 0.3s ease;
        }
        
        .insurance-swiper .swiper-pagination-bullet-active {
            background: var(--primary-color);
            width: 30px;
            border-radius: 10px;
        }

        /* اصلاح ناوبری اسلایدر پزشکان */
        .doctors-swiper {
            position: relative;
            padding: 40px 0 80px;
        }
        
        .doctors-swiper .swiper-button-next,
        .doctors-swiper .swiper-button-prev {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            color: var(--primary-color);
            transition: all 0.3s ease;
            top: 50%;
            margin-top: -30px;
            z-index: 10;
        }
        
        .doctors-swiper .swiper-button-next:after,
        .doctors-swiper .swiper-button-prev:after {
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .doctors-swiper .swiper-button-next:hover,
        .doctors-swiper .swiper-button-prev:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.1);
        }
        
        .doctors-swiper .swiper-button-prev {
            right: -30px;
            left: auto;
        }
        
        .doctors-swiper .swiper-button-next {
            left: -30px;
            right: auto;
        }
        
        .doctors-swiper .swiper-pagination {
            bottom: 20px;
        }
        
        .doctors-swiper .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: rgba(26, 115, 232, 0.3);
            opacity: 1;
            transition: all 0.3s ease;
        }
        
        .doctors-swiper .swiper-pagination-bullet-active {
            background: var(--primary-color);
            width: 30px;
            border-radius: 10px;
        }
/* اصلاحات اسلایدر پزشکان */
.doctors-swiper {
    position: relative;
    padding: 40px 0 80px;
    overflow: hidden;
}

.doctors-swiper .swiper-wrapper {
    align-items: stretch;
}

.doctors-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    padding: 10px;
}

.doctor-profile {
    background: white;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ناوبری اسلایدر پزشکان */
.doctors-swiper .swiper-button-next,
.doctors-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
    transition: all 0.3s ease;
    top: 50%;
    margin-top: -25px;
    z-index: 10;
}

.doctors-swiper .swiper-button-next:after,
.doctors-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.doctors-swiper .swiper-button-next:hover,
.doctors-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.doctors-swiper .swiper-button-prev {
    right: -25px;
    left: auto;
}

.doctors-swiper .swiper-button-next {
    left: -25px;
    right: auto;
}

/* Pagination */
.doctors-swiper .swiper-pagination {
    bottom: 20px;
}

.doctors-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(26, 115, 232, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.doctors-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 25px;
    border-radius: 10px;
}

/* رسپانسیو برای اسلایدر پزشکان */
@media (max-width: 1200px) {
    .doctors-swiper .swiper-button-prev {
        right: -15px;
    }
    
    .doctors-swiper .swiper-button-next {
        left: -15px;
    }
}

@media (max-width: 992px) {
    .doctors-swiper {
        padding: 30px 0 60px;
    }
    
    .doctor-profile {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .doctors-swiper .swiper-button-next,
    .doctors-swiper .swiper-button-prev {
        display: none;
    }
    
    .doctors-swiper .swiper-pagination {
        bottom: 10px;
    }
}

@media (max-width: 576px) {
    .doctors-swiper {
        padding: 20px 0 50px;
    }
    
    .doctor-profile {
        padding: 20px 15px;
    }
}

/* استایل‌های اضافی برای نمایش بهتر */
.doctor-avatar {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
}

.doctor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.doctor-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.doctor-cta {
    margin-top: auto;
    padding-top: 20px;
}
/* صفحه درباره ما */
     
        /* محتوای صفحه درباره ما */
        .about-hero {
            background: linear-gradient(135deg, rgba(26, 115, 232, 0.9), rgba(13, 71, 161, 0.1)), url('../img/photo-1588776814546-1ffcf47267a5.avif');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 20px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.1)" d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" class="shape-fill"></path></svg>');
            background-size: cover;
        }
        
        .about-hero-content {
            position: relative;
            z-index: 1;
        }
        
        .about-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .about-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .breadcrumb {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 10px 25px;
            display: inline-block;
        }
        
        .breadcrumb-item a {
            color: white;
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: var(--accent-color);
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            color: white;
        }
        
        /* بخش تاریخچه */
        .history-section {
            padding: 10px 0;
            background: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background: var(--primary-color);
            top: 0;
            bottom: 0;
            right: 50%;
            margin-right: -3px;
            border-radius: 3px;
        }
        
        .timeline-item {
            padding: 10px 60px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
            margin-bottom: 50px;
        }
        
        .timeline-item:nth-child(odd) {
            right: 0;
        }
        
        .timeline-item:nth-child(even) {
            right: 50%;
        }
        
        .timeline-content {
            padding: 20px 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .timeline-item:nth-child(odd) .timeline-content::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            left: -10px;
            top: 30px;
            background: white;
            transform: rotate(45deg);
            /* box-shadow: 3px -3px 5px rgba(0, 0, 0, 0.05); */
        }
        
        .timeline-item:nth-child(even) .timeline-content::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            top: 30px;
            background: white;
            transform: rotate(45deg);
            /* box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.05); */
        }
        
        .timeline-year {
            position: absolute;
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(26, 115, 232, 0.4);
            z-index: 1;
        }
        
        .timeline-item:nth-child(odd) .timeline-year {
            left: -40px;
            top: 20px;
        }
        
        .timeline-item:nth-child(even) .timeline-year {
            right: -40px;
            top: 20px;
        }
        
        .timeline-content h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.4rem;
        }
        
       
        /* بخش ارزش‌ها */
        .values-section {
            padding: 100px 0;
            background: white;
        }
        
        .value-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            border-bottom: 4px solid var(--primary-color);
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .value-icon {
            width: 70px;
            height: 70px;
            background: rgba(26, 115, 232, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        
        .value-card h4 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        /* بخش تیم مدیریت */
        .team-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        }
        
        .team-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .team-img {
            height: 300px;
            overflow: hidden;
        }
        
        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .team-card:hover .team-img img {
            transform: scale(1.1);
        }
        
        .team-info {
            padding: 25px;
            text-align: center;
        }
        
        .team-info h4 {
            font-size: 1.4rem;
            margin-bottom: 5px;
            color: var(--dark-color);
        }
        
        .team-info .position {
            color: var(--primary-color);
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .team-social {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }
        
        .team-social a {
            width: 36px;
            height: 36px;
            background: #f1f1f1;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-color);
            transition: all 0.3s ease;
        }
        
        .team-social a:hover {
            background: var(--primary-color);
            color: white;
        }
        
        /* بخش آمار */
        .stats-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            text-align: center;
        }
        
        .stat-item {
            margin-bottom: 30px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--accent-color);
        }
        
        .stat-text {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
    
        .clinic-badge {
            text-align: center;
            margin-bottom: 25px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .badge-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 1.8rem;
            color: var(--accent-color);
        }
        
        .clinic-badge h5 {
            color: white;
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 1.4rem;
        }
        
        .badge-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }
        

        
        /* رسپانسیو */
        @media (max-width: 992px) {
            .timeline::after {
                right: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-right: 70px;
                padding-left: 25px;
            }
            
            .timeline-item:nth-child(even) {
                right: 0;
            }
            
            .timeline-item:nth-child(odd) .timeline-year,
            .timeline-item:nth-child(even) .timeline-year {
                right: auto;
                left: 20px;
            }
            
            .timeline-item:nth-child(odd) .timeline-content::after,
            .timeline-item:nth-child(even) .timeline-content::after {
                right: auto;
                left: -10px;
            }
        }
        
        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .top-bar-content {
                justify-content: center;
                gap: 15px;
            }
            
            .contact-info {
                justify-content: center;
            }
        }
 