/*------ Global-style ------*/
:root {
  --main-color: #dfbd69;
  --dark-main-color: #bb9432;
  --secondary-color: #060a16;
  --text-color: #000;
  --second-text-color: #606060;
  --btn-transition: all 0.3s ease-in-out;
}

body {
  font-family: "Tajawal", sans-serif;
  color: var(--secondary-color);
  overflow-x: hidden;
  scroll-behavior: smooth;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  white-space: normal;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: #dee2e6;
}

body::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
button,
input,
body > * {
  transition: var(--btn-transition);
  -webkit-transition: var(--btn-transition);
  -moz-transition: var(--btn-transition);
  -ms-transition: var(--btn-transition);
  -o-transition: var(--btn-transition);
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
a {
  margin: 0;
}

a {
  text-decoration: none;
}

input,
button,
select,
.btn {
  box-shadow: none !important;
}

section {
  padding: 70px 0;
  overflow: hidden;
  scroll-margin-top: 86.75px
}

section.dark {
  background-color: #f9f9f9;
}

input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"],
input[type="email"] {
  direction: rtl;
  -moz-appearance: textfield;
}

.form-control {
  text-align: right;
}

.form-select {
  height: 100%;
}

.input-field {
  display: flex;
  align-items: center;
  position: relative;
}

.input-field .form-control {
  padding-left: 40px;
}

.input-field i {
  position: absolute;
  left: 20px;
  font-size: 12px;
}

.input-1 {
  color: var(--main-color);
  background-color: #fff;
  border: 1px solid #f7f7f7;
  padding: 12px 20px;
  resize: none;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.input-1:focus {
  border: 1px solid #f7f7f7;
}

.input-1::placeholder {
  color: #919191;
}

.input-2 {
  color: var(--main-color);
  background-color: #ececec;
  border: 1px solid #dcdcdc;
  padding: 12px 20px;
  resize: none;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.input-2:focus {
  background-color: #ececec;
  border: 1px solid #dcdcdc;
}

.input-2::placeholder {
  color: #919191;
}

.form-floating label {
  color: #8a8a8a;
  font-size: 14px;
}

.typed-cursor {
  display: none;
}

.image-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-cover img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

ul {
  list-style: none;
  padding: 0;
}

.btn-1 {
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--dark-main-color);
  background-color: #fff;
  border: none;
  width: fit-content;
  box-shadow: 1px 1px 15px 3px rgb(0 0 0 / 8%);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.btn-1:hover {
  color: #fff;
  background-color: var(--dark-main-color);
}

.section-div {
  background-color: #fff;
  border: 1px solid #f0f0f0;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.section-title {
  text-align: center;
  margin: 0 auto 40px;
  width: 60%;
}

.section-title .title {
  color: var(--dark-main-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.section-title .text {
  color: var(--second-text-color);
  line-height: 1.8;
}

/*---------- Home ----------*/
/* #page {
  opacity: 0;
} */
/* navbar */
.navbar {
  transition: var(--btn-transition);
  -webkit-transition: var(--btn-transition);
  -moz-transition: var(--btn-transition);
  -ms-transition: var(--btn-transition);
  -o-transition: var(--btn-transition);
}

.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-lg,
.navbar > .container-md,
.navbar > .container-sm,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: block;
}

.navbar .navbar-nav {
  gap: 20px;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: var(--text-color);
  padding: 8px 15px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--dark-main-color);
  background-color: #fff;
  box-shadow: 1px 1px 8px 2px rgb(0 0 0 / 8%);
}

.navbar .btns {
  display: flex;
  align-items: center;
  gap: 15px;
}

.navbar .btns a {
  width: 30px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--secondary-color);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.navbar .btns a:hover {
  color: var(--dark-main-color);
}

.navbar.scroll-nav {
  background-color: #fff;
  box-shadow: 0 0 12px 3px rgb(0 0 0 / 8%);
}

/* header */
.header {
  height: 100vh;
  padding-bottom: 50px;
  overflow: hidden;
  position: relative;
  background-color: rgb(223 189 105 / 10%);
}

.header .content .subtitle {
  margin-bottom: 20px;
}

.header .content .title {
  font-weight: 600;
  margin-bottom: 40px;
}

.header .screens-bg {
  content: "";
  position: absolute;
  top: -20%;
  left: 0%;
  width: 35%;
  height: 80%;
  background-color: var(--main-color);
  z-index: -1;
  border-radius: 0 0 400px 400px;
  -webkit-border-radius: 0 0 400px 400px;
  -moz-border-radius: 0 0 400px 400px;
  -ms-border-radius: 0 0 400px 400px;
  -o-border-radius: 0 0 400px 400px;
  transform: rotate(-25deg);
  -webkit-transform: rotate(-25deg);
  -moz-transform: rotate(-25deg);
  -ms-transform: rotate(-25deg);
  -o-transform: rotate(-25deg);
}

.header .screens {
  height: 90%;
}
/* 
[dir="rtl"] .header .screens {
  transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
} */

/* about */
.about .image {
  width: 70%;
}

.about .title {
  margin-bottom: 15px;
  color: var(--dark-main-color);
  font-weight: 600;
}

.about .text {
  line-height: 1.8;
  color: var(--second-text-color);
  padding-left: 250px;
}

/* features */
.feature-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: var(--btn-transition);
  -webkit-transition: var(--btn-transition);
  -moz-transition: var(--btn-transition);
  -ms-transition: var(--btn-transition);
  -o-transition: var(--btn-transition);
}

.feature-card:hover {
  background-color: #fff;
  box-shadow: 1px 1px 8px 2px rgb(0 0 0 / 8%);
}

.feature-card .icon {
  height: 80px;
  margin-bottom: 25px;
}

.feature-card .title {
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card .text {
  line-height: 1.6;
  color: var(--second-text-color);
  width: 80%;
  margin: auto;
}

/* services */
.service-card .icon {
  width: 60px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(
    to top left,
    var(--dark-main-color),
    var(--main-color)
  );
  margin-bottom: 15px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.service-card .icon i {
  font-size: 25px;
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.5));
  -webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.5));
}

