@charset "UTF-8";
/* Global Style For App */
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", serif;
  padding-top: var(--navbar-height);
  overflow-y: hidden;
}

html[lang=ar] body {
  direction: rtl;
  text-align: right;
}

.rtl {
  direction: rtl;
}

.ltr {
  direction: ltr;
}

.list-inside {
  list-style-position: inside;
}

.display-none {
  display: none;
}

/** Section Title **/
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  font-weight: 700;
  font-size: 40px;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader-fixed {
  direction: ltr !important;
  position: fixed;
  inset: 0px;
  z-index: 9999;
  background-color: #fff;
}
.loader-fixed .loader-box {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.loader-fixed .loader {
  width: 48px;
  height: 48px;
  margin: auto;
  position: relative;
}
.loader-fixed .loader:before {
  content: "";
  width: 48px;
  height: 5px;
  background: #000;
  opacity: 0.25;
  position: absolute;
  top: 60px;
  left: 0;
  border-radius: 50%;
  animation: shadow 0.5s linear infinite;
}
.loader-fixed .loader:after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--brand-main-color);
  animation: bxSpin 0.5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
}
@keyframes bxSpin {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}
@keyframes shadow {
  0%, 100% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1);
  }
}

/* App Layouts */
#navbar {
  padding: 10px 1rem;
  background-color: #fff !important;
  border-bottom: 1px solid #eee;
}
#navbar .navbar-brand {
  font-size: 28px;
}
#navbar .navbar-brand img {
  width: 65px;
}
#navbar .nav-item:last-of-type .nav-link {
  padding-left: 0px;
}
#navbar .active-link {
  color: var(--brand-second-color) !important;
  font-weight: 600;
}
#navbar .nav-btn-link {
  background-color: var(--btn-bg);
  color: var(--btn-color) !important;
  border-radius: var(--border-radius-sm);
  width: 100%;
  padding: 10px 30px !important;
  text-align: center;
}
#navbar .nav-btn-link span {
  font-weight: 500;
}
#navbar .nav-link {
  color: #000000;
  padding: 10px 20px;
}
@media (min-width: 768px) {
  #navbar .mobile-collapse {
    display: none !important;
  }
}

.navbar-toggler {
  position: relative;
  width: 30px;
  border-color: transparent !important;
}
.navbar-toggler .icon-1,
.navbar-toggler .icon-2,
.navbar-toggler .icon-3 {
  background-color: #000000;
  position: absolute;
  transition: all 0.2s ease-in-out;
  border-radius: 25px;
  width: 100%;
  height: 3px;
  right: 0px;
}
.navbar-toggler .icon-1 {
  top: 0px;
}
.navbar-toggler .icon-2 {
  top: 8px;
}
.navbar-toggler .icon-3 {
  top: -8px;
}

.active-navbar-toggler .icon-1 {
  top: 0px;
  right: 0px;
  transform: rotate(45deg);
}
.active-navbar-toggler .icon-2 {
  top: 8px;
  right: 0px;
  display: none;
}
.active-navbar-toggler .icon-3 {
  top: 0px !important;
  right: 0px !important;
  transform: rotate(-45deg);
}

footer {
  background-color: #101010;
}
footer li,
footer a {
  font-size: 16px;
}
footer .footer-second-color {
  color: #9e9e9e !important;
}

@media (max-width: 991px) {
  footer {
    background-image: unset !important;
  }
}
.list-unstyled a {
  color: #9e9e9e !important;
}

#social-links li {
  width: 40px;
  height: 40px;
  margin: 3px;
}
#social-links li a {
  border-radius: var(--border-radius-sm);
  background-color: #1f1f1f;
  transition: all 0.2s ease;
  height: 100%;
  width: 100%;
  text-align: center;
  display: flex;
  align-content: center;
  justify-content: center;
}
#social-links li a svg {
  fill: var(--btn-color);
  width: 20px;
}
#social-links li a:hover {
  background-color: var(--brand-main-color);
}
#social-links li a:hover,
#social-links li a:hover svg {
  transform: scale(1.1);
}

.btn-footer-column-name svg {
  display: none;
  width: 16px;
}

.rotate-footer-icon {
  transform: rotate(180deg);
}

/* App Pages */
.section-space {
  padding-top: 100px;
}

