/* General Styles */
:root {
    --primary-color: #1b9045;
    --secondary-color: #6c757d;
    --dark-color: #343a40;
    --light-bg: #f8f9fa;
    --text-color: #495057;
    --border-radius: 10px;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    --white-color: #fff; /* تعريف اللون الأبيض */
    --light-bg-color: #f8f9fa; /* تعريف لون خلفية فاتح */
    --heading-color: #343a40; /* تعريف لون العناوين */
    --shadow-small: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 8px 16px rgba(0, 0, 0, 0.12);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body { /* تأكد من أن هذه الخصائص موجودة لمنع التمرير الأفقي غير المرغوب فيه */
    overflow-x: hidden;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    direction: rtl; /* Right-to-left for Arabic */
    text-align: right; /* Align text to the right */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sections Padding and Backgrounds */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    font-family: 'Cairo', sans-serif;
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    width: 330px;
    font-size: xx-large;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

/* Cards */
.card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden; /* For shadow on hover */
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

/* Header */
.header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: fixed; /* تم التعديل من sticky إلى fixed */
    top: 0;          /* يثبته في أعلى الشاشة */
    width: 100%;     /* يضمن أن يأخذ العرض الكامل للشاشة */
    z-index: 1000;   /* يضمن بقاءه فوق العناصر الأخرى */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    object-fit: contain;
}

.nav-menu ul {
    list-style: none;
    display: flex;
}

.nav-menu ul li {
    margin-right: 30px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: bold;
    font-size: 1.05rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover {
    color: var(--primary-color);
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

.burger-menu {
    font-size: 1.8rem;
    color: var(--dark-color);
    cursor: pointer;
    display: none; /* Hidden on desktop */
}

/* Mobile Navigation */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-nav-content {
    background-color: #fff;
    width: 80%;
    max-width: 400px;
    padding: 40px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--hover-shadow);
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateY(0);
}

.mobile-nav-content .close-mobile-nav {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.8rem;
    color: var(--dark-color);
    cursor: pointer;
}

.mobile-nav-content ul {
    list-style: none;
    padding: 0;
}

.mobile-nav-content ul li {
    margin-bottom: 20px;
    text-align: center;
}

.mobile-nav-content ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: bold;
    font-size: 1.2rem;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.mobile-nav-content ul li a:hover {
    color: var(--primary-color);
}


/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
   background: linear-gradient(to right,#ffffff, #43cea2, #ffffff,#ffffff);
    min-height: 70vh;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: right;
    animation: fadeInRight 1s ease-out forwards;
    opacity: 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

/* Base styles for the hero-image container */
.hero-image {
    flex: 1;
    /* قم بإزالة السطر التالي أو التعليق عليه: */
    /* max-width: 600px; */
    /* أو إذا كنت تفضل تحديد أقصى عرض ولكن أكبر، يمكنك وضعه هكذا: */
    /* max-width: 1200px; */ /* هذا سيسمح لها بأن تكون أكبر ولكن لا تتجاوز 1200 بكسل */

    text-align: center;
    animation: fadeInLeft 1s ease-out forwards;
    opacity: 0;
}

/* أضف هذه القاعدة الجديدة أو تأكد من وجودها */
/* هذه القاعدة ستجعل أي صورة داخل .hero-image متجاوبة */
.hero-image img {
    max-width: 100%;   /* يضمن أن الصورة لن تتجاوز عرض العنصر الأب (.hero-image) */
    height: auto;      /* يحافظ على نسبة أبعاد الصورة لتجنب تشوهها */
    display: block;    /* يزيل أي مسافة إضافية أسفل الصورة */
    border-radius: 8px; /* اختياري: لإضافة حواف دائرية */
    box-shadow: var(--shadow); /* اختياري: لإضافة ظل خفيف */
}

/* لجعل الصورة نفسها متجاوبة */
.image-display-area img {
    max-width: 100%;   /* هذا هو الأهم: يضمن أن الصورة لا تتجاوز عرض العنصر الأب */
    height: auto;      /* يحافظ على نسبة أبعاد الصورة (العرض إلى الارتفاع) */
    display: block;    /* يزيل أي مسافة إضافية أسفل الصورة */
    border-radius: 8px; /* اختياري: لإضافة حواف دائرية للصورة */
    box-shadow: var(--shadow); /* اختياري: لإضافة ظل خفيف للصورة */
}

/* Hero Section Swiper Styles */
.hero-swiper {
    width: 100%;
    height: auto; /* Allow height to adjust based on content */
    border-radius: var(--border-radius);
    box-shadow: var(--shadow); /* Apply shadow to the slider container */
    overflow: hidden; /* Hide any overflow within the slider */
}

.hero-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%; /* Ensure images fill the slide */
    object-fit: cover; /* Maintain aspect ratio and cover area */
    border-radius: var(--border-radius); /* Keep consistent border radius */
}

/* Hero Swiper Navigation (Arrows) */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.hero-swiper .swiper-button-prev {
    left: 10px; /* مسافة من اليسار */
}

.hero-swiper .swiper-button-next {
    right: 10px; /* مسافة من اليمين */
}

/* Hero Swiper Pagination (Dots) */
.hero-swiper .swiper-pagination-bullet {
    background-color: var(--secondary-color);
    opacity: 0.6;
}

.hero-swiper .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
}

/* Countdown Timer */
.countdown-timer {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-top: 30px;
    margin-bottom: 40px;
    display: inline-block; /* To shrink wrap content */
    text-align: center;
}

.countdown-timer p {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.countdown {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* أضف هذه الخاصية للسماح للعناصر بالالتفاف على الأجهزة الصغيرة */
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    background-color: #e9ecef;
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 80px;
    margin-bottom: 5px;
}

.countdown-item small {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Animations for Hero Section */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Features Section */
.features-section .feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    text-align: right;
    padding: 35px;
    border-top: 5px solid var(--primary-color);
    border-bottom: 5px solid transparent; /* For hover effect */
}

.feature-card:hover {
    border-bottom: 5px solid var(--primary-color);
}

.feature-card h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
}

.feature-card ul {
    list-style: none;
    padding-right: 0; /* Remove default padding for RTL */
}

.feature-card ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start; /* Align icon and text at the top */
    font-size: 1.05rem;
    color: var(--text-color);
}