.service-card .title {
  margin-bottom: 5px;
  font-weight: 600;
}

.service-card .text {
  color: var(--second-text-color);
  line-height: 1.6;
}

.services .image {
  height: 600px;
  margin: auto;
}

/* subscribe */
.subscribe {
  color: #fff;
  background: linear-gradient(
    to top left,
    var(--dark-main-color),
    var(--dark-main-color),
    var(--main-color)
  );
  text-align: center;
}

.subscribe .title {
  margin-bottom: 10px;
}

.subscribe .text {
  margin-bottom: 20px;
}

.subscribe form {
  display: flex;
  align-items: stretch;
  justify-content: center;
  border: 2px solid #fff;
  overflow: hidden;
  padding: 5px 20px 5px 5px;
  width: 60%;
  margin: auto;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.subscribe form input {
  color: #fff;
  background-color: transparent !important;
  border: none;
  flex: 1;
  padding: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.subscribe form input::placeholder {
  color: #fff;
}

/* download-app */
.download-app {
  position: relative;
}

.download-app::before {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  aspect-ratio: 1/0.3;
  background-color: var(--dark-main-color);
  border-radius: 0 60px 0 0;
  -webkit-border-radius: 0 60px 0 0;
  -moz-border-radius: 0 60px 0 0;
  -ms-border-radius: 0 60px 0 0;
  -o-border-radius: 0 60px 0 0;
}

.download-app .title {
  margin-bottom: 10px;
}

.download-app .text {
  color: var(--second-text-color);
  margin-bottom: 20px;
}
.download-app .links {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 15px;
}

.download-app .links .link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background-color: var(--secondary-color);
  padding: 10px 20px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.download-app .links .link > * {
  margin: 0;
  color: #fff;
}

.download-app .links .link i {
  font-size: 20px;
  line-height: 0;
}

.download-app .links .link .text small {
  display: block;
}

/* main-side-nav */
.main-side-nav {
  border: none;
}

.main-side-nav .offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid #f1f1f1;
}

.main-side-nav .offcanvas-header .logo {
  width: 50px;
}

.main-side-nav .offcanvas-header .close-btn {
  color: #cf1515;
  background-color: transparent;
  border: none;
  padding: 0;
}

.main-side-nav .offcanvas-body {
  padding: 20px;
}

.main-side-nav .offcanvas-body .links .link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--secondary-color);
  background-color: #f7f7f7;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.main-side-nav .offcanvas-body .links .link:not(:last-of-type) {
  margin-bottom: 15px;
}

