/* ====================== General Layout ====================== */
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

/* ====================== Top Green Bar ====================== */
.top-icon-bar {
  background-color: #63ab45;
}
.top-icon-bar .container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start; /* icons on left */
  align-items: center;
  gap: 15px;
}
.top-icon-bar i {
  font-size: 18px !important;
  color: #fff;
}

/* ====================== Middle Logo Row ====================== */
.header-middle {
  background-color: #fff;
}
.brand-logo {
  height: 140px;
  object-fit: contain;
}
.badge-icon {
  height: 130px;
  object-fit: contain;
}
.icon-headset {
  height: 100px;
  object-fit: contain;
}
.contac .text-muted {
  text-align: left;
  font-size: 15px;
  font-weight: bold;
}
.contac .text-info {
  font-size: 30px;
  font-weight: 600;
  font-style: italic;
}
@media (min-width: 1200px) {
  .container.custom-wide {
    max-width: 1320px !important;
  }
}

/* ====================== Navigation Bar ====================== */

.navbar-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -15px;
  position: relative;
  z-index: 9999;
}

.main-navbar {
  background-color: #1d231f; 
  border-radius: 12px;
  width: 70%;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.main-navbar .navbar-nav {
  margin-left: 0 !important;
  margin-right: auto !important;
}

.navbar-nav .nav-link {
  color: #ffffff;
  font-weight: 500;
  font-size: 16px; /* slightly larger font */
  padding: 18px 22px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #63ab45;
}

.navbar-nav .nav-link.active {
  color: #63ab45;
}

.navbar-wrapper,
.main-navbar,
.dropdown-menu {
  z-index: 9999 !important;
}

/* ====================== Dropdown & Submenu ====================== */
.dropdown-menu {
  background-color: #f9f9f9;
  border: none;
  border-radius: 10px;
  padding: 6px 0;
  min-width: 200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  position: absolute;
  z-index: 9999;
}

/* Dropdown links */
.dropdown-item {
  color: #000000;
  font-size: 17px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between; /* keep text left, arrow right */
}

.dropdown-item:hover {
  color: #f4731f;
  background-color: rgba(244, 115, 31, 0.08);
}

/* Submenu container */
.dropdown-submenu {
  position: relative;
}

/* Submenu menu */
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: 0;
  margin-left: 0;
  border-radius: 10px;
  display: none;
  position: absolute;
  z-index: 9999;
  background: #f9f9f9;
}

