
* {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overscroll-behavior: none;
  -webkit-tap-highlight-color: transparent;
}


body {
  /* font-family: "Poppins", sans-serif; */
  font-family: "Sora", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  
  html[lang="ar"] {
    direction: rtl;
  }

/* Arabic Font Support */
html[lang="ar"] {
    font-family: 'Amiri', serif;
    direction: rtl;
    text-align: right;
}

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

/* h1,h2,h3,h4,h5{
  font-family: "Orbitron", sans-serif;
} */
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}

button,
input,
textarea {
  border: none;
  outline: none;
  background: none;
}


.btn-main {
  --color: #2a958d;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  border: none;
  background-color: transparent;
}

.btn-main a {
  letter-spacing: 2px;
  font-weight: bold;
  background: var(--color);
  border-radius: 2rem;
  color: var(--white);
  padding: 0.7rem;
}

.btn-main::before {
  content: "";
  z-index: -1;
  background-color: var(--color);
  border: 2px solid rgb(255, 255, 255);
  border-radius: 2rem;
  width: 100%;
  height: 100%;
  position: absolute;
  transform: rotate(10deg);
  transition: 0.5s;
  opacity: 0.2;
}

.btn-main:hover {
  cursor: pointer;
  filter: brightness(1.2);
  /* transform: scale(1.1); */
}

.btn-main:hover::before {
  transform: rotate(0deg);
  opacity: 1;
  border: 2px solid transparent;
}

.btn-main svg {
  transform: translateX(-200%);
  transition: 0.5s;
  width: 0;
  opacity: 0;
  stroke: var(--white);
}

.btn-main svg path {
  stroke: rgba(255, 255, 255, 0.707);
}

.btn-main:hover svg {
  width: 25px;
  transform: translateX(-20%);
  opacity: 1;
  -webkit-transform: translateX(-20%);
  -moz-transform: translateX(-20%);
  -ms-transform: translateX(-20%);
  -o-transform: translateX(-20%);
}

.btn-main:active {
  filter: brightness(1.4);
}

.corner-border {
  position: relative;
  z-index: 1;
}

.corner-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 2px solid #cdcbcb;
  border-width: 4px 0 0 4px;
  border-radius: 6px 0 0 0;
  -webkit-border-radius: 6px 0 0 0;
  -moz-border-radius: 6px 0 0 0;
  -ms-border-radius: 6px 0 0 0;
  -o-border-radius: 6px 0 0 0;
}

.corner-border::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border: 2px solid #ffffff;
  border-width: 4px 4px 0px 0px;
  border-radius: 0px 6px 0 0;
  -webkit-border-radius: 0px 6px 0 0;
  -moz-border-radius: 0px 6px 0 0;
  -ms-border-radius: 0px 6px 0 0;
  -o-border-radius: 0px 6px 0 0;
}

.buttom-corners::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 2px solid #ffffff;
  border-width: 0 0 4px 4px;
  border-radius: 0 0 0 6px;
  -webkit-border-radius: 0 0 0 6px;
  -moz-border-radius: 0 0 0 6px;
  -ms-border-radius: 0 0 0 6px;
  -o-border-radius: 0 0 0 6px;
}

.buttom-corners::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border: 2px solid #ffffff;
  border-width: 0 4px 4px 0px;
  border-radius: 0 0 6px 0px;
  -webkit-border-radius: 0 0 6px 0px;
  -moz-border-radius: 0 0 6px 0px;
  -ms-border-radius: 0 0 6px 0px;
  -o-border-radius: 0 0 6px 0px;
}

.schedule-button {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #2a958d;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  border-radius: 20px;
 /* Rounded corners */
  transition: background-color 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
 /* Smooth transitions */
  font-family: 'Poppins', sans-serif;
 /* Change font to Poppins */
}

.schedule-button:hover {
  background-color: #237c77;
  color: #fff;
  transform: translateX(-5px);
 /* Move button to the left */
}

.schedule-button .arrow {
  display: none;
  width: 20px;
  height: 20px;
  fill: #ffffff;
  opacity: 0;
 /* Initial opacity */
  transform: translateX(-20px) rotate(-45deg);
 /* Initial position */
  transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
 /* Smooth transitions */
}

.schedule-button:hover .arrow {
  display: inline-block;
  opacity: 1;
 /* Fade in on hover */
  animation: slide-in 0.4s forwards;
}

@keyframes slide-in {
  from {
    transform: translateX(-50px) rotate(-45deg);
    opacity: 0.1;
 /* Slightly visible */
  }

  to {
    transform: translateX(0) rotate(-45deg);
    opacity: 1;
 /* Fully visible */
  }
}

 .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: var(--transition);
  }

  .social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
  }



  .btn-main {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    border: none;
    background-color: transparent;
  }

  .btn-main div {
    letter-spacing: 2px;
    font-weight: bold;
    background: var(--primary-color);
    border-radius: 2rem;
    color: var(--white);
    padding: 0.7rem;
  }

  .btn-main::before {
    content: "";
    z-index: -1;
    background-color: var(--primary-color);
    border: 2px solid rgb(255, 255, 255);
    border-radius: 2rem;
    width: 100%;
    height: 100%;
    position: absolute;
    transform: rotate(10deg);
    transition: 0.5s;
    opacity: 0.2;
  }

  .btn-main:hover {
    cursor: pointer;
    filter: brightness(1.2);
    /* transform: scale(1.1); */
  }

  .btn-main:hover::before {
    transform: rotate(0deg);
    opacity: 1;
    border: 2px solid transparent;
  }

  .btn-main svg {
    transform: translateX(-200%);
    transition: 0.5s;
    width: 0;
    opacity: 0;
    stroke: var(--white);
  }

  .btn-main svg path {
    stroke: rgba(255, 255, 255, 0.707);
  }

  .btn-main:hover svg {
    width: 25px;
    transform: translateX(-20%);
    opacity: 1;
    -webkit-transform: translateX(-20%);
    -moz-transform: translateX(-20%);
    -ms-transform: translateX(-20%);
    -o-transform: translateX(-20%);
  }

  .btn-main:active {
    filter: brightness(1.4);
  }

#careers .btn-main,
#news .btn-main,
#contact .btn-main{
  z-index: 1111111111;
  width: fit-content;
  margin: auto;
}
#contact .btn-main{
  margin: 30px 0;
}
#careers .btn-main div,
#news .btn-main div {
  font-size: 13px;
}

#careers .btn-main::before,
#news .btn-main::before,
#contact .btn-main::before {
  /* content: ""; */
  z-index: -1;
  background-color: transparent;
  border: 2px solid #2a958d;
  left: -7px;
}

#contact .btn-main::before {
  left: 0;
}

#news .btn-main::before {
  left: 0px;
}
#careers .btn-main:hover::before,
#news .btn-main:hover::before ,
#contact .btn-main:hover::before {
  background-color: var(--primary-color) !important;
  border: none;
}


  .btn-outline-primary,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  background: #fff !important;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.btn-outline-primary:hover {
  background: var(--primary-color) !important;
  color: #fff !important;
  border-color: var(--primary-color) !important;
}


.header-banner {
  background-image: linear-gradient(135deg, #0b0b0bce 60%, #000000c4 100%),
    url("./../assets/features.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 100px;
}