:root {
    --main: rgba(207, 174, 120, 1);
    --sec: rgba(11, 36, 71, 1);
    --text: #5A5A5A;
    --white: #fff;
    --black: #000;
    --animation: 2s ease-in-out infinite;
}

@font-face {
    font-family: 'ExpoArabic';
    src: url('../../fonts/Expo Arabic Light.ttf') format('opentype');
    font-weight: 400;
}
@font-face {
    font-family: 'ExpoArabic';
    src: url('../../fonts/Expo Arabic Medium.ttf') format('opentype');
    font-weight: 500;
}
@font-face {
    font-family: 'ExpoArabic';
    src: url('../../fonts/Expo Arabic SemiBold.ttf') format('opentype');
   font-weight: 600;
}
@font-face {
    font-family: 'ExpoArabic';
    src: url('../../fonts/Expo Arabic Bold.ttf') format('opentype');
    font-weight: 700;
}
@font-face {
  font-family:'ArbFonts' ;
   src: url('../../fonts/ArbFONTS-ExpoArabic-Book.ttf') format('opentype');
}

/* .text-justify {
    text-align: justify;
} */



.d-contents {
    display: contents;
}

body:lang(ar):not(i),
*:lang(ar):not(i) {
    direction: rtl;
    font-family: 'ExpoArabic';
font-weight: 500;
}

button,
a {
    font-family: 'ExpoArabic';
}

body:not(i),
*:not(i),
button,
a {
    font-family: 'EpoArabic';
}

body {
    background-image: url('../../images/bg.svg');
    background-size: cover;
    background-color: rgba(246, 246, 246, 1);
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

main {
    overflow: hidden;
    position: relative;
    padding-top: 0 !important;
}

/* navbar */
    .navbar {
      background-color: #fff;
      border-bottom: 1px solid #ddd;
      top: 0px;
      z-index: 888;
    }
    .navbar-nav .nav-link {
      color: #000;
      font-weight: 500 !important;
      margin: 0 10px;
      position: relative;
      display: inline-block;
      transition: all 0.3s ease;
      font-size: 18px;
      transition: .7s all ease-out;
    }
    /* خط صغير تحت النص */
    .navbar-nav .nav-link::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background-color: #000;
      transition: width 0.3s ease;
    }
     .navbar-nav .nav-link:hover{
      font-weight: 700;
     }
    .navbar-nav .nav-link:hover::after {
      width: 100%;
    }

    .login-btn {
      background-color: #000;
      color: #fff !important;
      padding: 6px 16px;
      border-radius: 0;
      font-weight: 500;
    }
    .navbar-brand img {
      height: 50px; /* عدلي الطول حسب حجم اللوجو */
    }

    /* عشان زرار تسجيل الدخول يظهر تحت المنيو في الموبايل */
    @media (max-width: 991px) {
      .login-btn {
        margin-top: 10px;
        width: 100%;
        text-align: center;
      }
    }


        h2 {
      font-size: 48px;
      font-weight: 900;
      text-align: center;
      margin-bottom: 40px;
      text-shadow: 2px 2px 5px #000;
      color: white;
    }
    .contact-form input,
    .contact-form textarea {
      background: transparent;
      border: 1px solid #CFCFCF80;
      color: #fff;
      border-radius: 0;
      padding: 10px;
      margin-bottom: 15px;
      height: 70px;
    }
    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: #FFFFFF80;
      font-size: 14px;
    }
     .contact-form input:focus,
    .contact-form textarea:focus {
   background: transparent !important;
   outline: none;
   box-shadow: none;
   border-color: white;
   color: white;
    }
    .contact-form button {
      background: transparent;
      border: 1px solid #fff;
      font-weight: bold;
      color: #fff;
      padding: 10px;
      width: 100%;
      transition: 0.3s;
    }
    .contact-form button:hover {
      background: #fff;
      color: #000;
    }
    .contact h2{
      font-size: 120px;
      margin-bottom: 100px;
      margin-top: 30px;
      font-family: "ArbFonts";
    }
    footer {
      background: #000;
      padding: 50px 0 20px;
      font-size: 14px;
    }
    footer h5 {
      font-weight: 700;
      margin-bottom: 20px;
    }
    footer ul {
      list-style: none;
      padding: 0;
    }
    footer ul li {
      margin-bottom: 10px;
    }
    footer ul li a {
      color: #ccc;
      text-decoration: none;
      transition: 0.3s;
    }
    footer ul li a:hover {
      color: #fff;
    }
    .footer-logo {
      font-size: 40px;
      font-weight: 900;
    }
    .copyright {
      text-align: center;
      margin-top: 30px;
      font-size: 13px;
      color: #777;
    }

    .contact{
      background-color: black;
    }