        :root {
            /* Colors matching your logo */
            --color-dark-blue: #0b457f;
            --color-teal: #00a8a8;
            --color-orange: #f29b11;
            --color-light-bg: #f4f7f9;
        }

        body {
            font-family: 'Vazirmatn', sans-serif;
            background-color: var(--color-light-bg);
            color: #333;
        }

        /* --- Top Promo Banner --- */
        .top-banner {
            background: linear-gradient(90deg, var(--color-teal), var(--color-dark-blue));
            color: white;
            font-size: 0.9rem;
            padding: 8px 0;
            text-align: center;
        }

        /* --- Navbar --- */
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            padding: 15px 0;
        }

        .navbar-brand img {
            height: 45px;
        }

        .nav-link {
            color: var(--color-dark-blue) !important;
            font-weight: 600;
            margin: 0 10px;
            position: relative;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--color-teal) !important;
        }

        .btn-outline-primary-custom {
            color: var(--color-dark-blue);
            border: 2px solid var(--color-dark-blue);
            border-radius: 8px;
            font-weight: 600;
            padding: 8px 20px;
            transition: all 0.3s;
        }

        .btn-outline-primary-custom:hover {
            background-color: var(--color-dark-blue);
            color: white;
        }

        .btn-primary-custom {
            background-color: var(--color-teal);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            padding: 10px 25px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0, 168, 168, 0.3);
        }

        .btn-primary-custom:hover {
            background-color: #008f8f;
            color: white;
            transform: translateY(-2px);
        }

        /* --- Hero Section --- */
        .hero-section {
            padding: 80px 0;
            background-color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        /* Background decorative circle */
        .hero-bg-shape {
            position: absolute;
            top: -100px;
            left: -100px;
            width: 500px;
            height: 500px;
            background: linear-gradient(135deg, rgba(0, 168, 168, 0.1) 0%, rgba(11, 69, 127, 0.05) 100%);
            border-radius: 50%;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .badge-custom {
            background-color: rgba(242, 155, 17, 0.15);
            color: var(--color-orange);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 20px;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--color-dark-blue);
            line-height: 1.4;
            margin-bottom: 20px;
        }

        .hero-title span {
            color: var(--color-teal);
        }

        .hero-desc {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        /* Hero Image & Floating Cards */
        .hero-image-wrapper {
            position: relative;
            z-index: 1;
            text-align: left;
        }

        .hero-image {
            width: 100%;
            max-width: 500px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(11, 69, 127, 0.15);
        }

        .floating-card {
            position: absolute;
            background: white;
            padding: 15px 20px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 15px;
            animation: float 4s ease-in-out infinite;
        }

        .float-1 {
            bottom: 30px;
            right: -20px;
        }

        .float-2 {
            top: 40px;
            left: -10px;
            animation-delay: 2s;
        }

        .floating-card .icon-box {
            width: 45px;
            height: 45px;
            background-color: rgba(0, 168, 168, 0.1);
            color: var(--color-teal);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .floating-card .text-box h5 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--color-dark-blue);
        }

        .floating-card .text-box p {
            margin: 0;
            font-size: 0.8rem;
            color: #777;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        /* --- Stats Section --- */
        .stats-section {
            margin-top: -40px;
            position: relative;
            z-index: 2;
        }

        .stat-box {
            background: white;
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-bottom: 4px solid var(--color-teal);
            transition: transform 0.3s;
        }

        .stat-box:hover {
            transform: translateY(-10px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--color-dark-blue);
        }

        .stat-text {
            color: #666;
            font-weight: 600;
            margin-top: 5px;
        }
          /* --- Section Titles --- */
    .section-title {
        text-align: center;
        margin-bottom: 50px;
    }
    .section-title h2 {
        font-weight: 800;
        color: var(--color-dark-blue);
        font-size: 2.2rem;
    }
    .section-title h2 span {
        color: var(--color-teal);
    }
    .section-title p {
        color: #666;
        font-size: 1.1rem;
        margin-top: 10px;
    }

    /* --- Live Classes Cards --- */
    .course-card {
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.4s ease;
        border: 1px solid #eee;
        position: relative;
        top: 0;
    }
    .course-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(11, 69, 127, 0.1);
        border-color: var(--color-teal);
    }
    .course-img-wrapper {
        position: relative;
        height: 200px;
        overflow: hidden;
    }
    .course-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .course-card:hover .course-img-wrapper img {
        transform: scale(1.05);
    }
    .course-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--color-orange);
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: bold;
    }
    .course-content {
        padding: 20px;
    }
    .instructor-info {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }
    .instructor-info img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
    .course-meta {
        display: flex;
        justify-content: space-between;
        font-size: 0.85rem;
        color: #777;
        background: #f8f9fa;
        padding: 10px;
        border-radius: 8px;
        margin-bottom: 15px;
    }

    /* --- Mock Test Cards --- */
    .mock-card {
        background: var(--color-dark-blue);
        border-radius: 12px;
        padding: 30px 20px;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
        transition: all 0.3s;
        cursor: pointer;
    }
    .mock-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(0,168,168,0.2) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.5s;
    }
    .mock-card:hover::before {
        opacity: 1;
    }
    .mock-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 25px rgba(0, 168, 168, 0.3);
    }
    .mock-icon {
        font-size: 2.5rem;
        color: var(--color-orange);
        margin-bottom: 15px;
    }
    .mock-title {
        font-weight: bold;
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    /* --- 6 Steps Section --- */
    .step-card {
        background: #fff;
        padding: 30px;
        border-radius: 16px;
        height: 100%;
        border: 1px solid #eaeaea;
        transition: all 0.3s ease;
        position: relative;
    }
    .step-card:hover {
        border-color: var(--color-teal);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .step-number {
        font-size: 3rem;
        font-weight: 900;
        color: rgba(0, 168, 168, 0.15);
        position: absolute;
        top: 20px;
        left: 20px;
        line-height: 1;
    }
    .step-icon {
        width: 60px;
        height: 60px;
        background: rgba(11, 69, 127, 0.05);
        color: var(--color-dark-blue);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 20px;
        transition: all 0.3s;
    }
    .step-card:hover .step-icon {
        background: var(--color-teal);
        color: white;
    }
    .step-title {
        font-size: 1.2rem;
        font-weight: bold;
        color: var(--color-dark-blue);
        margin-bottom: 10px;
    }
    .step-desc {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    /* --- Platform & AI Features Section --- */
    .platform-section {
        background: linear-gradient(180deg, #ffffff 0%, #f0f7f7 100%);
        overflow: hidden;
    }
    .mockup-container {
        position: relative;
        padding: 20px;
    }
    .mockup-container img {
        border-radius: 20px;
        box-shadow: 0 30px 60px rgba(11, 69, 127, 0.15);
        border: 8px solid white;
        transition: transform 0.5s ease;
    }
    .mockup-container:hover img {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 40px 80px rgba(0, 168, 168, 0.2);
    }
    .feature-box {
        background: #fff;
        border-radius: 20px;
        padding: 30px 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.04);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border-bottom: 4px solid transparent;
        height: 100%;
    }
    .feature-box:hover {
        transform: translateY(-15px);
        border-bottom-color: var(--color-orange);
        box-shadow: 0 20px 40px rgba(11, 69, 127, 0.1);
    }
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        background: rgba(0, 168, 168, 0.1);
        color: var(--color-teal);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin: 0 auto 20px auto;
        transition: all 0.4s ease;
    }
    .feature-box:hover .feature-icon-wrapper {
        background: var(--color-teal);
        color: white;
        transform: rotateY(360deg);
    }

    /* --- Reviews Section --- */
    .social-btn-group .btn {
        border-radius: 30px;
        padding: 8px 25px;
        font-weight: 600;
        margin: 0 5px;
        border: 2px solid transparent;
        transition: all 0.3s;
    }
    .social-btn-group .btn-tiktok { background: #000; color: white; }
    .social-btn-group .btn-tiktok:hover { background: #333; transform: scale(1.05); }
    .social-btn-group .btn-facebook { background: #1877f2; color: white; }
    .social-btn-group .btn-facebook:hover { background: #166fe5; transform: scale(1.05); }
    .social-btn-group .btn-youtube { background: #ff0000; color: white; }
    .social-btn-group .btn-youtube:hover { background: #e60000; transform: scale(1.05); }

    .review-card {
        background: white;
        border-radius: 20px;
        padding: 25px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        border: 1px solid rgba(0,0,0,0.02);
        transition: all 0.3s;
        margin-bottom: 20px;
    }
    .review-card:hover {
        box-shadow: 0 15px 35px rgba(11, 69, 127, 0.15);
        transform: translateY(-5px);
    }
    .review-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }
    .review-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--color-teal);
    }
    .review-stars {
        color: var(--color-orange);
        font-size: 0.9rem;
    }
    .review-text {
        color: #555;
        font-size: 0.95rem;
        line-height: 1.7;
        font-style: italic;
    }

    /* --- Partners Section --- */
    .partner-logo {
        filter: grayscale(100%);
        opacity: 0.5;
        transition: all 0.4s ease;
        max-height: 60px;
        width: auto;
        margin: 15px;
    }
    .partner-logo:hover {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.15);
    }
        /* --- FAQ Section --- */
        .faq-section {
        background-color: #f4f9f9;
        position: relative;
    }
    .custom-accordion .accordion-item {
        border: none;
        border-radius: 15px !important;
        margin-bottom: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        overflow: hidden;
        transition: all 0.3s;
    }
    .custom-accordion .accordion-item:hover {
        box-shadow: 0 10px 25px rgba(11, 69, 127, 0.1);
        transform: translateX(-5px); /* حرکت نرم به سمت چپ هنگام هاور */
    }
    .custom-accordion .accordion-button {
        font-weight: 600;
        color: var(--color-dark-blue);
        background-color: #fff;
        padding: 20px 25px;
        box-shadow: none !important;
    }
    .custom-accordion .accordion-button:not(.collapsed) {
        color: var(--color-teal);
        background-color: #fff;
        border-bottom: 1px solid rgba(0, 168, 168, 0.1);
    }
    .custom-accordion .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230ba5a5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
    .custom-accordion .accordion-body {
        color: #666;
        line-height: 1.8;
        padding: 20px 25px;
        background-color: #fafbfc;
    }

    /* --- CTA & Contact Section --- */
    .cta-section {
        background: linear-gradient(135deg, var(--color-dark-blue) 0%, #0a3055 100%);
        position: relative;
        padding: 80px 0;
        color: white;
    }
    .cta-pattern {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background-image: radial-gradient(var(--color-teal) 1px, transparent 1px);
        background-size: 30px 30px;
        opacity: 0.1;
    }
    .contact-glass-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }
    .custom-input {
        background: rgba(255, 255, 255, 0.9);
        border: none;
        padding: 15px 20px;
        border-radius: 10px;
    }
    .custom-input:focus {
        background: #fff;
        box-shadow: 0 0 0 4px rgba(0, 168, 168, 0.3);
    }
/* =========================================
   Teachers Section Styles
========================================= */
/* ============================================================
   بخش معرفی اساتید - استایل کامل و یکپارچه
   ============================================================ */

   .teachers-section {
    padding: 80px 0;
    background-color: #f9fbfd; /* پس‌زمینه ملایم برای متمایز شدن کارت‌ها */
}

.teacher-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* انیمیشن نرم و فنری */
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
    margin-bottom: 20px;
}

/* افکت هاور کارت - بلند شدن و سایه عمیق */
.teacher-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #007bff; /* تغییر رنگ مرز هنگام هاور */
}

/* استایل تصویر استاد */
.teacher-img-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
}

.teacher-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #f0f0f0;
    transition: all 0.4s ease;
    background-color: #eee;
}

