<style>
    /* Reset and body */
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: #3b2f1e;
      background-color: #faf7f2;
      scroll-behavior: smooth;
    }

    header {
      background-color: #c2a36b;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    header h1 {
      margin: 0;
      color: #fff;
      font-size: 24px;
    }

    nav a {
      color: #fff;
      margin-left: 15px;
      text-decoration: none;
      font-weight: bold;
    }

    nav a:hover {
      text-decoration: underline;
    }

    /* Swiper */
    .swiper {
      height: 60vh;
      margin-bottom: 50px;
    }

    .swiper-slide {
      height: 60vh;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      position: relative;
    }

    .hero-content {
      background: rgba(0, 0, 0, 0.45);
      padding: 25px;
      border-radius: 12px;
      color: #fff;
      text-align: left;
      max-width: 480px;
      margin-left: 40px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .hero-content h2 {
      font-size: 28px;
      margin-bottom: 10px;
    }

    .hero-content p {
      font-size: 16px;
    }

    section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .section-title {
      text-align: center;
      font-size: 28px;
      margin-bottom: 30px;
    }











    /* Booking Form */
    .transfer-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      align-items: center;
      margin-bottom: 40px;
    }

    .transfer-image {
      height: 350px;
      background: url('images/car.jpg') center/cover;
      border-radius: 12px;
    }

    .booking-form {
      display: grid;
      gap: 12px;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea {
      padding: 10px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 14px;
    }

    .btn {
      background-color: #3399ff;
      color: #fff;
      padding: 12px 25px;
      border: none;
      border-radius: 25px;
      font-size: 16px;
      cursor: pointer;
      font-weight: bold;
      text-decoration: none;
      transition: all 0.3s;
    }

    .btn:hover {
      background-color: #1e7fd3;
      transform: translateY(-3px);
    }

    /* Tours */
    .tours {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }

    .tour-card {
      background-color: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
    }

    .tour-card:hover {
      transform: translateY(-5px);
    }

    .tour-image {
      height: 180px;
      background-size: cover;
      background-position: center;
      transition: transform 0.3s;
    }

    .tour-card:hover .tour-image {
      transform: scale(1.05);
    }

    .tour-content {
      padding: 15px;
    }

    .tour-content h3 {
      margin-top: 0;
      margin-bottom: 10px;
    }

    .tour-content a {
      display: inline-block;
      margin-top: 10px;
      text-decoration: none;
    }

    .tour-content a:hover {
      text-decoration: none;
    }

    /* Contact Details */
    .contact-details {
      background: #fff;
      padding: 30px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      margin-bottom: 40px;
    }

    .contact-details i {
      color: #3399ff;
      margin-right: 8px;
      transition: transform 0.3s;
    }

    .contact-details div {
      margin: 15px;
      display: inline-block;
    }

    .contact-details div:hover i {
      transform: scale(1.2);
    }

    /* Testimonials Section */
    .testimonials {
      background-color: #f5efe6;
      padding: 60px 40px;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: auto;
    }

    .testimonial-card {
      background: #ffffff;
      padding: 30px;
      border-radius: 14px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .testimonial-card p {
      font-style: italic;
      line-height: 1.6;
      margin-bottom: 15px;
      color: #3b2f1e;
    }

    .testimonial-card h4 {
      margin: 0;
      color: #00BFFF;
      font-weight: bold;
    }





    /* Links Panel */
    .links-panel {
      background: #e6d3a3;
      padding: 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      text-align: left;
    }

    .links-panel h4 {
      margin-bottom: 10px;
    }

    .links-panel a {
      display: block;
      color: #3b2f1e;
      text-decoration: none;
      margin: 5px 0;
      font-weight: bold;
    }

    .social-links a {
      display: inline-block;
      margin-right: 12px;
      font-size: 22px;
      color: #3399ff;
      transition: transform 0.3s;
    }

    .social-links a:hover {
      transform: scale(1.1);
      color: #1e7fd3;
    }

    footer {
      text-align: center;
      padding: 15px;
      background: #c2a36b;
      color: #fff;
    }

    /* WhatsApp Button */
    .whatsapp-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #25D366;
      color: #fff;
      padding: 14px 22px;
      border-radius: 50px;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 999;
    }

    /* Responsive */
    @media(max-width:1024px) {
      .transfer-wrap {
        grid-template-columns: 1fr;
      }
    }

    @media(max-width:768px) {
      header {
        flex-direction: column;
        align-items: flex-start;
      }

      header nav {
        margin-top: 10px;
      }

      .hero-content {
        margin-left: 20px;
      }
    }

    @media(max-width:480px) {
      .hero-content h2 {
        font-size: 22px;
      }

      .hero-content p {
        font-size: 14px;
      }
    }
  </style>



    