
html {
  scroll-behavior: smooth;
}

/* Navbar */
.stickyNavbar {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.navbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stickyNavbar_logo {
  max-height: 45px;
}

.stickyNavbar_list {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.stickyNavbar_list li a {
  text-decoration: none;
  color: #212333;
  font-size: 14px;
  position: relative;     
  padding-bottom: 5px;    
}

.stickyNavbar_list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;              
  height: 1px;            
  background-color: #212333; 
  transition: width 0.5s ease;  
}

.stickyNavbar_list li a:hover::after {
  width: 100%;           
}


.buttons-col {
  display: flex;
  gap: 10px;
}

.mainButton {
  background: #333;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
}

.mainButton:hover {
  background: #000;
}

/* Sticky Class */
/* Sticky Class */
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;             
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  animation: slideDown 0.25s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}


/* Mobile Responsive */
@media (max-width: 768px) {
  .navbar-row {
    flex-wrap: wrap;
  }

  .stickyNavbar_list {
    display: none;
    flex-direction: column;
    gap: 15px;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 20px;
    border-top: 1px solid #ddd;
    height: 250px;
    z-index: 999999;
  }

  .stickyNavbar_list.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 24px;
    color: #212333;
  }

  .mainButton {
  background: #333;
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 10px;
}
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}


.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #000; 
}
.banner picture,
.banner-img {
  width: 100%;
  display: block;
}

.banner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* //////////////// */


.jetour-section{
  padding: 0 20px;
}
.jetour-section h2 {
font-weight: 700;
    letter-spacing: .025em;
    line-height: normal;
    margin-bottom: 0;
    padding-top: 9px;
    font-size: 36px;
}

.edit-text{
  width: 70%;
}

.jetour-section h5 {
 color: #212333;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0;
    line-height: normal;
    margin-bottom: revert;
    margin-top: 0;
    text-transform: none;
    font-size: 1.5rem;
}

.jetour-section p {
  color: rgb(33, 33, 33);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .jetour-section h2 {
    font-size: 1.5rem;
  }
  .jetour-section h5 {
    font-size: 1rem;
  }

  .edit-text{
  width: 100% !important; 
}
}

/* /////////////// */

/* Slider Layout */
.slider-section-cars {
  background: #424242!important;
  padding: 40px 0;
  margin-top: 40px;
}

.slider-section-cars h2{
  font-size: 40px;
  line-height: 46px;
  font-weight: 700;
  padding-top: 20px;
  padding-left: 100px;
    padding-bottom: 15px;
  color: #fff;
}

.slider-section-cars .swiper {
  width: 95%;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding-bottom: 5px; 
}

.slider-section-cars .swiper-slide {
  background: none !important; 
}
.slider-section-cars .swiper-slide img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  display: block;
}

.slider-section-cars .slide-caption h4 {
font-size: 18px;
    font-weight: 400;
    letter-spacing: .025em;
  color: #fff !important;
  text-align: left;
  background: none !important; 
  margin-top: 15px;
}

.slider-section-cars .slide-caption p {
font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 25px;
    padding-top: 3px;
  color: #9b9b9b !important;
  text-align: left;
  background: none !important; 
}


.slider-section-cars .swiper-button-next,
.slider-section-cars .swiper-button-prev {
  width: 42px;
  height: 42px;
  border-radius: 0;               
  border: 1px solid #fff;
  background: transparent !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  transition: color .25s ease, border-color .25s ease;
  z-index: 10;
}

.slider-section-cars .swiper-button-prev { left: 40px; }
.slider-section-cars .swiper-button-next { right: 40px; }

.slider-section-cars .swiper-button-next::before,
.slider-section-cars .swiper-button-prev::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #fff;
    border:  none !important;

  transition: width .45s ease;
  z-index: 0;
}

.slider-section-cars .swiper-button-next:hover::before,
.slider-section-cars .swiper-button-prev:hover::before {
  width: 100%;
}

.slider-section-cars .swiper-button-next::after,
.slider-section-cars .swiper-button-prev::after {
  position: relative;
  z-index: 1;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}

.slider-section-cars .swiper-button-prev::after {
  content: '\276E'; 
  font-size: 20px;
}

.slider-section-cars .swiper-button-next::after {
  content: '\276F'; 
  font-size: 20px;
}


