/*** Spinner Start ***/
/*** Spinner ***/
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Andada+Pro:ital,wght@0,400..840;1,400..840&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Winky+Sans:ital,wght@0,300..900;1,300..900&display=swap");
#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 ***/
* {
  margin: 0;
  padding: 0;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  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: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50%;
}

.btn.btn-primary {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
  box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}

.btn.btn-light {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
  box-shadow: inset 300px 0 0 0 var(--bs-primary);
  color: var(--bs-light) !important;
}

.btn-hover {
  transition: 0.5s;
}

.btn-hover:hover {
  color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-primary);
}

.section-title::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-left: -50px;
  border: 1px solid var(--bs-primary) !important;
}

/*** Topbar Start ***/
.fixed-top .container {
  transition: 0.5s;
}

.topbar {
  padding: 2px 10px 2px 20px;
  background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
  transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
  color: var(--bs-secondary) !important;
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}
/*** Topbar End ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  font-family: "Josefin Sans", sans-serif;
  position: relative;
  padding: 35px 15px;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 15px;
  color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
  color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
  color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
  }
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: var(--bs-white);
  }

  .navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--bs-dark) !important;
  }

  .navbar-light .navbar-nav .nav-link:hover,
  .navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}
@media (max-width: 448px) {
  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
    margin-left: 277px;
    margin-top: -47px;
  }
}
@media (min-width: 992px) {
  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: var(--bs-light);
  }

  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: -1px;
    left: 0;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: -1;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    height: calc(100% + 1px);
    left: 1px;
  }

  .navbar-light .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }
}

/* form carousel header */

/*** Carousel Hero Header Start ***/

.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: #fd7e14;
}
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
  opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
  position: relative;
  min-height: 100vh;
}

.carousel-header .carousel-inner .carousel-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-size: cover;
}
.form-class {
  width: 47%;
  margin-left: -104px;
  margin-bottom: -2px;
}
@media (max-width: 768px) {
  .slide-form h4 {
    font-size: 1.25rem;
  }
  .form-control::placeholder {
    font-size: 0.9rem;
  }
  .form-class {
   width: 97% !important;
        margin-left: -47px !important;
        margin-top: 76px !important;
  }
}
@media (max-width: 768px) {
  .carousel-header .carousel-inner .carousel-item img,
  .carousel-header .carousel-inner .carousel-item .carousel-caption {
    height: 700px;
    margin-top: -100px;
  }

  .carousel-header .carousel-control-prev .carousel-control-prev-icon,
  .carousel-header .carousel-control-next .carousel-control-next-icon {
    opacity: 0;
  }

  #img-banner {
    height: 236px !important;
  }
}

/*** Carousel Hero Header End ***/

/* General Carousel Styles */
.header-carousel {
  position: relative;
  width: 100%;
}

.carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 800px;
}

/* Form Container */
.slide-form {
  background-color: #0f2a62;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  
  margin-top: 100px !important;
}

/* Form Input Fields */
.slide-form .form-control {
  background-color: black;
  opacity: 0.33;
  border: none;
  color: white;
  padding: 10px;
  border-radius: 5px;
}

.slide-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Form Labels */
.slide-form label {
  color: white;
  font-weight: 500;
}

/* Submit Button */
.slide-form .btn-primary,
.slide-form .btn-warning {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .carousel-caption {
    position: relative;
    padding-top: 30px;
  }

  .form-class {
    width: 90%;
    margin: auto;
  }

  .slide-form {
    padding: 20px;
  }

  .carousel-item {
    min-height: 550px;
  }
}

@media (max-width: 768px) {
  .slide-form {
    padding: 15px;
  }

  .carousel-item {
    min-height: 500px;
  }

  .form-head {
    font-size: 18px;
  }

  .btn {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    min-height: 450px;
  }

  .form-class {
    width: 100%;
  }

  .slide-form {
    padding: 10px;
  }

  .form-control {
    font-size: 14px;
  }

  .btn {
    font-size: 13px;
    padding: 10px;
  }
}

/* contact */
.contact-form {
  width: 415px;
  margin-top: 117px;
  margin-right: 131px;
  margin-bottom: 63px;
  padding: 30px;
  border-radius: 10px;
  animation: fadeIn 1s ease-in-out;
  box-shadow: 0 0 40px rgba(198, 194, 194, 0.7);
  background-color: transparent;
}

.contact-form .title {
  font-size: 45px;
  font-weight: bold;
  color: goldenrod;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: scaleIn 1s ease-in-out 0.3s;
  animation-fill-mode: both;
}

.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
  opacity: 0;
  animation: fadeIn 0.8s ease-in-out;
  animation-fill-mode: both;
}

