/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 50px;
  height: 50px;
}

.btn-xl-square {
  width: 66px;
  height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  color: var(--bs-white);
}

.btn.btn-primary:hover {
  background: var(--bs-secondary);
  border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
  color: var(--bs-white);
}

.btn.btn-secondary:hover {
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
}

.btn.btn-light {
  color: var(--bs-primary);
}

.btn.btn-light:hover {
  color: var(--bs-white);
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
  0% {
    border-radius: 67% 33% 29% 75% / 39% 46% 54% 61%;
  }

  25% {
    border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;
  }

  50% {
    border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;
  }

  75% {
    border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;
  }

  100% {
    border-radius: 67% 33% 29% 75% / 39% 46% 54% 61%;
  }
}

/*** Icon Animation End ***/

/*** Navbar Start ***/
/* Modern Topbar */
.topbar-modern {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
  padding: 12px 0;
}

.topbar-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(66, 171, 228, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 107, 107, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.topbar-modern .row {
  position: relative;
  z-index: 1;
}

.topbar-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 8px;
}

.topbar-link i {
  color: var(--bs-primary);
  font-size: 16px;
  margin-right: 8px;
}

.topbar-link:hover {
  color: var(--bs-primary);
  background: linear-gradient(135deg, rgba(66, 171, 228, 0.15) 0%, rgba(66, 171, 228, 0.08) 100%);
  border-color: rgba(66, 171, 228, 0.4);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(66, 171, 228, 0.2);
}

.topbar-social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.topbar-social-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(66, 171, 228, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

/* WhatsApp Button */
.topbar-social-btn:nth-child(1) {
  color: #000000;
  border-color: var(--bs-primary);
  background: var(--bs-primary);
}

.topbar-social-btn:nth-child(1)::before {
  background: rgba(37, 211, 102, 0.3);
}

.topbar-social-btn:nth-child(1):hover {
  background: #25d366;
  color: white;
  border-color: rgba(37, 211, 102, 0.6);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

/* Facebook Button */
.topbar-social-btn:nth-child(2) {
  color: #000000;
  border-color: var(--bs-primary);
  background: var(--bs-primary);
}

.topbar-social-btn:nth-child(2)::before {
  background: rgba(24, 119, 242, 0.3);
}

.topbar-social-btn:nth-child(2):hover {
  background: #1877f2;
  color: white;
  border-color: rgba(24, 119, 242, 0.6);
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.35);
}

/* Instagram Button */
.topbar-social-btn:nth-child(3) {
  color: #000000;
  border-color: var(--bs-primary);
  background: var(--bs-primary);
}

.topbar-social-btn:nth-child(3)::before {
  background: rgba(225, 48, 108, 0.3);
}

.topbar-social-btn:nth-child(3):hover {
  background: linear-gradient(135deg, #e1306c, #fd1d1d);
  color: white;
  border-color: rgba(225, 48, 108, 0.6);
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.35);
}

.topbar-social-btn:hover {
  transform: translateY(-3px);
}

.topbar-social-btn:hover::before {
  width: 100px;
  height: 100px;
}

/* Modern Navbar */
.navbar-modern {
  background: var(--bs-white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.navbar-modern.sticky-top {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-bar {
  background: var(--bs-white);
}

.sticky-top {
  transition: 1s;
  z-index: 1020;
}

/* Topbar sticky styles */
.sticky-top .topbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 8px;
  padding: 35px 16px;
  letter-spacing: 0.5px;
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  border-radius: 8px;
}

.navbar-light .navbar-nav .nav-link i {
  color: var(--bs-primary);
  font-size: 16px;
  transition: all 0.3s ease;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
  padding: 20px 16px;
  color: #333333;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--bs-primary);
  background: rgba(66, 171, 228, 0.08);
  transform: translateY(-2px);
}

.navbar-light .navbar-nav .nav-link:hover i {
  transform: scale(1.1);
}

.navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-primary);
  background: rgba(66, 171, 228, 0.12);
  border-bottom: 3px solid var(--bs-primary);
}

/* Navbar Logo */
.navbar-logo {
  max-height: 100px;
  transition: all 0.3s ease;
}

.navbar-modern.sticky-top .navbar-logo {
  max-height: 80px;
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top .navbar-light .navbar-brand img {
  max-height: 100px;
}

/* Navbar CTA Button */
.navbar-cta {
  background: linear-gradient(135deg, var(--bs-primary), #3b9dd9);
  border: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(66, 171, 228, 0.3);
  position: relative;
  overflow: hidden;
}

.navbar-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.navbar-cta:hover::before {
  width: 300px;
  height: 300px;
}

.navbar-cta:hover {
  background: linear-gradient(135deg, #3b9dd9, var(--bs-primary));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(66, 171, 228, 0.4);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  margin-top: 8px !important;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 8px !important;
    transition: 0.5s;
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 8px 15px;
    border: 2px solid var(--bs-primary);
    color: var(--bs-primary);
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .navbar.navbar-expand-lg .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(66, 171, 228, 0.25);
    border-color: var(--bs-primary);
  }

  .navbar.navbar-expand-lg .navbar-toggler:hover {
    background: rgba(66, 171, 228, 0.1);
  }

  .sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 12px 0;
  }

  .navbar-light .navbar-nav .nav-link {
    padding: 12px 16px;
    margin-right: 0;
    margin-bottom: 8px;
  }

  .navbar-cta {
    width: 100%;
    margin-top: 12px;
  }
}

/*** Navbar End ***/

/*** Carousel Header Start ***/
.carousel .carousel-item img {
  object-fit: cover;
}

.carousel .carousel-item,
.carousel .carousel-item img {
  height: 700px;
}

.carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
}

.carousel .carousel-indicators {
  left: 75%;
  top: 50%;
  margin-right: 25%;
  transform: translateY(-50%);
  flex-direction: column;
}

.carousel-indicators [data-bs-target] {
  display: flex;
  width: 15px;
  height: 15px;
  border: 6px solid var(--bs-white);
  border-radius: 15px;
  padding: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: var(--bs-secondary);
  opacity: 1;
  transition: 0.5s;
}

.carousel-indicators [data-bs-target].active {
  background-color: var(--bs-primary);
}

@media (max-width: 992px) {
  .carousel-indicators [data-bs-target] {
    display: none;
  }
}

/*** Carousel Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)),
    url(../img/facts-statistics-background.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 60px 0;
  transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}

/*** Single Page Hero Header End ***/

/*** About Start ***/
.about .about-item .about-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  background: var(--bs-light);
  transition: 0.5s;
}

.about .about-item .about-item-inner .about-icon {
  width: 75px;
  height: 75px;
  border-radius: 67% 33% 29% 75% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

.about .about-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.about .about-img .img-1 {
  height: 85%;
  margin-right: 50px;
}

.about .about-img .img-2 {
  position: absolute;
  width: 100%;
  bottom: 0;
  right: 0;
  padding-left: 50px;
  border-radius: 10px;
}

.about .about-img::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 98%;
  top: 0;
  right: 0;
  border-radius: 10px;
  background: var(--bs-primary);
  z-index: -1;
}