#home-header {
  background-image: url("../images/home-header.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 75vh;
  position: relative;
  padding: var(--navbar-height) 0px;
  /* Define the bounce animation */
}
#home-header .content {
  position: relative;
  z-index: 3;
}
#home-header .content .brand-name {
  font-size: 50px;
  color: #000;
}
#home-header .content .brand-desc {
  color: var(--brand-second-color);
  font-size: 40px;
}
#home-header .content .introduction-text {
  display: inline-block;
  font-size: 18px;
}
#home-header .bounce {
  position: absolute;
  z-index: 3;
  bottom: 40px;
  right: calc(50% - 13px);
  animation: bounce 1s infinite;
  /* Keyframes for the bounce effect */
}
#home-header .bounce svg {
  width: 26px;
  fill: #000;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}
#home-header .blur {
  position: absolute;
  width: 100%;
  height: calc(100% + 10px);
  right: 0;
  left: 0;
  bottom: -10px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  z-index: 1;
}

#home-features .box .icon svg {
  width: 46px;
  height: 46px;
  fill: var(--brand-second-color);
}
#home-features .box .box-name {
  font-size: 20px;
  font-weight: 600;
}
#home-features .box .box-desc {
  font-size: 18px;
}

#home-why-us .card {
  margin-bottom: 10px;
}
#home-why-us .card-header {
  padding: 0.75rem 1.25rem;
  background-color: #f8f8f8;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
#home-why-us .btn-link {
  display: block;
  width: 100%;
  text-align: right;
  color: var(--brand-second-color);
  font-weight: 700;
  padding: 0.75rem 0px !important;
}
#opinions {
  position: relative;
}
#opinions .box {
  border: solid #32bea6 1px;
  box-shadow: none !important;
  position: relative;
  direction: rtl;
}
#opinions .box .star {
  width: 100px;
}
#opinions .item .box {
  min-height: 250px;
}
#opinions .owl-nav {
  margin-top: 15px;
  text-align: center;
}
#opinions .owl-nav .disabled {
  cursor: not-allowed !important;
}
#opinions .owl-nav button {
  margin: 0px 5px;
  height: 40px;
  width: 40px;
  line-height: 10px;
  border-radius: var(--border-radius-md);
  transition: all 0.1s linear;
  background-color: #eee !important;
  text-align: center;
}
#opinions .owl-nav button svg {
  width: 16px;
  height: 16px;
  fill: #000000;
}
#opinions .owl-nav button:hover {
  background-color: #000 !important;
}
#opinions .owl-nav button:hover svg {
  fill: #fff;
}

/* Contact Section */
#contact-us a {
  text-decoration: none;
}
#contact-us .section-title h2 {
  font-size: clamp(1.5rem, 1.0158rem + 1.5493vw, 2.875rem);
}
#contact-us .contact-box .bg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
}
#contact-us .contact-box .bg svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  width: 30px;
}
#contact-us .contact-box .bg-green {
  background-color: rgba(34, 169, 0, 0.15);
}
#contact-us .contact-box .bg-green svg {
  fill: #22a900;
}
#contact-us .contact-box .bg-orange {
  background-color: rgba(255, 106, 0, 0.15);
}
#contact-us .contact-box .bg-orange svg {
  fill: rgb(255, 106, 0);
}
#contact-us .contact-box .bg-blue {
  background-color: rgba(0, 98, 255, 0.15);
}
#contact-us .contact-box .bg-blue svg {
  fill: #0062ff;
}
#contact-us .contact-modern-box h3 {
  font-size: clamp(1.25rem, 1.206rem + 0.1408vw, 1.2rem);
  direction: ltr;
}
#contact-us .contact-modern-box svg {
  width: 38px;
  margin-bottom: 12px;
}
#contact-us .contact-modern-box .bg {
  text-align: center;
  padding: 24px 10px;
  border-radius: var(--border-radius-md);
  position: relative;
  transition: all 0.2s ease-in-out;
  box-shadow: var(--card-shadow);
  color: #000;
}
#contact-us .contact-modern-box .bg:hover {
  transform: scale(0.95);
}
#contact-us .contact-modern-box .bg svg {
  fill: #000;
}

#register .form-logo, #login .form-logo {
  width: 240px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 30px !important;
}
#register .login-form, #login .login-form {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#register .login-form .form-control, #login .login-form .form-control {
  margin-bottom: 1rem;
}
#register .login-form .form-check, #login .login-form .form-check {
  margin-bottom: 1rem;
}
#register .login-form .btn, #login .login-form .btn {
  width: 100%;
}
#register .have-account-line, #login .have-account-line {
  margin-top: 30px;
  border-top: 1px #eee solid;
  position: relative;
}
#register .have-account-line::after, #login .have-account-line::after {
  content: "او";
  position: absolute;
  width: 50px;
  text-align: center;
  right: calc(50% - 25px);
  background-color: #fff;
  top: -10px;
  font-size: 14px;
  font-weight: 300;
}/*# sourceMappingURL=style.css.map */