@import url(https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Orbitron&display=swap);

.navbar,
section .title {
  font-family: Poppins, sans-serif
}

.menu a.glass-link,
.menu li {
  display: inline-block
}

*,
.menu a.glass-link {
  text-decoration: none
}

#iconn,
.close-btn,
.menu-btn,
.navbar img,
.popup button {
  cursor: pointer
}

.home .home-content .text-1,
.navbar img {
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .4))
}

.about .title::after,
.services .title::after {
  background: linear-gradient(0deg, var(--dark), var(--dark-light))
}

.services .serv-content .card,
.testimonials .carousel .card {
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, .37), inset 0 0 60px 2px rgba(255, 255, 255, .1)
}

.services .serv-content .card::before,
.testimonials .carousel .card::before {
  content: "";
  background: linear-gradient(120deg, rgba(255, 255, 255, .25) 0, transparent 60%);
  pointer-events: none;
  opacity: .4;
  will-change: opacity
}

:root {
  --main: #FFCC00;
  --cream: #f6f4e8;
  --main-color: #dfc28b;
  --dark: #002446;
  --dark-light: #054277;
  --white: #fff;
  --white-light: #f6f4e8;
  --shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  --cursive-font: "Dancing Script", cursive;
  scroll-behavior: smooth;
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-highlight: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --glass-text: rgba(255, 255, 255, 0.95);
  --glass-muted: rgba(255, 255, 255, 0.75);
  --glass-hover: var(--main-color)
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

.max-width {
  max-width: 1300px;
  padding: 0 80px;
  margin: auto
}

.about,
.contact,
.services,
.testimonials {
  background: linear-gradient(180deg, var(--dark), var(--dark-light));
  font-family: Poppins, sans-serif;
  color: var(--white)
}

.about .about-content,
.contact .contact-content,
.services .serv-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px
}

section {
  padding: 100px 0
}

section .title {
  position: relative;
  font-weight: 500;
  margin-bottom: 60px;
  padding-bottom: 20px;
  font-size: 40px;
  color: var(--white);
  text-align: center
}

section .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 180px;
  height: 3px;
  background: var(--white);
  transform: translatex(-50%)
}

body,
section .title::after {
  background: var(--dark)
}

section .title::after {
  font-size: 15px;
  position: absolute;
  bottom: -13px;
  left: 50%;
  padding: 5px;
  transform: translateX(-50%)
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999
}

.popup {
  background: var(--white-light);
  width: 320px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
  transform: translateY(-20px);
  opacity: 0;
  transition: .4s
}

.popup img {
  width: 100%;
  border-radius: 8px
}

.popup h1 {
  margin: 10px 0;
  color: #bc0600
}

.popup p {
  font-size: 16px;
  color: #333
}

.popup button {
  background: var(--main-color);
  color: var(--dark-light);
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  margin-top: 10px
}

.popup button:hover {
  background: var(--dark-light);
  color: var(--cream)
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: 0 0;
  border: none;
  font-size: 20px;
  color: #333
}

.navbar,
.navbar.sticky {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, .1);
  transition: .3s
}

@media (max-width:600px) {
  .popup {
    width: 70%;
    padding: 20px;
    margin-bottom: 30%
  }

  .popup h1 {
    font-size: 20px
  }

  .popup p {
    font-size: 14px
  }

  .popup button {
    padding: 12px 20px;
    font-size: 15px
  }
}

.star-rating {
  display: flex;
  justify-content: center;
  gap: 5px;
  font-size: 16px
}

.star {
  color: gold
}

#clackers {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: 1s linear infinite pageLoader;
  transition: .6s
}

#iconn {
  width: 30px
}

.navbar {
  overflow: hidden;
  z-index: 999;
  position: fixed;
  width: 100%;
  height: 70px;
  padding: 0;
  background: rgba(30, 30, 30, .12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px)
}

.btn,
.theme-btn {
  font-family: inherit;
  user-select: none
}