.slider-section-cars .swiper-button-next:hover,
.slider-section-cars .swiper-button-prev:hover {
  color: #000 !important;
}

.slider-section-cars .custom-pagination {
  position: static !important;
  display: block;
  width: 90%;
  max-width: 1200px;
  margin: 16px auto 0;
  text-align: start;
}
.slider-section-cars .custom-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 1px;
  border-radius: 0;
  background: #fff;
  opacity: .4;
  transition: opacity .3s;
}
.slider-section-cars .custom-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}




.slider-section-cars .img-wrapper {
  position: relative;
}

.slider-section-cars .img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); 
  z-index: 1;
}

.slider-section-cars .img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 991px) {
  .slider-section-cars h2 {
    font-size: 28px;
    line-height: 34px;
    padding-left: 30px;
    text-align: center;
  }

  .slider-section-cars .swiper-slide img {
    height: 380px;
  }

  .slider-section-cars .slide-caption h4 {
    font-size: 16px;
    text-align: center;
  }

  .slider-section-cars .slide-caption p {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
  }

  .slider-section-cars .swiper-button-next,
  .slider-section-cars .swiper-button-prev {
    width: 36px;
    height: 36px;
  }

  .slider-section-cars .swiper-button-prev { left: 15px; }
  .slider-section-cars .swiper-button-next { right: 15px; }

  .slider-section-cars .custom-pagination {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .slider-section-cars {
    padding: 20px 0;
  }

  .slider-section-cars h2 {
    font-size: 22px;
    line-height: 28px;
    padding-left: 0;
    text-align: center;
  }

  .slider-section-cars .swiper {
    width: 100%;
  }

  .slider-section-cars .swiper-slide img {
    height: 250px;
  }

  .slider-section-cars .slide-caption h4 {
    font-size: 15px;
    margin-top: 10px;
  }

  .slider-section-cars .slide-caption p {
    font-size: 13px;
    line-height: 20px;
  }

  .slider-section-cars .swiper-button-next,
  .slider-section-cars .swiper-button-prev {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .slider-section-cars .swiper-button-prev { left: 10px; }
  .slider-section-cars .swiper-button-next { right: 10px; }

  .slider-section-cars .custom-pagination {
    width: 100%;
    margin-top: 12px;
    text-align: center;
  }
}

/* ///////////////////////// */

.car-section {
  position: relative;
  width: 95%;
  min-height: 600px;
  margin: auto;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.car-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); 
  z-index: 0; 
}

.car-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.mobile-image {
  display: none;
}

.car-content {
  max-width: 600px;
  padding: 50px;
  z-index: 1; 
  position: relative;
}

.car-content h2 {
  font-size: 40px;
  line-height: 46px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.car-content p {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  color: #fff;
  width: 80%;
}

@media (max-width: 768px) {
  .car-section {
  width: 100%;
  min-height: 400px;

}
  .desktop-image {
    display: none;
  }

  .mobile-image {
    display: block;
  }

  .car-content {
    text-align: center;
    padding: 30px 20px;
  }

  .car-content h2 {
    font-size: 24px;
  }

  .car-content p {
    font-size: 14px;
    width: 100%;
  }
}


/* //////////////////////////////////// */


.slider-section-cars2 {
  padding: 40px 0;
  margin-top: 40px;
}

.slider-section-cars2 .downp{
font-size: 13px;
    font-weight: 400;
    letter-spacing: .2em;
    line-height: 25px;
 color: #212333;
   padding-left: 100px;
   margin-bottom: 0;

}

.slider-section-cars2 h2{
  font-size: 40px;
  line-height: 46px;
  font-weight: 700;
  padding-top: 0px;
  padding-left: 100px;
  padding-bottom: 15px;
  color: #000;
}

.slider-section-cars2 .swiper {
  width: 95%;
  margin: 0 auto;
  padding-bottom: 5px; 
}

.slider-section-cars2 .swiper-slide {
  background: none !important; 
}
.slider-section-cars2 .swiper-slide img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  display: block;
}

.slider-section-cars2 .slide-caption h4 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .025em;
  color: #000 !important;
  text-align: left;
  background: none !important; 
  margin-top: 15px;
}

.slider-section-cars2 .slide-caption p {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 25px;
  padding-top: 3px;
  color: #000 !important;
  text-align: left;
  background: none !important; 
}

