* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: 100%;
overflow-x: hidden;
scroll-behavior: smooth;
}

 .top-bar {
      background: #f8f8f8;
      padding: 8px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
    }

    .top-bar .contact-info {
      display: flex;
      gap: 20px;
    }

    .top-bar .social-icons a {
      margin-left: 10px;
      color: #333;
      text-decoration: none;
    }

    .main-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: white;
      padding: 15px 40px;
      border-bottom: 1px solid #ddd;
      position: relative;
    }

    .logo img {
      height: 60px;
    }

    .main-nav {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .main-nav a {
      text-decoration: none;
      color: #222;
      font-weight: 500;
      position: relative;
    }

    .main-nav a:hover {
      color: #c78145;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #ffffff;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      z-index: 1;
      top: 30px;
      left: 0;
      padding: 10px;
      min-width: 160px;
    }

    .dropdown-content a {
      display: block;
      padding: 8px 12px;
      color: #333;
      text-decoration: none;
    }

    .dropdown-content a:hover {
      background-color: #f2f2f2;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    .menu-toggle {
      display: none;
      font-size: 24px;
      cursor: pointer;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .top-bar .contact-info {
        display: none;
      }

      .main-nav {
        flex-direction: column;
        align-items: flex-start;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: none;
        padding: 20px;
        border-top: 1px solid #ddd;
      }

      .main-nav.open {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }

      .dropdown:hover .dropdown-content {
        position: static;
        display: block;
        box-shadow: none;
        padding-left: 10px;
      }
    }


.banner {
  background: url('image/b3.jpg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

/* Optional: Add overlay for readability */
.banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.banner h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.banner p {
  font-size: 1.2rem;
}

/* 📱 Mobile Responsiveness */
@media (max-width: 768px) {
  .banner {
    height: 80vh;
    padding: 40px 15px;
  }

  .banner h1 {
    font-size: 2rem;
  }

  .banner p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .banner {
    height: 70vh;
  }

  .banner h1 {
    font-size: 1.6rem;
  }

  .banner p {
    font-size: 0.95rem;
  }
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.content {
  max-width: 800px;
  text-align: center;
}

.content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.content h1 {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background-color: #3b2f2f;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #1e1515;
}

/* Responsive Design */
@media (min-width: 768px) {
  .content h1 {
    font-size: 2.5rem;
  }

  .content h3 {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .content h1 {
    font-size: 3rem;
  }
}

 .form-section {
      background-color: #f9f9f9;
      padding: 60px 20px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .booking-form {
      background-color: #fff;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      padding: 30px;
      border-radius: 12px;
      max-width: 800px;
      width: 100%;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
    }

    .booking-form input,
    .booking-form select {
      padding: 12px 15px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 16px;
      width: 100%;
    }

    .booking-form button {
      grid-column: 1 / -1;
      padding: 14px;
      background-color: #3b2f2f;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .booking-form button:hover {
      background-color: #241a1a;
    }

    @media (max-width: 600px) {
      .booking-form {
        grid-template-columns: 1fr;
      }
    }


.trusted-section {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid #ddd;
}

.trusted-section h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.trusted-section h2 span {
  background-color: #f9f6f4;
  padding: 0 15px;
  color: #3b2f2f;
  font-weight: bold;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.swiper {
  padding: 0 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-section {
  padding: 20px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.about-image {
  flex: 1 1 45%;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-content {
  flex: 1 1 50%;
}

.about-content h5 {
  color: #6c4b3d;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 28px;
  color: #2c1d1b;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.btn-dark {
  display: inline-block;
  background-color: #3b2f2f;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-dark:hover {
  background-color: #5c443d;
}

.features-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.section-title {
  font-size: 28px;
  margin-bottom: 40px;
  color: #222;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-box {
  flex: 1 1 220px;
  max-width: 250px;
  text-align: center;
}

.icon-circle {
  background-color: #007bff;
  color: #fff;
  font-size: 28px;
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.feature-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.feature-box p {
  font-size: 14px;
  color: #555;
}

.caravan-section {
  padding: 20px 20px;
  text-align: center;
}

.subtitle {
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 5px;
}

.section-title {
  font-size: 28px;
  margin-bottom: 40px;
  color: #222;
}

.caravan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 2fr));
  gap: 25px;
}

.caravan-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.caravan-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.caravan-card img {
  width: 100%;
  height: auto;
  display: block;
}

.caravan-title {
  padding: 12px;
  font-weight: 600;
  color: #222;
}

.testimonial-section {
  background: url('images/testimonial-bg.jpg') no-repeat center center/cover;
  padding: 80px 20px;
  position: relative;
}

.testimonial-overlay {
  background: rgba(255, 255, 255, 0.85);
  padding: 60px 20px;
}

.testimonial-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.subtitle {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #444;
  font-size: 14px;
}

.testimonial-header h2 {
  font-size: 32px;
  color: #333;
  margin-top: 10px;
  margin-bottom: 40px;
}

.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

@media (min-width: 768px) {
  .testimonial-cards {
    flex-direction: row;
    justify-content: center;
  }
}

    .testimonial-section {
  background: url('images/testimonial-bg.jpg') no-repeat center center/cover;
  padding: 80px 20px;
  position: relative;
}

.testimonial-overlay {
  background: rgba(255, 255, 255, 0.85);
  padding: 60px 20px;
}

.testimonial-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.subtitle {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #444;
  font-size: 14px;
}

.testimonial-header h2 {
  font-size: 32px;
  color: #333;
  margin-top: 10px;
  margin-bottom: 40px;
}

.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

@media (min-width: 768px) {
  .testimonial-cards {
    flex-direction: row;
    justify-content: center;
  }
}

  .testimonial-section {
      padding: 20px 20px;
      background: #f5f5f5;
    }

    .testimonial-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .testimonial-header .subtitle {
      font-weight: 600;
      color: #555;
    }

    .testimonial-header h2 {
      font-size: 32px;
      font-weight: 700;
      margin: 0;
      color: #222;
    }

    .testimonial-card {
      background: white;
      border-radius: 10px;
      padding: 24px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      height: 100%;
    }

    .testimonial-text {
      font-size: 15px;
      color: #555;
      margin-bottom: 20px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
    }

    .testimonial-author img{
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 12px;
    }

    .testimonial-card {
  min-height: 230px; /* Adjust based on your tallest testimonial */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


    .avatar-initial {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #0a9440;
      color: white;
      font-weight: bold;
      font-size: 18px;
      border-radius: 50%;
      width: 48px;
      height: 48px;
      margin-right: 12px;
    }

    .author-info .name {
      font-weight: 700;
      color: #0a9440;
    }

    .author-info .name.orange {
      color: #ff5722;
    }

    .swiper {
      padding-bottom: 40px;
    }

    .swiper-pagination {
      text-align: center;
      padding-bottom: 40px;
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
      height: auto;
    }

.steps-section {
  padding: 20px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.subtitle {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #222;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-box {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.step-box i {
  font-size: 32px;
  color: #5b2c06;
  margin-bottom: 15px;
}

.step-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.step-box p {
  font-size: 14px;
  color: #555;
}

/* Responsive */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}


.caravans-section {
  padding: 20px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.subtitle {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}

.title {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
  color: #222;
}

.caravans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 10px;
}

.caravan-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 10px;
  transition: transform 0.3s ease;
}

.caravan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.caravan-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.caravan-card .desc {
  font-size: 14px;
  margin: 10px 0 5px;
  color: #444;
}

.caravan-card .class {
  font-weight: bold;
  font-size: 16px;
  color: #000;
  border-top: 1px solid #ccc;
  padding-top: 8px;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 992px) {
  .caravans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .caravans-grid {
    grid-template-columns: 1fr;
  }
}

.hero {
  background-image: url('image/bg1.jpg'); /* Replace with actual image path */
  background-size: cover;
  background-position: center;
  color: white;
  padding: 60px 20px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
  gap: 40px;
  flex-wrap: wrap;
}

.text-block {
  flex: 1;
  min-width: 280px;
}

.text-block h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.text-block p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.text-block ul {
  list-style: none;
  padding-left: 0;
  color: #f0f0f0;
}

.text-block ul li {
  margin-bottom: 8px;
}

.form-block {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  color: #333;
  flex: 1;
  min-width: 280px;
  max-width: 400px;
}

.form-block h3 {
  background-color: #3b1e0a;
  color: white;
  margin: -25px -25px 20px -25px;
  padding: 15px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  text-align: center;
  font-size: 20px;
}

.form-block form {
  display: flex;
  flex-direction: column;
}

.form-block input,
.form-block select {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-block button {
  background-color: #3b1e0a;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-block button:hover {
  background-color: #2a1407;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
  }

  .text-block,
  .form-block {
    width: 100%;
  }
}

.footer {
  background-color: #3a2418;
  color: white;
  padding: 40px 20px;
  font-family: sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1300px;
  margin: auto;
}

.footer-about {
  flex: 1 1 250px;
}

.footer-about h2 {
  font-size: 28px;
  color: white;
}

.footer-about p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  margin-right: 10px;
  font-size: 18px;
  color: #ebebeb;
  border: 1px solid #ffffff;
  padding: 8px;
  border-radius: 5px;
  display: inline-block;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: white;
  color: #3a2418;
}

.footer-links {
  display: flex;
  flex: 2 1 400px;
  justify-content: space-between;
}

.footer-links a {
  display: block;
  color: white;
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact {
  flex: 1 1 250px;
}

.footer-contact h3 {
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.footer-contact p {
  font-size: 14px;
  margin: 10px 0;
}

.footer-contact i {
  margin-right: 8px;
}

.footer-bottom {
  border-top: 1px solid #2c1a12;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  position: relative;
}

.footer-bottom a {
  color: #61dafb;
  text-decoration: none;
}

.whatsapp-icon {
  position: absolute;
  left: 20px;
  bottom: 10px;
  background-color: #3a2418;
  color: white;
  border: 4px solid #2c1a12;
  padding: 12px;
  border-radius: 50%;
  font-size: 22px;
}

.map-section{
  margin-top: 20px;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    padding-bottom: 0;
}

.banner {
  position: relative;
  z-index: 0; /* Ensures base layer */
}

.banner::before {
  z-index: 1;
}

.overlay {
  position: relative;
  z-index: 2; /* Bring it above the dark overlay */
}