/* Submenu arrow */
.submenu-toggle {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  color: #000;
  margin-left: 8px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.submenu-toggle:hover {
  color: #f4731f;
}

/* Rotate arrow when submenu is open */
.submenu-toggle.open {
  transform: rotate(90deg);
}

/* Keep dropdown open on hover (desktop) */
.dropdown-menu li:hover > .dropdown-menu {
  display: block;
}

.nav-item.dropdown:hover > .dropdown-menu {
  display: block;
}

/* Force visibility when Bootstrap adds .show */
.dropdown-menu.show {
  display: block !important;
  position: absolute !important;
}

/* Ensure links are clickable inside dropdowns */
.dropdown-item,
.nav-link {
  pointer-events: auto !important;
  cursor: pointer !important;
}


/* ====================== Mobile Navbar ====================== */
.mobile-navbar {
  background: #1d231f;
  padding: 5px 50px;      /* spacing left/right */
  margin: 0 auto;          /* center it */
  max-width: 100%;          /* not full edge-to-edge */
    /* rounded look */
  position: relative;
  z-index: 20;             /* above breadcrumb */
  box-shadow: 0 2px 6px rgba(0,0,0,0.3); /* prominent */
}
.mobile-navbar .d-flex {
  justify-content: space-between;
  align-items: center;
}
.custom-toggler {
  border: 1px solid #fff;   /* make visible */
  border-radius: 6px;
  padding: 3px 3px;
}
.custom-toggler .navbar-toggler-icon {
  width: 2rem;
  height: 2rem;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.mobile-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-contact .icon-headset-sm {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.mobile-contact small {
  font-size: 12px;
  color: #ccc;
}
.mobile-contact .mobile-number {
  color: #00aee0;
  font-weight: 600;
  font-size: 15px;
}
.mobile-navbar .navbar-nav .nav-link {
  padding: 8px 0;
  color: #fff;
}

/* ====================== Responsive ====================== */
/* Default: no padding for ≤912px */
.header-middle {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* Only apply py-4 (≈1.5rem top/bottom) on >912px */
@media (min-width: 913px) {
  .header-middle {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}

@media (max-width: 1380px) {
  .main-navbar {
    width: 100%;
    border-radius: 10px;
  }
}


@media (max-width: 912px) {
  .support-contact { display: none !important; }
  .brand-logo { height: 120px !important; }
  .badge-icon { height: 100px !important; }

  /* ====================== Top Green Bar ====================== */
.top-icon-bar .container {
   align-items: center;
    justify-content: center;
}

}
@media (max-width: 767px) {
  .brand-logo { height: 100px !important; }
  .badge-icon { height: 80px !important; }
  .main-navbar { width: 100%; border-radius: 0; }
}
@media (max-width: 576px) {
  .brand-logo { height:66px !important; }
  .badge-icon { height:66px !important;}
   .header-middle .container {
    justify-content: space-around !important;
  }
  
}

/* ====================== Navbar Visibility ====================== */
.desktop-navbar { display: block; }
.mobile-navbar { display: none; }

@media (max-width: 912px) {
  .desktop-navbar { display: none !important; }
  .mobile-navbar { display: block !important; }
}


/* =================Start ENQUIRE NOW BUTTON STYLES ================= */
.enquire-btn-wrapper {
  position: fixed;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  z-index: 9999;
}

.enquire-btn {
  display: inline-block;
  background: #63ab45; /* Green background */
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 17px;
  border-radius: 0 0px 0px 0;
  font-size: 15px;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  writing-mode: vertical-rl; /* vertical text */
  transition: background 0.2s ease, transform 0.15s ease;
}
/* =================End ENQUIRE NOW BUTTON STYLES ================= */





/* ======== Main Offcanvas style css start from here ============== */
#mobileMenu {
  background-color: #000 !important;
  width: 300px;
}
/* === Logo === */
#mobileMenu .offcanvas-logo img {
  max-height: 70px;
}
#mobileMenu .offcanvas-body {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
/* === Nav Links (Top Level) === */
#mobileMenu .nav-link {
  background-color: #fff;
  color: #000 !important;
  font-weight: 500;
  border-radius: 6px;
  margin: 2px 0; /* smaller gap */
  padding: 10px 14px;
  transition: all 0.3s ease;
  display: block;
  line-height: 1.3;
}
/* Hover state for orange headers */
#mobileMenu .collapse > .navbar-nav > .nav-item > .nav-link:hover {
  background-color: #ff8a42;
}
/* === Remove default Bootstrap collapse borders === */
#mobileMenu .navbar-nav .nav-item {
  border: none;
}

#mobileMenu .btn-close {
  background-color: #fff !important; /* white circular background */
  border-radius: 50%;
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg); /* white X */
  opacity: 1;
}

/* ======================Header Ending   ======================== */


/* ===================Slider Section===================*/
.slider-section {
  width: 100%;
  height: 68vh; /* smaller height */
  position: relative;
  overflow: hidden;
  margin-top: -40px;
  font-family: Arial, sans-serif;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;         /* image covers whole slide */
  background-position: center center; /* keep image center aligned */
  background-repeat: no-repeat;   /* prevent tiling */
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

/* Active slide visible */
.slider-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Dark overlay on each slide */
.slider-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45); /* darkness overlay */
  z-index: 1;
}

/* Content */
.slider-content {
  position: absolute;
  top: 20%;
  left: 10%;
  color: #fff;
  max-width: 450px;
  z-index: 2; /* above overlay */
}

.slider-content h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
  animation: fadeInUp 1s ease;
  margin-bottom: 8px; 
}

.slider-content p {
  font-size: 15px;
  font-weight: 300;
}

/* =================== Orange Tag =================== */
.slider-content .tag {
  display: inline-block;
  background: #f4801f;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  padding: 10px 14px;
  border-radius: 3px;
  transform: rotate(-20deg); /* small tilt only */
  margin-bottom: 15px;
  display: inline-block;
}



/* =================== Slider Button =================== */
/* Base button */
.btn-animated {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px; /* more spacing */
  font-size: 14px; /* bigger text */
  font-weight: 400;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  padding-right: 60px; /* more space for bigger arrow */
}

