/* ----------------- */
/* header */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 8rem;
  background-color: #f9f4eb;
}

.logo {
  height: 7.4rem;
}

.nav {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  list-style-type: none;
}

.nav-link:link,
.nav-link:visited {
  text-decoration: none;
  color: #343a40;
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s;
}
.nav-link:hover,
.nav-link:active {
  /* color: #ae802e; */
  color: #c18e33;
}

.nav-btn {
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}

.nav-icon {
  font-size: 4.8rem;
  font-weight: 700;
}

.nav-btn.btn-menu,
.nav-btn.btn-close {
  display: none;
}

/* ----------------- */
/* Hero Section */
.section-hero {
  padding: 6.4rem 0 9.6rem;

  background-color: #f9f4eb;
}

.hero {
  padding: 0 3.2rem;
  max-width: 130rem;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9.6rem;
  align-items: center;
}

.description {
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 3.2rem;
}

.hero-img-box {
  display: flex;
  justify-content: center;
  /* align-items: center; */
}

.hero-img {
  width: 100%;
}

/* ----------------------- */
/* Slider */
/* ----------------------- */
/* .section-zyarat {
  padding: 4.8rem 0 6.4rem 0;
  background-color: #f9f4eb;
}

.outer-container {

  height: 50rem;
}

.slide-container {
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.2);
}

.slide-container .slides {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide-container .slides img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.slide-container .slides img:not(.active) {
  top: 0;
  left: -100%;
}

span.next,
span.prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 14px;
  color: #eee;
  font-size: 24px;
  font-weight: bold;
  transition: 0.5s;
  border-radius: 3px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

span.next {
  right: 20px;
}

span.prev {
  left: 20px;
}

span.next:hover,
span.prev:hover {
  background-color: #ede6d6;
  opacity: 0.8;
  color: #222;
}

.dotsContainer {
  position: absolute;
  bottom: 1.6rem;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
}

.dotsContainer .dot {
  width: 15px;
  height: 15px;
  margin: 0px 2px;
  border: 3px solid #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.6s ease;
}

.dotsContainer .active {
  background-color: #555;
}

@keyframes next1 {
  from {
    left: 0%;
  }
  to {
    left: -100%;
  }
}

@keyframes next2 {
  from {
    left: 100%;
  }
  to {
    left: 0%;
  }
}

@keyframes prev1 {
  from {
    left: 0%;
  }
  to {
    left: 100%;
  }
}

@keyframes prev2 {
  from {
    left: -100%;
  }
  to {
    left: 0%;
  }
} */

.section-zyarat {
  padding: 4.8rem 0 6.4rem 0;
  background-color: #f9f4eb;
  overflow: hidden; /* Ensure that overflow is hidden */
}

.outer-container.container {
  height: auto;
  position: relative; /* Ensure the outer container is positioned correctly */
  overflow: hidden; /* Hide overflow in the outer container */
  padding: 0;
  padding-bottom: 4.8rem;
}

.slide-container {
  /* position: relative; */
  max-width: 80rem;
  /* margin: 0 auto; */
  height: 100%;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.2);
}

.slide-container .slides {
  display: flex; /* Arrange slides horizontally */
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease; /* Smooth transition for sliding */
}
.slide {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  flex: 0 0 100%; /* Each image takes up the full width of the container */
  position: relative;
}

.slide-container .slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* flex: 0 0 100%; Each image takes up the full width of the container */
}

.slide-text {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #222222c9;
  color: #fff;
  font-size: 1.6rem;
  width: 100%;
  padding: 1rem;
}

span.next,
span.prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 14px;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  transition: 0.5s;
  border-radius: 3px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
  background: transparent;
}

span.next {
  right: 20px;
}

span.prev {
  left: 20px;
}

span.next:hover,
span.prev:hover {
  /* background-color: #ede6d6; */
  /* color: #222; */
  color: #c18e33;
  opacity: 0.8;
}

.dotsContainer {
  position: absolute;
  bottom: 0.5rem;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
}

.dotsContainer .dot {
  width: 12px;
  height: 12px;
  margin: 0 2px;
  box-shadow: inset 0 0 0 2px #c18e33a2;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.6s ease;
}

.dotsContainer .active {
  background-color: #c18e33;
  /* border-color: #c18e33; */
  border: 2px solid #c18e33;
}

/* ---------------- */
/* TAXI ARTICLES */
.section-taxioptions {
  padding: 9.6rem 0;
}

.card {
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;

  overflow: hidden;
  box-shadow: 0 1.6rem 2.4rem 3px rgba(0, 0, 0, 0.075);
  transition: all 0.3s;
}

.card:hover {
  box-shadow: 0 1.6rem 2.4rem 3px rgba(0, 0, 0, 0.1);
  transform: translateY(-1rem);
}

.card-img-box {
  background-color: #f9f4eb;
  /* box-shadow: 0 1rem 1.6rem 1rem rgba(249, 244, 235, 0.5); */
  padding: 2.4rem 0;
}

.card-img {
  width: 100%;
}

.card-content {
  padding: 3.2rem 2.4rem 2.4rem;
}

.card-title {
  font-size: 2.4rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}

.card-features {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
  margin-bottom: 3.2rem;
}

.card-feature {
  font-size: 1.8rem;

  display: flex;
  align-items: center;
  gap: 1rem;
}
.feature-icon {
  /* font-size: 1.6rem; */
  color: #ae802e;
}
.door-icon {
  transform: translateZ();
}

.btn-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.6rem;
}
/* ----------------------- */
/* section How It Works */
.section-how {
  padding: 6.4rem 0;
}