.navbar.sticky {
  padding: 5px 0;
  top: 0;
  background: rgba(30, 30, 30, .15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px)
}

.navbar .max-width {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.navbar .logo a {
  color: var(--white);
  font-size: 19px;
  font-weight: 6000
}

.navbar img {
  margin-left: 10px;
  margin-top: 5px
}

.menu {
  list-style: none;
  display: flex;
  gap: 15px;
  margin-left: auto
}

#fixed-links,
.menu-btn {
  display: none
}

.menu a.glass-link {
  padding: 8px 18px;
  font-weight: 500;
  font-size: 14px;
  color: var(--main-color);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .4);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1), inset 0 1px 2px rgba(255, 255, 255, .3);
  transition: transform .3s, box-shadow .3s
}

.menu a.glass-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, .6) 0, rgba(255, 255, 255, .2) 60%, transparent 100%);
  transform: skewX(-25deg);
  transition: left .6s
}

.menu a.glass-link:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .15), inset 0 1px 2px rgba(255, 255, 255, .4)
}

.btn-default:hover::before,
.menu a.glass-link:hover::before {
  left: 130%
}

.menu-btn {
  color: red;
  font-size: 23px
}

.btn,
.float-button {
  display: inline-block
}

.float-button {
  margin-top: 15px;
  position: relative
}

.about .about-content .right .btn-default,
.btn {
  margin-top: 25px
}

.open-channel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 0 0;
  border: none;
  cursor: pointer
}

.btn,
.btn-default {
  background: rgba(255, 255, 255, .12);
  font-size: 16px;
  padding: 10px 30px;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .15), inset 0 1px 2px rgba(255, 255, 255, .4);
  font-weight: 600;
  cursor: pointer;
  overflow: hidden
}

@media screen and (min-width:1101px) {
  #fixed-links {
    display: block;
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    justify-content: space-between
  }

  #fixed-links ul {
    list-style: none;
    margin: 0;
    padding: 0
  }

  #fixed-links li {
    margin-bottom: 10px
  }

  #fixed-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-bottom: 19px;
    background-color: rgba(255, 255, 255, .2);
    border-radius: 50%;
    color: var(--dark);
    text-decoration: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
    transition: transform .3s, background-color .3s, color .3s
  }

  #fixed-links a:hover {
    background-color: rgba(255, 255, 255, .35);
    color: var(--main-color);
    transform: scale(1.5)
  }

  #fixed-links a:not(:hover) {
    transform: scale(1)
  }
}

.btn {
  border-radius: 30px;
  transition: .4s cubic-bezier(.4, 0, .2, 1);
  color: var(--dark-light);
  line-height: 1.5;
  border: 1.5px solid rgba(255, 255, 255, .4);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%)
}

.btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, .3), rgba(255, 255, 255, 0));
  transform: rotate(25deg);
  pointer-events: none;
  transition: opacity .4s;
  opacity: .4;
  border-radius: 30px
}

.btn:hover {
  background: rgba(255, 255, 255, .18);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .25), inset 0 1px 2px rgba(255, 255, 255, .4);
  transform: scale(1.05)
}

.btn:hover::before {
  opacity: .8
}

.btn-default {
  border: 2px solid rgba(255, 255, 255, .4);
  color: var(--main-color);
  border-radius: 30px;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  transition: transform .3s, box-shadow .3s
}

.fas,
.theme-btn {
  font-size: 20px
}

.btn-default::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, .6) 0, rgba(255, 255, 255, .2) 60%, transparent 100%);
  transform: scale(1.05);
  transition: left .6s
}

.btn-default:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .25), inset 0 1px 2px rgba(255, 255, 255, .5)
}

.float-button {
  display: inline-flex;
  padding: 1px;
  color: var(--dark-light);
  position: sticky;
  right: 20px;
  bottom: 20px;
  border: 2px solid;
  box-shadow: 0 0 15px var(--dark-light)
}

