*{
    margin:0px;
    padding: 0px;
    box-sizing: border-box;
      font-family: 'Poppins', sans-serif;

}


.travel-box {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 140px;
  background: #ffffff;
  border-radius: 18px;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

/* icon + text */
.travel-box i {
  font-size: 42px;
}

.travel-box i,
.travel-box .travel-heading {
  position: relative;
  z-index: 2;
  color:#E40303;
  transition: all 0.4s ease;
}

.travel-heading {
  margin-top: 12px;
  font-weight: 600;
  font-size: 16px;
}

/* hover background image */
.travel-box .hover-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

/* dark overlay */
.travel-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

/* hover effect (normal boxes) */
.travel-box:hover .hover-img,
.travel-box:hover::after {
  opacity: 1;
}

.travel-box:hover i,
.travel-box:hover .travel-heading {
  color: #ffffff;
  transform: scale(1.05);
}

/* ======================
   ACTIVE BOX (DEFAULT COLOR)
====================== */
.travel-box.active {
  background:#E40303;
}

.travel-box.active i,
.travel-box.active .travel-heading {
  color: #ffffff;
}

/* active box normal state → image hidden */
.travel-box.active .hover-img,
.travel-box.active::after {
  opacity: 0;
}

/* 🔥 active box hover → image show */
.travel-box.active:hover .hover-img,
.travel-box.active:hover::after {
  opacity: 1;
}

   .bg{
    background-image: url("../image/area.png");
    background-size: cover;
  
    background-position: center;
    background-repeat: no-repeat
}
.bg1{
  background-image: url("../image/area.png");
    background-size: cover;
  
 
    background-repeat: no-repeat ;

  background-position: top center;

}
.fleetdetails_content {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
}

.fleetdetails_area {
  margin-top: 20px;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== SIDEBAR CARD ===== */
.single_sidebar {
  position: sticky !important;
  top: 20px;
  z-index: 99;
}


.request_quot_area {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-top: 6px solid #E40303;
}

/* ===== HEADER ===== */
.heading_request {
  background: #FEC107;
  padding: 18px 15px;
  color: #fff;
}

.heading_request i {
  font-size: 32px;
  color:#E40303;
}

.heading_request h4 {
  margin: 0;
  font-weight: 400;
}

.heading_request span {
  font-size: 13px;
  opacity: 0.95;
}

.heading_request a {
  color: #fff;
  font-weight: 400;
  text-decoration: underline;
}

/* ===== FORM AREA ===== */
.quote-form {
  padding: 20px;
}

/* Inputs */
.quote-form .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: none;
  height: 42px;
  transition: all 0.3s ease;
}

.quote-form textarea.form-control {
  height: auto;
}

/* Focus effect */
.quote-form .form-control:focus {
  border-color:#E40303;
  box-shadow: 0 0 0 3px rgba(38,165,158,0.15);
}

/* ===== SUBMIT BUTTON ===== */
.quote-form .btn {
  background:#E40303;
  color: #fff;
  border-radius: 30px;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 12px;
  border: none;
  transition: all 0.3s ease;
}

.quote-form .btn:hover {
  background:#E40303;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(38,165,158,0.35);
}

/* ===== SMALL DETAILS ===== */
.quote-form .form-group {
  margin-bottom: 12px;
}

#quote-error {
  color:#E40303;
  font-size: 13px;
  margin-bottom: 10px;
}
/* ===== SIDEBAR CARD ===== */
.single_sidebar {
  position: sticky !important;
  top: 20px;
  z-index: 99;
}

.request_quot_area {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-top: 6px solid #F0AD4E;
}

/* ===== HEADER ===== */
.heading_request {
  background-color:#F0AD4E;
  padding: 18px 15px;
   box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  color:white;
}

.heading_request i {
  font-size: 32px;
  color:#E40303;
}

.heading_request h4 {
  margin: 0;
  font-weight: 600;
}

.heading_request span {
  font-size: 13px;
  opacity: 0.95;
}

.heading_request a {
  color: #fff;
  font-weight: 400;
  text-decoration: underline;
}