.form-group:nth-child(2) {
  animation-delay: 0.2s;
}

.form-group:nth-child(3) {
  animation-delay: 0.4s;
}

.form-group:nth-child(4) {
  animation-delay: 0.6s;
}

.form-group .icon {
  width: 50px;
  height: 40px;
  background-color: #f1702b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.form-group:hover .icon {
  transform: rotate(360deg);
}

.form-control::placeholder {
  color: white !important;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.btn-warning {
  background-color: #f1702b;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 5px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s ease;
}

@keyframes backgroundColorChange {
  0% {
    background-color: gold;
  }

  25% {
    background-color: #ff5733;
  }

  50% {
    background-color: #33c1ff;
  }

  75% {
    background-color: #ff33a8;
  }

  100% {
    background-color: gold;
  }
}

@keyframes ColorChange {
  0% {
    background-color: gold;
  }

  25% {
    background-color: #ff5733;
  }

  50% {
    background-color: #33c1ff;
  }

  75% {
    background-color: #ff33a8;
  }

  100% {
    background-color: gold;
  }
}

.btn-primary:hover {
  background-color: #c4b8e2;
  transform: translateY(-3px);
}

.btn-warning {
  animation: fadeIn 1s ease-in-out 1.2s;
  animation-fill-mode: both;
}
/* header contact end */

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  background: url(../img/breadcrumb-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 150px 0 50px 0;
}

.bg-breadcrumb .breadcrumb-item a {
  color: var(--bs-secondary) !important;
}
/*** Single Page Hero Header End ***/

/*** About Start ***/
.about .container .section-about-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-primary);
}

.about .container .section-about-title::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid var(--bs-primary) !important;
}
/*** About End ***/

/*** Features Start ***/
.feature {
  background: var(--bs-light);
}

.feature .feature-item {
  display: flex;
  border-radius: 10px;
}

.feature .feature-item .feature-icon span {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: #fd7e14;
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

/*** Features 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: 90px;
  height: 90px;
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: #fd7e14;
  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: 70%;
  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: #fd7e14;
  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 ***/

/* tour gallery */
   .gal-img a {
            display: block;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
          }
          .gal-img img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.3s ease;
          }
          .gal-img span {
            display: block;
            background-color: orange;
            color: white;
            text-align: center;
            padding: 10px 0;
            font-size: 1.2em;
            position: absolute;
            bottom: 0;
            width: 100%;
            transition: background-color 0.3s ease;
          }
          .gal-img a:hover img {
            transform: scale(1.05);
          }
          .gal-img a:hover span {
            background-color: #ff7f00;
          }
/* tour gallery end */

/* Tour Card Styles */
.tour-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #ebe0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.tour-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.tour-content {
    padding: 15px;
    flex: 1;
}

.tour-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fd7e14;
    margin-bottom: 5px;
}

.tour-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Responsive for Mobile (576px and below) */
@media (max-width: 576px) {
    .tour-title {
        font-size: 18px;
    }

    .tour-description {
        font-size: 12px;
    }

    .tour-card {
        margin-bottom: 15px;
        padding: 10px;
    }
}
/* our tour end */


/* products pages */

