        :root {
            --primary-color: #27ae60;
            --secondary-color: #6c5ce7;
            --accent-color: #74b9ff;
            --text-primary: #2c3e50;
            --text-secondary: #7f8c8d;
            --background-light: #f8f9fa;
            --white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #27ae60, #2ecc71);
            --gradient-secondary: linear-gradient(135deg, #6c5ce7, #a29bfe);
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --box-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
            --border-radius: 15px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Vazirmatn', sans-serif;
            direction: rtl;
            background: var(--background-light);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Custom Bootstrap Overrides */
        .btn {
            border-radius: 10px;
            font-weight: 600;
            padding: 5px 35px;
            transition: var(--transition);
            border: none;
        }

        .btn-primary {
            background: var(--gradient-primary);
            border: none;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--box-shadow-hover);
        }

        .btn-outline-primary {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            background: transparent;
        }

        .btn-outline-primary:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }

        /* Header Styles */
        .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            transition: var(--transition);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98) !important;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-primary) !important;
        }

        .navbar-brand .highlight {
            color: var(--primary-color);
        }

        .navbar-nav .nav-link {
            color: var(--text-primary) !important;
            font-weight: 500;
            padding: 8px 15px !important;
            transition: var(--transition);
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            right: 50%;
           
            transition: var(--transition);
        }

        .navbar-nav .nav-link:hover::after {
            width: 80%;
            right: 10%;
        }

        /* Hero Section with Video Background */
        .hero-section {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            color: white;
            overflow: hidden;
            margin: 110px 20px;
            border-radius: 20px;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 2;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .hero-content {
            z-index: 3;
            position: relative;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            font-weight: 400;
        }

        .service-cards {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--border-radius);
            padding: 25px 20px;
            text-align: center;
            min-width: 220px;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: var(--transition);
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .service-card.active {
            background: var(--gradient-primary);
            border-color: var(--primary-color);
        }

        .service-card h5 {
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .service-card p {
            font-size: 0.85rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Stats Section */
        .stats-section {
            background: white;
            padding: 80px 0;
            position: relative;
        }

        .stats-title {
            color: var(--text-primary);
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 4rem;
            line-height: 1.4;
        }

        .stat-item {
            text-align: center;
            padding: 2rem 1rem;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 1rem;
            display: block;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 1.1rem;
            font-weight: 500;
            line-height: 1.4;
        }

        /* Process Section - Timeline Style */
        .process-section {
            background: var(--background-light);
            padding: 80px 0;
            position: relative;
        }

        .process-title {
            color: var(--secondary-color);
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .process-subtitle {
            color: var(--text-secondary);
            font-size: 1.2rem;
            margin-bottom: 4rem;
            font-weight: 400;
        }

        .timeline {
            position: relative;
            margin: 4rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            right: 50%;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
            transform: translateX(50%);
            border-radius: 2px;
            box-shadow: 0 0 10px rgba(39, 174, 96, 0.3);
        }

        .timeline-step {
            position: relative;
            margin-bottom: 5rem;
            width: 100%;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .timeline-step.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-step .content {
            width: 45%;
            padding: 2rem;
            background: white;
            border-radius: var(--border-radius);
            position: relative;
            z-index: 2;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .timeline-step .content::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: var(--border-radius) var(--border-radius) 0 0;
        }

        .timeline-step .content:hover {
            transform: translateY(-8px);
            box-shadow: var(--box-shadow-hover);
        }

        .timeline-step .circle {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            border-radius: 50%;
            position: absolute;
            top: 20px;
            right: 50%;
            transform: translateX(50%);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 3;
            box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
            border: 4px solid white;
            transition: var(--transition);
        }

        .timeline-step .circle:hover {
            transform: translateX(50%) scale(1.1);
            box-shadow: 0 12px 35px rgba(39, 174, 96, 0.5);
        }

        .timeline-step:nth-child(even) .content {
            float: left;
        }

        .timeline-step:nth-child(odd) .content {
            float: right;
        }

        .timeline-step::after {
            content: "";
            display: table;
            clear: both;
        }

        .timeline-step .step-number {
            color: var(--primary-color);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .timeline-step .title {
            font-weight: 700;
            color: var(--text-primary);
            font-size: 1.4rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .timeline-step .description {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        .timeline-step .process-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }

        .timeline-step .process-link:hover {
            color: var(--secondary-color);
            gap: 12px;
        }

        .timeline-step .process-link i {
            transition: var(--transition);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .timeline::before {
                right: 30px;
                transform: none;
            }

            .timeline-step .content {
                width: calc(100% - 80px);
                float: none !important;
                margin-right: 60px;
            }

            .timeline-step .circle {
                right: 30px;
                transform: none;
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .timeline-step .circle:hover {
                transform: scale(1.1);
            }
        }

        @media (max-width: 576px) {
            .timeline-step .content {
                padding: 1.5rem;
                margin-right: 50px;
                width: calc(100% - 70px);
            }

            .timeline-step .circle {
                width: 40px;
                height: 40px;
                font-size: 1rem;
                right: 20px;
            }

            .timeline::before {
                right: 20px;
            }

            .timeline-step .title {
                font-size: 1.2rem;
            }
        }

        /* Why Choose Section */
        .why-choose-section {
            background: white;
            padding: 80px 0;
        }

        .section-title {
            color: var(--secondary-color);
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 4rem;
        }

        .feature-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            height: 100%;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--box-shadow-hover);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #e8f4fd, #d1ecf1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            margin-right: auto;
        }

        .feature-card h5 {
            color: var(--text-primary);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* CTA Section */
        .cta-section {
            background: white;
            padding: 100px 0;
            position: relative;
        }

        .cta-illustration {
            max-width: 100%;
            height: auto;
        }

        .cta-content h2 {
            color: var(--text-primary);
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .cta-content .highlight {
            color: var(--primary-color);
        }

        .cta-content p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        /* Footer */
        .footer {
            background: var(--text-primary);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            margin-bottom: 2rem;
        }

        .footer h5 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .footer a {
            color: #bdc3c7;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            border-top: 1px solid #34495e;
            padding-top: 2rem;
            text-align: center;
            color: #bdc3c7;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            animation: fadeInUp 0.8s ease-out;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .service-cards {
                flex-direction: column;
                align-items: center;
            }
            
            .service-card {
                width: 100%;
                max-width: 300px;
            }
            
            .stats-title {
                font-size: 1.8rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .process-title,
            .section-title {
                font-size: 1.8rem;
            }
            
            .cta-content h2 {
                font-size: 2.2rem;
            }
        }

        /* Scroll Animations */
        .scroll-animate {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }

        .scroll-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Dropdown Menu */
        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-radius: var(--border-radius);
            padding: 0.5rem 0;
            margin-top: 0.5rem;
        }

        .dropdown-item {
            padding: 0.75rem 1.5rem;
            transition: var(--transition);
            font-weight: 500;
        }

        .dropdown-item:hover {
            background: var(--gradient-primary);
            color: white;
        }

        .dropdown-toggle::after {
            transition: var(--transition);
        }

        .dropdown.show .dropdown-toggle::after {
            transform: rotate(180deg);
        }

        /* Consultants Section */
        .consultants-section {
            background: white;
            padding: 80px 0;
        }

        .consultant-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            text-align: center;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
            height: 100%;
        }

        .consultant-card:hover {
            transform: translateY(-10px);
            
        }

        .consultant-image {
            width: 150px;
            height: 150px;
            margin: 0 auto 1.5rem;
            border-radius: 15px;
            overflow: hidden;
            transition: var(--transition);
        }

        .consultant-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .consultant-card:hover .consultant-image {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(39, 174, 96, 0.4);
        }

        .consultant-card:hover .consultant-image img {
            transform: scale(1.1);
        }

        .consultant-name {
            color: var(--text-primary);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .consultant-specialty {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .consultant-description {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* FAQ Section */
        .faq-section {
            background: var(--background-light);
            padding: 80px 0;
        }

        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: var(--border-radius) !important;
            box-shadow: var(--box-shadow);
            overflow: hidden;
        }

        .accordion-button {
            background: white;
            border: none;
            padding: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
            border-radius: var(--border-radius) !important;
        }

        .accordion-button:not(.collapsed) {
            background: var(--gradient-primary);
            color: white;
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }

        .accordion-body {
            padding: 1.5rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Pricing Section */
        .pricing-section {
            background: white;
            padding: 80px 0;
        }

        .pricing-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .pricing-card.featured {
            border: 2px solid var(--primary-color);
            transform: scale(1.05);
        }

        .pricing-card.featured::before {
            content: 'محبوب‌ترین';
            position: absolute;
            top: 1rem;
            right: -2rem;
            background: var(--gradient-primary);
            color: white;
            padding: 0.5rem 3rem;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 600;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--box-shadow-hover);
        }

        .pricing-card.featured:hover {
            transform: translateY(-10px) scale(1.05);
        }

        .pricing-title {
            color: var(--text-primary);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .pricing-price {
            color: var(--primary-color);
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .pricing-currency {
            color: var(--text-secondary);
            font-size: 1rem;
            margin-bottom: 2rem;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            padding: 0.5rem 0;
            color: var(--text-secondary);
            position: relative;
            padding-right: 2rem;
        }

        .pricing-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--primary-color);
            position: absolute;
            right: 0;
        }

        /* Testimonials Section - کاملاً بازنویسی شده */
        .testimonials-section {
            background: var(--background-light);
            padding: 80px 0;
            overflow: hidden;
        }

        .testimonials-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-slider {
            overflow: hidden;
            border-radius: var(--border-radius);
            direction: ltr;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            will-change: transform;
        }

        .testimonial-slide {
            min-width: 100%;
            display: flex !important;
            gap: 2rem;
            padding: 0 1rem;
        }

        @media (min-width: 768px) {
            .testimonial-slide {
                min-width: 50%;
            }
        }

        @media (min-width: 992px) {
            .testimonial-slide {
                min-width: 33.333%;
            }
        }

        .testimonial-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 2rem;
           
            text-align: center;
            transition: var(--transition);
            position: relative;
            flex: 1;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            right: 20px;
            font-size: 3rem;
            color: var(--primary-color);
            opacity: 0.2;
            font-family: serif;
        }

        .testimonial-rating {
            color: #ffd700;
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .testimonial-text {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-style: italic;
            flex-grow: 1;
        }

        .testimonial-author h5 {
            color: var(--text-primary);
            font-weight: 700;
            margin-bottom: 0.3rem;
            font-size: 1.1rem;
        }

        .testimonial-author p {
            color: var(--primary-color);
            font-size: 0.9rem;
            margin: 0;
        }

        /* Slider Controls */
        .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin-top: 3rem;
            direction: ltr;
        }

        .slider-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid var(--primary-color);
            background: white;
            color: var(--primary-color);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: var(--box-shadow);
        }

        .slider-btn:hover:not(:disabled) {
            background: var(--primary-color);
            color: white;
            transform: scale(1.1);
        }

        .slider-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .slider-dots {
            display: flex;
            gap: 10px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: var(--primary-color);
            transform: scale(1.3);
        }

        .slider-dot:hover {
            background: var(--primary-color);
        }

        /* Footer Update */
        .footer {
            background: white !important;
            color: var(--text-primary) !important;
            border-top: 1px solid #e9ecef;
        }

        .footer h5 {
            color: var(--primary-color) !important;
        }

        .footer a {
            color: var(--text-secondary) !important;
        }

        .footer a:hover {
            color: var(--primary-color) !important;
        }

        .footer-bottom {
            border-top: 1px solid #e9ecef !important;
            color: var(--text-secondary) !important;
        }

        @font-face {
          font-family: 'Peyda100';
          src: url('assets/fonts/PeydaWebFaNum-Thin.4dc9791976a333b36501.woff2') format('woff2');
          font-weight: 100;
          font-style: normal;
        }
        @font-face {
          font-family: 'Peyda200';
          src: url('assets/fonts/PeydaWebFaNum-ExtraLight.cb12d7d5e9d6131c285f.woff') format('woff');
          font-weight: 200;
          font-style: normal;
        }
        @font-face {
          font-family: 'Peyda300';
          src: url('assets/fonts/PeydaWebFaNum-Light.e5c4aa2be8084a7fd345.woff2') format('woff2');
          font-weight: 300;
          font-style: normal;
        }
        @font-face {
          font-family: 'Peyda400';
          src: url('assets/fonts/PeydaWebFaNum-Regular.a85fc388413d6fb2707b.woff2') format('woff2');
          font-weight: 400;
          font-style: normal;
        }
        @font-face {
          font-family: 'Peyda500';
          src: url('assets/fonts/PeydaWebFaNum-Medium.5ae94427bffc3c292a70.woff') format('woff');
          font-weight: 500;
          font-style: normal;
        }
        @font-face {
          font-family: 'Peyda600';
          src: url('assets/fonts/PeydaWebFaNum-SemiBold.bee880ae22ea6f0f046e.woff') format('woff');
          font-weight: 600;
          font-style: normal;
        }
        @font-face {
          font-family: 'Peyda700';
          src: url('assets/fonts/PeydaWebFaNum-Bold.2106f9398d9799d35d55.woff2') format('woff2');
          font-weight: 700;
          font-style: normal;
        }
        @font-face {
          font-family: 'Peyda800';
          src: url('assets/fonts/PeydaWebFaNum-ExtraBold.5d0e4f0b138c23493636.woff') format('woff');
          font-weight: 800;
          font-style: normal;
        }
        @font-face {
          font-family: 'Peyda900';
          src: url('assets/fonts/PeydaWebFaNum-Black.ce8ffc88f1303a4ed135.woff') format('woff');
          font-weight: 900;
          font-style: normal;
        }
        body, html {
          font-family: 'Peyda400', sans-serif !important; /* Regular */
          font-weight: 400 !important;
        }

        h1, h2 {
          font-family: 'Peyda900', sans-serif !important; /* Black */
          font-weight: 900 !important;
        }

        h3, h4 {
          font-family: 'Peyda700', sans-serif !important; /* Bold */
          font-weight: 700 !important;
        }

        p {
          font-family: 'Peyda300', sans-serif !important; /* Light */
          font-weight: 300 !important;
        }

        strong, b {
          font-family: 'Peyda800', sans-serif !important; /* ExtraBold */
          font-weight: 800 !important;
        }

        em {
          font-family: 'Peyda200', sans-serif !important; /* ExtraLight */
          font-weight: 200 !important;
        }

        a {
          font-family: 'Peyda500', sans-serif !important; /* Medium */
          font-weight: 500 !important;
        }

        small, .caption {
          font-family: 'Peyda100', sans-serif !important; /* Thin */
          font-weight: 100 !important;
        }

        button, input, textarea, select {
          font-family: 'Peyda600', sans-serif !important; /* SemiBold */
          font-weight: 600 !important;
        }

        /* استایل‌های اضافی برای قسمت‌های جدید */
        
        /* Hero Slider Styles */
        .hero-slider {
            position: relative;
            overflow: hidden;
        }
        
        .hero-slide {
            position: relative;
            min-height: 100vh;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }
        
        .hero-slide-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }
        
        .hero-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            gap: 10px;
        }
        
        .hero-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .hero-dot.active {
            background: white;
        }
        
        .hero-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 3;
        }
        
        .hero-nav-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .hero-nav-btn.prev {
            right: 20px;
        }
        
        .hero-nav-btn.next {
            left: 20px;
        }
        
        /* Logo Styles */
        .navbar-brand img {
                height: 50px;
            width: auto;
        }
        
        /* Therapists Slider Styles */
        .therapists-slider {
            position: relative;
            overflow: hidden;
        }
        
        .therapists-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .therapist-slide {
            flex: 0 0 33.333%;
            padding: 0 15px;
        }
        
        @media (max-width: 992px) {
            .therapist-slide {
                flex: 0 0 50%;
            }
        }
        
        @media (max-width: 768px) {
            .therapist-slide {
                flex: 0 0 100%;
            }
        }
        
        .therapist-card {
            background: white;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            height: 100%;
        }
        
        .therapist-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .therapist-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 15px;
            border: 4px solid #f8f9fa;
        }
        
        /* Articles Section Styles */
        .articles-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .article-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .article-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .article-content {
            padding: 20px;
        }
        
        /* About Section Styles */
        .about-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        
        /* Team Section Styles */
        .team-section {
            padding: 80px 0;
        }
        
        .team-member {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .team-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 15px;
            border: 5px solid #f8f9fa;
        }
     


   
/* Hero Section with Slider - Fixed */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 70px; /* فقط margin-top برای navbar */
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Navigation Buttons */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.hero-nav-btn.prev {
    right: 30px;
}

.hero-nav-btn.next {
    left: 30px;
}

/* Dots Indicator */
.hero-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.hero-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-dot.active {
    background: white;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .hero-nav-btn.prev {
        right: 15px;
    }
    
    .hero-nav-btn.next {
        left: 15px;
    }
    
    .hero-controls {
        bottom: 20px;
    }
    
    .hero-dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}