/* ===== FORM AREA ===== */
.quote-form {
  padding: 20px;
}

/* Inputs */
.quote-form .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: none;
  height: 42px;
  transition: all 0.3s ease;
}

.quote-form textarea.form-control {
  height: auto;
}

/* Focus effect */
.quote-form .form-control:focus {
  border-color: #E40303;
  box-shadow: 0 0 0 3px rgba(38,165,158,0.15);
}

/* ===== SUBMIT BUTTON ===== */
.quote-form .btn {
  background: #FB735C;
  color: #fff;
  border-radius: 30px;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 12px;
  border: none;
  transition: all 0.3s ease;
}

.quote-form .btn:hover {
  background: #E40303;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(38,165,158,0.35);
}

/* ===== SMALL DETAILS ===== */
.quote-form .form-group {
  margin-bottom: 12px;
}

#quote-error {
  color:#E40303;
  font-size: 13px;
  margin-bottom: 10px;
}


/* ===== HERO SECTION ===== */
#about.fleet {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
}

/* Dark overlay */
#about .home-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.75)
  );
  z-index: 1;
}

/* Content above overlay */
#about .container {
  position: relative;
  z-index: 2;
}

/* Text block */
.single_about_benner {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 60px 30px;
  max-width: 850px;
  margin: auto;
  border-left: 6px solid #E40303;
}

/* Heading */
.single_about_benner h2 {
  font-size: 44px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 15px;
}

/* Accent underline */
.single_about_benner h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background:#E40303;
  margin: 18px auto 0;
  border-radius: 10px;
}

/* Paragraph */
.single_about_benner p {
  font-size: 18px;
  opacity: 0.95;
}

/* Highlight location text */
.single_about_benner span,
.single_about_benner b {
  color: #E40303;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .single_about_benner h2 {
    font-size: 30px;
  }

  .single_about_benner p {
    font-size: 16px;
  }
}
.fleetdetails {
  background: #f7f9fc;
  padding: 60px 0;
}

.fleetdetails_content {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.fleetdetails_content_top img {
  border-radius: 12px;
}

.fleetdetails_content h1 {
  font-weight: 700;
  color: #1a1a1a;
}

.fleetdetails_content h2 {
  font-weight: 400;
  color: #333;
}

.info-box {
  background: #f1f5ff;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.info-box i {
  font-size: 30px;
  color:#E40303;
}

.highlight {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border-left: 5px solid #E40303;
}

.table {
  border-radius: 10px;
  overflow: hidden;
}

.table th {
  background:#E40303;
  color: #fff;
  text-align: center;
}

.table td {
  text-align: center;
  font-weight: 500;
}

.section-icon {
  color:#E40303;
  margin-right: 10px;
}

/* ====== GLOBAL SECTION ====== */
.fleet-modern {
  background: linear-gradient(180deg, #f7fbff, #eef4ff);
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

/* ====== HEADER ====== */
.fleet-header h1 {
  font-size: 38px;
  font-weight: 400;
  color: #1a1a1a;
}

.fleet-header h1 i {
  color:#E40303;
  margin-right: 10px;
}

.fleet-header p {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
}

/* ====== HERO IMAGE ====== */
.fleet-hero img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  margin: 40px 0;
  transition: transform 0.5s ease;
 
}

.fleet-hero img:hover {
  transform: scale(1.02);
}

/* ====== CONTENT BLOCK ====== */
.fleet-content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 60px 0;
}

.fleet-content-block.reverse {
  flex-direction: row-reverse;
}

.content-text h3 {
  font-size: 26px;
  font-weight: 400;
  color: #222;
  margin-bottom: 15px;
}

.content-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

.content-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ====== FEATURE CARDS ====== */
.fleet-features {
  margin-top: 40px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 123, 255, 0.25);
}

.feature-card i {
  font-size: 45px;
  color: #007bff;
  margin-bottom: 15px;
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #555;
}

/* ====== LIST ====== */
.fleet-list {
  list-style: none;
  padding: 0;
}

.fleet-list li {
  font-size: 15px;
  color: #444;
  margin-bottom: 12px;
}