.service-icon span i {
  font-size: 40px;
  color: #0f2a62;
}
.service-grid h4 {
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 2px;
}
.car-rental-section {
  padding: 50px 0;
  color: #04070a;
}
.headpro {
  color: #0f2a62;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

.features-list li {
  padding: 15px;
  background-color: #f0d2a6;
  color: black;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease-in-out;
  display: flex;
  align-items: center;
}

.features-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.features-list li i {
  color: #1f2e4e;
  margin-right: 10px;
  font-size: 1.2em;
}

/* Destinations Grid */
.destinations {
  margin-top: 40px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.destination-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  padding: 20px;
}

.destination-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.destination-item h4 {
  margin-bottom: 10px;
  font-weight: 500;
  color: #fd7e14;
}

.destination-item p i {
  margin-bottom: 0;
  color: #0f2a62;
}

.list-none {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.list-none li i{
  color: #fd7e14;
}
/* Call to Action */
.call-to-action {
  margin-top: 50px;
  text-align: center;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.call-to-action h3 {
  color: var(--primary-blue);
  font-size: 2rem;
  margin-bottom: 20px;
}

.call-to-action p {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.call-to-action .tagline {
  font-style: italic;
  color: #04070a;
  margin-top: 20px;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.contact-details p {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.contact-details i {
  margin-right: 10px;
  font-size: 1.2em;
  color: var(--secondary-orange);
}

/* Media Queries */
@media (max-width: 768px) {
  .features-list,
  .advantages-list {
    grid-template-columns: 1fr;
  }

  .destination-grid {
    grid-template-columns: 1fr;
  }

  .contact-details {
    flex-direction: column;
    align-items: center;
  }
}
/* product pages end */

/* Car Section */
.car-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}

.car-card {
  position: relative;
  width: 350px;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  padding: 10px;
  border: 2px solid rgb(220, 111, 22);
}

.car-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(237, 171, 50, 0.5);
}

.car-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: opacity 0.3s ease-in-out;
}

.car-card:hover .car-img {
  opacity: 0.8;
}

/* Bus Section */
.bus-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.bus-card {
  position: relative;
  width: 350px;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  padding: 10px;
  border: 2px solid rgb(220, 111, 22);
}

.bus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(237, 171, 50, 0.5);
}

.bus-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: opacity 0.3s ease-in-out;
}

.bus-card:hover .bus-img {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .car-container,
  .bus-container {
    gap: 10px;
  }
}
/* car end */

/*-- stats --*/
.stats h3.heading {
  color: #fff;
}

.stats p {
  color: black;
  text-transform: capitalize;
}

.stats-left h4 span {
  font-size: 50px;
  font-weight: 600;
  color: #fd7e14;
}

.stats-left h4 {
  color: #fff;
}

.stats-right h4 {
  font-size: 2.4em;
  font-weight: 700;
  margin: 15px 0;
  color: #fff;
}

.stats-right span.fa {
  color: #fff;
  font-size: 20px;
  background: #fd7e14;
  width: 65px;
  height: 65px;
  text-align: center;
  line-height: 65px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.stats {
  background: url(../img/stats1.jpg) no-repeat 0px 0px;
  background-size: cover;
  position: relative;
}

.brands a span.fa {
  font-size: 3em;
  color: #333;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
}

/*-- //stats end--*/

/*** Services Start ***/
.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;
}

.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: #fd7e14;
  border-radius: 10px;
  z-index: -1;
  transition: 0.5s;
  opacity: 0;
}

.service .service-item:hover::after {
  opacity: 1;
}

