: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);
        }
 .about-hero {
    /* background: linear-gradient(135deg, 
        rgba(26, 115, 232, 0.85) 0%, 
        rgba(13, 71, 161, 0.8) 50%,
        rgba(26, 115, 232, 0.7) 100%),
        url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1167&q=80'); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        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.05)" 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;
    animation: float 6s ease-in-out infinite;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.1));
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.about-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, var(--accent-color), #ffffff);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(0, 229, 255, 0.5);
}

.about-hero p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 0 auto 35px;
    max-width: 600px;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}
/* Breadcrumb بهبود یافته */
.breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 12px 30px;
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.breadcrumb:hover::before {
    transform: translateX(100%);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.breadcrumb-item.active {
    color: var(--accent-color);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    font-weight: bold;
    margin: 0 15px;
}
.breadcrumb-item+.breadcrumb-item::before {
    float: right;
    padding-right: var(--bs-breadcrumb-item-padding-x);
}
 /* استایل‌های بخش خدمات */
        .services-main {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--secondary-color);
            font-weight: 700;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--accent-color);
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .service-image {
            height: 200px;
            overflow: hidden;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.05);
        }
        
        .service-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-title {
            color: var(--secondary-color);
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .service-description {
            color: #666;
            line-height: 1.7;
            margin-bottom: 20px;
            flex: 1;
        }
        
        .service-features {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
        }
        
        .service-features li {
            padding: 5px 0;
            position: relative;
            padding-right: 25px;
            color: #555;
        }
        
        .service-features li:before {
            content: '✓';
            position: absolute;
            right: 0;
            color: var(--accent-color);
            font-weight: bold;
        }
        
        .service-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        
        .service-price {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.1rem;
        }
        
        .service-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 8px 20px;
            font-weight: 500;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            font-size: 0.9rem;
        }
        
        .service-btn:hover {
            background: var(--secondary-color);
            color: white;
        }
        
        /* استایل‌های بخش اطلاعات */
        .info-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 60px 0;
            border-radius: 15px;
            margin-top: 50px;
        }
        
        .info-title {
            text-align: center;
            margin-bottom: 40px;
            font-weight: 700;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .info-item {
            text-align: center;
            padding: 20px;
        }
        
        .info-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }
        
        .info-item h4 {
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .info-item p {
            opacity: 0.9;
            line-height: 1.7;
        }
                /* استایل‌های بخش جزئیات */
        .service-detail-main {
            padding: 80px 0;
        }
        
        .service-detail-content {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-bottom: 40px;
        }
        
        .service-detail-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        
        .service-detail-info {
            padding: 40px;
        }
        
        .service-detail-title {
            color: var(--secondary-color);
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .service-detail-description {
            margin-bottom: 30px;
            line-height: 1.8;
            font-size: 1.1rem;
        }
        
        .detail-section {
            margin-bottom: 40px;
        }
        
        .detail-section-title {
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 1.4rem;
            position: relative;
            padding-right: 15px;
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 10px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 10px;
            transition: transform 0.3s;
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .feature-content h4 {
            color: var(--secondary-color);
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .process-step {
            display: flex;
            gap: 20px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 10px;
            transition: transform 0.3s;
        }
        
        .process-step:hover {
            transform: translateX(5px);
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .step-content {
            flex: 1;
        }
        
        .step-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--secondary-color);
            font-size: 1.2rem;
        }
        
        .step-description {
            color: #666;
            line-height: 1.7;
        }
        
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-table th {
            background: var(--primary-color);
            color: white;
            padding: 15px;
            text-align: right;
            font-weight: 600;
        }
        
        .pricing-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .pricing-table tr:nth-child(even) {
            background: #f8f9fa;
        }
        
        .pricing-table tr:hover {
            background: #e9ecef;
        }
        
        .price {
            font-weight: 700;
            color: var(--primary-color);
        }
        
        /* استایل‌های سایدبار */
        .service-sidebar {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .sidebar-title {
            color: var(--secondary-color);
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .sidebar-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 3px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        
        .service-list {
            list-style: none;
            padding: 0;
        }
        
        .service-list li {
            margin-bottom: 12px;
        }
        
        .service-list a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            padding: 10px 15px;
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        .service-list a:hover {
            color: var(--primary-color);
            background: #f8f9fa;
            transform: translateX(-5px);
        }
        
        .service-list i {
            margin-left: 8px;
            color: var(--accent-color);
        }
        
        .consultation-box {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            margin-top: 30px;
        }
        
        .consultation-box h4 {
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .consultation-box p {
            margin-bottom: 25px;
            opacity: 0.9;
            line-height: 1.7;
        }
        
        .consultation-btn {
            background: white;
            color: var(--primary-color);
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
            display: block;
            width: 100%;
            font-size: 1.1rem;
        }
        
        .consultation-btn:hover {
            background: var(--accent-color);
            color: white;
            transform: translateY(-2px);
        }
        
        .doctor-card {
            display: flex;
            gap: 15px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 10px;
            margin-bottom: 20px;
            transition: transform 0.3s;
        }
        
        .doctor-card:hover {
            transform: translateY(-5px);
        }
        
        .doctor-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }
        
        .doctor-info h5 {
            color: var(--secondary-color);
            margin-bottom: 5px;
        }
        
        .doctor-specialty {
            color: var(--primary-color);
            font-weight: 500;
            margin-bottom: 8px;
        }
        
       
        
        /* استایل‌های ریسپانسیو */
        @media (max-width: 768px) {
            .top-bar-content {
                flex-direction: column;
                gap: 10px;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 5px;
                text-align: center;
            }
            
            .service-detail-hero {
                padding: 80px 0 40px;
            }
            
            .service-detail-hero h1 {
                font-size: 2rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                flex-direction: column;
                text-align: center;
            }
            
            .search-input {
                width: 150px;
            }
            
            .doctor-card {
                flex-direction: column;
                text-align: center;
            }
        }