.float-button:hover {
  color: var(--main-color);
  cursor: default
}

.home,
.theme-btn,
.theme-btn:hover {
  color: var(--white)
}

.theme-btn {
  display: inline-flex;
  padding: 4px;
  background-color: transparent;
  border-radius: 50px;
  font-weight: 500;
  transition: .5s;
  cursor: pointer;
  border: none;
  background-color: var(--dark-light)
}

.contact,
.home,
.services,
.testimonials {
  background: linear-gradient(180deg, var(--dark), var(--dark-light))
}

.theme-btn:hover {
  background-color: var(--main-color)
}

.home {
  position: relative;
  overflow: hidden;
  display: flex;
  height: 100vh;
  min-height: 500px;
  font-family: Poppins, sans-serif;
  justify-content: flex-start;
  align-items: center;
  animation: 20s infinite zoomInOut
}

.car {
  position: absolute;
  right: 100px;
  bottom: 0;
  width: 600px;
  transform-origin: center;
  will-change: transform
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background: 0 0
}

.home .max-width {
  margin: auto 0 auto 40px;
  position: relative;
  z-index: 1
}

.home .home-content {
  text-align: left
}

.home .home-content .text-1 {
  margin-left: 85px;
  font-size: 27px;
  color: #f0e6d2
}

.home .home-content .text-2 {
  font-size: 40px;
  letter-spacing: .1em;
  font-weight: 900;
  color: #ffd166;
  font-family: Raleway, sans-serif
}

.about .about-content .right .text span,
.about .title::after,
.contact .copyright p a,
.contact .social-links a:hover,
.services .serv-content .card:hover .text,
.testimonials .carousel .card:hover .text {
  color: var(--main-color)
}

.home .home-content .text-3 {
  font-size: 30px;
  padding-top: 20px;
  padding-bottom: 200px
}

.about .title::after,
.contact .title::after,
.services .title::after,
.testimonials .title::after {
  font-size: 20px;
  font-family: var(--cursive-font)
}

.text-subheading {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.1rem;
  font-weight: 500;
  color: #a8dadc;
  letter-spacing: .5px;
  text-align: center;
  width: 100%;
  z-index: 2
}

.home .home-content .text-3 span {
  color: var(--main-color);
  font-weight: 500;
  font-family: var(--cursive-font)
}

.about .mySlides {
  opacity: 1;
  transition: opacity 3s ease-in-out;
  display: none
}

.about .mySlides .fade {
  opacity: 0
}

.mySlides.show {
  display: block;
  opacity: 1
}

.about .title::after {
  content: "Who are we?"
}

.about .about-content .left {
  width: 45%
}

.about .about-content .left .mySlides img {
  height: 375px;
  width: 375px;
  object-fit: contain;
  border-radius: 38px;
  box-shadow: 0 8px 20px rgba(84, 160, 255, .5);
  margin-bottom: 20px;
  transition: box-shadow .3s
}

.about .about-content .left .mySlides img:hover {
  box-shadow: 0 12px 40px rgba(84, 160, 255, .8);
  cursor: pointer
}

.about .about-content .right {
  width: 55%
}

.about .about-content .right .text {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--white);
  font-size: 22px;
  height: 42px
}

.about .about-content .right p {
  text-align: justify;
  color: var(--white)
}

.contact .title::before,
.services .title::before,
.testimonials .title::before {
  width: 218px
}

.services .title::after {
  content: "Driving Packages";
  padding: 5px;
  color: var(--main-color)
}

.services .serv-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 39px
}

.services .serv-content .card {
  width: calc(50% - 20px);
  background: rgba(5, 66, 119, .25);
  border-radius: 19px;
  padding: 50px 25px;
  cursor: pointer;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .2);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  position: relative;
  overflow: hidden;
  transition: .3s
}

.services .serv-content .card::before {
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  transform: rotate(25deg);
  border-radius: 19px;
  transition: opacity .3s
}