.steps {
  margin-top: 6.4rem;
}

.step-icon {
  display: inline-block;
  font-size: 4.8rem;
  color: #ae802e;
  background-color: #f9f4eb;
  padding: 2rem;
  border-radius: 50%;
  margin-bottom: 3.2rem;
}

.step-text {
  font-size: 1.8rem;
  line-height: 1.8;
}
/* ----------------------- */
/* section-vehicle-details */

.section-vehicle-details {
  padding: 9.6rem 0;
}
.vehicle-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.4rem;
  align-items: center;
}

.vehicle-text-box {
  padding: 3.2rem 0;
}

.vehicle-title {
  display: block;
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 3.2rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;

  list-style-type: none;
}
.list-item {
  display: flex;
  align-items: center;
}
.list-icon {
  font-size: 3rem;
  color: #ae802e;
  font-weight: 700;
  margin-right: 1rem;
}

.list-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 1.8rem;
  gap: 1.6rem;
}

.price {
  font-weight: 600;
}

.btn-container {
  margin-top: 2.4rem;
  display: flex;
  justify-content: end;
}

/* vehicle img */
.vehicle-img-box {
  background-color: #212121;
  height: 100%;
  display: flex;
  align-items: center;
}
.vehicle-img {
  width: 100%;
}

/* ------------------- */
/* FOOTER */
.footer {
  border-top: 2px solid #eee;
  padding: 2.4rem 3.2rem;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  /* align-items: center; */
  /* align-content: center; */
}
.footer-col {
  display: grid;
  /* align-items: center; */
  gap: 1rem;
  align-items: center;
}
.copyright {
  font-size: 1.4rem;
  color: #a7a7a7;
  font-weight: 100;
}

.footer-col.about {
  justify-self: end;
}

.footer-links {
  display: flex;
  gap: 3.2rem;
}
.footer-link,
.footer-link:link,
.footer-links:visited {
  text-decoration: none;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 400;
  transition: all 0.3s;
  color: #343a40;
  color: #000;
}

.footer-link:hover,
.footer-links:active {
  color: #ae802e;
}

.social-links {
  display: flex;
  gap: 2.4rem;
}
.social-link {
  display: inline-block;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.footer-social-link {
  font-size: 2.4rem;
  color: #c18e33;
  transition: all 0.3s;
}
.footer-social-link {
  color: #ae802e;
}

/* ************************** */
/* ABOUT PAGE */
/* ************************** */

.section-about {
  padding: 9.6rem 0;
}

.about-wrapper:not(:last-child) {
  margin-bottom: 9.6rem;
}
.about-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

/* ------------------ */
/* SECTION OWNERS */
.section-owners {
  padding: 4.8rem 0 9.6rem;
}

.owners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6.4rem;
}
.owner {
  overflow: hidden;
  max-width: 40rem;
  box-shadow: 0 1.6rem 2.4rem 3px rgba(0, 0, 0, 0.075);
  border-radius: 9px;
}

.owner-content {
  padding: 4.8rem 2.4rem;
}

.owner:first-child {
  justify-self: end;
}
.owner-img {
  width: 100%;
}

.designation {
  font-size: 1.8rem;
  margin-bottom: 2.4rem;
}

.call-to-action {
  display: inline-block;
  text-decoration: none;
  color: #c18e33;
  font-weight: 600;
  font-size: 1.8rem;
}

/* ------------------ */
/* SECTION WHY */
.section-why {
  padding: 9.6rem 0;
  background-color: #f9f4eb;
  text-align: center;
}
.feature {
  padding: 4.8rem 1.6rem;
  /* border: 2px solid #eee; */
  border-radius: 9px;

  /* temp */
  box-shadow: 0 1.6rem 2.4rem 3px rgba(0, 0, 0, 0.075);
  transition: all 0.3s;
  background-color: #fff;
}
.feature:hover {
  box-shadow: 0 1.6rem 2.4rem 3px rgba(0, 0, 0, 0.1);
  transform: translateY(-1rem);
}

.why-feature-icon {
  display: inline-block;
  font-size: 4.4rem;
  color: #c18e33;
  margin-bottom: 3.2rem;
}

.feature-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

/* ************************** */
/* Contact Us Page */
/* ************************** */
.section-contact {
  padding: 9.6rem 0;
  /* background-color: #f9f4eb; */
  text-align: center;
}

.section-contact .feature-text {
  font-weight: 600;
}

/* ---------------- */
/* form */

.section-form {
  padding: 9.6rem 0;
  /* background-color: #f9f4eb; */
}

.form-container {
  display: grid;
  grid-template-columns: 55fr 45fr;
  border-radius: 9px;
  background-color: #f9f4eb;
}

.form-text-box {
  padding: 4.8rem;
}

.form-text-box .heading-secondary {
  margin-bottom: 6.4rem;
  color: #271c0a;
}
#message {
  resize: none;
  height: 15rem;
  width: 100%;
}
.form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem;
}

.form label {
  font-size: 2rem;
  /* font-weight: 600; */
}

.form *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem #c18e3350;
}
.form input,
.form textarea {
  font-size: 2rem;
  padding: 1rem 1.6rem;
  border: none;
  outline: none;
  border-radius: 9px;
  box-shadow: 0 0 0 0.8rem #c18e3310;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.form-group.textarea {
  grid-column: 1 / -1;
}

/* form img */
.form-img-box {
  background: linear-gradient(to bottom right, #ca8e2699, #f1a41e99),
    url("../images/al-haram.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* width: 100%; */
}