.feature-card ul li i {
    color: var(--primary-color);
    margin-left: 10px; /* Space between icon and text in RTL */
    font-size: 1.1rem;
    margin-top: 3px; /* Adjust vertical alignment */
}


/* Structure Section */
.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.structure-item {
    text-align: right;
    padding: 35px;
    border-right: 5px solid var(--primary-color); /* Border on the right for RTL */
    border-left: 5px solid transparent; /* For hover effect */
}

.structure-item:hover {
    border-left: 5px solid var(--primary-color);
    border-right: 5px solid var(--primary-color); /* Keep the right border on hover */
}

.structure-item h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
}

.structure-item p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.structure-item ul {
    list-style: none;
    padding-right: 0;
}

.structure-item ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: var(--text-color);
}

.structure-item ul li i {
    color: var(--primary-color);
    margin-left: 8px;
    font-size: 1rem;
    margin-top: 3px;
}


/* Flexibility Section */
.flexibility-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.flexibility-card {
    text-align: right;
    padding: 35px;
    border-bottom: 5px solid var(--primary-color);
    border-top: 5px solid transparent; /* For hover effect */
}

.flexibility-card:hover {
    border-top: 5px solid var(--primary-color);
    border-bottom: 5px solid var(--primary-color); /* Keep bottom border on hover */
}

.flexibility-card h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
}

.flexibility-card p {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.7;
}

/* Marketing Section */
.marketing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.marketing-card {
    text-align: right;
    padding: 35px;
    border-left: 5px solid var(--primary-color); /* Border on the left for RTL */
    border-right: 5px solid transparent; /* For hover effect */
}