/* تغییر رنگ مرز عکس هنگام هاور کل کارت */
.teacher-card:hover .teacher-img {
    border-color: #007bff;
    transform: scale(1.05);
}

/* نام استاد */
.teacher-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.teacher-card:hover .teacher-name {
    color: #007bff;
}

/* نقش/تخصص استاد */
.teacher-role {
    font-size: 0.9rem;
    color: #007bff;
    background: rgba(0, 123, 255, 0.1);
    display: inline-block;
    padding: 4px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* توضیحات (بیوگرافی) با محدودیت 2 خط */
.teacher-bio {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* نمایش فقط 2 خط */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3.2rem; /* حفظ ارتفاع حتی اگر متن کوتاه باشد */
    flex-grow: 1;
}

/* شبکه های اجتماعی (اختیاری) */
.teacher-socials {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.teacher-socials a {
    color: #bcc1c7;
    margin: 0 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.teacher-socials a:hover {
    color: #007bff;
    transform: scale(1.2);
}

/* خط تزئینی بالای کارت که هنگام هاور ظاهر می‌شود */
.teacher-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #007bff;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.teacher-card:hover::before {
    transform: scaleX(1);
}
/* استایل‌های اصلاح شده اساتید */
.teacher-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 30px;
    /* ارتفاع ثابت برای کل کارت جهت تراز بودن در ردیف */
    display: flex;
    flex-direction: column;
    height: 100%; 
}

.teacher-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid #fff;
    object-fit: cover;
    margin: 40px auto 15px auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: #eee; /* رنگ پس‌زمینه در صورت نبود عکس */
}