.slider-section-cars2 .swiper-button-next,
.slider-section-cars2 .swiper-button-prev {
  width: 42px;
  height: 42px;
  border-radius: 0;               
  border: 1px solid #fff;
  background: transparent !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  transition: color .25s ease, border-color .25s ease;
  z-index: 10;
}

.slider-section-cars2 .swiper-button-prev { left: 40px; }
.slider-section-cars2 .swiper-button-next { right: 40px; }

.slider-section-cars2 .swiper-button-next::before,
.slider-section-cars2 .swiper-button-prev::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #212333;
  border:  none !important;
  transition: width .45s ease;
  z-index: 0;
}

.slider-section-cars2 .swiper-button-next:hover::before,
.slider-section-cars2 .swiper-button-prev:hover::before {
  width: 100%;
}

.slider-section-cars2 .swiper-button-next::after,
.slider-section-cars2 .swiper-button-prev::after {
  position: relative;
  z-index: 1;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}

.slider-section-cars2 .swiper-button-prev::after { content: '\276E'; }
.slider-section-cars2 .swiper-button-next::after { content: '\276F'; }

.slider-section-cars2 .swiper-button-next:hover,
.slider-section-cars2 .swiper-button-prev:hover {
  color: #fff !important;
}

.slider-section-cars2 .custom-pagination2 {
  position: static !important;
  display: block;
  width: 90%;
  max-width: 1200px;
  margin: 16px auto 0;
  text-align: start;
}
.slider-section-cars2 .custom-pagination2 .swiper-pagination-bullet {
  width: 20px;
  height: 1px;
  border-radius: 0;
  background: #212333;
  opacity: .4;
  transition: opacity .3s;
}
.slider-section-cars2 .custom-pagination2 .swiper-pagination-bullet-active {
  opacity: 1;
}

.slider-section-cars2 .img-wrapper { position: relative; }
.slider-section-cars2 .img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); 
  z-index: 1;
}
.slider-section-cars2 .img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .slider-section-cars2 h2 { font-size: 28px; line-height: 34px; padding-left: 30px; text-align: center; }
  .slider-section-cars2 .swiper-slide img { height: 380px; }
  .slider-section-cars2 .slide-caption h4 { font-size: 16px; text-align: center; }
  .slider-section-cars2 .slide-caption p { font-size: 14px; line-height: 22px; text-align: center; }
  .slider-section-cars2 .swiper-button-next, .slider-section-cars2 .swiper-button-prev { width: 36px; height: 36px; }
  .slider-section-cars2 .swiper-button-prev { left: 15px; }
  .slider-section-cars2 .swiper-button-next { right: 15px; }
  .slider-section-cars2 .custom-pagination2 { width: 100%; text-align: center; }
}

@media (max-width: 576px) {
  .slider-section-cars2 { padding: 20px 0; }
  .slider-section-cars2 h2 { font-size: 22px; line-height: 28px; padding-left: 0; text-align: center; }
  .slider-section-cars2 .swiper { width: 100%; }
  .slider-section-cars2 .swiper-slide img { height: 250px; }
  .slider-section-cars2 .slide-caption h4 { font-size: 15px; margin-top: 10px; }
  .slider-section-cars2 .slide-caption p { font-size: 13px; line-height: 20px; }
  .slider-section-cars2 .swiper-button-next, .slider-section-cars2 .swiper-button-prev { width: 30px; height: 30px; font-size: 16px; }
  .slider-section-cars2 .swiper-button-prev { left: 10px; }
  .slider-section-cars2 .swiper-button-next { right: 10px; }
  .slider-section-cars2 .custom-pagination2 { width: 100%; margin-top: 12px; text-align: center; }
}
/* ///////////////////////////////////////////////////////// */

.slider-section-cars3 {
  /* background: #424242!important; */
  padding: 40px 0;
  margin-top: 40px;
}

.slider-section-cars3 h2{
  font-size: 40px;
  line-height: 46px;
  font-weight: 700;
  padding-top: 20px;
  padding-left: 100px;
  padding-bottom: 15px;
  color: #000;
}

.slider-section-cars3 .swiper {
  width: 95%;
  margin: 0 auto;
  padding-bottom: 5px; 
}

.slider-section-cars3 .swiper-slide {
  background: none !important; 
}
.slider-section-cars3 .swiper-slide img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  display: block;
}

