* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
/* =============fonts================ */
@font-face {
  font-family: "workbench";
  src: url("../fonts/Workbench-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "jersey";
  src: url("../fonts/Jersey10-Regular.ttf") format("truetype");
  /* font-weight: bold; */
}
/* .poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
} */
/* =============fonts================ */

body {
  background: rgb(159, 211, 208);
  font-family: "workbench", "poppins", sans-serif;
}
header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 10px 3%;
  background: #0f3d3a;
  color: white;
  width: 70%;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 25px;
  font-size: 18px;
  font-family: "poppins", sans-serif;
  font-weight: 400;
}

.nav a {
  color: white;
  text-decoration: none;
}
.logo {
  width: 80px;
  /* height: 80px; */
  overflow: hidden;
}
.logo img {
  width: 100%;
  height: auto;
}
/* =============hero section start========= */
.hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 80px 5%;
  color: white;
}

.hero img {
  width: 350px;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hero-text h1 {
  font-family: "jersey", sans-serif;
  font-size: 96px;
  margin-bottom: 20px;
  font-weight: 100;
}
.hero-text p {
  font-size: 20px;
  line-height: 1.5;
  font-family: "workbench", sans-serif;
  font-weight: 100;
}

.btn {
  background: #56c8c0;
  padding: 12px 20px;
  color: #0f3d3a;
  border: none;
  border-radius: 6px;
  display: inline-block;
  text-decoration: none;
  width: fit-content;
  text-align: center;
  transition: all 0.3s ease-in-out;
  font-family: "poppins", sans-serif;
  font-weight: 600;
}
.btn:hover {
  background: #fff;
  box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid #56c8c0;
  transform: translateY(-3px);
}
.hero-container {
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 70%;
  overflow: hidden;
  background: linear-gradient(135deg, #0f3d3a, #47948f);
}

.slide {
  display: none;
  width: 100%;
}

.slide.active {
  display: block;
  animation: slideRight 0.8s ease;
}

@keyframes slideRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* dots */

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  height: 12px;
  width: 12px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #1f6f6b;
}
/* =============hero section end========= */

.services-container,
.pricing-container,
.booking-container,
.testimonials-container,
.tracking-container,
.app-container,
.faq-container,
.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.services,
.pricing,
.booking,
.testimonial-body,
.app,
.faq,
.footer {
  padding: 40px 0;
  text-align: center;
  width: 70%;
}
.services h2,
.pricing h2,
.booking h2,
.testimonial-body h2,
.app h2,
.faq h2 {
  font-family: "jersey", sans-serif;
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 100;
  color: #0f3d3a;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.card {
  background: linear-gradient(135deg, #0f3d3a, #47948f);
  /* padding: 30px; */
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.3s ease;
}

.card:nth-child(1):hover {
  transform: rotate(-4deg) skewX(-1deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card:nth-child(2):hover {
  transform: translateY(-20px);
  box-shadow: 0 12px 25px rgba(71, 148, 143, 0.4);
}

.card:nth-child(3):hover {
  transform: rotate(4deg) skewX(1deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card:nth-child(4):hover {
  transform: rotate(-4deg) skewX(-1deg);
  box-shadow: 0 14px 28px rgba(15, 61, 58, 0.35);
}

.card:nth-child(5):hover {
  transform: translateY(20px);
  box-shadow: 0 16px 32px rgba(71, 148, 143, 0.3);
}

.card:nth-child(6):hover {
  transform: rotate(4deg) skewX(1deg);
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.25);
}

.service-image {
  width: 350px;
  height: 350px;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.card h3 {
  margin: 15px 0;
  color: #fff;
  font-family: "poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  /* letter-spacing: 1.2px; */
}
.price-card {
  background: white;
  padding: 40px;
  border-radius: 10px;
}
.form-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #47948f, #0f3d3a);
}
.booking-image {
  width: 600px;
  height: 600px;
  overflow: hidden;
}
.booking-image img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  /* border-radius: 10px; */
}
.booking form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 35%;
  margin: 2rem;
}
.booking-btn {
  align-self: center;
}

input,
select {
  padding: 12px;
  border-radius: 6px;
  outline: none;
  border: none;
  /* border: 1px solid #0f3d3a; */
  color: #0f3d3a;
  font-family: "poppins", sans-serif;
  font-size: 16px;
}
input:focus,
select:focus {
  outline: none;
  border: 2px solid #47948f;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(31, 111, 107, 0.5);
}

.location {
  display: flex;
  align-items: center;
  gap: 10px;
}
.location input {
  flex: 1;
  font-size: 14px;
  height: fit-content;
  line-height: 1.2;
}
.location-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 32px;
  align-items: center;
}
.location-btn img {
  width: 100%;
  height: auto;
}
.select-box select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.select-box {
  position: relative;
  width: 100%;
}

.select-box select {
  width: 100%;
  padding: 12px 40px 12px 12px;
  border-radius: 6px;
  border: none;
  font-family: "poppins", sans-serif;
}

.select-box i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #56c8c0;
  pointer-events: none;
}
.date-box input::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.date-box {
  position: relative;
  width: 100%;
}
.date-box input {
  width: 100%;
  padding: 12px 40px 12px 12px;
  border-radius: 6px;
  border: none;
  font-family: "poppins", sans-serif;
}

.date-box i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #56c8c0;
  pointer-events: none;
}
/* =================Booking Section End============= */
.map {
  height: 300px;
  background: #ddd;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* =================testimonial slider start============= */
.testimonials {
  /* display: flex; */
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  width: 40%;
}
.testimonial-body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}
.testi-box {
  background: linear-gradient(135deg, #47948f, #0f3d3a);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
.testimonials .swiper-wrapper {
  align-items: center;
}

.testimonial {
  width: 320px;
  height: 320px;
  background: #56c8c0;
  padding: 25px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  transition: 0.4s;
}

.customer-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid #0f3d3a;
  overflow: hidden;
  margin-bottom: 15px;
  overflow: hidden;
}
.customer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.customer-name h4 {
  font-family: "poppins", sans-serif;
  font-weight: 600;
  /* margin-bottom: 5px; */
  font-size: 18px;
  color: #0f3d3a;
}
.customer-name p {
  font-family: "poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #0f3d3a;
}
.rating {
  color: #0f3d3a;
  font-size: 24px;
}
.customer-feedback {
  font-family: "poppins", sans-serif;
  /* font-weight: 100; */
  font-size: 16px;
  color: #0f3d3a;
  line-height: 1.2;
}
.slider-dots-testimonials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.slider-arrow {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 20px;
  font-size: 18px;
  color: #0f3d3a;
  cursor: pointer;
}
.prev,
.next {
  background: #56c8c0;
  color: white;
  padding: 10px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.swiper-slide {
  opacity: 0.4;
  transform: scale(0.8);
  transition: 0.4s;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1.05);
}
.slider-testimonials {
  /* background: linear-gradient(135deg,#47948f,#0f3d3a); */
  padding: 40px 0;
}
/* ===== Swiper Pagination ===== */
.swiper-pagination {
  position: static;
  margin-top: 25px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #0f3d3a;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  background: #56c8c0;
  opacity: 1;
}

/* ===== Swiper Arrows ===== */
.swiper-button-prev,
.swiper-button-next {
  color: #ffffff;
  background: #0f3d3a;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #56c8c0;
  color: #0f3d3a;
}

/* Position arrows */
.swiper-button-prev {
  left: -10px;
}

.swiper-button-next {
  right: -10px;
}

/* Remove default arrow size */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}
.swiper-slide {
  flex-shrink: 0;
  width: 320px;
  height: 320px;
  position: relative;
  transition-property: transform;
  display: flex;
}
.swiper-button-next,
.swiper-button-prev {
  position: static;
  top: var(--swiper-navigation-top-offset, 50%);
  width: 50px;
  height: 50px;
  margin-top: 0;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.slider-arrow {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  font-size: 20px;
  color: #0f3d3a;
  cursor: pointer;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
}
.swiper-pagination {
  position: static;
  margin-top: 25px;
}
.swiper-pagination-bullet {
  transition: opacity 0.3s;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #56c8c0;
  transition: opacity 0.3s;
}
/* =============testimonial slider end========== */

/* =================App Section Start============*/
.app {
  overflow: hidden;
}
.app p {
  font-family: "poppins", sans-serif;
  /* font-weight: 100; */
  font-size: 18px;
  color: #0f3d3a;
}
.app-mockups {
  height: 600px;
}
.app-mockups img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.store {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.store a {
  display: inline-block;
  padding: 12px 20px;
  background: #fff;
  color: #0f3d3a;
  border-radius: 6px;
  text-decoration: none;
  font-family: "poppins", sans-serif;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.store a > img {
  width: 120px;
  height: 40px;
  object-fit: contain;
}
.store a:hover {
  background: #56c8c0;
  color: #fff;
  box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.2);
}
/* =================App Section End============*/

/* ================FAQ Start================= */
/* ================= FAQ SECTION ================= */

.faq {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #47948f, #0f3d3a);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 16px;
  font-family: "poppins", sans-serif;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #56c8c0;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 15px 20px;
  font-family: "poppins", sans-serif;
  font-size: 14px;
  color: #0f3d3a;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* ======================FAQ End ===============*/
/* ================= FOOTER ================= */

.footer-container {
  display: flex;
  justify-content: center;
}

.footer {
  width: 70%;
  padding: 60px 40px 30px;
  color: #fff;
  background: #0f3d3a;
}
.footer-logo {
  margin-bottom: 20px;
  width: 150px;
}
.footer-logo img {
  width: 100%;
  height: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 5px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* padding: 20px; */
}
.footer-col h1 {
  font-size: 36px;
  margin-bottom: 15px;
  font-family: "jersey", sans-serif;
  font-weight: 100;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-family: "poppins", sans-serif;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.2;
  color: #d9f1ef;
  text-align: center;
  font-family: "Poppins";
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-family: "poppins", sans-serif;
}

.footer-col ul li a {
  text-decoration: none;
  color: #d9f1ef;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #56c8c0;
  padding-left: 5px;
}

/* Social icons */

.social-links {
  margin-top: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #56c8c0;
  color: #0f3d3a;
  margin-right: 10px;
  font-size: 16px;
  transition: 0.3s;
}

.social-links a:hover {
  background: #fff;
}

/* Newsletter */

.newsletter {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.newsletter input {
  padding: 10px;
  border: none;
  border-radius: 4px;
  width: 100%;
  font-size: 14px;
  font-family: "poppins", sans-serif;
}

.newsletter button {
  background: #56c8c0;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-family: "poppins", sans-serif;
}

.newsletter button:hover {
  background: #fff;
  color: #0f3d3a;
}

/* bottom */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #d9f1ef;
}
