@import url("_variables.css");

/** General Reset */
body,
html {
  direction: ltr;
  font-family: "MyCustomFont";
}

/* .container {
  padding-right: 0 !important;
  padding-left: 0 !important;
} */

@font-face {
  font-family: "MyCustomFont";
  src: url("/css/alfont_com_Bahij_TheSansArabic-Plain.ttf") format("woff2"),
    url("/css/alfont_com_Bahij_TheSansArabic-Plain.ttf") format("woff"),
    url("/css/alfont_com_Bahij_TheSansArabic-Plain.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/** Navbar Styling */
.navbar {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.01);
  padding: 10px 0;
  z-index: 10;
  /* padding: 20px 0; */
  border-bottom: 1px solid #4a4a4a;
  font-family: "MyCustomFont";
}

.navbar-brand img {
  height: 50px;
}
.navbar-nav .nav-link {
  color: white;
  font-size: 18px;
  margin: 0 15px;
}
.nav-buttons button {
  margin-left: 10px;
}
/* Arabic Button (عربي) - White Border */
.btn-outline-light {
  background: rgba(0, 0, 0, 0.01) !important;
  border: 1px solid white !important; /* White border */
}
.dropdown-toggle::after {
  display: none !important;
}
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  color: white;
}

/* ملف العلامة التجارية Button - Green Border */
.button_color {
  color: #bae12e !important;
  border: 1px solid #bae12e !important; /* Green border */
}

/* Common Button Hover Effect */
.btn:hover {
  color: white !important;
}

/* تحميل التطبيق Button */
.button_background_linear {
  background-color: var(--primary-color) !important;
  border: transparent !important;
  color: white;
}
/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  @media screen and (max-width: 991px) {
    min-height: 100vh;
    height: auto;
    padding-bottom: 50px;
  }
}

/* Background Video Styling */
.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 2s ease-in-out;
  opacity: 0;
}
.video.active {
  opacity: 1;
}

/* Overlay Effect */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #462f0633, #000000);
}

/* Hero Content */
.content {
  position: relative;
  z-index: 1;
}
.title_content {
  font-size: 24px;
  font-weight: 500;
  text-align: left;
  line-height: 39.25px;
  color: var(--primary-color);
}
.paragraph_content {
  font-size: 32px;
  font-weight: 500;
  line-height: 50.34px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.btn-warning {
  font-size: 20px;
  border-radius: 10px;
}
/* Toggle Buttons */
.toggle-buttons {
  position: absolute;
  bottom: 20px;
  display: flex;
  gap: 10px;
}
.toggle-buttons button {
  background: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
}
.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.social_apps {
  width: 100%;
}

.iphone_img {
  width: 3032px;
  height: 853px;
  object-fit: cover;
  background-position: top;
  position: relative;
  left: 30%;
  margin-top: 30%;
}
.login-container {
  position: absolute;
  top: 50%;
  right: 0.5%;
  transform: translateX(-50%);
  background: white;
  padding: 40px 12px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  width: 25%;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 2s ease-in-out, transform 2s ease-in-out;
}

h2 {
  margin-bottom: 10px;
}

p {
  font-size: 14px;
}

label {
  font-weight: bold;
}

.phone-input {
  display: flex;
  align-items: center;
  background: #f0f0f0;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.phone-input .input-group-text {
  background: transparent;
  border: none;
  font-size: 16px;
  padding: 10px;
}

.phone-input .form-control {
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 10px;
  outline: none !important;
}
.form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: #ddd !important; /* Optional: Set a neutral border color */
}
.phone-input .country-code-btn {
  background: transparent;
  border: none;
  padding: 10px;
}

.verification-btn {
  border-radius: 8px;
  font-size: 14px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #ddd;
}

.login-btn {
  background: linear-gradient(90deg, #c68e3f, #5c3d15);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
}
.hidden-section-left {
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 2s ease-in-out;
}
.hidden-section-left.show {
  opacity: 1;
  transform: translateX(0);
  transition: transform 2s ease-in-out, opacity 2s ease-in-out;
}
.hidden-section-right {
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 2s ease-in-out;
}
.hidden-section-right.show {
  opacity: 1;
  transform: translateX(0);
  transition: transform 2s ease-in-out, opacity 2s ease-in-out;
}
.hidden-section-bottom {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 2s ease-in-out, transform 2s ease-in-out;
}
.login-container.show {
  opacity: 1;
  transform: translateY(0);
}