/* محدود کننده متن توضیحات */
.teacher-bio {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    /* محدود کردن به 2 خط (تقریباً معادل 50-60 کاراکتر) */
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* ایجاد فضای ثابت حتی اگر متن خالی باشد */
    min-height: 3rem; 
    margin-bottom: 0;
}

.teacher-info-wrapper {
    flex-grow: 1; /* باعث می‌شود فضای خالی بین المان‌ها پر شود و دکمه‌ها هم‌تراز بمانند */
}


/* =========================================
   3D Books Section Styles (Dark Fluid)
========================================= */
.books-section {
    padding: 100px 0;
    background: linear-gradient(145deg, #0f172a, #1e293b);
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

/* افکت نور پس زمینه برای زیبایی بیشتر */
.books-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 60%);
    z-index: 0;
}

.books-wrapper {
    display: flex;
    justify-content: space-around;
    gap: 50px;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
    padding-top: 40px;
}

/* 3D Book Container */
.book-container {
    perspective: 1500px; /* ایجاد عمق برای حالت 3 بعدی */
}

.book {
    width: 220px;
    height: 320px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
    cursor: pointer;
}

.book:hover {
    transform: translateY(-20px) rotateY(15deg) rotateX(5deg);
}

/* جلد کتاب */
.book-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e63946, #d90429); /* رنگ جلد */
    transform-origin: left center;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: 5;
    box-shadow: inset 4px 0 10px rgba(0,0,0,0.1), 5px 5px 15px rgba(0,0,0,0.5);
    border-radius: 3px 8px 8px 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    direction: ltr;
}