.fleet-list li i {
  color:#E40303;
  margin-right: 10px;
}

/* ====== CTA CARD ====== */
.feature-card.text-center {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
  margin-top: 60px;
}

.feature-card.text-center h3,
.feature-card.text-center p,
.feature-card.text-center i {
  color: #fff;
}

.feature-card.text-center i {
  font-size: 35px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .fleet-content-block {
    flex-direction: column;
  }

  .fleet-header h1 {
    font-size: 30px;
  }
}
 
  .how-it-works-v3 {
    max-width: 960px;
    margin: 60px auto;
    font-family: 'Poppins', sans-serif;
    text-align: center;
  }

  .how-it-works-v3 h2 {
    color:#E40303;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 50px;
  }

  .steps-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 20px;
  }

  /* Step circles */
.step-circle {
  width: 160px;
  height: 160px;          /* 🔑 SAME as width */
  box-sizing: border-box;

  border-radius: 50%;
  background: #fff;
  border: 6px solid #b67979;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
 
  padding: 18px;
  text-align: center;
}

  /* Alternating dotted and solid border */
  .step-circle.dotted {
    border: 5px dotted #E40303;
  }
  .step-circle.solid {
    border: 6px solid #E40303;
  }

  /* Number badge */
  .step-number {
    background:#FB735C;
    color: black;
    font-weight: 400;
    font-size: 22px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    box-shadow: 0 3px 8px rgba(255, 213, 0, 0.6);
       
  }

  /* Icon inside circle */
  .step-icon {
    font-size: 29px;
    color: #24A099;
    margin-bottom: 10px;
  }

  /* Step text below circle */
  .step-text {
    font-weight: 400;
    font-size: 12px;
    color: #444;
    max-width: 110px;
      
  }

  /* Container for arrows */
  .arrow-svg {
    position: absolute;
    top: 50%;
    width: 140px;
    height: 100px;
    overflow: visible;

  }

  /* Positions for each arrow */
  .arrow-svg.arrow1 {
    left: 120px; /* Right after step 1 */
    transform: translateY(-50%);
  }
  .arrow-svg.arrow2 {
    left: 360px; /* Right after step 2 */
    transform: translateY(-50%);
  }
  .arrow-svg.arrow3 {
    left: 600px; /* Right after step 3 */
    transform: translateY(-50%);
  }

  /* Arrow path style */
  .arrow-path {
    stroke:#E40303;
    stroke-width: 4;
    fill: none;
    stroke-dasharray: 6 4;
  }

  /* Arrow head */
  .arrow-head {
    fill:#E40303;
  }

  /* Responsive */
  @media (max-width: 640px) {
    .steps-wrapper {
      flex-direction: column;
      gap: 40px;
    }
    .arrow-svg {
      display: none;
    }
  }
  .faq-section {
    max-width: 800px;
    margin: 60px auto;
    font-family: 'Poppins', sans-serif;
    color:black;
    padding: 0 15px;
  }

  .faq-title {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    color:#E40303;
    margin-bottom: 40px;
  }

  /* Individual FAQ item */
  .faq-item {
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(36,160,153,0.1);
    overflow: hidden;
    border-left: 5px solid #E40303 ;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
  }

  .faq-item:hover {
    box-shadow: 0 6px 20px rgba(250,115,53,0.3);
  }

  /* Question header */
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 400;
    position: relative;
  }

  /* Plus/minus icon */
  .faq-question::after {
    content: "+";
    font-size: 28px;
    color:#E40303;
    font-weight: 400;
    transition: transform 0.3s ease;
  }

  /* Rotate plus to minus when active */
  .faq-item.active .faq-question::after {
    content: "−";
    transform: rotate(180deg);
  }

  /* Answer content */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: #555;
    font-size: 16px;
    line-height: 1.5;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }

  /* Show answer when active */
  .faq-item.active .faq-answer {
    max-height: 200px; /* Adjust depending on content */
    padding: 16px 24px 24px;
  }

  /* CTA Section */
  .faq-cta {
    text-align: center;
    margin-top: 50px;
    background:#F0AD4E;
    color:white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(187, 29, 29, 0.4);
  }

  .faq-cta h3 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 400;
  }

  .faq-cta p {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
  }

  .faq-cta a {
    background:#FEC107;
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(250,115,53,0.6);
    transition: background 0.3s ease;
    display: inline-block;
  }

  .faq-cta a:hover {
    background: #E40303;
  }

  /* Responsive */
  @media (max-width: 480px) {
    .faq-question {
      font-size: 16px;
    }

    .faq-cta h3 {
      font-size: 24px;
    }

    .faq-cta p {
      font-size: 16px;
    }
  }
 

    .why-choose-section {
      max-width: 1500px;
      margin: 0 auto;
      background: white;
      border-radius: 16px;
      box-shadow: 0 14px 32px rgba(36, 160, 153, 0.15);
      padding: 48px 40px;
      text-align: center;
      position: relative;
    }

    .why-choose-section h2 {
      font-size: 34px;
      font-weight: 400;
      color:#E40303;
      margin-bottom: 30px;
      position: relative;
      display: inline-block;
      padding-bottom: 12px;
    }

    /* Accent underline below heading */
    .why-choose-section h2::after {
      content: '';
      width: 60px;
      height: 4px;
      background:#E40303;
      border-radius: 2px;
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
    }

    .why-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .why-list li {
      display: flex;
      align-items: center;
      font-size: 18px;
      margin-bottom: 22px;
      font-weight: 600;
      color: #02444e;
      position: relative;
      padding-left: 48px;
      border-bottom: 1px solid #f0f0f0;
      cursor: default;
      transition: color 0.3s ease;
    }

    /* Last item no border */
    .why-list li:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .why-list li:hover {
      color:#E40303;
    }

    /* Check icon inside circle */
    .why-list li::before {
      font-family: 'Font Awesome 5 Free';
      font-weight: 400;
      content: '\f058'; /* check icon */
      color: white;
      font-size: 14px;
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      background:#E40303;
      border-radius: 50%;
      width: 26px;
      height: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease;
    }

    .why-list li:hover::before {
      background: #E40303;
      transform: translateY(-50%) scale(1.15);
    }

    /* Responsive */
    @media (max-width: 480px) {
      .why-choose-section {
        padding: 32px 20px;
      }

      .why-choose-section h2 {
        font-size: 26px;
      }

      .why-list li {
        font-size: 16px;
        padding-left: 40px;
        margin-bottom: 18px;
      }

      .why-list li::before {
        width: 22px;
        height: 22px;
        font-size: 12px;
        left: 12px;
      }
    }




        /* Itinerary Timeline */
        .timeline {
            position: relative;
            margin: 2rem 0;
            padding-left: 30px;
        }
        .timeline::before {
            content:'';
            position:absolute;
            top:0;
            left:15px;
            width:4px;
            height:100%;
            background:#E40303;
        }
        .timeline-item {
            position: relative;
            margin-bottom:2rem;
            padding-left:30px;
        }
        .timeline-item::before {
            content:'';
            position:absolute;
            left:-1px;
            top:0;
            width:20px;
            height:20px;
            background:#E40303;
            border-radius:50%;
        }
        .timeline-item h3 {
            margin-bottom:0.5rem;
            color:#003366;
        }
        .timeline-item p {line-height:1.5;}

        /* Highlights */
        .highlights {
            display:grid;
            grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
            gap:1.5rem;
            margin:3rem 0;
        }
        .highlight-card {
            background:white;
            padding:1.5rem;
            border-radius:8px;
            box-shadow:0 4px 6px rgba(0,0,0,0.1);
            text-align:center;
            transition:0.3s;
        }
        .highlight-card:hover {transform:translateY(-5px);}
        .highlight-card h4 {margin-bottom:1rem; color:#E40303;}

        /* Gallery */
        .gallery {
            display:grid;
            grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
            gap:1rem;
            margin:3rem 0;
        }

        /* Booking Form */
        .booking {
            background:#003366;
            color:white;
            padding:3rem 2rem;
            border-radius:8px;
            text-align:center;
        }
        .booking h2 {margin-bottom:1.5rem;}
        .booking form {display:grid; gap:1rem; max-width:500px; margin:0 auto;}
        .booking input, .booking select, .booking textarea {
            padding:0.8rem;
            border:none;
            border-radius:5px;
        }
        .booking button {margin-top:1rem; background:#E40303; border:none; padding:0.8rem; border-radius:5px; cursor:pointer; font-weight:500; transition:0.3s;}
        .booking button:hover {background:#e68a00;}

     
        /* Responsive */
        @media(max-width:768px) {
            header h1 {font-size:2rem;}
            .timeline {padding-left:20px;}
            .timeline::before {left:10px;}
            .timeline-item::before {left:-6px;}
        }


.why-choose-us {
  padding: 0px 20px;
  
  text-align: center;
}

.why-choose-us h1 {
  font-size: 94px;
  margin-bottom: 10px;
  color:black;
}

.subtitle {
  color: #666;
  margin-bottom: 40px;
  font-size: 1rem;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 0.95rem;
  color: #555;
}

/* Responsive */
@media (max-width: 992px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features {
    grid-template-columns: 1fr;
  }
}
.nav>li>a {
    position: relative;
    display: block;
padding: 20px 12px !important;
	
}
.bg1{
  background-image: url("./assets/images/area.png");
    background-size: cover;
  
 
    background-repeat: no-repeat ;

  background-position: top center;

}
.para{
  font-size:17.6px; 
  line-height:1.5;
  font-weight: 500;
  margin-bottom:20px;
  color:black;
}
  .package-overview {
  padding: 0px 20px;
 
  font-family: Arial, sans-serif;
}

.package-overview h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  color: #1f2937;
}

.package-overview .subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 40px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.overview-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-card span {
  font-size: 36px;
  display: block;
  margin-bottom: 15px;
}

.overview-card h4 {
  font-size: 18px;
  color: #111827;
  margin-bottom: 8px;
}

.overview-card p {
  color: #4b5563;
  font-size: 15px;
}

.overview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

/* Mobile */
@media (max-width: 576px) {
  .package-overview h2 {
    font-size: 26px;
  }
}
key-highlights {
  padding: 40px 20px;
  background-color: transparent;
  font-family: Arial, sans-serif;
}

.key-highlights h2 {
  text-align: center;
  font-size: 34px;
  color: #1f2937;
  margin-bottom: 10px;
}

.key-highlights .subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 45px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.highlight-card {
  background: #f9fafb;
  border-radius: 18px;
  overflow: hidden;
 box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h4 {
  font-size: 20px;
  color: #111827;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.5;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

/* Mobile */
@media (max-width: 576px) {
  .key-highlights h2 {
    font-size: 26px;
  }
  .highlight-card img {
    height: 180px;
  }
}
.route-map {
  padding: 0px 20px;
  
  font-family: Arial, sans-serif;
}

.route-map h2 {
  text-align: center;
  font-size: 34px;
  color: #1f2937;
  margin-bottom: 10px;
}

.route-map .subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 45px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.route-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.route-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.route-flow {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.route-flow h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #111827;
}

.route-flow ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.route-flow ul li {
  padding: 12px 0;
  font-size: 16px;
  color: #374151;
  position: relative;
  padding-left: 25px;
}

.route-flow ul li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .route-wrapper {
    grid-template-columns: 1fr;
  }

  .route-map h2 {
    font-size: 26px;
  }
}
.itinerary {
  padding: 70px 20px;
  background: #f9fafb;
  font-family: Arial, sans-serif;
}

.itinerary h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  color: #1f2937;
}

.itinerary .subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 40px;
}

.container {

  margin: auto;
}

.accordion-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 17px;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header .icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #374151;
  transition: max-height 0.35s ease;
}

.accordion-body p {
  margin: 12px 0;
}

/* Active state */
.accordion-item.active .accordion-body {
  max-height: 300px;
  padding-bottom: 15px;
}

.accordion-item.active .icon {
  transform: rotate(45deg);
}

/* Mobile */
@media (max-width: 576px) {
  .itinerary h2 {
    font-size: 26px;
  }
}














