:root {
  --secondary-color: #fe8004;
  --primary-color: #0b69a3;
  --margin-top-section: 5rem;
  --grag-color: #616161;
}
body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif;
}

/* start header */

.navbar {
  z-index: 555555;
  box-shadow: 0px 4px 12px 0px #0000001a;
}
.navbar .container-fluid a.navbar-brand img {
  width: 120px;
  height: auto;
  object-fit: cover;
}
#navbarSupportedContent .navbar-nav .nav-item {
  position: relative;
  margin: 0 5px;
}
#navbarSupportedContent .navbar-nav .nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px; /* سمك الخط */
  width: 100%;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right; /* يبدأ من اليمين */
  transition: transform 0.3s ease;
}

#navbarSupportedContent .navbar-nav .nav-item:hover::after {
  transform: scaleX(1);
  transform-origin: left; /* يخلص من العكس */
}

#navbarSupportedContent .navbar-nav .nav-item:hover .nav-link {
  color: var(--primary-color);
}
#navbarSupportedContent .navbar-nav .nav-item .nav-link {
  color: #000;
  font-weight: 600;
  font-size: 16px;
  background-color: transparent !important;
}
.navbar .container-fluid .navbar-collapse .nav-contact div a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
}

.navbar
  .container-fluid
  .navbar-collapse
  .nav-contact
  div
  button.contact-whatsapp {
  display: block;
  border-radius: 50%;
  background-color: #0b69a3;
  border: none;
  outline: none;
  height: 3rem;
  width: 3rem;
}
.navbar .container-fluid .navbar-collapse {
  position: relative;
}

.navbar .container-fluid .navbar-collapse .nav-contact {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .hero-section .navbar .container-fluid .navbar-collapse .nav-contact div {
    display: none !important;
  }
}
header .hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 5;
}
header .hero-section .hero-section-text {
  text-align: center;
  position: relative;
  z-index: 1501;
}
header .hero-section .hero-section-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}
header .hero-section .hero-section-text h1 span {
  color: var(--secondary-color);
  font-weight: 700;
}

header .hero-section .hero-section-text p {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}

/* End Header */
/* Start Contact us */
.contact-us {
  margin-top: var(--margin-top-section);
  margin-bottom: var(--margin-top-section);
}
.contact-us .container .row .heading h2 {
  text-align: center;
  color: var(--primary-color);
  font-weight: 700;
  font-family: "Inter", sans-serif;
}
.contact-us .container .row .heading p {
  text-align: center;
  color: var(--grag-color);
}

.contact-us .container .row .form-contact-us form textarea,
.contact-us .container .row .form-contact-us form input {
  box-shadow: none;
}

.contact-us .container .row .form-contact-us form textarea:focus,
.contact-us .container .row .form-contact-us form input:focus {
  box-shadow: none;
  border: 1px solid var(--primary-color);
}
.contact-us .container .row .form-contact-us form button {
  background-color: var(--secondary-color);
  color: #fff;
  border: none;
  outline: none;
  padding: 10px 30px;
  border-radius: 150px;
  border: 1px solid transparent;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}
.contact-us .container .row .form-contact-us form button:hover {
  background-color: #fff;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}
@media (max-width: 990px) {
  .form-contact-us form {
    width: 100%;
    padding: 10px;
  }
  .form-contact-us {
    /* padding: 10px; */
  }
}
/* End Contact us */

/* Start footer */
footer {
  background-color: #f9f9ff;
  padding: 40px 0 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #333;
}
footer h5 {
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  color: var(--primary-color);
}
footer h5::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  margin-top: 5px;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer ul li {
  margin-bottom: 8px;
}
footer ul li a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
  font-size: 15px;
}
footer ul li a:hover {
  color: var(--primary-color);
}
.footer-bottom {
  border-top: 1px solid #ddd;
  margin-top: 20px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #666;
}
.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-right: 8px;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  background: #f1f1f1;
  color: #333;
  transition: 0.3s;
}
.social-icons a:hover {
  background: var(--primary-color);
  color: #fff;
}
.footer-logo img {
  max-width: 120px;
}
.subscribe-box input {
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 5px 0 0 5px;
  outline: none;
}
.subscribe-box button {
  border: none;
  background: var(--primary-color);
  color: #fff;
  padding: 10px 15px;
  border-radius: 0 5px 5px 0;
}
/* End footer */

/*  */
.mobile-cntact-whatsapp {
  position: fixed;
  bottom: 60px;
  right: 40px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  border-radius: 25px 0 25px 0;
  background-color: #fff;
  border: none;
  outline: none;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  animation: shake 1.5s infinite;
}
.mobile-cntact-whatsapp button {
  display: block;
  border: none;
  outline: none;
  background-color: #fff;
}
@keyframes shake {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-2px, 0);
  }
  40% {
    transform: translate(2px, 0);
  }
  60% {
    transform: translate(-2px, 0);
  }
  80% {
    transform: translate(2px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@media (max-width: 460px) {
  .mobile-cntact-whatsapp {
    display: flex !important;
    flex-direction: row !important;
    animation: none !important;
    bottom: 20px !important;
    right: 5.5rem !important;
  }
}