.about .about-item .text-item {
  position: relative;
  padding-left: 25px;
}

.about .about-item .text-item::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: var(--bs-secondary);
}

/*** About End ***/

/*** Fact Counter Start ***/
.counter {
  background: linear-gradient(rgba(0, 12, 33, 0.9), rgba(31, 46, 78, 0.9)),
    url(../img/facts-statistics-background.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.counter .counter-item .counter-item-icon {
  width: 75px;
  height: 75px;
  border-radius: 67% 33% 29% 75% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

.car-counter .counter-item .counter-item-icon {
  width: 75px;
  height: 75px;
  border-radius: 67% 33% 29% 75% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

/*** Fact Counter End ***/

/*** Services Start ***/

.service {
  background: var(--bs-light);
}

.service .service-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: var(--bs-white);
  transition: 0.5s;
  height: 250px !important;
}

.car-service .service-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: var(--bs-white);
  transition: 0.5s;
  height: 300px !important;
}


.service .service-item:hover {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 60px;
  background: var(--bs-light);
}

.service .service-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: var(--bs-primary);
  border-radius: 10px;
  z-index: -1;
  transition: 0.5s;
  opacity: 0;
}

.service .service-item:hover::after {
  opacity: 1;
}

.service .service-item .service-icon {
  width: 75px;
  height: 75px;
  border-radius: 67% 33% 29% 75% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

/*** Service End ***/

/*** Cars Categories Start ***/

.cars .categories-item {
  margin-left: 10px;

}

.categories .categories-item {
  display: flex;
  border: 1px solid var(--bs-secondary);
  border-radius: 10px;
  transition: 0.5s;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
}

.categories .categories-item:hover {
  border: 1px solid var(--bs-primary);
}

.categories .categories-item .categories-item-inner {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: 0.5s;
}

.categories .categories-item .categories-item-inner:hover {
  box-shadow: 0 0 50px rgba(66, 171, 228, 1, 0.5);
}

.categories .categories-item-inner .categories-img {
  background: var(--bs-light);
}

.categories .categories-item-inner .categories-content {
  border-top: 4px solid var(--bs-white);
  text-align: center;
  background: var(--bs-light);
}

.categories .categories-item-inner .categories-review {
  display: flex;
  align-items: center;
  justify-content: center;
}

.categories-carousel .owl-stage-outer {
  margin-top: 0px;
  margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
  position: absolute;
  top: -65px;
  padding: 10px 17px;
  color: var(--bs-white);
  background: var(--bs-primary);
  border-radius: 50px;
  transition: 0.5s;
}

.categories-carousel .owl-nav .owl-prev {
  left: 92% !important;
}

.categories-carousel .owl-nav .owl-next {
  right: 0;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

/*** Cars Categories End ***/

/*** Process Start ***/
.steps {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url(../img/bg-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.steps .steps-item {
  position: relative;
  background: var(--bs-secondary);
  border-radius: 10px;
}

.steps .steps-item h4,
.steps .steps-item p {
  color: var(--bs-white);
}

.steps .steps-item .setps-number {
  position: absolute;
  width: 64px;
  height: 64px;
  bottom: 0;
  right: 40px;
  font-weight: 900;
  border: 1px solid var(--bs-white);
  border-radius: 64px;
  transform: translateY(50%);
  color: var(--bs-white);
  background: var(--bs-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/*** Process End ***/

/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
  transition: 0.5s;
}

.blog .blog-item:hover {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
  height: 100%;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.blog .blog-item .blog-content {
  position: relative;
  background: var(--bs-light);
}

.blog .blog-item .blog-content .blog-date {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  padding: 12px 25px;
  border-radius: 10px;
  color: var(--bs-white);
  background: var(--bs-primary);
}

.blog .blog-item .blog-content .blog-comment {
  display: flex;
  justify-content: space-between;
}

/*** Blog End ***/

/*** Banner Start ***/
.banner .banner-item {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: 0.5s;
  z-index: 1;
}

.banner .banner-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.banner .banner-item .banner-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  margin-left: 0;
  margin-bottom: 0;
  padding: 25px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  z-index: 5;
}

@media (min-width: 992px) {
  .banner .banner-item .banner-content h2 {
    font-size: 45px;
    margin-bottom: 20px;
  }

  .banner .banner-item .banner-content h1 {
    font-size: 72px;
    margin-bottom: 20px;
  }

  .banner .banner-item .banner-content p {
    font-size: 40px;
    margin-bottom: 20px;
  }
}

/*** Banner End ***/

/*** Team Start ***/
.team .team-item {
  position: relative;
  text-align: center;
  border-radius: 10px;
  margin-top: 100px;
  background: var(--bs-light);
  transition: 0.5s;
  z-index: 1;
}

.team .team-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background: var(--bs-secondary);
  z-index: 2;
  transition: 0.5s;
}

.team .team-item:hover::after {
  height: 100%;
}

.team .team-item .team-content {
  position: relative;
  z-index: 5;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
  transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
  color: var(--bs-white);
}

.team .team-item:hover .team-content p {
  color: var(--bs-white);
}

.team .team-item .team-img {
  position: relative;
  overflow: hidden;
  top: -100px;
  margin-bottom: -100px;
  border-radius: 10px;
  z-index: 3;
}

.team .team-item .team-img img {
  transition: 0.5s;
}

.team .team-item:hover .team-img img {
  transform: scale(1.1);
}

.team .team-item .team-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 4;
  transition: 0.5s;
}

.team .team-item:hover .team-img::after {
  height: 100%;
}

/*** Team End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
  margin-right: -1px;
}

.testimonial .testimonial-item {
  position: relative;
  margin-top: 35px;
  border: 1px solid var(--bs-secondary);
  border-radius: 10px;
}

.testimonial .testimonial-item .testimonial-quote {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 0;
  right: 25px;
  transform: translateY(-50%);
  border-radius: 70px;
  color: var(--bs-white);
  background: var(--bs-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
  display: flex;
  align-items: center;
  background: var(--bs-light);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.testimonial .testimonial-item .testimonial-inner img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  border: 4px solid var(--bs-white);
}

.testimonial-carousel .owl-dots {
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  margin: 20px 10px 0 10px;
  background: var(--bs-primary);
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: var(--bs-secondary);
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
  position: relative;
  margin-top: 50%;
  margin-left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
  background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-white);
  transition: 0.5s;
}

/*** Testimonial End ***/

/*** Contact Start ***/
.contact .contact-add-item {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-light);
}

.contact .contact-add-item .contact-icon {
  width: 75px;
  height: 75px;
  border-radius: 67% 33% 29% 75% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

/*** Contact End ***/

/*** Footer Start ***/
.footer-section {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(66, 171, 228, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 107, 107, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(52, 211, 153, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-section .container {
  position: relative;
  z-index: 1;
}

.footer-modern {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(66, 171, 228, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 107, 107, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(52, 211, 153, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-modern .container {
  position: relative;
  z-index: 1;
}

/* Footer Card Styling */
.footer-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(15px);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.footer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--bs-primary), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.footer-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  border-color: rgba(66, 171, 228, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(66, 171, 228, 0.25), 0 0 20px rgba(66, 171, 228, 0.1);
}

.footer-card:hover::before {
  opacity: 1;
}

/* Card Type Specific Colors */
.footer-card-about {
  border-color: rgba(52, 211, 153, 0.2);
}

.footer-card-about:hover {
  border-color: rgba(52, 211, 153, 0.5);
  box-shadow: 0 15px 40px rgba(52, 211, 153, 0.2), 0 0 20px rgba(52, 211, 153, 0.1);
}

.footer-card-links {
  border-color: rgba(59, 130, 246, 0.2);
}

.footer-card-links:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2), 0 0 20px rgba(59, 130, 246, 0.1);
}

.footer-card-routes {
  border-color: rgba(251, 146, 60, 0.2);
}

.footer-card-routes:hover {
  border-color: rgba(251, 146, 60, 0.5);
  box-shadow: 0 15px 40px rgba(251, 146, 60, 0.2), 0 0 20px rgba(251, 146, 60, 0.1);
}

.footer-card-contact {
  border-color: rgba(239, 68, 68, 0.2);
}

.footer-card-contact:hover {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 15px 40px rgba(239, 68, 68, 0.2), 0 0 20px rgba(239, 68, 68, 0.1);
}

/* Footer Card Header */
.footer-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid rgba(66, 171, 228, 0.4);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.footer-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(66, 171, 228, 0.2);
  border-radius: 8px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-icon i {
  color: var(--bs-primary);
  font-size: 20px;
}

.footer-card:hover .footer-icon {
  background: rgba(66, 171, 228, 0.4);
  transform: scale(1.1);
}

.footer-card-header h5 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
  text-transform: uppercase;
}

.footer-card-header i {
  color: var(--bs-primary);
  font-size: 22px;
  transition: all 0.3s ease;
}

.footer-card:hover .footer-card-header i {
  transform: rotate(10deg) scale(1.1);
}

/* Footer Card Text */
.footer-card-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-card-text b {
  color: var(--bs-primary);
  font-weight: 700;
}

/* Footer Text */
.footer-text {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-size: 14px;
}

.footer-text b {
  color: var(--bs-primary);
  font-weight: 700;
}

.footer-text .text-success {
  color: #34d399 !important;
}

/* Footer Features */
.footer-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-item {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  padding: 8px 0;
}

.feature-item:hover {
  color: #34d399;
  padding-left: 5px;
}

.feature-item i {
  font-size: 14px;
  flex-shrink: 0;
}

/* Footer Links */
.footer-links {
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  margin-left: -12px;
}

.footer-links a i {
  color: var(--bs-primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer-links a span {
  flex: 1;
}

.footer-links a:hover {
  color: #ffffff;
  background: rgba(66, 171, 228, 0.15);
  padding-left: 20px;
}

.footer-links a:hover i {
  transform: translateX(5px);
  color: #42abe4;
}

/* Route Links Specific */
.footer-card-routes .footer-links a i {
  color: #fb923c;
}

.footer-card-routes .footer-links a:hover {
  background: rgba(251, 146, 60, 0.15);
}

.footer-card-routes .footer-links a:hover i {
  color: #fb923c;
}

/* Footer Links - Quick Links (No Icons) */
.footer-links li {
  margin-bottom: 8px;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links li a:hover {
  color: var(--bs-primary);
  text-decoration: none;
  padding-left: 5px;
}

/* Popular Routes - Book Now Overlay (like tour-packages) */
.popular-routes li {
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
}

.popular-routes li:last-child {
  margin-bottom: 0;
}

.popular-routes li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1.4;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  box-sizing: border-box;
  border-radius: 8px;
}

.popular-routes li a:hover {
  color: var(--bs-primary);
  text-decoration: none;
}

.popular-routes li a {
  position: relative;
  overflow: hidden;
}

.popular-routes li a::after {
  content: "Book Now";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffb300;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 18px;
}

.popular-routes li:hover a::after {
  opacity: 1;
  transform: translateY(0);
}

.popular-routes a span {
  flex: 1;
}

/* Footer Contact List */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Footer Contact Items */
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  line-height: 1.6;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 12px;
  border-radius: 8px;
  margin-left: -12px;
}

.footer-contact-item i {
  color: var(--bs-primary);
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-contact-item span {
  flex: 1;
}

.footer-contact-item:hover {
  color: #ffffff;
  background: rgba(66, 171, 228, 0.15);
  padding-left: 20px;
}

.footer-contact-item:hover i {
  transform: translateX(3px);
  color: #42abe4;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(66, 171, 228, 0.15);
  border: 2px solid rgba(66, 171, 228, 0.3);
  border-radius: 50%;
  color: var(--bs-primary);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.social-btn:hover::before {
  width: 100%;
  height: 100%;
}

.social-btn:hover {
  transform: translateY(-5px) scale(1.1);
  border-color: currentColor;
}

.social-btn:nth-child(1) {
  color: #000000;
  border-color: var(--bs-primary);
  background: var(--bs-primary);
}

.social-btn:nth-child(1):hover {
  background: #25d366;
  color: white;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.social-btn:nth-child(2) {
  color: #000000;
  border-color: var(--bs-primary);
  background: var(--bs-primary);
}

.social-btn:nth-child(2):hover {
  background: #1877f2;
  color: white;
  box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);

}

.social-btn:nth-child(3) {
  color: #000000;
  border-color: var(--bs-primary);
  background: var(--bs-primary);
}

.social-btn:nth-child(3):hover {
  background: linear-gradient(135deg, #e1306c, #fd1d1d);
  color: white;
  box-shadow: 0 10px 25px rgba(228, 64, 95, 0.4);
}

/* Footer Divider */
.footer-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(66, 171, 228, 0.3) 25%,
      rgba(52, 211, 153, 0.3) 50%,
      rgba(251, 146, 60, 0.3) 75%,
      transparent 100%);
  margin: 40px 0 !important;
}

/* Footer Copyright */
.footer-copyright {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.footer-copyright:hover {
  color: rgba(255, 255, 255, 0.95);
}

.footer-copyright i {
  color: var(--bs-primary);
  transition: all 0.3s ease;
}

.footer-copyright:hover i {
  transform: scale(1.2);
}

.copyright-link {
  color: var(--bs-primary);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.copyright-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--bs-primary), rgba(66, 171, 228, 0.5));
  transition: width 0.3s ease;
}

.copyright-link:hover::after {
  width: 100%;
}

.copyright-link:hover {
  color: rgba(66, 171, 228, 0.9);
}

/* Footer Credit */
.footer-credit {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  transition: all 0.3s ease;
}

.footer-credit:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-credit i {
  animation: heartbeat 1.5s ease-in-out infinite;
  color: #ef4444;
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.3);
  }

  50% {
    transform: scale(1);
  }

  75% {
    transform: scale(1.2);
  }
}

/*** Footer End ***/

.logo-texts a {
  display: flex;
  flex-direction: column;
  /* stack texts vertically */
  line-height: 1.2;
  text-decoration: none;
}

.logo-text:first-child {
  font-size: 34px;
  margin-top: 7px;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
}

.logo-text:last-child {
  background: #42abe4;
  border-radius: 44px;
  padding: 2px;
  color: #000000;
}

.logo-text {
  font-weight: 600;
  color: #ffffff;
}

.subtitle {
  background: #000000;
  color: white;
  border-radius: 44px;
  padding: 4px;
  font-size: 15px;
  font-weight: 700;
}

.display-6 {
  float: left;
  font-size: 60px !important;
}

.navbar img {
  padding-top: 10px;
  height: 80px;
  width: 250px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-bottom: 5px;
}

.highlighted {
  color: rgb(66, 171, 228, 1);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  text-align: left;
  gap: 10px;
  padding: 1px;
  margin-top: 30px;
}

.features div {
  color: rgb(0, 0, 0);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 5px;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 13px;
  border-width: 1px;
  border-style: solid;
  border-color: #ffffff;
  border-image: initial;
  background: #ffffff;
  padding: 4px;
  border-radius: 18px;
  gap: 8px;
}

.features i {
  color: rgb(255, 255, 255);
  font-weight: bold;
  background-color: rgb(66, 171, 228, 1);
  padding: 10px;
  border-radius: 50%;
}


.main-heading {
  h1 {
    font-size: 3.5rem;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 2%;
  z-index: 99;
}

.phone-float {
  position: fixed;
  bottom: 90px;
  left: 2%;
  z-index: 99;
}

.enq_now_btn {
  background-color: #efbc22;
  border-radius: 50%;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 25px;
  cursor: pointer;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.4em !important;
  line-height: 50px !important;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  outline: 0 !important;
}

.enq_now_btn:hover {
  background-color: #000000;
  color: #ffffff;
}

.me-3:last-child {
  margin-right: 0 !important;
}

.rounded-pill {
  background: #efbc22;
  color: #000000 !important;
  border: none;
}

.rounded-pill:hover {
  color: #ffffff !important;
  border: none;
}

.text-black {
  color: #000000 !important;
}

/*** Custom List Styles ***/
.abd-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.abd-services ul li {
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 10px 15px;
  margin: 5px;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  transition: all 0.3s ease;
}

.abd-services ul li:hover {
  background-color: #f8f9fa;
  border-color: var(--bs-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.abd-services ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  display: block;
  width: 100%;
}

.abd-services ul li a:hover {
  color: var(--bs-primary);
}

/*** Tour Packages List Styles ***/
.tour-packages {
  margin-bottom: 20px;
}

.tour-packages ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 25px;
  border-radius: 10px;
}

.tour-packages ul li {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 0;
  margin: 8px;
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
}

.tour-packages ul li:hover {
  background-color: #ffffff;
  border-color: #efbc22;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.tour-packages ul li a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1.4;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 18px;
  margin: 0;
  box-sizing: border-box;
}

.tour-packages ul li a:hover {
  color: var(--bs-primary);
  text-decoration: none;
}

.tour-packages ul li a {
  position: relative;
  overflow: hidden;
}

.tour-packages ul li a::after {
  content: "Book Now";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #efbc22;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 18px;
}

.tour-packages ul li:hover a::after {
  opacity: 1;
  transform: translateY(0);
}




/* Responsive adjustments */
@media (max-width: 768px) {
  .abd-services ul li {
    flex: 1 1 calc(50% - 20px);
    min-width: 200px;
  }

  .tour-packages ul li {
    flex: 1 1 calc(50% - 30px);
    min-width: 250px;
  }
}

@media (max-width: 480px) {

  .abd-services ul li,
  .tour-packages ul li {
    flex: 1 1 100%;
    min-width: auto;
  }
}

/* Package Cards Styling */
.packages-section {
  padding: 40px 0;
}

.section-header {
  border-bottom: 3px solid var(--bs-primary);
  padding-bottom: 20px;
}

.section-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  flex-shrink: 0;
}

.section-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--bs-dark);
  margin-bottom: 5px;
}

.section-header p {
  font-size: 1rem;
  margin-bottom: 0;
}

.package-card {
  background: white;
  border-radius: 10px;
  padding: 18px 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  border-color: var(--bs-primary);
}

.package-card .card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(220, 53, 69, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 24px;
  color: var(--bs-primary);
  transition: all 0.3s ease;
}

.package-card:hover .card-icon {
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.package-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--bs-dark);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.package-card:hover h5 {
  color: var(--bs-primary);
}

.package-card p {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 12px;
  flex-grow: 1;
  line-height: 1.5;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  color: var(--bs-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.btn-link:hover {
  color: var(--bs-secondary);
  transform: translateX(5px);
}

.btn-link i {
  transition: transform 0.3s ease;
}

.btn-link:hover i {
  transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 30px;
  }

  .section-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .package-card {
    padding: 25px 15px;
  }

  .package-card .card-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .package-card h5 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .section-header {
    text-align: center;
  }

  .section-header .d-flex {
    flex-direction: column;
    align-items: center;
  }

  .section-icon {
    margin-bottom: 15px;
    margin-right: 0 !important;
  }

  .section-header h2 {
    font-size: 20px;
  }

  .section-header p {
    font-size: 1rem;
  }

  .package-card {
    padding: 20px 15px;
  }

  .package-card .card-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .package-card h5 {
    font-size: 15px;
  }

  .package-card p {
    font-size: 13px;
  }
}

/* Service Cards Styling */
.service-card {
  background: white;
  border-radius: 10px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  border-color: var(--bs-primary);
}

.service-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(220, 53, 69, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 24px;
  color: var(--bs-primary);
  transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.service-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--bs-dark);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.service-card:hover h5 {
  color: var(--bs-primary);
}

.service-card p {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 12px;
  flex-grow: 1;
  line-height: 1.5;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: auto;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f0f7ff;
  color: var(--bs-primary);
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-card:hover .feature-tag {
  background: var(--bs-primary);
  color: white;
}

.feature-tag i {
  font-size: 10px;
}

/* Why Choose Us Cards */
.why-choose-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  height: 100%;
}

.why-choose-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.why-choose-card .card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.why-choose-card .header-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  flex-shrink: 0;
}

.why-choose-card .card-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--bs-dark);
}

.why-choose-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--bs-dark);
  margin-bottom: 15px;
}