.slider-section-cars3 .slide-caption h4 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .025em;
  color: #000 !important;
  text-align: left;
  background: none !important; 
  margin-top: 15px;
}

.slider-section-cars3 .slide-caption p {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 25px;
  padding-top: 3px;
  color: #9b9b9b !important;
  text-align: left;
  background: none !important; 
}

.slider-section-cars3 .swiper-button-next,
.slider-section-cars3 .swiper-button-prev {
  width: 42px;
  height: 42px;
  border-radius: 0;               
  border: 1px solid #fff;
  background: transparent !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  transition: color .25s ease, border-color .25s ease;
  z-index: 10;
}

.slider-section-cars3 .swiper-button-prev { left: 40px; }
.slider-section-cars3 .swiper-button-next { right: 40px; }

.slider-section-cars3 .swiper-button-next::before,
.slider-section-cars3 .swiper-button-prev::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #212333;
  border:  none !important;
  transition: width .45s ease;
  z-index: 0;
}

.slider-section-cars3 .swiper-button-next:hover::before,
.slider-section-cars3 .swiper-button-prev:hover::before {
  width: 100%;
}

.slider-section-cars3 .swiper-button-next::after,
.slider-section-cars3 .swiper-button-prev::after {
  position: relative;
  z-index: 1;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}

.slider-section-cars3 .swiper-button-prev::after { content: '\276E'; }
.slider-section-cars3 .swiper-button-next::after { content: '\276F'; }

.slider-section-cars3 .swiper-button-next:hover,
.slider-section-cars3 .swiper-button-prev:hover {
  color: #fff !important;
}

.slider-section-cars3 .custom-pagination3 {
  position: static !important;
  display: block;
  width: 90%;
  max-width: 1200px;
  margin: 16px auto 0;
  text-align: start;
}
.slider-section-cars3 .custom-pagination3 .swiper-pagination-bullet {
  width: 20px;
  height: 1px;
  border-radius: 0;
  background: #212333;
  opacity: .4;
  transition: opacity .3s;
}
.slider-section-cars3 .custom-pagination3 .swiper-pagination-bullet-active {
  opacity: 1;
}

/* .slider-section-cars3 .img-wrapper { position: relative; }
.slider-section-cars3 .img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); 
  z-index: 1;
} */
.slider-section-cars3 .img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .slider-section-cars3 h2 { font-size: 28px; line-height: 34px; padding-left: 30px; text-align: center; }
  .slider-section-cars3 .swiper-slide img { height: 380px; }
  .slider-section-cars3 .slide-caption h4 { font-size: 16px; text-align: center; }
  .slider-section-cars3 .slide-caption p { font-size: 14px; line-height: 22px; text-align: center; }
  .slider-section-cars3 .swiper-button-next, .slider-section-cars3 .swiper-button-prev { width: 36px; height: 36px; }
  .slider-section-cars3 .swiper-button-prev { left: 15px; }
  .slider-section-cars3 .swiper-button-next { right: 15px; }
  .slider-section-cars3 .custom-pagination3 { width: 100%; text-align: center; }
}

@media (max-width: 576px) {
  .slider-section-cars3 { padding: 20px 0; }
  .slider-section-cars3 h2 { font-size: 22px; line-height: 28px; padding-left: 0; text-align: center; }
  .slider-section-cars3 .swiper { width: 100%; }
  .slider-section-cars3 .swiper-slide img { height: 250px; }
  .slider-section-cars3 .slide-caption h4 { font-size: 15px; margin-top: 10px; }
  .slider-section-cars3 .slide-caption p { font-size: 13px; line-height: 20px; }
  .slider-section-cars3 .swiper-button-next, .slider-section-cars3 .swiper-button-prev { width: 30px; height: 30px; font-size: 16px; }
  .slider-section-cars3 .swiper-button-prev { left: 10px; }
  .slider-section-cars3 .swiper-button-next { right: 10px; }
  .slider-section-cars3 .custom-pagination3 { width: 100%; margin-top: 12px; text-align: center; }
}
/*  */

.jetour-section2 .btn {
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  display: inline-block;
  font-style: normal;
  outline: none;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #3d4347;
  border-radius: 5px;
  color: #fff;
  font-family: Montserrat, Arial, Verdana, Helvetica, sans-serif;
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: .075em;
  line-height: 45px;
  margin: 0;
  min-height: 1em;
  padding: 0 3.07692308em;
  z-index: 1;
  text-transform: unset;
  transition: color 0.3s ease-in-out;
    width: 200px;

}