.services .serv-content .card:hover::before,
.testimonials .carousel .card:hover::before {
  opacity: .6
}

.services .serv-content .card:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45)
}

.services .serv-content .card i {
  color: var(--main-color);
  position: relative;
  z-index: 1;
  font-size: 50px;
  color: var(--main-color);
  transition: color .3s
}

.services .serv-content .card:hover i,
.services .serv-content p {
  color: var(--white)
}

.services .serv-content .card .text,
.services .serv-content .card a .text {
  font-size: 23px;
  font-weight: 500;
  margin: 10px 0 7px;
  transition: color .3s;
  color: var(--white)
}

.services .serv-content .card .hours {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--glass-muted)
}

.services .serv-content .card .price {
  font-size: 1rem;
  font-weight: 500;
  margin: 4px 0
}

.services .serv-content .card .price.regular {
  color: rgba(255, 80, 80, .9);
  text-decoration: line-through
}

.services .serv-content .card .price.discounted {
  color: rgba(0, 255, 150, .9);
  font-size: 1.05rem
}

.services .serv-content .card .save {
  font-weight: 600;
  color: var(--main-color);
  font-size: .95rem;
  margin-top: 6px
}

.testimonials .title::after {
  content: "Success Stories";
  padding: 5px;
  color: var(--main-color);
  background: linear-gradient(0deg, var(--dark), var(--dark-light))
}

.testimonials .carousel .card {
  background: rgba(5, 66, 119, .25);
  border-radius: 19px;
  padding: 25px 35px;
  text-align: center;
  transition: color .3s, background-color .3s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .2);
  position: relative;
  overflow: hidden
}

.testimonials .carousel .card::before {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  transform: rotate(25deg);
  transition: opacity .3s;
  border-radius: 19px
}

.testimonials .carousel .card .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease-in-out, color .3s;
  position: relative;
  z-index: 1
}

.contact .text,
.testimonials .carousel .card .text {
  color: var(--white);
  font-size: 25px;
  font-weight: 500;
  margin: 10px 0 7px;
  transition: color .3s
}

.contact a,
.contact p,
.testimonials .carousel .card p {
  color: var(--white);
  transition: color .3s
}

.testimonials .carousel .card img {
  height: 150px;
  width: 150px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, .3);
  box-shadow: 0 4px 15px rgba(255, 255, 255, .3);
  transition: border .3s, box-shadow .3s
}

.testimonials .carousel .card:hover img,
.testimonials .carousel .card:hover video {
  border: 2px solid var(--main-color);
  box-shadow: 0 4px 20px var(--main-color)
}

.testimonials .carousel .card:hover .box {
  transform: scale(1.05)
}

.owl-dots {
  text-align: center;
  margin-top: 20px
}

.owl-dot {
  height: 13px;
  width: 13px;
  margin: 0 5px;
  outline: 0 !important;
  border-radius: 50%;
  border: 2px solid var(--main-color) !important
}

.owl-dot.active {
  width: 35px;
  border-radius: 10px
}

.owl-dot.active,
.owl-dot:hover {
  background: var(--main-color) !important
}

