 
    /* Improved CSS with better organization and performance */
    :root {
      --navy: #0b2a43;
      --navy-2: #12365d;
      --gold: #c9a64f;
      --gold-light: #efe2b2;
      --gold-dark: #9c7b2e;
      --bg: #f7f9fc;
      --text: #0b2a43;
      --success: #28a745;
      --warning: #ffc107;
      --danger: #dc3545;
      --transition: all 0.3s ease;
      --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      --radius: 12px;
    }
    
    /* Cairo Regular 
@font-face {
    font-family: 'Cairo';
    src: url('fonts/Cairo.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}*/

/* Tajawal Regular */
@font-face {
    font-family: 'Tajawal';
    src: url('fonts/Tajawal-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}



    /* Base styles */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    body {
      font-family: 'Cairo', 'Tajawal', sans-serif;
      background-color: var(--bg);
      color: var(--text);
      line-height: 1.8;
      overflow-x: hidden;
      font-weight: 400;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-weight: 800;
      margin-bottom: 1rem;
      color: var(--navy);
    }
    
    p {
      margin-bottom: 1.5rem;
    }
    
    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }
    
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    
    /* Layout */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
    
    /* Header */
    header {
      background: linear-gradient(180deg, #FFFFFF 0%, #fbfcff 60%, #f3f6fb 100%);
      color: var(--navy);
      padding: 100px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    header::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="140" height="140" viewBox="0 0 140 140"><g fill="none" stroke="%23c9a64f" stroke-opacity="0.25"><rect x="0.5" y="0.5" width="139" height="139"/><path d="M0 70h140M70 0v140"/></g></svg>');
      opacity: 0.35;
    }
    
    .logo-container {
      
      padding: 15px;
      display: inline-block;
      margin-bottom: 20px;
     }
    
header img {
  max-width: 230px;
  height: auto;
}

/* للجوال */
 
    /* Navigation */
    nav.navbar {
      background: #061c3a !important;
      border-bottom: 1px solid rgba(11, 42, 67, 0.08);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
      border-radius: 20px;
      border: 1px solid #e1bb40;
      padding: 0.5rem 1rem;
    }
    
    .navbar-brand {
      font-size:2em;
      color: #fff !important;
    }
    
    .navbar-brand span:first-child,
    .navbar-brand span:last-child {
      color: #e1bb40 !important;
    }
    
    .navbar-toggler {
      border-color: #e1bb40;
      padding: 0.25rem 0.5rem;
    }
    
    .navbar-toggler:focus {
      box-shadow: 0 0 0 0.2rem rgba(225, 187, 64, 0.25);
    }
    
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23e1bb40' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
      width: 1.2em;
      height: 1.2em;
    }
    
.navbar-nav .nav-link,
.navbar-nav .dropdown-toggle {
     color: #fff !important;             /* النص أبيض */
  font-weight: 600;                   /* سماكة أوضح */
  padding: 8px 18px;                  /* حشوة متناسقة */
  font-size: 0.95rem;                 /* حجم الخط مناسب */
  border-radius: 25px;                /* زوايا دائرية (ستايل زر) */
  transition: all 0.3s ease;          /* حركة سلسة */
  background: transparent;            /* بدون خلفية افتراضياً */
  border: 1px solid transparent;      /* جاهز للحركة */


}
    .navbar-nav .nav-link:hover,
    .navbar-nav .dropdown-toggle:hover,
    .navbar-nav .nav-item.show > .nav-link,
    .navbar-nav .nav-item:hover > .dropdown-toggle {
      background-color: #e1bb40 !important;
      color: #061c3a !important;
      width: 100% !important ;
        border-color: var(--gold);   
    }
    /* الحاوية */
.navbar-nav {
  display: flex;
  flex-wrap: wrap;                    /* الروابط تكسر للسطر إذا الشاشة صغيرة */
  gap: 10px;                          /* مسافة بين الروابط */
  justify-content: center;            /* توسيط الروابط */
}
    
.custom-dropdown {
  background-color: #061c3a; /* خلفية القائمة */
  border-left: 2px solid #e1bb40;   /* البوردر على اليسار */
  border-right: 2px solid #e1bb40;  /* البوردر على اليمين */
  border-bottom: 2px solid #e1bb40; /* البوردر على الأسفل */
  border-top: none;                  /* إزالة البوردر العلوي */
  min-width: 200px;
  border-bottom-left-radius: 12px;   /* الحافة الدائرية السفلية اليسرى */
  border-bottom-right-radius: 12px;  /* الحافة الدائرية السفلية اليمنى */
  overflow: hidden;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  display: block;
  visibility: hidden;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* إظهار القائمة عند المرور على العنصر */
.nav-item.dropdown:hover .custom-dropdown {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* عناصر القائمة */
.custom-dropdown .dropdown-item {
  color: #fff !important;
  padding: 12px 20px;
  font-size: 0.95rem; /* حجم خط أوضح */
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

/* إزالة الحد من آخر عنصر */
.custom-dropdown .dropdown-item:last-child {
  border-bottom: none;
}

/* تأثير عند المرور على العنصر */
.custom-dropdown .dropdown-item:hover {
  background-color: #e1bb40; /* لون مميز */
  color: #061c3a !important;
  padding-left: 25px; /* حركة انزلاق خفيفة للعنصر */
  transform: translateX(5px); /* حركة جانبية صغيرة */
}

    /* Sections */
    section {
      padding: 80px 0;
      position: relative;
    }
    
    .section-title {
      position: relative;
      margin-bottom: 50px;
      text-align: center;
      color: var(--navy);
      font-size: 2.2rem;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 90px;
      height: 3px;
      background: var(--gold);
    }
    
    /* Cards */
    .card {
      background: #fff;
      border: 1px solid rgba(11, 42, 67, 0.08);
      border-radius: var(--radius);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
      transition: var(--transition);
      height: 100%;
      overflow: hidden;
    }
    
    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 28px rgba(11, 42, 67, 0.18);
      border-color: var(--gold);
    }
    
    .card-icon {
      font-size: 2.5rem;
      color: var(--gold);
      margin-bottom: 20px;
      display: inline-block;
    }
    
    /* Feature boxes */
    .feature-box {
      text-align: center;
      padding: 30px;
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: var(--transition);
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    
    .feature-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 0;
      background: var(--gold);
      transition: height 0.5s ease;
    }
    
    .feature-box:hover::before {
      height: 100%;
    }
    
    .feature-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(11, 42, 67, 0.12);
    }
    
    .feature-icon {
      font-size: 3rem;
      color: var(--gold);
      margin-bottom: 20px;
      position: relative;
      z-index: 2;
    }
    
    /* Tables */
    table {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      width: 100%;
      border-collapse: collapse;
    }

@media (max-width: 991.98px) {
  .navbar-collapse {
    max-height: 80vh;
    overflow-y: auto;
  }

  /* تخصيص شكل السكروول */
  .navbar-collapse::-webkit-scrollbar {
    width: 8px;                /* عرض الشريط */
  }

  .navbar-collapse::-webkit-scrollbar-track {
    background: #12365d;       /* مسار السكروول (أزرق أفتح) */
  }

  .navbar-collapse::-webkit-scrollbar-thumb {
    background-color: #c9a64f; /* لون السكرول (ذهبي) */
    border-radius: 10px;       /* حواف دائرية */
  }

  .navbar-collapse::-webkit-scrollbar-thumb:hover {
    background-color: #9c7b2e; /* ذهبي أغمق عند التحويم */
  }
}



    table th {
      background: var(--navy);
      color: #fff;
      font-weight: 700;
      border-color: transparent !important;
      padding: 15px;
    }
    
    table td, table th {
      text-align: center;
      border-color: rgba(11, 42, 67, 0.08) !important;
      padding: 12px 15px;
    }
    
    table tr:nth-child(even) {
      background-color: #fafbfd;
    }
    
    table tr:hover {
      background-color: rgba(201, 166, 79, 0.1);
    }
    
    /* FAQ */
    .faq-button {
      width: 100%;
      text-align: right;
      border: none;
      background: #fff;
      padding: 15px 20px;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      color: var(--navy);
      transition: var(--transition);
      border-radius: 8px;
      margin-bottom: 10px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .faq-button:hover {
      background: var(--gold-light);
    }
    
    .faq-button i {
      color: var(--gold);
      transition: transform 0.3s;
    }
    
    .faq-button.active i {
      transform: rotate(180deg);
    }
    
    .faq-content {
      display: none;
      padding: 20px;
      font-size: 1rem;
      color: var(--navy-2);
      background: #fff;
      border-radius: 0 0 8px 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
      margin-top: -10px;
      margin-bottom: 20px;
      animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    /* Forms */
    input, textarea, select {
      background: #fff;
      color: var(--navy);
      border: 1px solid rgba(11, 42, 67, 0.18);
      border-radius: 8px;
      padding: 12px;
      width: 100%;
      font-family: inherit;
      transition: var(--transition);
    }
    
    input:focus, textarea:focus, select:focus {
      box-shadow: 0 0 0 3px rgba(201, 166, 79, 0.25);
      border-color: var(--gold);
      outline: none;
    }
    
    input::placeholder, textarea::placeholder {
      color: rgba(11, 42, 67, 0.45);
    }
    
    /* Buttons */
    .btn-primary {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--navy);
      font-weight: 700;
      transition: var(--transition);
      padding: 12px 24px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
    }
    
    .btn-primary:hover {
      background: var(--gold-dark);
      border-color: var(--gold-dark);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(156, 123, 46, 0.3);
    }
    
    /* Branch cards */
    .branch-card {
      border-radius: var(--radius);
      overflow: hidden;
      transition: var(--transition);
      height: 100%;
      box-shadow: var(--shadow);
    }
    
    .branch-card .card-header {
      background: var(--gold);
      color: var(--navy);
      font-weight: 700;
      padding: 15px;
      text-align: center;
    }
    
    .branch-card .card-body {
      padding: 20px;
      background: #fff;
    }
    
    /* Gallery */
    .gallery-img {
      border-radius: var(--radius);
      overflow: hidden;
      transition: var(--transition);
      height: 250px;
      object-fit: cover;
      width: 100%;
    }
    
    .gallery-img:hover {
      transform: scale(1.03);
    }
    
    /* Testimonials */
    .testimonial-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      position: relative;
      margin-top: 40px;
    }
    
    .testimonial-card::before {
      content: "“";
      position: absolute;
      top: -30px;
      right: 20px;
      font-size: 5rem;
      color: rgba(201, 166, 79, 0.25);
      line-height: 1;
      font-family: 'Cairo', 'Tajawal', sans-serif;
    }
    
    .client-img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--gold);
    }
    
    /* Contact info */
    .contact-info {
      background: #fff;
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      height: 100%;
    }
    
    .contact-icon {
      font-size: 1.8rem;
      color: var(--gold);
      margin-left: 10px;
      min-width: 30px;
      text-align: center;
    }
    
    /* Footer */
    footer {
      background: #0f2745;
      color: #ffffff;
      text-align: center;
      padding: 60px 15px 30px;
      position: relative;
      overflow: hidden;
    }
    
    footer::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%23c9a64f" stroke-width="1" stroke-opacity="0.15"/></svg>');
      opacity: 0.35;
    }
    
    .social-icons a {
      font-size: 1.5rem;
      color: #ffffff;
      margin: 0 10px;
      transition: color 0.3s, background 0.3s;
      background: rgba(255, 255, 255, 0.09);
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    
    .social-icons a:hover {
      color: var(--gold);
      background: rgba(255, 255, 255, 0.18);
      transform: translateY(-3px);
    }
    
    .footer-links a {
      color: #ffffff;
      margin: 0 10px;
      transition: var(--transition);
      position: relative;
    }
    
    .footer-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      right: 0;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width 0.3s ease;
    }
    
    .footer-links a:hover {
      color: var(--gold);
    }
    
    .footer-links a:hover::after {
      width: 100%;
    }
    
    /* WhatsApp button */
    .whatsapp-button {
      position: fixed;
      bottom: 25px;
      left: 25px;
      background-color:var(--navy);
      color: #fff;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: transform 0.3s, box-shadow 0.3s;
      animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(0, 224, 131, 0.7); }
      70% { box-shadow: 0 0 0 15px rgba(0, 224, 131, 0); }
      100% { box-shadow: 0 0 0 0 rgba(0, 224, 131, 0); }
    }
    
    .whatsapp-button:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
      animation: none;
    }
    
    /* Back to top button */
    .back-to-top {
      position: fixed;
      bottom: 90px;
      right: 25px;
      background-color: var(--navy);
      color: #fff;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 999;
      transition: var(--transition);
      opacity: 0;
      visibility: hidden;
    }
    
    .back-to-top.active {
      opacity: 1;
      visibility: visible;
    }
    
    .back-to-top:hover {
      background-color: var(--gold);
      color: var(--navy);
      transform: translateY(-5px);
    }
    
    /* Loading animation */
    .loading {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--bg);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }
    
    .loading.hidden {
      opacity: 0;
      visibility: hidden;
    }
    
    .loader {
      width: 60px;
      height: 60px;
      border: 5px solid rgba(201, 166, 79, 0.2);
      border-radius: 50%;
      border-top-color: var(--navy-2);
      animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    
    /* Responsive design */
    @media (max-width: 1200px) {
      .section-title {
        font-size: 2rem;
      }
    }
    
    @media (max-width: 992px) {
      section {
        padding: 60px 0;
      }
      
      header {
        padding: 80px 20px;
      }
      
      .navbar-nav .nav-link,
      .navbar-nav .dropdown-toggle {
        padding: 8px 12px;
      }
      
      .custom-dropdown {
        position: static;
        opacity: 1;
        transform: none;
        visibility: visible;
        display: none;
        margin: 10px 0;
        box-shadow: none;
      }
      
      .nav-item.dropdown:hover .custom-dropdown,
      .nav-item.dropdown.show .custom-dropdown {
        display: block;
      }
    }
    
    @media (max-width: 768px) {
      body {
        font-size: 0.95rem;
      }
      
      section {
        padding: 50px 0;
      }
      
      .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
      }
      
      header {
        padding: 60px 15px;
      }
      
      header h1 {
        font-size: 2.2rem;
      }
      
      .feature-box, .card {
        padding: 20px;
      }
      
      .testimonial-card {
        padding: 20px;
      }
      
      .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        left: 20px;
      }
      
      .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        bottom: 80px;
        right: 20px;
      }
    }
    @media (max-width: 992px) {
  .navbar-nav {
    flex-direction: column;   /* القائمة تصير عمودية في الجوال */
    align-items: flex-start;
    gap: 0;
  }
  
  .navbar-nav .nav-item {
  margin: 2px 5px;            /* مسافات إضافية لعدم الالتصاق */
  }
}
    
    @media (max-width: 768px) {
      header {
        padding: 50px 15px;
      }
      
      header h1 {
        font-size: 1.8rem;
      }
      
      header img {
        max-width: 120px;
      }
      
      .section-title {
        font-size: 1.6rem;
      }
      
      .faq-button {
        padding: 12px 15px;
        font-size: 1rem;
      }
    }
    
    /* Utility classes */
    .text-gold {
      color: var(--gold) !important;
    }
    
    .bg-light-gold {
      background-color: rgba(201, 166, 79, 0.07) !important;
    }
    
    .mt-10 {
      margin-top: 6rem !important;
    }
    
    .mb-10 {
      margin-bottom: 6rem !important;
    }
    
    .py-10 {
      padding-top: 6rem !important;
      padding-bottom: 6rem !important;
    }
    /* الخلفية العامة للقسم */