/* Text */
.btn-animated .btn-text {
  position: relative;
  z-index: 2;
}

/* Line */
.btn-animated .btn-line {
  flex: 1;
  height: 1px;
  background: #fff;
  position: relative;
}

/* Circle */
.btn-animated .btn-circle {
  position: absolute;
  top: 50%;
  left: 90px;
  width: 50px;   
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Arrow */
.btn-animated .btn-arrow {
  font-size: 50px;   /* bigger arrow */
  font-weight: 500;
  color: #f4801f;
  position: relative;
  z-index: 2;
   align-items: center;
  justify-content: center;
}

/* Hover Effect: move circle towards arrow */
.btn-animated:hover .btn-circle {
  left: calc(100% - 95px); /* moves near the arrow */
}

/* =================== Number Navigation =================== */
.slider-nav {
  position: absolute;
  top: 50%;
  right: 100px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #fff;
  font-size: 18px;
  z-index: 3;
}

.slider-nav span {
  cursor: pointer;
  opacity: 0.6;
  position: relative;
  padding-left: 20px;
}

.slider-nav span.active {
  opacity: 1;
}

.slider-nav span.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 1px;
  background: #fff;
}

/* =================== Fade-in animation =================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 912px) {
  .slider-section {
    display: none !important;
  }
}

/*============================End of Slider===========================*/


/*============================Start Of Booking Form===========================*/
.cus-booking-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
    position: relative;
  z-index: 5;
 margin-top: -150px;
}