.service .service-item .service-icon {
  width: 90px;
  height: 90px;
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: #fd7e14;
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

/*** Service End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
  box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}
/*** Contact End ***/

/* top marquee */
.marquee-container {
  width: 100%;
  border-radius: 10px;
  color: white;
  padding: 12px 0;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-text {
  text-transform: uppercase;
  display: inline-block;
  animation: textMove 10s linear infinite;
}

@keyframes textMove {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

/*** Footer Start ***/
.new_footer_area {
  background: #1f2e4e;
}

.new_footer_top {
  font-family: "Josefin Sans", sans-serif;
  padding: 70px 0px 240px;
  position: relative;
  overflow-x: hidden;
}

.footer_bottom {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #fff;
  padding: 27px 0px;
}

.new_footer_top .company_widget p {
  font-size: 19px;
  font-weight: 300;
  line-height: 28px;
  color: #fff;
}

.new_footer_top .company_widget .f_subscribe_two .btn_get {
  border-width: 1px;
  margin-top: 20px;
}

.btn_get_two:hover {
  background: transparent;
  color: #5e2ced;
}

.btn_get:hover {
  color: #fff;
  background: #6754e2;
  border-color: #6754e2;
  -webkit-box-shadow: none;
  box-shadow: none;
}

a:hover,
a:focus,
.btn:hover,
.btn:focus,
button:hover,
button:focus {
  text-decoration: none;
  outline: none;
}

.text-orange {
  color: orange;
}
.new_footer_top .f_widget.about-widget .f_list li a:hover {
  color: #fd7e14;
}

.f_social_icon a:hover {
  background-color: #ff9800;
}

.f_social_icon a {
  color: white;
  transition: color 0.3s;
}

.new_footer_top .f_widget.about-widget .f_list li a:hover {
  color: #5e2ced;
}

.new_footer_top .f_widget.about-widget .f_list li {
  margin-bottom: 11px;
}

.f_widget.about-widget .f_list li:last-child {
  margin-bottom: 0px;
}
/* Hover effect for headings */
h4.text-orange:hover {
  color: #ffcc00;
  transition: color 0.3s ease;
}

/* Hover effect for anchor tags */
a.text-white:hover, a.text-orange:hover {
  color: #ffcc00;
  text-decoration: underline;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

/* Click effect to ensure navigation works */
a {
  cursor: pointer;
}

.f_widget.about-widget .f_list li {
  margin-bottom: 15px;
}

.f_widget.about-widget .f_list {
  margin-bottom: 0px;
}

.new_footer_top .f_social_icon a {
  width: 44px;
  height: 44px;
  line-height: 43px;
  background: transparent;
  border: 1px solid #e2e2eb;
  font-size: 24px;
}

.f_social_icon a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 45px;
  color: #fff;
  display: inline-block;
  background: #ebeef5;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.ti-facebook:before {
  content: "\e741";
}

.ti-twitter-alt:before {
  content: "\e74b";
}

.ti-vimeo-alt:before {
  content: "\e74a";
}

.ti-pinterest:before {
  content: "\e731";
}

.btn_get_two {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #5e2ced;
  border-color: #5e2ced;
  color: #fff;
}

.btn_get_two:hover {
  background: transparent;
  color: #5e2ced;
}

.new_footer_top .f_social_icon a:hover {
  background: #5e2ced;
  border-color: #5e2ced;
  color: white;
}

.new_footer_top .f_social_icon a + a {
  margin-left: 4px;
}

.new_footer_top .f-title {
  margin-bottom: 30px;
  color: #263b5e;
}

.f_600 {
  font-weight: 600;
}

.f_size_18 {
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fd7e14;
}

.new_footer_top .f_widget.about-widget .f_list li a {
  color: white;
}

.new_footer_top .footer_bg {
  position: absolute;
  bottom: 0;
  background: url("../img/footer_bg.png") no-repeat scroll center 0;
  width: 100%;
  height: 266px;
}

.new_footer_top .footer_bg .footer_bg_one {
  background: url("../img/volks.gif") no-repeat center center;
  width: 330px;
  height: 105px;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  left: 30%;
  -webkit-animation: myfirst 22s linear infinite;
  animation: myfirst 20s linear infinite;
}

.new_footer_top .footer_bg .footer_bg_two {
  background: url("../img/bus-gif.gif") no-repeat center center;
  width: 230px;
  height: 105px;
  background-size: 100%;
  bottom: 0;
  left: 38%;
  position: absolute;
  -webkit-animation: myfirst 30s linear infinite;
  animation: myfirst 30s linear infinite;
}
@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.animated-icon {
  display: inline-block;
  animation: moveUpDown 2s infinite ease-in-out;
}
@keyframes moveUpDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.spin-icon {
  animation: moveUpDown 2s ease-in-out infinite;
}

@-moz-keyframes myfirst {
  0% {
    left: -25%;
  }

  100% {
    left: 100%;
  }
}

@-webkit-keyframes myfirst {
  0% {
    left: -25%;
  }

  100% {
    left: 100%;
  }
}

@keyframes myfirst {
  0% {
    left: -25%;
  }

  100% {
    left: 100%;
  }
}
/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-dark) !important;
}
/*** copyright end ***/

@media (min-width: 992px) {
  .footer::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background: var(--primary);
  }
}

.footer-shape::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 100%;
  top: 0;
  left: -40px;
  background: var(--primary);
  transform: skew(40deg);
}

/* Side Fixed Icons - Modern Style */
#hxb-enquiry-forms .fixed-icons {
  position: fixed;
  left: 5px;
  bottom: 20%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

#hxb-enquiry-forms .fixed-icons a {
  background-color: #f1702b;
  color: #333;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 22px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

#hxb-enquiry-forms .fixed-icons a:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

#hxb-enquiry-forms .phone-icon {
  background-color: white;
  color: #fff;
}

#hxb-enquiry-forms .whatsapp-icon {
  background-color: white;
  color: #fff;
}

#hxb-enquiry-forms .mail-icon {
  background-color: white;
  color: #fff;
}

/* Popup Form - Modern Style */
#hxb-enquiry-forms .popup-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

#hxb-enquiry-forms .form-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 16px;
  max-width: 450px;
  width: 90%;
  position: relative;
  animation: fadeIn 0.3s ease;
}

#hxb-enquiry-forms .form-content h2 {
  color: #333;
  margin-bottom: 20px;
  font-size: 24px;
}

#hxb-enquiry-forms .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 28px;
  color: #999;
  transition: color 0.3s;
}

#hxb-enquiry-forms .close-btn:hover {
  color: #333;
}

.fa-phone {
  rotate: 0deg;
}

#hxb-enquiry-forms .popup-form form input,
#hxb-enquiry-forms .popup-form form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

#hxb-enquiry-forms .popup-form form button {
  width: 100%;
  background-color: #fd7e14;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#hxb-enquiry-forms .popup-form form button:hover {
  background-color: #fd7e14;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer_bottom1 {
  display: none !important;
}

@media (max-width: 767px) { /* Show only on mobile */
  .footer_bottom1 {
      display: block !important;
  }
}
