    :root {
       
        --primary-gold: #FFD700; /* ذهبي رئيسي - لون الذهب الخالص */
    --light-gold: #FFFACD; /* ذهبي فاتح جداً - للمكونات الخلفية الخفيفة */
    --dark-gold: #DAA520; /* ذهبي داكن - للعناوين والنصوص البارزة */

        --text-dark: #333;
        --text-medium: #555;
        --background-light: #f8f9fa;
        --white: #ffffff;
         --black: #000000; /* إضافة متغير للون الأسود */

        --border-light: #e9ecef;
        --shadow-color: rgba(0, 0, 0, 0.08);
    }

    body {
                font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin: 0;
        padding: 0;
        background-color: var(--background-light);
        color: var(--text-dark);
        line-height: 1.6;
        direction: rtl;
        text-align: right;
    }

/* --- Top Info Bar --- */
.top-info-bar {
    background-color: var(--white); /* أبيض حسب طلبك */
    color: var(--text-dark); /* نص غامق ليكون واضح على الأبيض */
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 15px;
}

.top-info-bar span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-info-bar a {
    color: var(--text-dark); /* روابط غامقة على الأبيض */
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-info-bar a:hover {
    color: var(--primary-gold); /* ذهبي عند التحويم */
}

@media (max-width: 768px) {
    .top-info-bar .hide-on-mobile {
        display: none;
    }
}

    .navbar {
    background-color: var(--black); /* أسود حسب طلبك */
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px var(--shadow-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

    
.navbar-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-gold); /* ذهبي للأيقونة */
    padding: 0;
    z-index: 1001;
}


    .navbar-logo {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-gold);
        
        text-decoration: none;
        flex-grow: 1;
        text-align: center;
        padding: 0 20px;
    }