.cus-booking-container {
  background: #000;
  border-radius: 12px;
  padding: 20px;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.cus-form-title {
  text-align: center;
  color: #fff;
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 600;
}

/* Tabs */
.cus-form-tabs {
  display: flex;
  justify-content: flex-start; /* left aligned */
  list-style: none;
  padding: 0;
  margin: 0 0 0px;
  flex-wrap: wrap;
}
.cus-form-tabs li {
  padding: 15px 15px;
  margin: 0 8px 8px 0;
  background: #f5f5f5;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
}
.cus-form-tabs li.active {
  background: #4CAF50;
  color: #fff;
}

/* Forms */
.cus-form-content {
  background: #1e1e1e;
  padding: 10px;
  border-radius: 0 0 12px 12px;
}
.cus-form-tab { display: none; }
.cus-form-tab.active { display: block; }

.cus-inquiry-form {
  width: 100%;
}
.cus-form-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.cus-inquiry-form input,
.cus-inquiry-form select {
  width: 100%;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 4px;
}
.cus-submit-btn {
  background: #f57224;
  border: none;
  color: #fff;
  padding: 10px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}


/* Flight type radios */
.cus-flight-type {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.cus-flight-type input[type="radio"] {
  margin-right: 6px;
  accent-color: #f57224; /* orange tick */
}

/* Adult / Child / Infant row = 3 equal columns */
.cus-three-cols {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* Keep radio + label text inline */
.cus-flight-type label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap; /* prevent wrapping */
  color: #fff;
}

/* Fix: keep Adult / Child / Infant in same row on mobile */
.cus-form-row.cus-three-cols {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* Responsive */
@media (max-width: 991px) {
  .cus-form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cus-form-row {
     grid-template-columns: repeat(2, 1fr) !important;
  }
  .cus-form-tabs {
    flex-direction: column;
  }
  .cus-form-tabs li {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 1280px) {
 .cus-booking-section {
    margin-top: -60px !important;  /* reset on mobile */
  }
}
@media (max-width: 768px) {
 .cus-booking-section {
    margin-top: -20px !important;  /* reset on mobile */
  }
}
@media (max-width: 768px) {
 .cus-booking-container {
    border-radius: 0;
  }
}

/* Form fields base styles */
.cus-inquiry-form input,
.cus-inquiry-form select {
  width: 100%;
  padding: 8px 10px;     /* smaller size */
  font-size: 14px;       /* smaller text */
  border: none;
  outline: none;
  border-radius: 2px;
  height: 35px;          /* equal height for all fields */
  box-sizing: border-box;
}

/* Submit button consistent height */
.cus-submit-btn {
  background: #f57224;
  border: none;
  color: #fff;
  padding: 10px;
  height: 35px;           /* match input height */
  border-radius: 2px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}

/* Mobile: 2 per row (50% width) */
@media (max-width: 575px) {
  .cus-form-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px; /* slightly tighter spacing */
  }
}

/*============================start who we are ===========================*/
.who-we-are {
  margin-left:15px;
  margin-right: 15px;
  display: flex;
  justify-content: center; 
}
.who-container {
  position: relative;
  max-width: 1320px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-image: url('../images/who.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10px;
  color: #fff;
}

/* Overlay */
.who-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #63AB45;
  z-index: 1;
  opacity: 0.85;
}

.who-content {
  position: relative;
  z-index: 3;
}

.info-section {
  position: relative;
  z-index: 2;
}

/* Titles */
.section-subtitle {
  font-size: 30px;
  font-weight: 600;
  padding-top: 10px;
}

.section-title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 40px;
}

.section-descc {
  font-weight: 400;
  font-size: 16px;

}

/* Info boxes */
.info-col {
  border-right: 1px solid rgba(255, 255, 255, 0.945);
}
.info-col:last-child {
  border-right: none;
}

.info-box {
  padding: 15px 0px;
  text-align: center; /* desktop default */
}
.info-box i {
  color: #fff;
  margin-bottom: 10px;
  font-size: 38px;
}
.info-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}
.info-box p {
  font-weight: 400;
  font-size: 14px;
}

/* ========== Mobile Adjustments ======== */
@media (max-width: 768px) {
  .info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    padding: 1px 5px;
  }
  .who-we-are {
  margin-left:10px;
  margin-right: 10px;
}

  .info-box i {
    margin: 0;
    font-size: 30px; /* ⬅ bigger icon on mobile */
    flex-shrink: 0;
  }

  .info-text {
    flex: 1;
  }

  .info-text h5 {
    margin: 0 0 2px;
    font-size: 16px;
  }

  .info-text p {
    font-size: 13px;
  }

  /* Mobile - bottom dividers instead of right border */
  .info-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.945);
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  .info-col:last-child {
    border-bottom: none;
  }
  .section-title {
  font-size: 20px;
}
.section-subtitle {
  font-size: 26px;
}
.section-descc {
  font-size: 13px;
}
}
/*============================End who we are ===========================*/

  /* =================== HOLIDAY TOUR SLIDER =================== */
    .hl-tour-section {
      text-align: center;
      padding: 40px 0;
      background: #fff;
    }
    .hl-tour-subtitle {
      color: #f36f21;
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 5px;
    }
    .hl-tour-title {
      color: #223b63;
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 30px;
      line-height: 1.2;
    }
    .hl-tour-swiper {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      overflow: hidden;
      padding: 20px 0;
    }
    .hl-tour-slide {
      text-align: center;
    }
    .hl-tour-slide img {
      width: 200px;
      height: 200px;
      object-fit: cover;
      border-radius: 50%;
      display: block;
      margin: 0 auto 5px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .hl-tour-slide img:hover {
      transform: scale(1.08);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }

    .hl-tour-slide p {
      font-style: italic;
      font-size: 16px;
      font-weight: 700;
      margin: 0;
      color: #223b63;
    }

    /* ---------------- RESPONSIVE ---------------- */
    @media (max-width: 1024px) {
      .hl-tour-title { font-size: 30px; }
      .hl-tour-slide img { width: 170px; height: 170px; }
    }

    @media (max-width: 768px) {
      .hl-tour-title { font-size: 24px; }
      .hl-tour-slide img { width: 150px; height: 150px; }
    }

    @media (max-width: 576px) {
      .hl-tour-title { font-size: 20px; }
      .hl-tour-slide img { width: 150px; height: 150px; }
    }


/* =================start Featured Packages heading================= */
.unique-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Main Heading (centered) */
.unique-featured-title {
  font-size: 25px;
  font-weight: 500;
  color: #f4731f; /* Orange */
  text-align: center;
  padding:20px 0 0 10px;
}
/* Sub Heading */
.unique-sub-heading {
  font-size: 40px;
  font-weight: 800;
  color: #1b1b1b;
  position: relative;
    text-align: center;
  padding-bottom: 20px;
}

@media (max-width: 456px) {
  .unique-featured-title{
    font-size: 18px;
  }
  .unique-sub-heading{
    font-size: 22px;
  }
}


/*============================ Strat Card Design========================*/

/* Section */
.packages-section {
  padding: 0;
  margin: 0px 0px 30px 0px ;
}

.pkg-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

.pkg-row {
  /* display: flex;
  flex-wrap: wrap;
  gap: 20px; */
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pkg-col {
  flex: 1;
  min-width: 250px;
}

.package-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(95, 94, 94, 0.35); /* darker, tighter shadow */
  border: 1px solid #dcdcdc; /* optional subtle border for extra definition */
  overflow: hidden;
  min-height: 100%;
}
/* Header */
.package-header {
  background: #1a3d6d;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  margin:10px 10px 0 10px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.package-image {
  margin: 0 10px;
  overflow: hidden;   /* locks image inside the frame */
  position: relative;
  height: 150px;      /* fix the height so no space is created */
}

.package-image img {
  width: 100%;
  height: 100%;       /* stretch to fill the fixed height */
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.package-image img:hover {
  transform: scale(1.1); /* zoom inside, no gap */
  opacity: 0.9;
}

/* Duration */
.package-duration {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: #f58220;
  color: #000;
  padding: 10px;
  font-size: 15px;
font-weight: 600;
margin:0 10px;
 border-radius: 0 0 5px 5px;
}
.package-duration .divider {
  opacity: 0.6;
}

/* Hotel Info */
.hotel-info {
  padding:10px 0;
  font-size: 13px;
font-weight: 700;
  text-align: center;
}
.hotel-info i{
color:#f48020;
}
/* Dividers */
hr.dotted {
  border: none;
  border-top: 2px dotted #000000;
  margin: 5px 10px;
}
hr.solid { 
  border: none;
  border-top: 1px solid #000000;
  margin: 5px 10px;
}

/* Included */
.included-title {
  color: #f58220;
  font-size: 14px;
  font-weight: 700;
  padding:0px 10px;
}
.included-icons {
  display: flex;
  justify-content: space-around;
  padding:5px;
  font-size: 14px;
  font-weight: 600;
}

/* Tours */
.tours-info {
  font-size: 16px;
  text-align: center;

}
.tours-info strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}
.tours-info p {
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color:#3d3b3b;
    padding:0px 10px;
}

/* Price */
.price {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.price span {
  color: #f58220;
  font-size:25px;
  font-weight: 700;
}

/* Buttons */
.package-buttons {
  display: flex;
  justify-content: space-between;
  padding: 0px 10px;
  gap: 10px;
}

.btn-outline,
.btn-primary {
  display: inline-block;
  text-align: center;       /* center text */
  text-decoration: none;    /* remove underline */
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;    /* smooth hover effect */
}
.btn-outline {
  border: 1px solid #1a3d6d;
  color: #1a3d6d;
  background: #fff;
}
.btn-outline:hover {
  background: #1a3d6d;  
  color: #fff;
}
.btn-primary {
  background: #1a3d6d;
  color: #fff;
  border: none;
}
.btn-primary:hover {
  background: #63ab45; 
  color: #fff;
}


.btn-green {
  display: block;              /* makes it behave like a full-width button */
  background: #63AB45;
  color: #fff;
  border: none;
  padding: 10px;
  margin: 10px;
  width: calc(100% - 20px);    /* fits inside card with margin */
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  text-align: center;          /* center text */
  text-decoration: none;       /* remove underline */
  transition: 0.3s ease;
}
.btn-green:hover {
  background: #274673;       
}


/* Laptop 1280px – show only 4cards */
@media (max-width: 1280px) {
  .pkg-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .pkg-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Mobile 600px – 1 card */
@media (max-width: 600px) {
  .pkg-row {
    grid-template-columns: 1fr;
  }
}
/* ===============end card================= */


/* =======================Custom About Us Section 2 ======================= */
.cus2-about-section {
  padding: 30px 20px;
  background: #fff;
}

.cus2-about-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center; /* keeps text + image aligned in row */
}

/* Left Column */
.cus2-about-left {
  flex: 1 1 50%;
}

.cus2-about-subtitle {
  color: #f58220;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 10px;
}

.cus2-about-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #000;
}

.cus2-about-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333;
}