.jetour-section2 .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; 
  width: 100%;
  height: 100%;
  background-color: #2a2f33; 
  z-index: -1;
  transition: left 0.6s ease; 
  border-radius: inherit;
}

.jetour-section2 .btn:hover::before {
  left: 0; 
}

.jetour-section2 .btn:hover {
  color: #fff;
}

/* */

.jetour-section2 .btn2 {
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  display: inline-block;
  font-style: normal;
  outline: none;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fff;
  border-radius: 5px;
  color: #3d4347;
  border: 1px solid #3d4347;
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: .075em;
  line-height: 45px;
  margin: 0;
  min-height: 1em;
  padding: 0 3.07692308em;
  z-index: 1;
  text-transform: unset;
  transition: color 0.3s ease-in-out;
  width: 200px;
  margin-top: 15px;
}

.jetour-section2 .btn2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; 
  width: 100%;
  height: 100%;
  background-color: #2a2f33; 
  z-index: -1;
  transition: left 0.6s ease; 
  border-radius: inherit;
}

.jetour-section2 .btn2:hover::before {
  left: 0; 
}

.jetour-section2 .btn2:hover {
  color: #fff;
}

/* //////////// */

.jetour-section2{
  padding: 40px 22px;
  margin-bottom: 30px;
}
.jetour-section2 h2 {
font-weight: 700;
    letter-spacing: .025em;
    line-height: normal;
    margin-bottom: 0;
    padding-top: 9px;
    font-size: 36px;
    color: #212333;
    padding-bottom: 15px;
}

.jetour-section2 .edit-text{
  width: 95%;
}



.jetour-section2 p {
font-size: 13px;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 25px;
    color: #212121;
}

@media (max-width: 768px) {
  .jetour-section2 h2 {
    font-size: 1.5rem;
  }
  .jetour-section2 h5 {
    font-size: 1rem;
  }
  .jetour-section2 .edit-text{
  width: 100%;
}
}

.full-height-img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}


/*360° VIEW*/
.viewer {
  position: relative;
  width: 90%;
  margin: 40px auto;
  text-align: center;
  background: url('../images/bg.jpg') no-repeat center;
  background-size: cover;
  padding: 20px;
}
.viewer img#carImage {
  width: 100%;
  height: auto;
  user-select: none;
 user-select: none;
  cursor: grab;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
.arrow img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.arrow:hover img {
  transform: scale(1.1);
}
.arrow.left { left: 10px; }
.arrow.right { right: 10px; }
.view-text {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  z-index: 20;
}
.bottom-bar {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
}
.colors {
  display: flex;
  align-items: center;
  gap: 15px;
}
.color-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}
.color-btn.active {
  border: 2px solid #fff;
  transform: scale(1.2) translateY(-5px); 
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);  
  z-index: 5; 
}
.divider {
  width: 1px;
  height: 35px;
  background: #000;
}
#colorName {
  margin: 0;
  margin-left: 15px;
  font-size: 14px;
  font-weight: bold;
  color: #000;
}
.drag-text {
  font-size: 16px;
  color: #555;
  font-style: italic;
}


@media (max-width: 1024px) {
  .viewer {
    width: 95%;
    padding: 15px;
  }

  .arrow img {
    width: 40px;
    height: 40px;
  }

  .view-text {
    font-size: 16px;
  }

  #colorName {
    font-size: 13px;
  }

  .color-btn {
    width: 28px;
    height: 28px;
  }

  .drag-text {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .viewer {
    width: 100%;
    padding: 10px;
  }

  .arrow img {
    width: 32px;
    height: 32px;
  }

  .view-text {
    font-size: 14px;
  }

  .color-btn {
    width: 24px;
    height: 24px;
  }

  #colorName {
    font-size: 12px;
  }

  .drag-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .arrow img {
    width: 26px;
    height: 26px;
  }

  .view-text {
    font-size: 12px;
  }

  .color-btn {
    width: 20px;
    height: 20px;
  }

  #colorName {
    font-size: 11px;
  }

  .drag-text {
    font-size: 12px;
  }
  .bottom-bar {
  bottom: 0px;

}
}



