/* Reset وإعدادات عامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #fff;
    --gold: #D4AF37;
    --gray: #333;
    --light-gray: #999;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* النافبار المعدل: لوجو شمال - لينكات يمين */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.98); /* أبيض مع شفافية خفيفة */
    padding: 20px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* اللوجو على الشمال */
.logo {
    flex: 0 0 auto;
}

.logo h1 {
    font-size: 16.5px;
    font-weight: 350;
    letter-spacing: 2px;
    color: #ffffff; /* لون أسود للنص */
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
}

/* اللينكات على اليمين */
.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    color: #f3f3f3; /* لون داكن للروابط */
    text-decoration: none;
    font-size: 14px;
    font-weight: 350;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
    font-family: 'Montserrat', sans-serif;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* زر القائمة للجوال */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    margin-left: 20px;
    z-index: 3000;
}

.bar {
    width: 25px;
    height: 1px;
    background-color: #000000; /* خطوط داكنة */
    transition: 0.3s;
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 0 20px;
    }

    .navbar {
        padding: 20px 0;
    }

    .navbar.scrolled {
        padding: 15px 0;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: auto;
        background-color: rgba(255, 255, 255, 0.98); /* خلفية بيضاء */
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 30px 0;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        z-index: 2500;
        transition: all 0.4s ease;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link {
        font-size: 14px;
        padding: 12px 0;
        color: #000000;
        font-family: 'Montserrat', sans-serif;
        font-weight: 350;
    }
}

/* السلايدر الرئيسي */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.08);
    transition:
        opacity 1.2s ease,
        transform 1.8s ease;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

/* إحساس حركة خفيفة */
.slide-overlay {
    transition: opacity 1s ease;
}


/* صور السلايدر */
.slide:nth-child(1) {
  background-image:
    linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
    url("https://iili.io/fidhyxt.jpg");
}

.slide:nth-child(2) {
  background-image:
    linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
    url("https://iili.io/fidMACJ.jpg");
}


.slide:nth-child(3) {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}


.slide-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.55)
    );
    transition: opacity 1s ease;
}


.slide-content {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.77,0,0.175,1);
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}



.slide-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
}

.slide-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* أزرار التنقل */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: 40px;
}

.next-btn {
    right: 40px;
}

/* المؤشرات */
.slider-indicators {
    position: absolute;
    bottom: 80px;
    left: 100px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--white);
    transform: scale(1.2);
}

.indicator:hover {
    background-color: var(--white);
}

/* الفوتر البسيط */
.footer {
    background-color: var(--primary-black);
    padding: 30px 0;
    border-top: 1px solid var(--gray);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer p {
    color: var(--light-gray);
    font-size: 14px;
    letter-spacing: 1px;
}

/* تصميم متجاوب */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
        z-index: 3000;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 2000;
    }

    .nav-links {
        position: fixed;              /* 👈 أهم سطر */
        top: 100px;                   /* تحت الناف */
        left: 0;
        width: 100%;
        height: auto;

        background-color: rgba(255, 255, 255, 0.4);

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 30px 0;

        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;

        z-index: 2500;

        transition: all 0.4s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link {
        font-size: 16px;
        padding: 12px 0;
    }
}



 .jda-footer {
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 60px 70px 40px;
  font-family: Arial, sans-serif;
}

.footer-inner {
  max-width: 1800px;
  /* margin: auto; */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* LEFT */
.footer-left {
  display: flex;
  gap: 25px;
}

.footer-logo {
  background: #8b0000;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  letter-spacing: 2px;
}

.footer-details h3 {
  margin: 0;
  font-size: 18px;
}

.footer-role {
  /* margin: 4px 0 18px; */
  font-size: 14px;
  color: #ddd;
}

.footer-contact {
  display: flex;
  gap: 50px;
  font-size: 14px;
}

.footer-contact a {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom-left {
  /* margin-top: 35px; */
  font-size: 12px;
  color: #ccc;
}

.footer-bottom-left a {
  color: #ccc;
  text-decoration: underline;
}

/* RIGHT */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: left;
}

.riba-title {
  font-size: 40px;
  letter-spacing: 4px;
}

.riba-sub {
  display: block;
  font-size: 14px;
  /* margin-top: 5px; */
}

.arb-title {
  font-size: 40px;
  font-weight: bold;
}

.arb-sub {
  display: block;
  font-size: 14px;
  color: #ddd;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    gap: 50px;
  }

  .footer-right {
    align-items: flex-start;
  }
}