.cus2-about-text .cus2-about-highlight {
  color: #e91e63;
  font-weight: 600;
}

/* Features */
.cus2-about-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.cus2-about-icon {
  background: #F48020;
  color: #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.cus2-about-feature-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.cus2-about-feature-text p {
  font-size: 15px;
  font-weight: 500;
  color: #555;
  line-height: 1.5;
}

/* Right Column */
.cus2-about-right {
  flex: 1 1 50%;
}

.cus2-about-image {
  border-radius: 10px;
  object-fit: cover;
  display: block;
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .cus2-about-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .cus2-about-title {
    font-size: 25px;
  }
}

@media (max-width: 768px) {
  .cus2-about-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
  }
}
/* =======================End of Custom About Us Section 2 ======================= */


/* ==================start Why Choose Us Section ================== */
.why-choose-section {
  padding: 20px 0;
}

.why-choose-subtitle {
  color: #F48020;
font-size: 30px;
font-weight: 500;
line-height: 40px;
}

.why-choose-title {
  color: #274673;
  font-size: 40px;
  font-weight: 800;
}

.why-choose-box {
  max-width: 350px;
  margin: 0 auto;
}

.why-choose-icon i {
  font-size: 60px;
  color: #F48020;
}

.why-choose-heading {
  font-size: 16px;
  font-weight: 500;
  color: #274673;

}