.contact .max-width {
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.contact .title::after {
  content: "Get in Touch!";
  padding: 5px;
  color: var(--main-color);
  background: linear-gradient(0deg, var(--dark), var(--dark-light))
}

.contact .column i,
.contact a:hover {
  color: var(--main-color);
  transition: color .3s
}

.fa-phone {
  transform: rotateY(180deg)
}

.contact .contact-content,
.contact .social-links {
  text-align: center
}

.contact .contact-content .column {
  width: calc(100% / 3);
  padding: 0 15px
}

.contact .social-links a {
  display: inline-flex;
  height: 100px;
  width: 40px;
  color: var(--white);
  font-size: 22px;
  align-items: center;
  justify-content: center;
  transition: color .3s
}

.contact .copyright {
  margin: 80px 0 0;
  width: 100%;
  text-align: center;
  padding: 25px 15px;
  font-size: 14px;
  border-top: 1px solid var(--white-light);
  color: var(--dark)
}

.contact .copyright p {
  color: var(--white-light)
}

@media screen and (max-width:1100px) {
  .max-width {
    overflow: hidden;
    max-width: 100%
  }

  .menu-btn i.active:before {
    content: "\f00d"
  }

  .gear,
  .home .home-content .btn,
  .home .home-content .text-1 {
    display: none
  }

  .about .about-content .left {
    display: flex;
    justify-content: center;
    margin: 0 auto 60px
  }

  .about .about-content .right {
    flex: 100%
  }

  .about .about-content .right .text {
    font-size: 20px;
    height: 42px
  }

  .services .serv-content .card {
    width: 100%;
    margin-bottom: 20px
  }

  .services .serv-content .card i {
    font-size: 40px
  }

  .services .serv-content .card .text {
    font-size: 23px
  }

  .services .serv-content .card p {
    font-size: 18px
  }

  .contact .contact-content .column {
    width: calc(50%);
    padding: 15px
  }

  .contact-content:not(:last-child) {
    margin-bottom: 10px
  }

  .home .max-width {
    margin: auto
  }

  .home .home-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100vh
  }

  .home .home-content .text-2,
  .home .home-content .text-3 {
    text-align: left;
    display: block;
    margin: 0
  }
}

@media (max-width:950px) {
  .navbar .menu {
    display: none
  }
}

@media (max-width:690px) {
  .max-width {
    margin: auto;
    overflow: hidden;
    padding: 0 23px
  }

  .home .gear,
  .home .home-content .text-1,
  .navbar .menu {
    display: none
  }

  .home .home-content .text-2 {
    font-size: 40px;
    text-align: center
  }

  .home .home-content .text-3 {
    font-size: 32px;
    margin-bottom: auto
  }

  .about .about-content .right .text {
    font-size: 17px;
    height: 42px
  }

  .home .car {
    margin-top: 10px;
    position: absolute;
    left: 30%;
    transform: translateX(-50%);
    bottom: 0;
    width: 600px;
    transform-origin: center;
    will-change: transform
  }

  .about .about-content .left .mySlides img {
    height: 305px;
    width: 305px;
    object-fit: contain;
    border-radius: 38px;
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, .37), 0 0 10px 2px rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .3);
    margin-bottom: 20px;
    transition: box-shadow .3s, transform .3s
  }

  .about .about-content .left .mySlides img:hover {
    box-shadow: 0 12px 48px 0 rgba(31, 38, 135, .6), 0 0 20px 4px rgba(255, 255, 255, .4);
    transform: translateY(-5px)
  }

  .about .about-content .right p,
  .services .serv-content .card p {
    font-size: 15px
  }

  .services .serv-content .card {
    width: 100%
  }

  .services .serv-content .card i {
    font-size: 30px
  }

  .services .serv-content .card .text {
    font-size: 20px
  }

  .contact .contact-content .column {
    width: calc(100%);
    padding: 15px
  }

  .contact-content:not(:last-child) {
    margin-bottom: 15px
  }
}

@media (max-width:500px) {
  .max-width {
    overflow: hidden;
    padding: 0 23px
  }

  .home .home-content {
    margin: auto
  }

  .home .home-content .text-2 {
    font-size: 28px
  }

  .home .home-content .text-3 {
    font-size: 25px
  }

  .text-subheading {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    font-weight: 500;
    color: #a8dadc;
    letter-spacing: .5px;
    text-align: center;
    width: 100%;
    z-index: 2
  }

  .about .about-content .right .text,
  .left .text {
    font-size: 19px
  }

  .contact-content {
    display: flex;
    align-items: center
  }

  @media (max-width:320px) {
    .max-width {
      overflow: hidden;
      margin-left: 0
    }
  }
}