  /*---------------------------------------
    CUSTOM PROPERTIES ( VARIABLES )             
  -----------------------------------------*/
  :root {
    --white-color: #ffffff;
    --primary-color: #dfb629;
    --secondary-color: #ff69b4;
    --section-bg-color: #f0f8ff;
    --custom-btn-bg-color: #dfb629;
    --custom-btn-bg-hover-color: #ff69b4;
    --dark-color: #000000;
    --p-color: #717275;
    --border-color: #7fffd4;
    --link-hover-color: #b22727;
    --primary-colosr: #dfb629;

    --body-font-family: "Outfit", sans-serif;

    --h1-font-size: 74px;
    --h3-font-size: 32px;
    --h4-font-size: 28px;
    --h5-font-size: 24px;
    --h6-font-size: 22px;
    --p-font-size: 18px;
    --btn-font-size: 14px;
    --copyright-font-size: 16px;

    --border-radius-large: 100px;
    --border-radius-medium: 20px;
    --border-radius-small: 10px;

    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
  }

  body {
    background-color: var(--white-color);
    font-family: var(--body-font-family);
  }

  /*---------------------------------------
    TYPOGRAPHY               
  -----------------------------------------*/

  h3,
  h4,
  h5,
  h6 {
    color: var(--dark-color);
  }

  h1,
  h3,
  h4,
  h5,
  h6 {
    font-weight: var(--font-weight-bold);
  }

  h1 {
    font-size: var(--h1-font-size);
  }

  h3 {
    font-size: var(--h3-font-size);
  }

  h4 {
    font-size: var(--h4-font-size);
  }

  h5 {
    font-size: var(--h5-font-size);
  }

  h6 {
    font-size: var(--h6-font-size);
  }

  p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
  }

  ul li {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
  }

  a,button {
    touch-action: manipulation;
    transition: all 0.3s;
  }

  a {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
  }

  a:hover {
    color: var(--link-hover-color);
  }

  .lalezar-regular {
    font-family: "Lalezar", serif;
    font-weight: 400;
    font-style: normal;
  }
  .badeen-display-regular {
    font-family: "Badeen Display", serif;
    font-weight: 400;
    font-style: normal;
  }
  .marhey assff {
    font-family: "Marhey", serif;
    font-weight: 700;
    font-style: normal;
  }

  .marhey-uniquifier {
    font-family: "Marhey", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
  }

  h2 {
    font-size: 3rem; /* حجم الخط */
    color: #ffffff; /* لون الخط */
    font-family: "Tajawal", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800; /* وزن الخط (عريض) */
    text-align: center; /* توسيط النص أفقيًا */
    margin-bottom: 25px; /* مسافة أسفل العنوان */
    text-shadow: 0 0 7px rgba(255, 255, 255, 0.719); /* إضافة هالة بيضاء حول النص */
  }

  b,
  strong {
    font-weight: var(--font-weight-bold);
  }

  .link-fx-1 {
    color: var(--white-color);
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 6px;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .link-fx-1:hover {
    color: var(--link-hover-color);
  }

  .link-fx-1:hover::before {
    transform: translateX(17px) scaleX(0);
    transition: transform 0.2s;
  }

  .link-fx-1:hover .icon circle {
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 0.2s 0.1s;
  }

  .link-fx-1:hover .icon line {
    transform: rotate(-180deg);
  }

  .link-fx-1:hover .icon line:last-child {
    transform: rotate(180deg);
  }

  .link-fx-1::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform-origin: right center;
    transition: transform 0.2s 0.1s;
  }

  .link-fx-1 .icon {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateX(100%) rotate(90deg);
    font-size: 32px;
  }

  .icon {
    --size: 1em;
    height: var(--size);
    width: var(--size);
    display: inline-block;
    color: inherit;
    fill: currentColor;
    line-height: 1;
    flex-shrink: 0;
    max-width: initial;
  }

  .link-fx-1 .icon circle {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.2s;
  }

  .link-fx-1 .icon line {
    transition: transform 0.4s;
    transform-origin: 13px 15px;
  }

  .link-fx-1 .icon line:last-child {
    transform-origin: 19px 15px;
  }

  /*---------------------------------------
    SECTION               
  -----------------------------------------*/
  .section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-bg {
    background-color: var(--section-bg-color);
  }

  .section-overlay {
    background-color: var(--dark-color);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    opacity: 0.35;
  }

  .section-overlay + .container {
    position: relative;
  }

  .tab-content {
    background-color: var(--white-color);
    border-radius: var(--border-radius-medium);
    padding: 45px;
  }

  .nav-tabs {
    background-color: var(--section-bg-color);
    border-radius: var(--border-radius-large);
    border-bottom: 0;
    padding: 15px;
  }

  .nav-tabs .nav-link {
    border-radius: var(--border-radius-large);
    border: 0;
    padding: 15px 25px;
    transition: all 0.3s;
  }

  .nav-tabs .nav-link:first-child {
    margin-right: 15px;
  }

  .nav-tabs .nav-item.show .nav-link,
  .nav-tabs .nav-link.active,
  .nav-tabs .nav-link:focus,
  .nav-tabs .nav-link:hover {
    background: var(--white-color);
    box-shadow: 0 1rem 3rem hwb(0 0% 100% / 0.175);
    color: var(--primary-color);
  }

  .nav-tabs h5 {
    color: var(--p-color);
    margin-bottom: 0;
  }

  .nav-tabs .nav-link.active h5,
  .nav-tabs .nav-link:focus h5,
  .nav-tabs .nav-link:hover h5 {
    color: var(--primary-color);
  }

  /*---------------------------------------
    CUSTOM ICON COLOR               
  -----------------------------------------*/
  .custom-icon {
    color: var(--secondary-color);
  }

  /*---------------------------------------
    CUSTOM BUTTON               
  -----------------------------------------*/
  .custom-btn {
    background: var(--custom-btn-bg-color);
    border: 2px solid transparent;
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-bold);
    line-height: normal;
    transition: all 0.3s;
    padding: 10px 20px;
  }
  .btn custom-btn d-lg-block d-none :hover {
    background: var(--custom-btn-bg-hover-color);
    color: var(--white-color);
  }

  .custom-btn:hover {
    background: var(--custom-btn-bg-hover-color);
    color: var(--white-color);
  }

  .custom-border-btn {
    background: transparent;
    border: 2px solid var(--custom-btn-bg-color);
    color: var(--custom-btn-bg-color);
  }

  .custom-border-btn:hover {
    background: var(--custom-btn-bg-hover-color);
    border-color: transparent;
    color: var(--white-color);
  }

  .custom-btn-bg-white {
    border-color: var(--white-color);
    color: var(--white-color);
  }

  /* الألوان المخصصة */
  :root {
    --primary-color: #dfb629; /* ذهبي */
    --dark-color: #000000; /* أسود داكن */
    --white-color: #ffffff; /* أبيض */
    --border-radius-large: 25px;
    --border-radius-medium: 15px;
    --h5-font-size: 1.5rem;
    --p-font-size: 1rem;
    --font-weight-bold: 700;
    --font-weight-normal: 400;
  }

  /* إزالة الهوامش والحشو الافتراضي */
  body,
  html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* الشريط العلوي */
  .navbar {
    background: linear-gradient(135deg, #000000c5, #10031f);
    padding: 10px 20px; /* حجم أصغر في البداية */
    position: fixed; /* تثبيت الشريط في أعلى الصفحة */
    top: 0;
    right: 0;
    left: 0;
    margin-top: 0; /* تأكد من أن margin-top يساوي 0 */
    z-index: 1000; /* تأكد من أن الشريط يظهر فوق العناصر الأخرى */
    transition: height 0.3s ease; /* تطبيق الانتقال على الارتفاع فقط */
  }

  .navbar.is-sticky {
    background-color: rgba(26,26,26,0.308); /* خلفية أقل شفافية عند التمرير (0.8) */
    padding: 20px 30px; /* حجم أكبر عند التمرير */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* إضافة ظل */
  }

  @media screen and (max-width: 991px) {
    .navbar.is-sticky {
      background-color: rgba(
        26,
        26,
        26,
        0.185
      ) !important; /* جعل الشريط أكثر شفافية */
    }
  }

  .navbar-brand,
  .navbar-brand:hover {
    color: var(--white-color); /* نص أبيض في البداية */
    font-size: var(--h5-font-size);
    font-weight: var(--font-weight-bold);
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    border-radius: var(--border-radius-large);
    margin: 5px;
    padding: 10px 20px;
    background: transparent;
    color: var(--white-color); /* نص أبيض في البداية */
    transition: all 0.3s ease;
  }

  .navbar-nav .nav-link {
    display: inline-block;
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link:hover {
    color: var(--primary-color); /* لون ذهبي عند التمرير */
    background: rgba(255, 215, 0, 0.1); /* خلفية شبه شفافة ذهبية */
  }
  /* تنسيق الشريط عند الوصول إلى الفوتر */
  .navbar.footer-reached {
    background-color: rgba(0, 0, 0, 0.9) !important; /* لون أسود */
    backdrop-filter: blur(10px); /* تأثير ضبابي */
  }

  /* عند التمرير (Scroll) */
  .sticky-wrapper.is-sticky .navbar-brand,
  .sticky-wrapper.is-sticky .navbar-nav .nav-link {
    color: var(--white-color); /* نص أبيض عند التمرير */
  }

  .sticky-wrapper.is-sticky .navbar-nav .nav-link:hover {
    color: var(--primary-color); /* لون ذهبي عند التحويم */
  }

  .sticky-wrapper.is-sticky .custom-btn {
    background: var(--primary-color); /* خلفية ذهبية */
    color: var(--dark-color); /* نص داكن */
  }

  .sticky-wrapper.is-sticky .custom-btn:hover {
    background: var(--secondary-color); /* وردي فاتح عند التحويم */
    color: var(--white-color); /* نص أبيض */
  }

  * تنسيق الأزرار */ .custom-btn {
    background-color: #dfb629; /* لون ذهبي */
    color: #ffffff;

    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .custom-btn:hover {
    background-color: #ff69b4; /* لون وردي فاتح */
    color: #fff;
    transform: translateY(-3px);
  }

  /*footer*/

  .site-footer {
    background: linear-gradient(135deg, #10031fa4, #000000c5);
    padding: 40px 0 20px;
    font-family: "Tajawal", sans-serif;
  }

  .site-footer h2 {
    text-align: right;
  }
  .site-footer h5 {
    color: #f8d51d;
    font-size: 18px;
    margin-bottom: 20px;
  }

  /* ملف CSS خارجي */
  .site-footer p a {
    color: #fff; /* لون النص الافتراضي */
    text-decoration: none;
    transition: color 0.3s, border 0.3s, border-radius 0.3s; /* تأثير انتقالي */
    padding: 5px 10px;
    display: inline-block;
  }

  .site-footer p a:hover {
    color: #f8d51d; /* اللون عند التمرير */
    border: 1px solid #f8d51d; /* إضافة الحواف */
    border-radius: 20px; /* جعل الحواف دائرية */
  }

  .site-footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s, border 0.3s, border-radius 0.3s; /* تأثير انتقالي للخصائص */
    padding: 5px 10px;
    display: inline-block;
  }

  .site-footer-links a:hover {
    color: #f8d51d;
    border: 1px solid #f8d51d; /* إضافة الحواف عند التمرير */
    border-radius: 20px; /* جعل الحواف دائرية */
  }

  .social-icon-link {
    color: #fff;
    font-size: 18px;
    margin-right: 10px;
    transition: color 0.3s;
  }

  .social-icon-link:hover {
    color: #f8d51d;
  }

  .newsletter-form .form-control {
    background: #3a3a3a;
    border: none;
    color: #fff;
    margin-bottom: 10px;
  }

  .newsletter-form .btn {
    background-color: #f8d51d;
    color: #000;
    border: none;
    font-weight: bold;
  }

  .newsletter-form .btn:hover {
    background-color: #e4c10b;
  }

  .copyright-text {
    font-size: 14px;
    color: #ccc;
  }
  /*---------------------------------------
    SOCIAL ICON               
  -----------------------------------------*/
  .social-icon {
    margin: 0;
    padding: 0;
  }

  .social-icon-item {
    list-style: none;
    display: inline-block;
    vertical-align: top;
  }

  .social-icon-link {
    background: var(--primary-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--copyright-font-size);
    display: block;
    margin-right: 10px;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 36px;
    transition: background 0.2s, color 0.2s;
  }

  .social-icon-link:hover {
    background: var(--secondary-color);
    color: var(--white-color);
  }

  .social-icon-link span {
    display: block;
  }

  .social-icon-link span:hover::before {
    animation: spinAround 2s linear infinite;
  }

  @keyframes spinAround {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

  /*---------------------------------------
    RESPONSIVE STYLES               
  -----------------------------------------*/
  @media screen and (max-width: 991px) {
    h1 {
      font-size: 62px;
    }

    h3 {
      font-size: 32px;
    }

    h4 {
      font-size: 28px;
    }

    h5 {
      font-size: 20px;
    }

    h6 {
      font-size: 18px;
    }

    .section-padding {
      padding-top: 50px;
      padding-bottom: 50px;
    }

    .navbar {
      background-color: var(--dark-color);
    }

    .navbar-expand-lg .navbar-nav {
      padding-bottom: 30px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
      padding: 0;
    }

    .hero-section {
      padding-top: 150px;
    }

    .pricing-thumb {
      padding: 35px;
    }

    .schedule-table h3 {
      font-size: 22px;
    }

    .schedule-table th {
      padding: 20px;
    }

    .schedule-table td {
      padding: 25px;
    }

    .ticket-section {
      padding-top: 1300px;
    }

    .ticket-form {
      padding: 1000px;
    }
  }

  @media screen and (max-width: 767px) {
    .custom-btn {
      font-size: 14px;
      padding: 10px 20px;
    }
  }

  @media screen and (max-width: 480px) {
    h1 {
      font-size: 52px;
    }

    h3 {
      font-size: 26px;
    }

    h4 {
      font-size: 22px;
    }

    h5 {
      font-size: 20px;
    }
  }
  /* تنسيق الشعار */
  .navbar-brand {
    display: flex;
    align-items: center; /* محاذاة الشعار والنص عموديًا */
    gap: 1px;
  }

  .navbar-brand .logo {
    height: 70px; /* تحجيم ارتفاع الشعار */
    width: auto; /* الحفاظ على نسبة العرض إلى الارتفاع */
    margin-right: 1px; /* مسافة بين الشعار والنص */
    transition: all 0.3s ease; /* تأثير سلس عند التغيير */
  }

  /* تحجيم الشعار عند التصغير */
  @media (max-width: 768px) {
    .navbar-brand .logo {
      height: 50px; /* حجم أصغر للشاشات الصغيرة */
    }
  }

  /* تنسيق الشعار عند التمرير */
  .navbar-scrolled .navbar-brand .logo {
    height: 50px; /* حجم أصغر عند التمرير */
  }
  .navbar.footer-reached .navbar-brand .logo {
    height: 50px !important; /* حجم الشعار الطبيعي */
  }

  @media screen and (max-width: 768px) {
    .navbar-nav {
      display: flex;
      flex-direction: column-reverse; /* يعكس ترتيب العناصر */
      align-items: flex-end; /* يضع العناصر على اليمين */
      text-align: right; /* يجعل النصوص بمحاذاة اليمين */
    }

    .navbar-nav .nav-item {
      width: 100%; /* يجعل العناصر تأخذ العرض بالكامل */
    }

    .navbar-toggler {
      margin-left: auto; /* يجعل زر القائمة على اليمين */
    }
  }

  @media screen and (max-width: 768px) {
    .navbar {
      background-color: transparent !important; /* جعل الشريط شفافًا */
      backdrop-filter: blur(0px); /* إزالة التمويه */
      transition: background-color 0.3s ease-in-out,
        backdrop-filter 0.3s ease-in-out;
    }
  }
  .navbar-toggler {
    color: var(--custom-btn-bg-color); /* استخدام نفس لون الأزرار */
    border: 2px solid var(--custom-btn-bg-color); /* جعل الحد بنفس اللون */
    border-radius: var(--border-radius-small); /* تدوير الحواف */
    padding: 8px 10px;
    transition: all 0.3s ease;
  }

  /* تعديل لون أيقونة الزر */
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(238, 80, 7, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  #particles-js {
    position: fixed; /* لجعل التأثير ثابتًا في الخلفية */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* لجعل التأثير خلف المحتوى */
    background-color: #0f031f; /* لون الخلفية (اختياري) */
  }

  .hero-section {
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-content {
    border: 3px solid #dfb629;
    border-radius: 50px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 0 30px rgba(223, 182, 41, 0.4);
    max-width: 90%;
    width: 800px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    justify-content: center;
  }

  .hero-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    border: 2px solid #dfb629;
    border-radius: 25px;
    padding: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .hero-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
  }

  .hero-card span {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: bold;
  }

  .hero-card:hover {
    background: #dfb629;
    color: black;
    transform: scale(1.1);
  }

  /* تنسيق القسم */
  /* تنسيقات عامة للأقسام */
  .tent-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 90px; /* زيادة المسافات بين الأقسام */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: 60px; /* زيادة المسافة بين الأقسام */
    scroll-margin-top: 70px;
  }

  /* تبديل ترتيب النص والصور في الأقسام المعكوسة */
  .tent-section.reverse {
    flex-direction: row-reverse;
  }

  /* تنسيق النص */
  .tent-content {
    flex: 1;
    max-width: 45%;
    color: white;
  }

  .tent-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .tent-content p {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: "Arial", sans-serif; /* تغيير نوع الخط */
    color: #c0c0c0; /* تغيير لون النص */
    font-family: "Marhey", serif; /* نوع الخط */
  }
  .tent-content ul {
    font-family: "Marhey", serif; /* نفس نوع الخط الموجود في <p> */
    color: #c0c0c0; /* نفس لون الخط الموجود في <p> */
    font-size: 1.6rem; /* حجم مختلف للخط حسب الرغبة */
    line-height: 1.6; /* يمكن تعديله حسب الحاجة */
    list-style-type: none; /* إزالة النقاط من القائمة إذا أردت */
    padding-left: 0; /* إزالة المسافة الافتراضية للقائمة */
  }

  .tent-content li {
    margin-bottom: 10px; /* تباعد بين العناصر */
    font-family: "Marhey", serif; /* نفس نوع الخط الموجود في <p> */
    color: #c0c0c0; /* نفس لون الخط الموجود في <p> */
    font-size: 1rem; /* حجم مختلف للخط حسب الرغبة */
  }
  /* تنسيق المعرض */
  .tent-gallery {
    flex: 1;
    max-width: 50%;
  }

  .swiper {
    width: 100%;
    height:auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 40px 10px rgba(0, 255, 179, 0.452); /* زيادة انتشار الهالة */
  }

  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 4px 40px 10px rgba(0, 255, 179, 0.452); /* زيادة انتشار الهالة */
  }

  /* تحسين تجربة المستخدم على الشاشات الصغيرة */
  @media (max-width: 768px) {
    .tent-section {
      flex-direction: column;
      text-align: center;
      padding: 60px 20px; /* تقليل المسافات في الشاشات الصغيرة */
    }

    .tent-section.reverse {
      flex-direction: column;
    }

    .tent-content,
    .tent-gallery {
      max-width: 100%;
    }

    .swiper {
      height: 250px;
    }
  }

  