.why-choose-text {
  font-size: 15px;
  font-weight: 500;
  color: #444;
}
@media (max-width: 767px) {
.why-choose-subtitle {
font-size: 32px;
font-weight: 500;
}
.why-choose-title {
  font-size: 26px;
  font-weight: 800;
}
.why-choose-subtitle {
font-size: 24px;
}
}
/* ==================End Why Choose Us Section ================== */


 
/* ==================start Choose Cheap Holiday Maker ===================*/
/* Section Wrapper */
.holiday-section {
  margin: 20px 0;
  padding: 20px 0;
}

.holiday-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px; /* spacing left & right */
}

/* Main Flex Layout */
.choosecheap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

/* Left Column */
.left-column {
  flex: 1;
  text-align: center;
}

.image-grid img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Right Column */
.right-column {
  flex: 1;
}
.highlight {
  color: #ff6600;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 10px;
}

.right-column h2 {
  font-size: 32px;
  color: #274673;
  font-weight: 800;
  margin-bottom: 30px;
}

/* Feature Box */
.feature-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

/* Fixed Circle Icon */
.feature-icon {
  width: 70px;
  height: 70px;
  background: #F5F5F5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 28px;
  color: #ff6600;
}

/* Feature Text */
.feature-box h3 {
  font-weight: 700;
  font-size: 22px;
  color: #274673;
}

.feature-box p {
  font-size: 16px;
  font-weight: 500;
  color: #444;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .choosecheap {
    flex-direction: column;
    text-align: center;
  }
  .feature-box {
    justify-content: center;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .feature-icon {
    width: 55px;
    height: 55px;
  }
  .feature-icon i {
    font-size: 22px;
  }
  .highlight {
    font-size: 20px;
  }
  .right-column h2 {
    font-size: 26px;
  }
  .feature-box h3 {
    font-size: 18px;
  }
  .feature-box p {
    font-size: 14px;
  }
  .right-column h2 {
  font-size: 23px;
}

}
/* ==================end Choose Cheap Holiday Maker ===================*/





/* =-==============package card carousel==================  */

/* ================= Holi Package Carousel ================= */
.holi-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Headings */
.holi-title-main {
  font-size: 25px;
  font-weight: 500;
  color: #f4731f;
  text-align: center;
  padding: 2px 0 0 2px;
}
.holi-title-sub {
  font-size: 40px;
  font-weight: 800;
  color: #1b1b1b;
  text-align: center;
  padding-bottom: 10px;
}
@media (max-width: 456px) {
  .holi-title-main { font-size: 18px; }
  .holi-title-sub { font-size: 22px; }
}

.holi-section {
  margin: 0 0 30px;
}

/* Card */
.holi-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(95, 94, 94, 0.35);
  border: 1px solid #dcdcdc;
  overflow: hidden;
  min-height: 100%;
}

/* Header */
.holi-card-header {
  background: #1a3d6d;
  color: #fff;
  font-weight: 700;
  padding: 10px;
  margin: 10px 10px 0;
  font-size: 14px;
  text-align: center;
}