.nav-links-left-container,
.nav-links-right-container {
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-links li {
    margin: 0 18px;
}

.nav-links li a {
    text-decoration: none;
    
    color: var(--white); /* أبيض لروابط النافبار على الخلفية السوداء */
    font-weight: bold;
    font-size: 1.05rem;
    padding: 8px 0;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    white-space: nowrap;
}

.nav-links li a:hover {
    color: var(--primary-gold); /* ذهبي عند التحويم */
    border-bottom: 2px solid var(--primary-gold); /* ذهبي للخط السفلي عند التحويم */
}

  .main-content {
    min-height: 100px;
    padding: 60px 20px;
    text-align: center;
    background-color: var(--background-light);
}

.main-content h1 {
    color: var(--dark-gold); /* ذهبي داكن للعناوين الرئيسية */
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.main-content p {
    font-size: 1.1rem;
    color: var(--text-dark); /* نص غامق عادي */
}
/* أضف هذا الستايل إلى ملف res/styles.css */

    .featured-highlight {
        margin-top: 40px;
        padding: 20px 30px;
        background-color: var(--primary-gold); /* استخدم الذهبي الرئيسي كخلفية ملفتة */
        color: var(--black); /* نص أسود واضح */
        border-radius: 50px; /* شكل بيضاوي أنيق */
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* ظل ناعم */
        display: inline-block; /* لكي لا يأخذ عرض 100% */
        max-width: 800px; /* تحديد أقصى عرض ليبقى أنيقاً */
        margin-left: auto;
        margin-right: auto;
        animation: fadeInScale 0.8s ease-out forwards; /* إضافة حركة بسيطة */
        font-weight: bold; /* نص سميك */
        font-size: 1.25rem; /* حجم خط ملفت */
        line-height: 1.5;
        position: relative; /* لتمكين التموضع */
        overflow: hidden; /* لإخفاء أي جزء زائد */
        background: linear-gradient(90deg, var(--primary-gold) 0%, var(--dark-gold) 100%); /* تدرج ذهبي */
    }

    .featured-highlight .highlight-text {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px; /* مسافة بين الأيقونة والنص */
    }

    .sparkle-icon {
        font-size: 1.8rem; /* حجم أكبر لأيقونة اللمعان */
        animation: sparkle 1.5s infinite ease-in-out; /* حركة لمعان */
        display: inline-block; /* لضمان تطبيق التحريك */
    }

    /* Keyframe Animations */
    @keyframes fadeInScale {
        from {
            opacity: 0;
            transform: scale(0.8);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    @keyframes sparkle {
        0%, 100% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.2); opacity: 0.7; }
    }


    /* Responsive adjustments */
    @media (max-width: 768px) {
        .featured-highlight {
            padding: 15px 20px;
            font-size: 1.1rem;
            border-radius: 30px;
            margin-top: 30px;
        }
        .sparkle-icon {
            font-size: 1.5rem;
        }
        .featured-highlight .highlight-text {
            flex-direction: row; /*Keep in one row if fits, or let it wrap naturally*/
            gap: 8px;
        }
    }
/* --- Footer --- */
.footer {
    background-color: var(--black); /* أسود حسب طلبك */
    color: var(--white); /* أبيض للنص في الفوتر */
    padding: 30px 20px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links li a {
    color: var(--light-gold); /* ذهبي فاتح للروابط في الفوتر */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-gold); /* ذهبي عند التحويم */
}


    @media (max-width: 992px) {
        .navbar {
            padding: 1rem 15px;
        }

        .navbar-toggle {
            display: block;
            order: 0;
        }

        .navbar-logo {
            flex-grow: 1;
            text-align: center;
            padding: 0;
            order: 1;
        }

        @media (max-width:767px) {
            .hidden-xs {
                display: none !important
            }
        }

        @media (min-width:768px) and (max-width:991px) {
            .hidden-sm {
                display: none !important
            }
        }




        .nav-links-left-container,
        .nav-links-right-container {
            display: flex;
            flex-direction: column;
            position: absolute;

            top: 100%;
            right: 0;
            width: 100%;
            background-color: var(--black);
            box-shadow: 0 8px 16px var(--shadow-color);
            border-top: 1px solid var(--border-light);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, opacity 0.3s ease;
            z-index: 999;
            visibility: hidden;
            opacity: 0;
        }

        .nav-links-left-container.open,
        .nav-links-right-container.open {
            max-height: 1000px;
            visibility: visible;
            opacity: 1;
        }

        .nav-links {
            
            flex-direction: column;
            width: 100%;
            text-align: center;
        }

        .nav-links li {
            margin: 10px 0;
            color:black;

        }
    }

    @media (max-width: 992px) {

        .nav-links-right-container.open,
        .nav-links-left-container.open {
            max-height: 120vh;
            /* أو حسب طول القائمة */
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            /* دعم للتمرير السلس في الهواتف */
        }
    }

    @-ms-viewport {
        width: device-width
    }

    .visible-lg,
    .visible-md,
    .visible-sm,
    .visible-xs {
        display: none !important
    }

    .visible-lg-block,
    .visible-lg-inline,
    .visible-lg-inline-block,
    .visible-md-block,
    .visible-md-inline,
    .visible-md-inline-block,
    .visible-sm-block,
    .visible-sm-inline,
    .visible-sm-inline-block,
    .visible-xs-block,
    .visible-xs-inline,
    .visible-xs-inline-block {
        display: none !important
    }

    @media (max-width:767px) {
        .visible-xs {
            display: block !important
        }

        table.visible-xs {
            display: table
        }

        tr.visible-xs {
            display: table-row !important
        }

        td.visible-xs,
        th.visible-xs {
            display: table-cell !important
        }
    }

    @media (max-width:767px) {
        .visible-xs-block {
            display: block !important
        }
    }

    @media (max-width:767px) {
        .visible-xs-inline {
            display: inline !important
        }
    }

    @media (max-width:767px) {
        .visible-xs-inline-block {
            display: inline-block !important
        }
    }

    @media (min-width:768px) and (max-width:991px) {
        .visible-sm {
            display: block !important
        }

        table.visible-sm {
            display: table
        }

        tr.visible-sm {
            display: table-row !important
        }

        td.visible-sm,
        th.visible-sm {
            display: table-cell !important
        }
    }

    @media (min-width:768px) and (max-width:991px) {
        .visible-sm-block {
            display: block !important
        }
    }

    @media (min-width:768px) and (max-width:991px) {
        .visible-sm-inline {
            display: inline !important
        }
    }

    @media (min-width:768px) and (max-width:991px) {
        .visible-sm-inline-block {
            display: inline-block !important
        }
    }
    nav a.active {
  font-weight: bold;
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
}
 nav a.activee {
  font-weight: bold;
  color: black;
  background-color: white;
  border-bottom: 5px solid white;
  border-radius: 20px;
}
/*
* CSS مخصص للصفحة الرئيسية DOLA Mine
* جميع الستايلات هنا خاصة بفئة .homepage-content لتجنب التعارض مع styles.css
* نعتمد على المتغيرات الذهبية والسوداء المعرّفة في styles.css
*/

.homepage-content {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--background-light);
}

/* --- Hero Section --- */
.homepage-hero {
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%); /* خلفية داكنة وجذابة */
    color: var(--white);
    padding: 80px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 80px;
    overflow: hidden; /* لإخفاء أي جزء زائد من العناصر المتحركة */
    position: relative;
}