.why-choose-card p {
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 15px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #000000;
}

.feature-item i {
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
  .service-card {
    padding: 18px 12px;
  }

  .service-card h5 {
    font-size: 14px;
  }

  .service-card p {
    font-size: 11px;
  }

  .feature-tag {
    font-size: 10px;
    padding: 3px 6px;
  }

  .why-choose-card {
    padding: 20px;
  }

  .why-choose-card .card-header {
    gap: 10px;
    margin-bottom: 15px;
  }

  .why-choose-card .header-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .why-choose-card .card-header h4 {
    font-size: 15px;
  }

  .why-choose-card h5 {
    font-size: 16px;
  }

  .why-choose-card p {
    font-size: 12px;
  }

  .feature-item {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .service-card {
    padding: 15px 10px;
  }

  .service-card h5 {
    font-size: 13px;
  }

  .service-card p {
    font-size: 11px;
  }

  .service-features {
    gap: 4px;
  }

  .feature-tag {
    font-size: 9px;
    padding: 2px 5px;
  }

  .why-choose-card {
    padding: 15px;
  }

  .why-choose-card .card-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .why-choose-card .header-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .why-choose-card .card-header h4 {
    font-size: 14px;
  }

  .why-choose-card h5 {
    font-size: 15px;
  }

  .why-choose-card p {
    font-size: 11px;
  }

  .feature-item {
    font-size: 11px;
  }
}

/* About Page Styling */
.section-badge {
  display: inline-block;
}

.badge {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
}

.bg-primary-light {
  background-color: rgba(0, 123, 255, 0.1);
  color: var(--bs-primary);
}

.about-content {
  padding: 20px 0;
}

.about-content h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #000000;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
}