/* Image */
.holi-card-image {
  margin: 0 10px;
  height: 150px;
  overflow: hidden;
}
.holi-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, opacity 0.7s ease;
}
.holi-card-image img:hover {
  transform: scale(1.1);
  opacity: 0.9;
}
.holi-card-duration .holi-icon {
  color: #fff !important;
}
.holi-divider{
  color: #fff !important;
}
/* Duration */
.holi-card-duration {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: #f58220;
  color: #000;
  padding: 10px;
  font-size: 15px;
  font-weight: 600;
  margin: 0 10px;
  border-radius: 0 0 5px 5px;
}
.holi-divider { opacity: 0.6; }

/* Hotel Info */
.holi-hotel-info {
  text-align: center;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 700;
}
.holi-hotel-info i { color: #f48020; }

/* Dividers */
.holi-hr-dotted {
  border: none;
  border-top: 2px dotted #000;
  margin: 5px 10px;
}
.holi-hr-solid {
  border: none;
  border-top: 1px solid #000;
  margin: 5px 10px;
}

/* Included */
.holi-included-title {
  color: #f58220;
  font-size: 14px;
  font-weight: 700;
  padding: 0 10px;
}
.holi-included-icons {
  display: flex;
  justify-content: space-around;
  padding: 5px;
  font-size: 14px;
  font-weight: 600;
}

/* Tours */
.holi-tours-info {
  font-size: 16px;
  text-align: center;
}
.holi-tours-info strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}
.holi-tours-info p {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: #3d3b3b;
  padding: 0 10px;
}

/* Price */
.holi-price {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.holi-price span {
  color: #f58220;
  font-size: 25px;
  font-weight: 700;
}

/* Buttons */
.holi-card-buttons {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  gap: 10px;
}
.holi-btn-outline,
.holi-btn-primary {
  display: inline-block;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  text-align: center;
}
.holi-btn-outline {
  border: 1px solid #1a3d6d;
  color: #1a3d6d;
  background: #fff;
}
.holi-btn-outline:hover {
  background: #1a3d6d;
  color: #fff;
}
.holi-btn-primary {
  background: #1a3d6d;
  color: #fff;
  border: none;
}
.holi-btn-primary:hover {
  background: #63ab45;
}

/* Green Button */
.holi-btn-green {
  display: block;
  background: #63ab45;
  color: #fff;
  padding: 10px;
  margin: 10px;
  text-align: center;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s ease;
}
.holi-btn-green:hover {
  background: #274673;
}

/* Swiper */
.holi-swiper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 10px 10px;
}
.holi-swiper .swiper-slide {
  height: auto !important;
}
/* Center pagination bullets */
.holi-swiper-pagination {
  text-align: center;
  margin-top: 15px !important;
  position: relative;
}

/* Swiper bullets colors */
.holi-swiper-pagination .swiper-pagination-bullet {
  background: #1a3d6d;
  width: 8px;
  height: 8px;
  opacity: 1;
  margin: 0 5px !important;
}
.holi-swiper-pagination .swiper-pagination-bullet-active {
  background: #f58220;
}

/* Hide arrows */
.holi-swiper-button-prev,
.holi-swiper-button-next {
  display: none !important;
}


/* =======================Custom About Us Section ======================= */
.cus-about-section {
  padding: 50px 20px;
  background: #fff;
}

.cus-about-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center; /* keeps text + image aligned in row */
}

/* Left Column */
.cus-about-left {
  flex: 1 1 50%;
}

.cus-about-subtitle {
  color: #f58220;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 10px;
}

.cus-about-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #274673;
}

.cus-about-text {
    font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333;
}


/* Features */
.cus-about-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.cus-about-icon {
  background: #6EAB56;
  color: #fff;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 29px;
  flex-shrink: 0;
}

.cus-about-feature-text h4 {
  font-size: 22px;
  font-weight: 700;
  color: #274673;
  margin-bottom: 5px;
}

.cus-about-feature-text p {
  font-size: 16px;
  font-weight: 500;
  color: #555;
  line-height: 1.5;
}

/* Right Column */
.cus-about-right {
  flex: 1 1 50%;
}

.cus-about-image {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .cus-about-container {
    flex-direction: column;
  }
  .cus-about-right {
    width: 100%;
  }
}
@media (max-width: 767px) {
.cus-about-title{
  font-size: 25px;
  width : 100%;
}
.cus-about-subtitle {
font-size: 25px;
}
}
/* =======================End of Custom About Us Section ======================= */