.homepage-hero h1 {
    color: var(--primary-gold); /* ذهبي براق للعناوين */
    font-size: 3.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInTop 1s ease-out forwards;
}

.homepage-hero .hero-description {
    font-size: 1.5rem;
    color: var(--light-gold); /* ذهبي فاتح للنصوص */
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1.2s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.homepage-hero .cta-button {
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    color: var(--black);
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    animation: fadeIn 1.2s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.homepage-hero .cta-button:hover {
    transform: translateY(-7px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.homepage-hero .cta-button i {
    font-size: 1.8rem;
}

/* Hero Animation Keyframes */
@keyframes fadeInTop {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- Info Bar (as in original style) --- */
.info-notification-bar {
    background-color: var(--primary-gold); /* استخدم الذهبي الرئيسي كخلفية */
    color: var(--black); /* نص أسود واضح */
    padding: 15px 25px;
    border-radius: 50px; /* شكل بيضاوي */
    display: inline-flex; /* لكي لا يأخذ عرض 100% */
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1.15rem;
    margin-top: 50px; /* مسافة عن زر الـ CTA */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInScale 0.8s ease-out forwards;
    animation-delay: 0.9s; /* تأخير بسيط لظهوره بعد باقي العناصر */
    opacity: 0; /* يبدأ مخفيًا */
}

.info-notification-bar .icon {
    font-size: 1.5rem;
    animation: pulse 1.5s infinite ease-in-out; /* تأثير نبض */
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* --- Features Section --- */
.features-section {
    background-color: var(--white);
    padding: 70px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-color);
    margin-top: 80px;
}

.features-section h2 {
    color: var(--dark-gold);
    font-size: 3rem;
    margin-bottom: 50px;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.feature-card {
    background-color: var(--background-light);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: right;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* لتحديد موضع أيقونة الخلفية */
    overflow: hidden; /* لإخفاء أي جزء زائد من أيقونة الخلفية */
    display: flex; /* لجعل الأيقونة والنص في سطر واحد */
    flex-direction: column; /* لترتيب العناصر عمودياً */
    align-items: flex-end; /* لمحاذاة العناصر لليمين */
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.feature-card .icon-wrapper {
    background-color: var(--primary-gold);
    color: var(--black);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* --- Call to Action Section --- */
.cta-section {
    background: linear-gradient(90deg, var(--dark-gold) 0%, var(--primary-gold) 100%);
    color: var(--black);
    padding: 60px 20px;
    border-radius: 15px;
    margin-top: 80px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--black);
}

.cta-section p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-dark);
}

.cta-section .cta-button-secondary {
    background-color: var(--black);
    color: var(--primary-gold);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.cta-section .cta-button-secondary:hover {
    background-color: #333;
    color: var(--light-gold);
    transform: translateY(-5px);
}

/* Responsive adjustments for .homepage-content */
@media (max-width: 992px) {
    .homepage-hero h1 {
        font-size: 3rem;
    }
    .homepage-hero .hero-description {
        font-size: 1.3rem;
    }
    .homepage-hero .cta-button {
        font-size: 1.2rem;
        padding: 18px 35px;
    }
    .features-section h2,
    .cta-section h2 {
        font-size: 2.5rem;
    }
    .feature-card h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .homepage-content {
        padding: 40px 15px;
    }
    .homepage-hero {
        padding: 60px 15px;
    }
    .homepage-hero h1 {
        font-size: 2.5rem;
    }
    .homepage-hero .hero-description {
        font-size: 1.1rem;
    }
    .homepage-hero .cta-button {
        font-size: 1.1rem;
        padding: 15px 25px;
    }
    .info-notification-bar {
        font-size: 1rem;
        padding: 12px 20px;
    }
    .features-section {
        padding: 50px 20px;
    }
    .features-section h2,
    .cta-section h2 {
        font-size: 2.2rem;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .feature-card {
        padding: 25px;
    }
    .feature-card .icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    .feature-card h3 {
        font-size: 1.6rem;
    }
    .cta-section {
        padding: 40px 15px;
    }
    .cta-section p {
        font-size: 1.1rem;
    }
    .cta-section .cta-button-secondary {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
}