    /* Reset and Global Styles */
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: Arial, sans-serif;
        background-color: #f8f9fa;
        color: #333;
    }
    /* Top Navbar */
    
    .top-navbar {
        background-color: #ffffff;
        padding: 10px 0;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .top-contact-box {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .currency-select {
        position: relative;
        display: flex;
        align-items: center;
        cursor: pointer;
    }
    
    .currency-select svg {
        margin-left: 5px;
    }
    
    .currency-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #ffffff;
        border: 1px solid #ddd;
        padding: 10px;
        width: 200px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    .currency-select:hover .currency-dropdown {
        display: block;
    }
    
    .dropdown-item {
        padding: 5px 0;
        font-size: 14px;
        color: #333;
    }
    
    .dropdown-item.active {
        font-weight: bold;
    }
    
    .search-form {
        display: flex;
        align-items: center;
        background-color: #f1f1f1;
        border-radius: 5px;
        padding: 5px;
    }
    
    .search-form input {
        border: none;
        background: none;
        outline: none;
        padding: 5px;
        font-size: 14px;
    }
    
    .search-form button {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 16px;
    }
    /* Top Navbar Icons */
    
    .actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .icon-btn {
        background: none;
        border: none;
        font-size: 18px;
        cursor: pointer;
        color: #333;
    }
    
    .auth-links a {
        color: #001f3f;
        text-decoration: none;
        font-size: 14px;
        margin-left: 10px;
    }
    /* Main Navbar */
    
    #navbar {
        position: sticky;
        top: 0;
        /* تحديد المسافة من الأعلى */
        z-index: 1000;
        /* تأكد من ظهور navbar فوق العناصر الأخرى */
        background-color: #ffffff;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        transition: top 0.4s ease;
    }
    
    .navbar-nav {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .nav-item {
        position: relative;
    }
    
    .nav-link {
        color: #333;
        text-decoration: none;
        padding: 5px 10px;
        font-size: 14px;
        transition: color 0.3s ease;
    }
    
    .nav-link:hover {
        color: #0056b3;
    }
    
    .menu-category .cat-dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        list-style: none;
        padding: 10px;
        z-index: 10;
    }
    
    .menu-category:hover .cat-dropdown-menu {
        display: block;
    }
    
    .cat-dropdown-menu li {
        padding: 8px 10px;
    }
    
    .cat-dropdown-menu li a {
        text-decoration: none;
        color: #333;
        display: block;
        transition: background-color 0.3s;
    }
    
    .cat-dropdown-menu li a:hover {
        background-color: #f0f0f0;
    }
    /* Navbar Icons */
    
    .nav-icons-or-start-live {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .btn-transparent {
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        color: #333;
        transition: color 0.3s ease;
    }
    
    .btn-transparent:hover {
        color: #0056b3;
    }
    /* Responsive Design */
    
    @media (max-width: 768px) {
        .navbar-nav {
            display: none;
        }
        .navbar .container {
            flex-direction: column;
        }
        .nav-icons-or-start-live {
            justify-content: center;
        }
    }
    
    .img-cover {
        width: 100%;
        height: 100%;
        overflow: hidden;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: 50% 50%;
        object-position: 50% 50%;
    }
    
    .navbar-brand {
        width: 170px;
        height: 50px;
    }
    /* introduction */
    
    .introduction-hero-section {
        padding: 30px 0;
    }
    
    .introduction-title {
        font-size: 2.5rem;
        color: darkblue;
        font-weight: bold;
    }
    
    .introduction-subtitle {
        font-size: 2rem;
        color: #333;
        margin-top: 10px;
    }
    
    .introduction-description {
        font-size: 1.2rem;
        color: #666;
        margin-top: 10px;
    }
    
    .introduction-programs {
        font-size: 1.5rem;
        color: #333;
        margin-top: 20px;
    }
    
    .introduction-feature {
        font-size: 1rem;
        color: #333;
        margin-top: 15px;
        display: flex;
        align-items: center;
    }
    
    .introduction-feature img {
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }
    /* Join Us Button */
    
    .introduction-join-us .join-us-button {
        background-color: #007bff;
        /* اللون الأساسي */
        color: #fff;
        /* لون النص */
        font-size: 1.2rem;
        /* حجم النص */
        padding: 10px 20px;
        /* الحشوات الداخلية */
        border: none;
        /* إزالة الحدود */
        border-radius: 5px;
        /* الزوايا الدائرية */
        margin-top: 20px;
        /* المسافة العلوية */
        cursor: pointer;
        /* المؤشر على شكل اليد */
        transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
        /* تأثير الانتقال */
    }
    
    .introduction-join-us .join-us-button:hover {
        background-color: #fcdc3b !important;
        /* لون داكن عند التمرير */
        color: #1a0f35 !important;
        /* لون نص فاتح */
        transform: scale(1.05);
        /* تكبير بسيط */
    }
    /* تأثير active عند النقر */
    
    .introduction-join-us .join-us-button:active {
        background-color: #003f7f;
        /* لون أغمق عند النقر */
        color: #ffffff;
        /* لون نص ثابت */
        transform: scale(0.98);
        /* تصغير بسيط عند النقر */
    }
    /* Hero Image */
    
    .introduction-image img {
        width: 100%;
        border-radius: 10px;
        transition: transform 0.3s ease;
    }
    
    .introduction-image:hover img {
        transform: scale(1.05);
    }
    /* Responsive Design */
    
    @media (max-width: 768px) {
        .introduction-title {
            font-size: 2rem;
        }
        .introduction-subtitle {
            font-size: 1.5rem;
        }
        .introduction-description,
        .introduction-programs,
        .introduction-feature {
            font-size: 1rem;
        }
        .join-us-button {
            font-size: 1rem;
        }
    }
    /* Elementor section */
    
    .container {
        max-width: 1200px;
    }
    
    h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #222;
    }
    
    p {
        color: #555;
        font-size: 1rem;
    }
    
    .btn-primary {
        border: 2px solid #222;
        background-color: transparent;
        color: #222;
        padding: 0.75rem 1.5rem;
        font-weight: 500;
        font-size: 1rem;
        text-transform: uppercase;
    }
    
    .btn-primary:hover {
        background-color: #222;
        color: #fff;
    }
    
    .img-fluid.rounded.shadow {
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        margin-left: -1rem;
        margin-top: 1rem;
    }
    
    .col-md-6.text-center img {
        border: 1px solid #ddd;
        padding: 10px;
        border-radius: 50%;
    }
    
    .col-md-6.text-center h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: #222;
    }
    
    .col-md-6.text-center p {
        color: #666;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .text-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .row .col-md-6 {
        margin-top: 1.5rem;
    }
    
    .section-heading {
        padding-bottom: 1rem;
        border-bottom: 2px solid #f0f0f0;
        margin-bottom: 1.5rem;
    }
    /*  */
    
    .card {
        border: none;
        border-radius: 10px;
        transition: transform 0.3s;
        position: relative;
        /* To position price */
        overflow: hidden;
        /* To avoid overflow issues */
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
        /* Adjusted hover shadow */
    }
    
    .card:hover {
        transform: scale(1.03);
        box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
        /* Stronger hover effect */
    }
    
    .card-img-top {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        object-fit: cover;
        height: 200px;
        width: 100%;
    }
    /* Price Styling */
    
    .price {
        margin-top: -15px;
        font-size: 1.5rem;
        font-weight: bold;
        color: #333;
        position: absolute;
        right: 20px;
        /* Subtle background */
        border-radius: 5px;
    }
    /* Badge Styling */
    
    .badge {
        font-size: 0.9rem;
        font-weight: bold;
        background-color: #f0f0f0;
        background: rgba(255, 255, 255, 0.9);
        color: #555;
        padding: 5px 10px;
        border-radius: 5px;
        display: inline-block;
        margin-top: 10px;
    }
    /* Course Info Section */
    
    .course-info {
        display: flex;
        justify-content: center;
        gap: 20px;
        color: #777;
        font-family: Arial, sans-serif;
    }
    
    .course-info div {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 0.9rem;
    }
    
    .course-info i {
        font-size: 1.2rem;
        color: #ffc107;
    }
    /* Course Title */
    
    .card-title {
        font-weight: bold;
        font-size: 1.2rem;
        color: #333;
        margin: 15px 0;
    }
    /* View Course Button */
    
    .btn-view-course {
        color: #062881 !important;
        font-weight: bold;
        text-decoration: none;
        display: inline-block;
        margin-top: 10px;
        padding: 8px 20px;
        border-radius: 5px;
        border: 2px solid;
        background-color: transparent;
        transition: background 0.3s, color 0.3s, border 0.3s;
    }
    
    .btn-view-course:hover {
        background-color: darkblue !important;
        color: white!important;
        border: 2px solid #333;
    }
    /* custom secion */
    
    .custom-section {
        padding-top: 50px;
    }
    
    .title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        font-weight: bold;
    }
    
    .description {
        font-size: 1rem;
        color: #555;
        margin-bottom: 30px;
        text-align: center;
        max-width: 80%;
    }
    
    .btn-custom {
        background-color: #ffd700;
        color: #333;
        font-weight: bold;
        padding: 10px 20px;
        border-radius: 5px;
        text-transform: uppercase;
        border: 2px solid #333;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .btn-custom:hover {
        background-color: #333;
        color: #ffd700;
    }
    
    .rounded-img {
        border-radius: 10px;
    }
    
    .image-wrapper {
        position: relative;
        padding: 0 0 10px 10px;
        background-color: #FFD700;
        display: inline-block;
        border-bottom-right-radius: 8px;
        border-bottom-left-radius: 8px;
    }
    
    .image-wrapper img {
        border-radius: 8px;
    }
    
    .icon-bullet {
        font-size: 0.5rem;
        color: #FFD700;
    }
    
    .btn-dark {
        background-color: #333;
        border: none;
        color: #fff;
    }
    
    .btn-dark:hover {
        background-color: #444;
    }
    /*pricing-section  */
    
    .pricing-section {
        font-family: Arial, sans-serif;
        background-color: #f8f8f8;
        padding: 40px 20px;
        position: relative;
        overflow: hidden;
        /* لضمان أن الأشكال تبقى داخل القسم */
        background-color: #f8f9fa;
        /* خلفية أساسية */
    }
    
    .pricing-container {
        max-width: 1000px;
        margin: auto;
    }
    
    .pricing-section::before,
    .pricing-section::after {
        content: "";
        position: absolute;
        width: 150px;
        /* حجم المربعات */
        height: 150px;
        background: linear-gradient(to bottom right, #0c1443, #3b82f6);
        /* ألوان التدرج */
        border-radius: 20px;
        /* حواف دائرية */
        animation: floatBackground 6s infinite ease-in-out;
        /* حركة أنيميشن */
        z-index: 0;
        opacity: .6;
        /* التأكد أن الخلفية أسفل المحتوى */
    }
    /* المربع الأول */
    
    .pricing-section::before {
        top: 30px;
        left: 80px;
        animation-delay: 0s;
    }
    /* المربع الثاني */
    
    .pricing-section::after {
        bottom: 30px;
        right: 80px;
        animation-delay: 2s;
    }
    /* إضافة مربعات إضافية */
    
    .extra-square {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        /* التأكد أنها تحت المحتوى */
        pointer-events: none;
    }
    
    .pricing-section .extra-square:nth-child(1) {
        top: 100px;
        left: 200px;
        animation-delay: 1s;
    }
    
    .pricing-section .extra-square:nth-child(2) {
        bottom: 150px;
        right: 250px;
        animation-delay: 3s;
    }
    
    .pricing-section .extra-square:nth-child(3) {
        top: 200px;
        right: 100px;
        animation-delay: 5s;
    }
    /* حركة الأنيميشن */
    
    @keyframes floatBackground {
        0% {
            transform: translateY(0) rotate(0deg);
        }
        50% {
            transform: translateY(-20px) rotate(15deg);
            /* حركة لأعلى مع دوران */
        }
        100% {
            transform: translateY(0) rotate(0deg);
        }
    }
    
    .pricing-header {
        text-align: center;
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 30px;
        color: #333;
    }
    
    .pricing-card {
        border: none;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        background-color: #fff;
        color: #333;
        padding: 20px;
    }
    
    .pricing-card-header {
        font-size: 18px;
        font-weight: bold;
        color: #333;
        margin-bottom: 10px;
    }
    
    .pricing-price {
        font-size: 36px;
        font-weight: bold;
        color: #333;
        margin: 10px 0;
    }
    
    .pricing-currency {
        font-size: 24px;
        vertical-align: top;
    }
    
    .pricing-period {
        font-size: 14px;
        color: #666;
    }
    
    .pricing-features {
        list-style: none;
        padding: 0;
        margin-top: 15px;
        color: #555;
    }
    
    .pricing-features li {
        margin: 8px 0;
        font-size: 14px;
    }
    
    .pricing-features i {
        color: #ffa500;
        margin-right: 8px;
    }
    
    .pricing-footer {
        padding-top: 15px;
    }
    
    .pricing-btn {
        background-color: darkblue;
        color: #fff;
        padding: 10px 20px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
    }
    
    .pricing-btn:hover {
        background-color: #ffa500;
        color: #333;
    }
    /* Featured Plan Styles */
    
    .featured-plan {
        background-color: #0c0c3d;
        color: #fff;
        padding: 30px;
        border-radius: 10px;
    }
    
    .featured-plan .pricing-card-header {
        color: #fff;
        font-size: 20px;
        font-weight: bold;
    }
    
    .featured-plan .pricing-price {
        color: #fff;
    }
    
    .featured-plan .pricing-features i {
        color: #fff;
    }
    
    .featured-plan .pricing-btn {
        background-color: white;
        color: darkblue;
    }
    
    .featured-plan .pricing-btn:hover {
        background-color: #ffa500;
        color: white;
    }
    /* termentionl */
    
    .testimonials {
        color: #FFFFFF;
        text-align: center;
        padding: 60px 20px;
        margin-top: 2rem;
        font-family: Arial, sans-serif;
        position: relative;
        overflow: hidden;
        /* لمنع تجاوز الأشكال المتحركة حدود القسم */
        background-color: #f8f9fa;
        /* لون خلفية أساسي */
    }
    /* إضافة المربعات المتحركة */
    
    .testimonials .floating-square {
        position: absolute;
        width: 100px;
        height: 100px;
        background: linear-gradient(to bottom right, #0f1143, #3b82f6);
        border-radius: 15px;
        animation: floatBackground 6s infinite ease-in-out;
        z-index: 0;
        /* ضعها خلف باقي العناصر */
        opacity: 0.6;
        /* تقليل الشفافية لجعلها غير مزعجة */
    }
    /* حركة الأنيميشن */
    
    @keyframes floatBackground {
        0% {
            transform: translateY(0) rotate(0deg);
        }
        50% {
            transform: translateY(-20px) rotate(15deg);
            /* حركة لأعلى مع دوران */
        }
        100% {
            transform: translateY(0) rotate(0deg);
        }
    }
    /* موقع المربعات */
    
    .testimonials .square-1 {
        top: 50px;
        left: 50px;
        animation-delay: 0s;
    }
    
    .testimonials .square-2 {
        top: 150px;
        left: 200px;
        animation-delay: 1s;
    }
    
    .testimonials .square-3 {
        bottom: 100px;
        right: 100px;
        animation-delay: 2s;
    }
    
    .testimonials .square-4 {
        top: 200px;
        right: 200px;
        animation-delay: 3s;
    }
    
    .testimonials .square-5 {
        bottom: 50px;
        left: 150px;
        animation-delay: 4s;
    }
    /* عنوان القسم */
    
    .testimonials h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
        color: #FFD700;
        z-index: 1;
        /* التأكد أن النص فوق الخلفية */
        position: relative;
    }
    /* الحاوية الرئيسية للشهادات */
    
    .testimonials-container {
        display: flex;
        justify-content: center;
        gap: 20px;
        overflow: hidden;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        z-index: 1;
        position: relative;
    }
    
    .testimonials-container::-webkit-scrollbar {
        display: none;
        /* إخفاء شريط التمرير */
    }
    /* تصميم الشهادة الفردية */
    
    .testimonial {
        background-color: #FFFFFF;
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 20px;
        width: 420px;
        display: flex;
        align-items: center;
        gap: 10px;
        z-index: 1;
        position: relative;
    }
    /* صورة الشهادة */
    
    .testimonial img {
        border-radius: 50%;
        width: 60px;
        height: 60px;
        border: 3px solid darkblue;
    }
    /* محتوى الشهادة */
    
    .testimonial-content {
        text-align: left;
    }
    
    .testimonial-content p {
        font-size: 14px;
        color: #555;
        margin-bottom: 10px;
    }
    
    .testimonial-content h4 {
        font-size: 16px;
        font-weight: bold;
        color: #333;
        margin: 0;
    }
    
    .testimonial-content span {
        font-size: 13px;
        color: #777;
    }
    
    .navigation-buttons {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    
    .nav-btn {
        background-color: darkblue;
        color: white;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        font-size: 1.2em;
        cursor: pointer;
        margin: 0 5px;
    }
    
    .nav-btn:hover {
        background-color: #fd7e14;
    }
    
    .form-control {
        border: none;
        padding: 10px;
        width: 250px;
        border-radius: 5px;
        margin-right: 10px;
    }
    
    .cta-button {
        background-color: #00C1B4;
        color: white;
        font-size: 1em;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        text-transform: uppercase;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .cta-button:hover {
        background-color: #009F97;
    }
    
    .footer-modern {
        background-color: #152238;
        color: #ffffff;
        font-family: Arial, sans-serif;
    }
    
    .footer-title {
        font-size: 1.8em;
        font-weight: bold;
        margin-bottom: 15px;
    }
    
    .footer-subtitle {
        font-size: 1.3em;
        font-weight: bold;
        margin-bottom: 20px;
    }
    
    .footer-logo {
        max-width: 220px;
        margin-top: 10px;
    }
    
    .footer-link {
        color: #B0B0D9;
        text-decoration: none;
        display: block;
        margin-bottom: 10px;
        transition: color 0.3s;
    }
    
    .footer-link:hover {
        color: #00C1B4;
    }
    
    .newsletter-form .form-control {
        border: none;
        border-radius: 5px;
        padding: 12px;
        width: 75%;
        margin-right: 10px;
    }
    
    .newsletter-form .btn-primary {
        background-color: #152238;
        border: none;
        color: #1A1F71;
        padding: 12px 25px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .newsletter-form .btn-primary:hover {
        background-color: #009F97;
    }
    
    .footer-social img {
        width: 35px;
        transition: transform 0.3s;
    }
    
    .footer-social img:hover {
        transform: scale(1.1);
    }
    
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 25px;
        color: #B0B0D9;
        font-size: 0.9em;
    }
    
    .footer-bottom i {
        margin-right: 5px;
    }
    /* Footer Subscribe */
    
    .footer-subscribe-container {
        display: flex;
        justify-content: center;
        margin-bottom: 2rem;
    }
    /* Main subscription box */
    
    .footer-subscribe {
        width: 80%;
        /* Adjust the width as needed */
        background-color: #152238;
        /* Dark background color */
        border-radius: 15px;
        padding: 20px 40px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        /* Soft shadow for floating effect */
        margin: -3rem auto;
        height: 15rem;
    }
    /* Subscribe Text */
    
    .footer-subscribe strong {
        font-size: 2em;
        color: white;
    }
    
    .footer-subscribe .text-white {
        font-size: 1em;
        color: #B0B0D9;
        margin-top: 5px;
    }
    /* Input and Button Styling */
    
    .form-control {
        border: none;
        padding: 15px;
        width: 100%;
        border-radius: 25px 0 0 25px;
        /* Rounded left corners */
        font-size: 1em;
        color: #6a6a6a;
        outline: none;
    }
    
    .btn-primary {
        background-color: #FFD700;
        /* Gold color for button */
        color: #1a2a55;
        padding: 10px 25px;
        font-weight: bold;
        border: none;
        border-radius: 0 25px 25px 0;
        /* Rounded right corners */
        font-size: 1em;
        text-transform: uppercase;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .btn-primary:hover {
        background-color: #e5c000;
        /* Slightly darker gold */
    }
    
    .btn-primary {
        color: #fcdc3b !important;
        background-color: #062881 !important;
        border-color: #062881 !important;
        transition: all 0.3s;
    }
    
    .menu-category>ul>li .cat-dropdown-menu {
        position: absolute;
        left: 0;
        top: 65px;
        width: max-content;
        background-color: #fff;
        display: none;
        padding: 30px 25px;
        border-radius: 15px;
        transition: all 0.3s;
        box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.16);
        opacity: 0;
        visibility: hidden;
        z-index: 1;
    }
    
    .menu-category>ul>li.show-items .cat-dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        top: 43px;
    }
    
    .menu-category>ul>li {
        background-color: #f1f1f1;
        padding: 12px 25px 12px 15px;
        position: relative;
        border-radius: 10px;
        font-weight: 500;
        color: #062881;
    }
    
    .menu-category>ul>li .cat-dropdown-menu .cat-dropdown-menu-icon {
        width: 25px;
        max-width: 25px;
        min-width: 25px;
    }
    
    .btn-primary {
        text-transform: none !important;
    }
    
    .section-title {
        font-size: 24px;
        font-weight: bold;
        line-height: 1.5;
        color: #062881;
        pointer-events: none;
    }
    
    .section-hint {
        margin-top: 5px;
        font-size: 14px;
        font-weight: normal;
        line-height: 1.5;
        color: #818894;
        pointer-events: none;
    }
    
    @media (max-width: 984px) {
        .sidebar {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            height: 100%;
            width: 0;
            position: fixed;
            top: 0;
            right: 0;
            background-color: white;
            overflow-x: hidden;
            transition: 0.5s;
            padding-top: 60px;
            text-align: right;
            z-index: 2;
        }
        .sidebar a {
            padding: 8px 8px 8px 32px;
            text-decoration: none;
            font-size: 15px;
            color: #333;
            display: block;
            transition: 0.3s;
        }
        .sidebar a:hover {
            color: #007bff;
        }
        .closebtn {
            position: absolute;
            top: 10px;
            right: 25px;
            font-size: 36px;
            background: none;
            border: none;
            color: black;
            cursor: pointer;
        }
        .open {
            width: 100%;
        }
    }
    
    .currency-selector {
        position: relative;
    }
    
    .currency-toggle {
        display: flex;
        align-items: center;
        cursor: pointer;
    }
    
    .currency-dropdown {
        display: none;
        /* تظهر القائمة فقط عند الحاجة */
        position: relative;
        top: 100%;
        left: 0;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
    }
    
    .currency-item {
        cursor: pointer;
        text-align: left;
        /* المحاذاة إلى اليسار */
        white-space: nowrap;
    }
    
    .currency-item:hover {
        background-color: #f0f0f0;
    }
    /* animation */
    
    .img-hover {
        position: relative;
        overflow: hidden;
        display: inline-block;
        border-radius: 10px;
        /* التحكم بحواف الصورة */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .img-hover img {
        width: 100%;
        height: auto;
        transition: transform 0.3s ease, filter 0.3s ease;
    }
    
    .img-hover:hover {
        transform: scale(1.05);
        /* تكبير الصورة */
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        /* تعزيز الظل */
    }
    
    .img-hover:hover img {
        transform: scale(1.1);
        /* تكبير إضافي للصورة */
        filter: brightness(0.9) saturate(1.2);
        /* تحسين الإضاءة والتشبع */
    }