.main-side-nav .offcanvas-body .links .link:hover {
  color: #fff;
  background-color: var(--dark-main-color);
}

/* footer */
footer {
  padding-top: 50px;
  background-color: var(--secondary-color);
  overflow: hidden;
}

footer .logo {
  width: 120px;
}

footer .links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

footer .links .link {
  color: #fff;
}

footer .links .link:hover {
  color: var(--dark-main-color);
}

footer .rights {
  color: #fff;
  padding: 10px 0;
  margin-top: 50px;
  border-top: 1px solid #bfd3ff5c;
}

footer .rights i.fa-heart {
  font-size: 10px;
  margin: 0 5px;
}

footer .rights .made-with {
  display: flex;
  align-items: center;
}

footer .rights .logo-div {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  margin-left: 10px;
}

footer .rights .logo-div .waitbuzz-logo {
  width: 100%;
  z-index: 3;
}

footer .rights .logo-div .img1,
footer .rights .logo-div .img2 {
  position: absolute;
  height: 54px;
  width: 45px;
}

footer .rights .logo-div .img1 {
  z-index: 2;
}

footer .rights .logo-div .img2 {
  z-index: 1;
}

footer .rights .logo-div .img1 img {
  width: 100%;
  animation: rotateRight 15s linear infinite;
  -webkit-animation: rotateRight 15s linear infinite;
}

footer .rights .logo-div .img2 img {
  width: 100%;
  animation: rotateLeft 15s linear infinite;
  -webkit-animation: rotateLeft 15s linear infinite;
}

@keyframes rotateRight {
  form {
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}

@keyframes rotateLeft {
  form {
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
  }

  to {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
  }
}

footer .rights .waitbuzz {
  color: #fff;
  margin-left: 10px;
}

/* media-query */
@media screen and (max-width: 1440px) {
  .header .screens {
    margin: auto;
  }
}

@media screen and (max-width: 1024px) {
  .about .text {
    padding-left: 120px;
  }
}

@media screen and (max-width: 991px) {
  .navbar .navbar-toggler {
    border: none;
    padding: 0;
  }
  .header .screens {
    height: auto;
    width: 100%;
  }

  .about .image {
    width: 90%;
  }

  .about .text {
    padding-left: 0px;
  }

  .feature-card .text {
    width: 100%;
  }

  .services .image {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 600px) {
  .header {
    height: auto;
    text-align: center;
  }

  .header .content {
    margin-bottom: 40px;
  }

  .header .content .btn-1 {
    margin: auto;
  }
  .header .screens {
    width: 50%;
  }

  .about {
    text-align: center;
  }

  .about .image {
    width: 70%;
    margin: 0 auto 40px;
  }

  .services .image {
    width: 50%;
    margin-bottom: 30px;
  }

  .service-card {
    text-align: center;
    margin-bottom: 30px;
  }

  .service-card .icon {
    margin: 0 auto 15px;
  }

  .subscribe form {
    width: 100%;
  }

  .download-app {
    text-align: center;
  }

  .download-app::before {
    width: 90%;
  }

  .download-app .links {
    justify-content: center;
  }
  footer {
    padding-top: 30px;
  }

  footer .logo {
    width: 100px;
  }

  footer .row {
    zoom: 0.8;
  }

  footer .rights {
    margin-top: 30px;
  }
}

@media screen and (max-width: 320px) {
  .subscribe form {
    flex-direction: column;
    padding: 10px;
  }

  .subscribe form input {
    padding: 10px 10px 20px;
  }

  .subscribe form button {
    width: 100%;
  }
}
