* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  scrollbar-width: none;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* Popup modal overall look */
#enquiryPopup .modal-content {
  border-radius: 12px;
  background: black;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  padding: 15px;
}

/* Header styling */
#enquiryPopup .modal-header {
  border-bottom: none;
  background: #FFD700;
  color: #fff;
  border-radius: 10px 10px 0 0;
}
#enquiryPopup .modal-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: black;
}


/* Input fields */
#enquiryPopup .form-control {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px;
  transition: all 0.3s ease;
}
#enquiryPopup .form-control:focus {
  border-color: #000D1100;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

/* Submit button */
#enquiryPopup .btn-primary {
  width: 100%;
  border-radius: 8px;
  background: #FFD700;
  font-weight: 600;
  transition: 0.3s;
  color: black;
}
#enquiryPopup .btn-primary:hover {
  background: #FFD700;
  transform: scale(1.02);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  #enquiryPopup .modal-dialog {
    max-width: 90%;
    margin: auto;
  }
  #enquiryPopup .modal-title {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  #enquiryPopup .form-control {
    font-size: 0.9rem;
    padding: 8px;
  }
  #enquiryPopup .btn-primary {
    font-size: 0.9rem;
  }
}


.header_nav {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header_nav nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.header_nav nav ul li {
  margin: 0 15px;
}

.header_nav nav ul li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 18px;
}

.header_nav nav ul li a:hover {
  color: #ffdf2a;
}

.telephone {
  font-size: 16px;
  font-weight: bold;
  color: black;
}

.telephone a {
  text-decoration: none;
  color: black;
}

.telephone a:hover {
  color: #e6c200;
}