.feature-icon {
  width: 24px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary);
  flex-shrink: 0;
  margin-top: 0px;
}

.feature-item span {
  color: #000000;
  font-weight: 500;
}

/* Stats Container */
.stats-container {
  padding: 20px 0;
}

/* Visual Element */
.stats-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(220, 53, 69, 0.05));
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.visual-element {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-circle {
  position: absolute;
  border: 2px solid var(--bs-primary);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.circle-1 {
  width: 200px;
  height: 200px;
  animation-delay: 0s;
  opacity: 0.8;
}

.circle-2 {
  width: 140px;
  height: 140px;
  animation-delay: 0.3s;
  opacity: 0.6;
  border-color: var(--bs-secondary);
}

.circle-3 {
  width: 80px;
  height: 80px;
  animation-delay: 0.6s;
  opacity: 0.4;
  border-color: #28a745;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.6;
  }
}

.visual-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
  z-index: 10;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.stat-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  border-color: var(--bs-primary);
}

.stat-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
}

.stat-number .counter {
  font-size: 28px;
  font-weight: 700;
  color: var(--bs-primary);
}

.stat-number .plus {
  font-size: 20px;
  font-weight: 700;
  color: var(--bs-primary);
}

.stat-card h6 {
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  margin: 0;
}

/* Mission Vision Cards */
.mission-vision-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  height: 100%;
  position: relative;
  overflow: hidden;
}