#services {
    background: rgba(201,166,79,0.07);
    padding: 60px 0;
}

/* عنوان القسم */
#services .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

/* بطاقات الخدمات */
.service-card {
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}

/* تأثير عند المرور على البطاقة */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* أيقونات البطاقة */
.card-icon {
    font-size: 3rem;
      color: var(--gold);
    margin-bottom: 15px;
}

/* عنوان البطاقة */
.card-title {
    font-weight: 700;
    margin-bottom: 15px;
}

/* نص البطاقة */
.card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}
 .modern-table {
    border-collapse: separate !important;
    border-spacing: 0 10px;
    background: transparent;
    width: 100%;
}

.modern-table thead th {
    background: #061c3a;
    color:var(--gold);
    font-weight: 900;
    border: none;
    padding: 15px 20px;
    border-radius: 10px 10px 0 0;
}

.modern-table tbody tr {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-table tbody tr:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.modern-table tbody td {
    border: none;
    padding: 15px 20px;
    font-weight: 500;
    color: #061c3a;
}

/* ------------------------------ */

.hidden {
  display: none;
}

/* Overlay */
.currency-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 25px 20px;
  border-radius: var(--radius);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  width: 300px;
  text-align: center;
  z-index: 10000;
  transition: var(--transition);
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}

.close-btn:hover {
  color: var(--gold);
}