/* ==================start of Testimonials Section ================== */

.testimonials-section {
  background: url("../images/bg.webp") no-repeat center center/cover;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonials-badge {
  display: inline-block;
  background-color: #648878;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.testimonials-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

/* ✅ Force 2 per row */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.testimonial-card p {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
}
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user-info {
  display: flex;
  flex-direction: column;
}

.testimonial-user-info strong {
  font-weight: 700;
  font-size: 20px;
  color: #000;
}

.testimonial-user-info span {
  font-size: 14px;
  font-weight: 500;
  color: #d35400;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr; /* stack in 1 column */
  }
  .testimonials-title {
  font-size: 22px;
}
}



/*============================ Footer Start ===========================*/
/* ========== General Full-Width Background, Boxed Content ========== */
.newsletter-section,
.support-section,
.footer-top,
.bg-black {
  width: 100%;
  margin: 0;
  padding: 0;
}

.newsletter-section .container,
.support-section .container,
.footer-top .container,
.bg-black .container {
  padding-left: 300px;
  padding-right: 300px;
  max-width: 100%;
}

/* atol */
.container .textstyle{
  font-size: 14px;
  font-weight: 500;
}
/* ========== Newsletter Section ========== */
.newsletter-section {
  background-color: #f48020;
  font-size: 15px;
}

.newsletter-section h6 {
  font-size: 20px;
  font-weight: 600;
}

.newsletter-section h5 {
  font-size: 26px;
  font-weight: 600;
  width: 90%;
}

.mail {
  min-width: 400px;
}

/* ========== Support Section ========== */
.support-section {
  background-color: #1D231F;
}

.support-section {
  position: relative;
}

.support-section::after {
  content: "";
  position: absolute;
  bottom: 0;                 /* stick to the very bottom */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1320px;
  border-bottom: 1px solid #444;
}


.support-section h5 {
  font-size: 26px;
  font-weight: 500;
}

.support-section .btn {
  margin-left: 2px;
  padding: 0.5rem 0.75rem;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-section .col-md-6 {
  gap: 15px;
}

/* ========== Footer Top Section ========== */
.footer-top {
  background-color: #1D231F;
  font-size: 14px;
  line-height: 1.6;
  padding: 50px 0 !important;  /* force top & bottom spacing */
}


.footer-top img {
  height: 120px;
  width: 120px;
}

.footer-top h6 {
  font-size: 22px;
  margin-bottom: 1rem;
}

.footer-top a {
  color: #ffffff;
  transition: color 0.3s;
  font-size: 14px;
  line-height: 2.3;
}

.footer-top a:hover {
  color: #f48020;
}

.footer-top .bi {
  font-size: 18px;
}

/* Social Icons */
.footer-top .d-flex.gap-3 a {
  font-size: 20px;
}

/* Unified text-muted for footer */
.footer-top .text-muted,
.support-section .text-muted,
.bg-black .text-muted {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff !important;
}


/* ========== Contact Icons in Get In Touch ========== */
.icon-circle {
  background-color: #274673;   /* dark circle background */
  color: #fff;                 
  font-size: 18px;             
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;              /* prevents squishing */
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-item small {
  font-size: 13px;
  display: block;
  color: #ffffff; /* fixed to show white instead of gray */
}

.contact-item .zilly {
  font-size: 14px;
  font-weight: 500;
  color: #f48020;
}

/* ========== Copyright Section ========== */
.bg-black {
  background-color: #000;
  font-size: 13px;
}

.bg-black .container {
  padding-top: 10px;
  padding-bottom: 10px;
}

.zilly {
  color: #f48020;
}

/* ============================ Footer Responsive ================== */
@media (max-width: 1380px) {
  .newsletter-section .container,
  .support-section .container,
  .footer-top .container,
  .bg-black .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}


@media (max-width: 768px) {
.mail {
  min-width: 300px;

}
.support-section h5 {
  font-size: 20px;
  font-weight: 500;
}
.newsletter-section h5 {
  font-size: 18px;
  font-weight: 600;
}


}


/* ================= CALL & WHATSAPP BUTTONS ================= */
.contact-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.contact-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

/* Call button */
.call-btn {
  background: #00C853; /* Green for call */
}

/* WhatsApp button */
.whatsapp-btn {
  background: #25D366; /* WhatsApp green */
}

.contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