.mission-vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
}

.mission-card::before {
  background: linear-gradient(90deg, var(--bs-primary), #0056b3);
}

.vision-card::before {
  background: linear-gradient(90deg, #0056b3, var(--bs-secondary));
}

.mission-vision-card .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(220, 53, 69, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--bs-primary);
  margin-bottom: 0;
  min-width: 60px;
}

.mission-vision-card .card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--bs-dark);
  margin-bottom: 8px;
}

.mission-vision-card .card-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: var(--bs-dark);
  margin-bottom: 15px;
}

.mission-vision-card p {
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 12px;
}

.vision-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vision-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #000000;
}

.vision-item i {
  color: var(--bs-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

/* Why Choose Cards */
.why-card {
  background: white;
  border-radius: 10px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  border-color: var(--bs-primary);
}

.why-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(220, 53, 69, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 24px;
  color: var(--bs-primary);
  transition: all 0.3s ease;
}

.why-card:hover .why-card-icon {
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.why-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--bs-dark);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.why-card:hover h5 {
  color: var(--bs-primary);
}

.why-card p {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 12px;
  flex-grow: 1;
  line-height: 1.5;
}

.why-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f7ff;
  color: var(--bs-primary);
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.why-card:hover .why-feature {
  background: var(--bs-primary);
  color: white;
}

.why-feature i {
  font-size: 10px;
}

/* Responsive About Page */
@media (max-width: 768px) {
  .about-content h2 {
    font-size: 24px;
  }

  .about-content p {
    font-size: 13px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .mission-vision-card {
    padding: 20px;
  }

  .mission-vision-card .card-subtitle {
    font-size: 16px;
  }

  .stat-card {
    padding: 15px;
  }

  .stat-number .counter {
    font-size: 24px;
  }

  .why-card {
    padding: 18px 12px;
  }

  .why-card h5 {
    font-size: 14px;
  }

  .why-card p {
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .about-content h2 {
    font-size: 20px;
  }

  .about-content p {
    font-size: 12px;
  }

  .mission-vision-card {
    padding: 15px;
  }

  .mission-vision-card .card-title {
    font-size: 15px;
  }

  .mission-vision-card .card-subtitle {
    font-size: 15px;
  }

  .mission-vision-card p {
    font-size: 12px;
  }

  .stat-card {
    padding: 12px;
  }

  .stat-number .counter {
    font-size: 20px;
  }

  .stat-card h6 {
    font-size: 12px;
  }

  .why-card {
    padding: 15px 10px;
  }

  .why-card h5 {
    font-size: 13px;
  }

  .why-card p {
    font-size: 11px;
  }

  .why-feature {
    font-size: 10px;
    padding: 4px 8px;
  }
}

/* Contact Page Styling */

/* Contact Intro Section */
.contact-intro {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.contact-intro::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.1), transparent);
  border-radius: 50%;
  z-index: 0;
}

.contact-intro::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.08), transparent);
  border-radius: 50%;
  z-index: 0;
}

.intro-content {
  position: relative;
  z-index: 1;
}

.intro-content h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.intro-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #000000;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 25px;
}

.intro-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #000000;
  font-weight: 500;
}

.intro-feature i {
  font-size: 16px;
  flex-shrink: 0;
}

/* Intro Visual */
.intro-visual {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.visual-box {
  background: white;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.visual-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: var(--bs-primary);
}

.visual-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(220, 53, 69, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 28px;
  color: var(--bs-primary);
  transition: all 0.3s ease;
}

.visual-box:hover .visual-icon {
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  color: white;
  transform: scale(1.1);
}

.visual-box h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--bs-dark);
  margin-bottom: 8px;
}

.visual-box p {
  font-size: 1rem;
  color: #000000;
  margin: 0;
}

.contact-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  height: 100%;
  text-align: center;
}

.contact-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
  border-color: var(--bs-primary);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(220, 53, 69, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--bs-primary);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  color: white;
  transform: scale(1.1);
}

.contact-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--bs-dark);
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bs-primary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--bs-secondary);
  gap: 10px;
}

.email-link {
  color: var(--bs-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: var(--bs-secondary);
}

.phone-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bs-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.phone-link:hover {
  color: var(--bs-secondary);
  gap: 10px;
}

.phone-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bs-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
}