/* Inputs and select */
.currency-dialog input,
.currency-dialog select {
  width: 90%;
  margin: 10px 0;
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid rgba(11, 42, 67, 0.18);
  font-size: 1rem;
  text-align: center;
}

.currency-dialog input:focus,
.currency-dialog select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,166,79,0.2);
  outline: none;
}

/* Result */
#result {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

/* Section title */
.currency-dialog .section-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--navy);
  position: relative;
}

.currency-dialog .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

/* Button inside dialog */
.currency-dialog .btn-primary {
  margin-top: 10px;
  width: 95%;
}
.background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
background: url('../images/background.jpg') center/cover no-repeat;
    opacity: 0.4; /* اضبط قيمة الشفافية هنا من 0 إلى 1 */
    z-index: 1;
}.content {
    position: relative;
    z-index: 2;
 
}





/* الصف الأول - دولار أمريكي */
table.modern-table tbody tr:nth-child(1) td {
    background-color: #e6f2ff !important; /* خلفية فاتحة لكل الخلايا */
}

/* الصف الثاني - ريال سعودي */
table.modern-table tbody tr:nth-child(2) td {
    background-color: #fff2e6 !important; /* خلفية فاتحة لكل الخلايا */
}



.logo-img {
  width: 5em; /* العرض على الكمبيوتر */
  height: auto;
}

/* تصغير على الشاشات الصغيرة (الهاتف) */
@media (max-width: 768px) {
  .logo-img {
    width: 3em; /* حجم أصغر للهاتف */
  }
}