.main_container {
  min-height: 90vh;
  background-image: url('/assets/image/ertiga.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
}

.name {
  display: flex;
  gap: 10px;
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
  .header_nav {

    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .header_nav nav ul {
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 70px;
    right: 0%;
    background-color: black;
    padding: 10px;
    align-items: flex-start;

  }

  .header_nav nav ul li a {
    font-size: 18px;
    color: white;
  }

  .header_nav nav ul li {
    margin: 10px 0;
  }

  .company_logo img {
    margin-left: -28px;
  }

  @media (max-width: 480px) {
    .company_logo img {
      padding-left: 43px;
    }
  }

  .main_container {
    justify-content: center;
    padding: 10px;
  }

  .telephone {
    display: none;
  }

  /* .booking-form {
     width: 100%;
     max-width: 90%;
   } */
  .name {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .header_nav {

    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .header_nav nav ul li a {
    font-size: 16px;
  }

  .telephone {
    display: none;
  }

  .company_logo img {
    margin-left: -64px;
  }

  .main_container {
    justify-content: center;
    padding: 10px;
  }
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  position: fixed;
  right: 10px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    right: 10px;
    position: absolute;
  }

  .header_nav nav {
    display: none;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .header_nav nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .header_nav nav ul li {
    margin: 0;
  }
}

.booking-container {
  background: #111;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 400px;
  max-width: 95%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  left: 70px;
}

.tabs {
  display: flex;
  justify-content: space-around;
  margin-bottom: 15px;
}

.tabs button {
  flex: 1;
  padding: 10px;
  border: none;
  background: #333;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

.tabs button.active {
  background: #e6c200;
  color: #000;
}

.trip-type {
  display: flex;
  justify-content: space-around;
  margin: 10px 0;
}

.trip-type button {
  flex: 1;
  padding: 8px;
  border: none;
  background: #444;
  color: #fff;
  cursor: pointer;
}

.trip-type button.active {
  background: #ff6347;
  color: #fff;
}

.form-group {
  margin: 10px 0;
  position: relative;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
}

.suggestions {
  list-style: none;
  background: #fff;
  color: #000;
  padding: 0px;
  border-radius: 5px;
  max-height: 150px;
  overflow-y: auto;
  position: absolute;
  width: 100%;
  top: 40px;
  left: 0;
  z-index: 999;
}

.suggestions li {
  padding: 5px;
  cursor: pointer;
}

.suggestions li:hover {
  background: #eee;
}

.booking-container button.submit-btn {
  width: 100%;
  padding: 12px;
  background: #FFD700;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

.booking-container button.submit-btn:hover {
  background: #e6c200;
}

@media(max-width:768px) {
  .booking-container {
    width: 90%;
    left: 0px;
  }
}

@media(max-width:480px) {
  .header_nav {
    padding: 15px 20px;
  }

  .main_container {
    justify-content: center;
    padding: 10px;
    left: 0px;
  }

  .booking-container {
    width: 100%;
    left: 0px;
  }

  .tabs,
  .trip-type {
    flex-direction: column;
  }

  .tabs button,
  .trip-type button {
    margin: 5px 0;
  }
}

/* section two */

.main_container_1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 130px;
  background: #f5f5f5;
  padding: 110px 20px;
  border-radius: 10px;
}

/* Image section */
.car_img_1 img {
  width: 550px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.car_img_1:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Content section */
.content_1 {
  width: 100%;
  max-width: 500px;
  gap: 1px;
}

.content_1 h2 {
  font-size: 52px;
  margin-bottom: 15px;
  color: #222;
}

.content_1 p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.button .btn {
  display: inline-block;
  padding: 12px 20px;
  background: #FFD700;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.button .btn:hover {
  background: #e6c200;
}

/* Responsive */
@media(max-width:768px) {
  .main_container_1 {
    flex-direction: column;
    text-align: center;
  }

  .car_img_1 img {
    width: 100%;
  }

  .content_1 h2 {
    font-size: 24px;
  }
}


@media(max-width:480px) {
  .main_container_1 {
    flex-direction: column;
    text-align: center;
  }

  .car_img_1 img {
    width: 100%;
  }

  .content_1 h2 {
    font-size: 24px;
  }
}

/* section three */

.main_container_2 {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 73px 20px;
  box-sizing: border-box;
}

.main_container_2 h2 {
  text-align: center;
  margin-bottom: 20px;
}

.swiper {
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  gap: 20px;
}

.swiper-slide {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 15px;
}

.swiper-slide img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.swiper-slide h3 {
  margin: 10px 0 5px;
  color: #333;
}

.swiper-slide p {
  margin: 5px 0;
  color: #555;
}

.swiper-slide button {
  margin-top: 10px;
  padding: 10px 15px;
  background: #FFD700;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.swiper-slide button:hover {
  background: #e6c200;
}

/* section four */  

.main_container_3 {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  background: #f5f5f5;
}

.main_container_3 h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
  color: #222;
}

.main_container_3 p.lead {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

.services-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.service-card:hover {
  transform: scale(1.01);
  transition: transform 0.2s ease;
}

.service-overlay {
  /* position: absolute; */
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 15px;
  text-align: center;
}

.service-overlay:hover {
  background: rgba(0, 0, 0, 0.8);
}

.service-overlay h5 {
  margin: 5px 0;
  font-size: 20px;
  font-weight: bold;
}

.service-overlay p {
  margin: 5px 0;
  font-size: 16px;
  font-weight: bold;
}

.button-container {
  margin-top: 10px;
}

.book-now-button2 {
  background: #FFD700;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.book-now-button2:hover {
  background: #e6c200;
}

/* Responsive tweaks */
@media(max-width:768px) {
  .main_container_3 h2 {
    font-size: 24px;
  }

  .service-card img {
    height: 200px;
  }
}

@media(max-width:480px) {
  .main_container_3 {
    padding: 20px 10px;
  }

  .service-card img {
    height: 180px;
  }

  .book-now-button2 {
    width: 100%;
  }
}


/* section five */
.main_container_4 {
  background: #f5f5f5;
  padding-top: 50px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.container h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #222;
}

.services-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

.box-content {
  position: absolute;
  bottom: -100%;
  left: 0px;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 15px;
  text-align: center;
  transition: bottom 0.5s ease;
  z-index: 2;
}

.service-card:hover .box-content {
  bottom: 0;
}

.box-content h3 {
  margin: 5px 0;
  font-size: 20px;
  font-weight: bold;
}

.box-content span {
  display: block;
  margin: 5px 0;
  font-size: 14px;
}

.button-container {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.whatsapp-button {
  background: #25D366;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.whatsapp-button:hover {
  background: #1ebe5d;
}

.book-now-button {
  background: #FFD700;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.book-now-button:hover {
  background: #e6c200;
}

.destination-name {
  position: absolute;
  bottom: 20px;
  left: 105px;
  color: #ffffff;
  font-size: 30px;
  font-weight: bold;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 768px) {
  .destination-name {
    font-size: 24px;
    left: 50px;
  }

}

@media (max-width: 480px) {
  .destination-name {
    font-size: 20px;
    left: 60px;
  }

}

.destination-name-p {
  font-size: 14px;
  font-weight: normal;
}

.service-card:hover .destination-name {
  display: none;
}

/* .service-card::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.1);
      z-index: 1;
      /* 0.4 = halka dark */
/* } */

.destination-name:hover {
  display: none;
}

/* Responsive tweaks */
@media(max-width:768px) {
  .container h2 {
    font-size: 24px;
  }

  .service-card img {
    height: 200px;
  }
}

@media(max-width:480px) {
  .container {
    padding: 20px 10px;
  }

  .service-card img {
    height: 180px;
  }

  .book-now-button,
  .whatsapp-button {
    width: 100%;
  }

  .button-container {
    flex-direction: column;
  }
}

/* Scroll to top button */
#scrollTopBtn {
  display: none;
  /* default hidden */
  position: fixed;
  bottom: 30px;
  right: 30px;
  ;
  z-index: 99;
  background: #FFD700;
  color: #000;
  border: none;
  padding: 9px 14px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
  font-size: 19px;
}

#scrollTopBtn:hover {
  background: #e6c200;
}

/* Mobile tweak: make button bigger */
@media(max-width:480px) {
  #scrollTopBtn {
    padding: 14px 20px;
    font-size: 16px;
    left: 260px;
  }
}

/* F&Q section */

.faq-section {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
  /* background: #f5f5f5; */
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  color: #222;
}

.accordion-item {
  -bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.accordion-button {
  background-color: #fff;
  color: #333;
  font-size: 1.1rem;
  border: 1px solid #ddd;
}

.accordion-button:not(.collapsed) {
  background-color: #bcbcbc;
  color: #000;
}

.accordion-body {
  background-color: #fff;
  border: 1px solid #ddd;
  border-top: none;
  color: #555;
}

.according-button:focus {
  box-shadow: none;

}



.faq-section {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
  /* background: #f5f5f5; */
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  color: #222;
}

.accordion-button {
  background-color: #fff;
  color: #333;
  font-size: 1.1rem;
  border: 1px solid #ddd;
}

.accordion-button:not(.collapsed) {
  background-color: #bcbcbc;
  color: #000;
}

.accordion-body {
  background-color: #fff;
  border: 1px solid #ddd;
  border-top: none;
  color: #555;
}

.according-button:focus {
  box-shadow: none;

}



.faq-section {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
  /* background: #f5f5f5; */
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  color: #222;
}

.accordion-button {
  background-color: #fff;
  color: #333;
  font-size: 1.1rem;
  border: 1px solid #ddd;
}

.accordion-button:not(.collapsed) {
  background-color: #bcbcbc;
  color: #000;
}

.accordion-body {
  background-color: #fff;
  border: 1px solid #ddd;
  border-top: none;
  color: #555;
}

.according-button:focus {
  box-shadow: none;

}

/* footer section */
footer {
  background: #222;
  /* dark background */
  color: #ccc;
  /* light text */
  padding: 50px 0;
  margin-left: -24px;
  margin-right: -24px;

  margin-bottom: -75px;
}


footer h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}

footer p {
  margin-bottom: 10px;
  line-height: 1.6;
}

footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #FFD700;
  /* golden hover */
}

footer .social {
  margin-top: 15px;
}

footer .social li {
  display: inline-block;
  margin-right: 12px;
}

footer .social i {
  font-size: 18px;
  color: #FFD700;
  transition: transform 0.3s ease;
}

footer .social i:hover {
  transform: scale(1.2);
  /* zoom effect on hover */
}

footer .copyright-text {
  margin-top: 20px;
  font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  footer .col-lg-6 {
    margin-bottom: 30px;
    /* spacing between stacked columns */
  }
}

/* Submit message styling */
.submit-message {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
}

.submit_btn_success {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
}

@media (max-width: 576px) {
  footer {
    text-align: center;
    /* center align on small screens */
  }

  footer .social {
    justify-content: center;
  }
}