.phone-link:hover {
  color: var(--bs-secondary);
  gap: 12px;
}

/* Quick Contact Cards */
.quick-contact-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quick-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.whatsapp-card:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.02);
}

.call-card:hover {
  border-color: var(--bs-primary);
  background: rgba(0, 123, 255, 0.02);
}

.email-card:hover {
  border-color: #ea4335;
  background: rgba(234, 67, 53, 0.02);
}

.hours-card:hover {
  border-color: #fbbc04;
  background: rgba(251, 188, 4, 0.02);
}

.quick-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(220, 53, 69, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--bs-primary);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.whatsapp-card:hover .quick-icon {
  background: #25d366;
  color: white;
  transform: scale(1.1) rotate(10deg);
}

.call-card:hover .quick-icon {
  background: var(--bs-primary);
  color: white;
  transform: scale(1.1) rotate(10deg);
}

.email-card:hover .quick-icon {
  background: #ea4335;
  color: white;
  transform: scale(1.1) rotate(10deg);
}

.hours-card:hover .quick-icon {
  background: #fbbc04;
  color: white;
  transform: scale(1.1) rotate(10deg);
}

.quick-contact-card h6 {
  font-size: 16px;
  font-weight: 700;
  color: var(--bs-dark);
  margin-bottom: 8px;
}

.quick-contact-card p {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 15px;
}

.quick-btn {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.quick-btn:hover:not(.disabled) {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.quick-btn.disabled {
  opacity: 0.7;
  cursor: default;
}

/* Map Container */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Responsive Contact Page */
@media (max-width: 768px) {
  .intro-content h2 {
    font-size: 28px;
  }

  .intro-content p {
    font-size: 14px;
  }

  .intro-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .intro-feature {
    font-size: 12px;
  }

  .visual-box {
    padding: 20px;
  }

  .visual-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .visual-box h5 {
    font-size: 15px;
  }

  .visual-box p {
    font-size: 11px;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-card h5 {
    font-size: 16px;
  }

  .contact-card p {
    font-size: 12px;
  }

  .contact-card-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .quick-contact-card {
    padding: 20px;
  }

  .quick-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .quick-contact-card h6 {
    font-size: 15px;
  }

  .quick-contact-card p {
    font-size: 11px;
  }

  .quick-btn {
    padding: 6px 14px;
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .intro-content h2 {
    font-size: 22px;
  }

  .intro-content p {
    font-size: 13px;
  }

  .intro-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .intro-feature {
    font-size: 11px;
  }

  .visual-box {
    padding: 15px;
  }

  .visual-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
    margin-bottom: 12px;
  }

  .visual-box h5 {
    font-size: 14px;
  }

  .visual-box p {
    font-size: 10px;
  }

  .contact-card {
    padding: 15px;
  }

  .contact-card h5 {
    font-size: 15px;
  }

  .contact-card p {
    font-size: 11px;
  }

  .contact-card-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
    margin-bottom: 15px;
  }

  .quick-contact-card {
    padding: 15px;
  }

  .quick-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
    margin-bottom: 12px;
  }

  .quick-contact-card h6 {
    font-size: 14px;
  }

  .quick-contact-card p {
    font-size: 10px;
  }

  .quick-btn {
    padding: 5px 12px;
    font-size: 10px;
  }

  .map-container {
    height: 300px !important;
  }
}

/* Car Card Styling - Modern Design */
.car-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.car-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
  z-index: 1;
}

.car-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2);
  border-color: var(--bs-primary);
}

.car-image {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.car-card:hover .car-image img {
  transform: scale(1.1) rotate(2deg);
}

.car-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  color: white;
  padding: 8px 14px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  backdrop-filter: blur(10px);
}

.car-badge::before {
  content: '🚗 ';
}

.car-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.car-content h5 {
  font-size: 18px;
  font-weight: 800;
  color: var(--bs-dark);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.car-content p {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.car-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.car-rating .stars {
  display: flex;
  gap: 3px;
  color: #ffc107;
  font-size: 13px;
}

.car-rating .rating-text {
  font-size: 11px;
  color: #6c757d;
  font-weight: 600;
  background: #f8f9fa;
  padding: 4px 8px;
  border-radius: 12px;
}

.car-price {
  background: linear-gradient(135deg, rgb(73 169 219), rgb(0 0 0 / 8%));
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 123, 255, 0.1);
}

.car-price .price-label {
  font-size: 12px;
  color: #000000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.car-price .price-value {
  font-size: 24px;
  font-weight: 800;
  color: #000000;
  display: block;
}

.car-price .price-unit {
  font-size: 11px;
  color: #000000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.car-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffc107, #ffb300);
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 18px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
  position: relative;
  overflow: hidden;
}

.car-book-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: 0;
}

.car-book-btn:hover::before {
  left: 100%;
}