.book:hover .book-cover {
    transform: rotateY(-135deg); /* باز شدن کتاب */
    box-shadow: inset 4px 0 10px rgba(0,0,0,0.1);
}

/* محتوای داخل کتاب */
.book-content {
    position: absolute;
    width: 96%;
    height: 96%;
    top: 2%; left: 2%;
    background: #ffffff;
    z-index: 1;
    padding: 20px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
    color: #333;
    border-radius: 0 4px 4px 0;
    direction: ltr; /* کتاب انگلیسی */
    text-align: left;
}

.book-content h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #111;
}

.book-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #555;
}

/* افکت ورقه‌های کتاب (سفیدی زیر جلد) */
.book::before {
    content:'';
    position: absolute;
    top: 2%; left: 2%;
    width: 96%; height: 96%;
    background: #f1f1f1;
    z-index: 0;
    box-shadow: 4px 0 0 #e2e8f0, 8px 0 0 #cbd5e1, 12px 0 0 #94a3b8; /* ایجاد حس چند لایه بودن کاغذها */
    border-radius: 0 6px 6px 0;
}

    /* --- Advanced Footer --- */
    .footer {
        background-color: #051b33; /* سرمه‌ای بسیار تیره */
        color: #a0aec0;
        padding: 70px 0 20px;
        font-size: 0.95rem;
    }
    .footer h5 {
        color: white;
        font-weight: bold;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
    }
    .footer h5::after {
        content: '';
        position: absolute;
        right: 0; bottom: 0;
        width: 40px; height: 3px;
        background-color: var(--color-orange);
        border-radius: 2px;
    }
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-links li { margin-bottom: 15px; }
    .footer-links a {
        color: #a0aec0;
        text-decoration: none;
        transition: all 0.3s;
        display: inline-block;
    }
    .footer-links a:hover {
        color: var(--color-teal);
        transform: translateX(-5px); /* حرکت نرم به سمت چپ (برای سایت فارسی) */
    }
    .social-icons-footer a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px; height: 40px;
        background: rgba(255,255,255,0.05);
        color: white;
        border-radius: 50%;
        margin-left: 10px;
        transition: all 0.3s;
    }
    .social-icons-footer a:hover {
        background: var(--color-teal);
        transform: translateY(-5px);
    }
    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.05);
        margin-top: 50px;
        padding-top: 20px;
        font-size: 0.85rem;
    }