.marketing-card:hover {
    border-right: 5px solid var(--primary-color);
    border-left: 5px solid var(--primary-color); /* Keep the left border on hover */
}

.marketing-card h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
}

.marketing-card p {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: #f8f9fa;
    padding: 60px 0 20px;
    text-align: right;
}

.footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-about .footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Make logo white for dark background */
}

.footer-logo-about .about-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #ced4da;
}

.footer-contact h3,
.footer-social h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 5px;
}

.footer-contact h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}


.footer-contact p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-left: 10px; /* Space for icon in RTL */
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-contact p a {
    color: #ced4da;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact p a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon.facebook:hover { background-color: #3b5998; }
.social-icon.youtube:hover { background-color: #c4302b; }
.social-icon.linkedin:hover { background-color: #0077b5; }
.social-icon.instagram:hover { background-color: #E1306C; }


.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #adb5bd;
}


/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Left for RTL */
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-float, .phone-float {
    background-color: var(--primary-color);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: var(--hover-shadow);
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.whatsapp-float {
    background-color: #25D366; /* WhatsApp Green */
}

.whatsapp-float:hover {
    background-color: #1DA851;
    transform: scale(1.1) translateY(-5px);
}

.phone-float {
    background-color: #28a745; /* Phone green */
}

.phone-float:hover {
    background-color: #218838;
    transform: scale(1.1) translateY(-5px);
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background-color: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--hover-shadow);
    position: relative;
    width: 90%;
    max-width: 500px;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    text-align: right;
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
}

.popup-content h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark-color);
    font-size: 2rem;
}

.popup-content .close-popup {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.popup-content .close-popup:hover {
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--dark-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    direction: rtl;
    text-align: right;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

.popup-content .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.popup-message {
    margin-top: 20px;
    text-align: center;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header .nav-menu {
        display: none;
    }
    .burger-menu {
        display: block;
    }

    .hero-section {
        flex-direction: column-reverse; /* Image above text on mobile */
        text-align: center;
        padding: 60px 20px;
    }

    .hero-content, .hero-image {
        flex: none;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-content {
        animation: none; /* Disable animation on small screens */
        opacity: 1;
        transform: none;
    }

    .hero-image {
        margin-bottom: 40px;
        animation: none; /* Disable animation on small screens */
        opacity: 1;
        transform: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .features-section .feature-cards,
    .structure-grid,
    .flexibility-cards,
    .marketing-cards {
        grid-template-columns: 1fr;
    }

    .footer .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-about, .footer-contact, .footer-social {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-contact h3::after,
    .footer-social h3::after {
        right: 50%;
        transform: translateX(50%);
    }

    .social-icons {
        justify-content: center;
    }

    .floating-buttons {
        bottom: 20px;
        left: 20px;
        flex-direction: row; /* Horizontal on small screens if space allows, or keep vertical */
        gap: 10px;
    }

    .whatsapp-float, .phone-float {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .header {
        padding: 15px 0;
    }
    .logo img {
        height: 40px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .countdown-item span {
        font-size: 1.8rem;
        min-width: 60px;
    }
    .countdown-item small {
        font-size: 0.8rem;
    }
    .section-padding {
        padding: 50px 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .card {
        padding: 25px;
    }
    .popup-content {
        padding: 30px 20px;
    }
}

/* Easy Platform Section (Tabs) */
.easy-platform-section {
    background-color: var(--light-bg-color);
}

.tabs-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: var(--shadow-small);
    overflow: hidden;
    direction: rtl; /* للتأكد من الاتجاه الصحيح */
}

.tabs-nav {
    display: flex;
    justify-content: space-around;
    background-color: var(--secondary-color); /* لون خلفية شريط التابات */
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    flex-wrap: wrap; /* للسماح للأزرار بالانتقال لسطر جديد على الشاشات الصغيرة */
}

.tab-button {
    background: none;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-size: 1.1rem;
    color: var(--white-color); /* لون نص الزر */
    transition: background-color 0.3s ease, color 0.3s ease;
    flex-grow: 1; /* للسماح للأزرار بالتمدد */
    text-align: center;
    white-space: nowrap; /* لمنع الكلمات من الانقسام */
}

.tab-button i {
    margin-left: 8px; /* مسافة بين الأيقونة والنص */
}

.tab-button:hover,
.tab-button.active {
    background-color: var(--primary-color); /* لون خلفية الزر عند التحديد أو التحويم */
    color: var(--white-color);
}

.tabs-content {
    padding: 25px;
}

.tab-pane {
    display: none; /* إخفاء جميع التابات افتراضياً */
    animation: fadeIn 0.5s ease-in-out;
}

.tab-pane.active {
    display: block; /* إظهار التاب النشط فقط */
}

.tab-pane h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
    text-align: right;
}

.tab-pane p {
    line-height: 1.8;
    color: var(--text-color);
    text-align: right;
}

/* ------------------------------------- */
/* Articles Section */
/* ------------------------------------- */
.articles-section {
    background-color: var(--white-color);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.article-card {
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.article-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: right; /* محاذاة النص لليمين */
}

.article-content h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-bottom: 10px;
    min-height: 50px; /* لضمان ارتفاع موحد للعناوين */
}

.article-content p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: auto; /* لدفع الزر للأسفل */
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more i {
    margin-left: 8px; /* مسافة بين النص والأيقونة لليمين */
    transition: margin-left 0.3s ease;
}

.read-more:hover i {
    margin-left: 12px;
}

/* ------------------------------------- */
/* Partners Slider Section */
/* ------------------------------------- */
.partners-section {
    background-color: var(--light-bg-color);
    text-align: center;
}

.partners-slider {
    width: 100%;
    height: 120px; /* ارتفاع مناسب للوغوهات */
    margin-top: 40px;
}

.partners-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partners-slider .swiper-slide img {
    max-width: 150px; /* حجم أقصى للوغو */
    max-height: 100px;
    object-fit: contain;
    opacity: 0.9; /* يمكن تعديل الشفافية إذا أردت */
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partners-slider .swiper-slide img:hover {
    filter: grayscale(0%); /* هذا السطر لا يزال موجودًا ولكن لن يكون له تأثير إذا كانت الصورة ملونة بالفعل */
    opacity: 1;
}

/* Swiper Navigation (Arrows) */
.partners-slider .swiper-button-next,
.partners-slider .swiper-button-prev {
    color: var(--primary-color); /* لون الأسهم */
    top: 50%; /* لتوسيطها رأسيا */
    transform: translateY(-50%);
}

.partners-slider .swiper-button-prev {
    left: 10px;
}

.partners-slider .swiper-button-next {
    right: 10px;
}

/* Swiper Pagination (Dots) */
.partners-slider .swiper-pagination-bullet {
    background-color: var(--secondary-color); /* لون النقاط غير النشطة */
    opacity: 0.5;
}

.partners-slider .swiper-pagination-bullet-active {
    background-color: var(--primary-color); /* لون النقطة النشطة */
    opacity: 1;
}


/* Adjustments for smaller screens */
@media (max-width: 768px) {
    /* Responsive: Hide navigation arrows on smaller screens */
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        display: none;
    }

    .tabs-nav {
        flex-direction: column; /* جعل الأزرار تأتي فوق بعضها */
    }
    .tab-button {
        width: 100%; /* جعل الزر يأخذ العرض الكامل */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .tab-button:last-child {
        border-bottom: none;
    }
    .articles-grid {
        grid-template-columns: 1fr; /* عمود واحد على الشاشات الصغيرة */
    }
    .partners-slider {
        height: 100px; /* تقليل الارتفاع على الجوال */
    }
    .partners-slider .swiper-button-next,
    .partners-slider .swiper-button-prev {
        display: none; /* إخفاء الأسهم على الشاشات الصغيرة إذا أردت */
    }

   

}