.car-book-btn:hover {
  background: linear-gradient(135deg, #ffb300, #ffa500);
  color: #000000;
  gap: 10px;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.car-book-btn i {
  position: relative;
  z-index: 1;
}

/* Cars Slider/Carousel - 3 per slide like Testimonials */
.cars-slider-wrapper {
  position: relative;
  width: 100%;
}

.cars-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.cars-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.cars-slide.active {
  opacity: 1;
  z-index: 2;
  position: relative;
}

.cars-slide .car-card {
  max-width: 100%;
  width: 100%;
}

/* Slider Controls */
.cars-slider-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bs-primary);
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cars-slider-btn:hover {
  background: rgba(0, 0, 0, 1);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

.cars-slider-prev {
  left: 20px;
}

.cars-slider-next {
  right: 20px;
}

/* Slider Indicators - Like Testimonials */
.cars-slider-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.cars-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cars-indicator.active {
  background: var(--bs-primary);
  width: 28px;
  border-radius: 5px;
}

/* Responsive Cars Slider */
@media (max-width: 768px) {
  .cars-slider-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .cars-slider-prev {
    left: 10px;
  }

  .cars-slider-next {
    right: 10px;
  }

  .cars-slide {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .cars-slider-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .cars-slider-prev {
    left: 5px;
  }

  .cars-slider-next {
    right: 5px;
  }

  .cars-slide {
    padding: 10px;
  }

  .cars-slider-indicators {
    gap: 8px;
    margin-top: 20px;
  }

  .cars-indicator {
    width: 10px;
    height: 10px;
  }

  .cars-indicator.active {
    width: 12px;
    height: 12px;
  }
}

/* Responsive Car Cards */
@media (max-width: 768px) {
  .car-card {
    border-radius: 14px;
  }

  .car-image {
    height: 200px;
  }

  .car-content {
    padding: 18px;
  }

  .car-content h5 {
    font-size: 16px;
  }

  .car-content p {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }

  .car-rating .stars {
    font-size: 12px;
  }

  .car-price {
    padding: 12px;
  }

  .car-price .price-value {
    font-size: 22px;
  }

  .car-book-btn {
    font-size: 12px;
    padding: 10px 14px;
  }
}

@media (max-width: 576px) {
  .car-card {
    border-radius: 12px;
  }

  .car-image {
    height: 180px;
  }

  .car-content {
    padding: 16px;
  }

  .car-content h5 {
    font-size: 15px;
  }

  .car-content p {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }

  .car-rating {
    margin-bottom: 10px;
  }

  .car-rating .stars {
    font-size: 11px;
  }

  .car-rating .rating-text {
    font-size: 10px;
  }

  .car-price {
    padding: 10px;
    margin-bottom: 10px;
  }

  .car-price .price-label {
    font-size: 10px;
  }

  .car-price .price-value {
    font-size: 20px;
  }

  .car-price .price-unit {
    font-size: 10px;
  }

  .car-book-btn {
    font-size: 11px;
    padding: 9px 12px;
    gap: 6px;
  }
}

/* View All Button Styling */
.btn-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #42abe4;
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #42abe4;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-view-all:hover {
  background: transparent;
  color: #42abe4;
  transform: translateX(3px);
}

.btn-view-all i {
  transition: all 0.3s ease;
  font-size: 12px;
}

.btn-view-all:hover i {
  transform: translateX(3px);
}

/* View All Button Container */
.view-all-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

/* Custom Viewport Height Classes */
.min-vh-85 {
  min-height: 85vh !important;
}

.min-vh-80 {
  min-height: 80vh !important;
}

.min-vh-75 {
  min-height: 75vh !important;
}

.min-vh-70 {
  min-height: 70vh !important;
}

/* Hero Slider Container */
.hero-slider-container {
  position: relative;
  overflow: hidden;
  background: var(--bs-dark);
}

.hero-slider {
  position: relative;
  width: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
  position: relative;
}

/* Hero Section Styling */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--bs-dark);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(66, 171, 228, 0.90) 30%, rgba(0, 0, 0, 0.75) 70%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-text {
  color: #000000;
}

.hero-badge {
  display: inline-block;
}

.badge-text {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 20px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-feature-item i {
  font-size: 20px;
  color: #ffc107;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  font-weight: 700;
  padding: 12px 28px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
  background: #ffc107;
  border-color: #ffc107;
  color: #000;
}

.hero-buttons .btn-primary:hover {
  background: #ffb300;
  border-color: #ffb300;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
}

.hero-buttons .btn-light {
  border: 2px solid white;
  color: white;
}

.hero-buttons .btn-light:hover {
  background: white;
  color: var(--bs-primary);
  transform: translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 193, 7, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffc107;
  flex-shrink: 0;
}

.stat-info {
  color: white;
}

.stat-number {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2px;
}

.stat-label {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.9;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 10;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: #ffc107;
  border-color: #ffc107;
  color: #000;
  transform: scale(1.1);
}

/* Slider Indicators */
.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #ffc107;
  border-color: #ffc107;
  width: 32px;
  border-radius: 6px;
}

/* Slider Progress Bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffc107, var(--bs-primary));
  animation: slideProgress 5s linear infinite;
  z-index: 10;
}

@keyframes slideProgress {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  /* Hide slider controls on mobile */
  .slider-controls {
    display: none !important;
  }

  .slider-indicators {
    display: none !important;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* Hide slider controls on very small screens */
@media (max-width: 576px) {
  .slider-controls {
    display: none !important;
  }

  .slider-indicators {
    display: none !important;
  }
}

/* Service Card Styling - Modern */
.service-card {
  background: white;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(0, 123, 255, 0.15);
  border-color: var(--bs-primary);
}

.service-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(220, 53, 69, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: var(--bs-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  color: white;
  transform: scale(1.15) rotate(-10deg);
}

.service-card h5 {
  font-size: 18px;
  font-weight: 800;
  color: var(--bs-dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.service-card p {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 16px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: var(--bs-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.service-link:hover {
  color: var(--bs-secondary);
  gap: 10px;
}

/* Tour Card Styling */
.tour-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f0f0f0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(0, 123, 255, 0.15);
  border-color: var(--bs-primary);
}

.tour-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.1) rotate(2deg);
}

.tour-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(66, 171, 228, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tour-card:hover .tour-overlay {
  opacity: 1;
}

.tour-btn {
  background: #ffc107;
  color: #000;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.tour-btn:hover {
  background: #ffb300;
  color: #000;
  transform: scale(1.05);
}

.tour-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tour-content h5 {
  font-size: 18px;
  font-weight: 800;
  color: var(--bs-dark);
  margin-bottom: 10px;
}

.tour-content p {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 15px;
  flex-grow: 1;
  line-height: 1.6;
}

.tour-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--bs-primary);
  font-weight: 700;
}

.tour-distance,
.tour-time {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Testimonials Slider Styling */
.testimonials-slider-wrapper {
  position: relative;
  width: 100%;
}

.testimonials-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.testimonials-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.testimonials-slide.active {
  opacity: 1;
  z-index: 2;
  position: relative;
}

/* Testimonial Card Styling */
.testimonial-card {
  background: white;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f0f0f0;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(0, 123, 255, 0.15);
  border-color: var(--bs-primary);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--bs-primary);
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h5 {
  font-size: 16px;
  font-weight: 800;
  color: var(--bs-dark);
  margin-bottom: 2px;
}

.testimonial-info p {
  font-size: 13px;
  color: #6c757d;
  margin: 0;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.testimonial-rating i {
  color: #ffc107;
  font-size: 14px;
}

.rating-badge {
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-left: auto;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-footer {
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--bs-primary);
  font-weight: 700;
}

.verified-badge i {
  color: #28a745;
}

/* Testimonial Slider Controls */
.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.testimonial-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bs-primary);
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-btn:hover {
  background: var(--bs-secondary);
  transform: scale(1.1);
}

/* Testimonial Indicators */
.testimonial-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonial-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-indicator.active {
  background: var(--bs-primary);
  width: 28px;
  border-radius: 5px;
}



/* Stats Card Styling */
.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: white;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--bs-primary);

}

.stat-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 193, 7, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ffc107;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  background: rgba(255, 193, 7, 0.3);
  transform: scale(1.1);
}

.stat-content {
  flex-grow: 1;
}

.stat-number {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-plus {
  font-size: 24px;
  margin-left: 2px;
}

.stat-label {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 12px;
  opacity: 0.85;
  margin: 0;
}

/* Section Header Styling */
.section-header {
  margin-bottom: 40px;
}

.section-badge {
  display: inline-block;
  margin-bottom: 16px;
}

.section-badge .badge {
  background: rgba(0, 123, 255, 0.1) !important;
  color: var(--bs-primary) !important;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid rgba(0, 123, 255, 0.2);
}

.section-header h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--bs-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1rem;
  color: #6c757d;
  margin: 0 auto;
  line-height: 1.7;
}

.bg-primary-light {
  background: rgba(0, 123, 255, 0.1) !important;
  color: var(--bs-primary) !important;
}

/* Feature Box Styling */
.feature-box {
  background: white;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  border-color: var(--bs-primary);
}

.feature-icon {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(220, 53, 69, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary);
  transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  color: white;
  transform: scale(1.1);
}

.feature-box h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--bs-dark);
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 0.9rem;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Services Content Styling */
.services-content h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.service-check {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(220, 53, 69, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary);
  font-size: 18px;
}

.service-text h6 {
  font-size: 14px;
  font-weight: 700;
  color: var(--bs-dark);
  margin-bottom: 4px;
}

.service-text p {
  font-size: 0.9rem;
  color: #000000;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Stats Grid Styling */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: linear-gradient(135deg, rgb(73 169 219), rgb(0 0 0 / 8%));
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 123, 255, 0.3);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.4;
  opacity: 0.9;
}

/* Booking Step Styling */
.booking-step {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #e9ecef;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.booking-step:hover {
  border-color: var(--bs-primary);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--bs-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.booking-step h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--bs-dark);
  margin-bottom: 12px;
  margin-top: 8px;
}

.booking-step p {
  font-size: 0.9rem;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.5;
}

.step-icon {
  font-size: 40px;
  color: var(--bs-primary);
  opacity: 0.2;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .services-content h3 {
    font-size: 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
  }

  .booking-step {
    padding: 24px 16px;
  }

  .booking-step h5 {
    font-size: 14px;
  }

  .booking-step p {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .services-content h3 {
    font-size: 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 11px;
  }

  .stat-card p {
    font-size: 0.8rem;
  }

  .booking-step {
    padding: 20px 14px;
  }

  .booking-step h5 {
    font-size: 13px;
  }

  .booking-step p {
    font-size: 0.8rem;
  }

  .step-icon {
    font-size: 32px;
  }
}

/* Package Items Styling */
.packages-section {
  position: relative;
  margin-bottom: 2rem !important;
}

.section-header {
  margin-bottom: 15px;
}

.section-header h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}

.section-header p {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 0;
}

.package-item-card {
  background: white;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 140px;
  justify-content: space-between;
}

.package-item-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  border-color: var(--bs-primary);
}

.package-item-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(220, 53, 69, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 20px;
  color: var(--bs-primary);
  transition: all 0.3s ease;
}

.package-item-card:hover .package-item-icon {
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.package-item-card h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--bs-dark);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.package-item-card:hover h5 {
  color: var(--bs-primary);
}

.package-item-card p {
  font-size: 0.9rem;
  color: #000000;
  margin-bottom: 8px;
  flex-grow: 1;
  line-height: 1.4;
}

.package-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #ffc107;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin-top: auto;
  margin-left: auto;
  width: fit-content;
}

.package-link:hover {
  background: #ffb300;
  color: #000000;
  gap: 6px;
}

/* Responsive Package Items */
@media (max-width: 768px) {
  .packages-section {
    margin-bottom: 1.5rem !important;
  }

  .section-header {
    margin-bottom: 10px;
  }

  .section-header h3 {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .section-header p {
    font-size: 1rem;
  }

  .package-item-card {
    padding: 9px;
    height: 130px;
  }

  .package-item-card h5 {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .package-item-card p {
    font-size: 0.8rem;
    margin-bottom: 5px;
  }

  .package-item-icon {
    width: 35px;
    height: 35px;
    font-size: 18px;
    margin-bottom: 5px;
  }

  .package-link {
    font-size: 10px;
    gap: 3px;
    padding: 4px 7px;
  }
}

@media (max-width: 576px) {
  .packages-section {
    margin-bottom: 1rem !important;
  }

  .section-header {
    margin-bottom: 8px;
  }

  .section-header h3 {
    font-size: 16px;
    margin-bottom: 3px;
  }

  .section-header p {
    font-size: 1rem;
  }

  .package-item-card {
    padding: 8px;
    height: 120px;
  }

  .package-item-card h5 {
    font-size: 11px;
    margin-bottom: 2px;
  }

  .package-item-card p {
    font-size: 0.75rem;
    margin-bottom: 4px;
    line-height: 1.2;
  }

  .package-item-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
    margin-bottom: 4px;
  }

  .package-link {
    font-size: 9px;
    gap: 2px;
    padding: 3px 6px;
  }
}

/* 404 Error Page Styling */
.error-card {
  background: white;
  border-radius: 16px;
  padding: 50px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.error-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
}

.error-icon-container {
  display: flex;
  justify-content: center;
}

.error-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(66, 171, 228, 0.15), rgba(220, 53, 69, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: var(--bs-primary);
  animation: float 3s ease-in-out infinite;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin: 0;
  line-height: 1;
}

.error-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--bs-dark);
  text-align: center;
}

.error-description {
  font-size: 16px;
  color: #666666;
  text-align: center;
  line-height: 1.6;
}

/* Error Action Cards */
.error-action-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
  border: 1px solid rgba(66, 171, 228, 0.2);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.error-action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(66, 171, 228, 0.2);
  border-color: var(--bs-primary);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 249, 250, 1));
}

.action-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(66, 171, 228, 0.1), rgba(220, 53, 69, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--bs-primary);
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.error-action-card:hover .action-icon {
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.action-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--bs-dark);
  margin-bottom: 10px;
}

.action-desc {
  font-size: 14px;
  color: #666666;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Quick Links Card */
.quick-links-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
  border: 1px solid rgba(66, 171, 228, 0.15);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.quick-links-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--bs-primary);
  text-align: center;
}

.quick-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links-list li {
  margin-bottom: 12px;
}

.quick-links-list li:last-child {
  margin-bottom: 0;
}

.quick-links-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bs-dark);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.quick-links-list a:hover {
  color: var(--bs-primary);
  background: rgba(66, 171, 228, 0.08);
  padding-left: 16px;
}

.quick-links-list i {
  color: var(--bs-primary);
  font-size: 12px;
}

/* Help Section */
.help-section {
  background: linear-gradient(135deg, rgba(66, 171, 228, 0.08), rgba(220, 53, 69, 0.05));
  border: 1px solid rgba(66, 171, 228, 0.2);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.help-section i {
  font-size: 24px;
  color: var(--bs-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.help-section div {
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
}

.help-section a {
  color: var(--bs-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.help-section a:hover {
  text-decoration: underline;
  color: var(--bs-secondary);
}

.cars-slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

/* 404 Page Responsive */
@media (max-width: 768px) {
  .error-card {
    padding: 30px 20px;
  }

  .error-code {
    font-size: 80px;
  }

  .error-title {
    font-size: 24px;
  }

  .error-description {
    font-size: 14px;
  }

  .error-icon {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }

  .action-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .action-title {
    font-size: 16px;
  }

  .action-desc {
    font-size: 13px;
  }

  .quick-links-card {
    padding: 20px;
  }

  .quick-links-title {
    font-size: 18px;
  }

  .quick-links-list a {
    font-size: 14px;
  }

  .help-section {
    padding: 15px;
    gap: 10px;
  }

  .help-section i {
    font-size: 20px;
  }

  .help-section div {
    font-size: 13px;
  }


}