/* =========================================
           BASE RESET & GLOBAL STYLES
           ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Root */
:root {
  --primary-color: #ffffff;
  --secondary-color: #000000;
  --blue-div-color: #306eb3;
  /* --font-primary: "El Messiri"; */
  --font-primary: "Lora";
  /* --font-secondary: "Karla", "sans-serif"; */
  /* --font-primary: "El Messiri"; */
  /* --font-secondary: "Karla"; */
 --font-secondary: "Poppins", "sans-serif";
  --lgt-grey: rgb(211, 211, 211);
  --text-grey: #737373;
  --text-lt-grey: #9fbbcd;
  --card-txt-head: #055033;
  --color-bg-blue: #137cc2;
  --bg-info--: rgb(0, 47, 150);
  --light-gray: #f5f5f5;
  --text-muted: rgba(255, 255, 255, 0.6);
  --border-light: rgba(255, 255, 255, 0.2);
  --faq-color: rgb(0, 147, 245);
  --home-faq: rgb(50, 142, 203);
  --link-color: rgb(231, 2, 2);
  --box-grey: rgb(248, 248, 248);
  --wp-icon: rgb(0, 134, 0);
  --primary-gold: #f59e0b;

  --bg-light-green: rgba(173, 216, 230, 0.95);
  --dark-green: #1c5d6f;
  --text-green: #1b4f5c;
  --card-color: #d8dae1;



  --dark-logo-blue: #011461;
  --medium-logo-blue: #234387;
  --light-logo-blue: #8dd4f9;

}

body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  /* Prevent horizontal scroll on mobile */
}

.general-text {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--text-grey);
  margin-bottom: 15px;
}

.general-sub-text {
  font-family: var(--font-secondary);
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.general-heading {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 48px;
}

.general-sub-heading {
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 24px;
}

/* =========================================
           VIDEO BACKGROUND
========================================= */
.landing-page-area {
  position: relative;
  /* This is crucial! */
  /* Constrain it to viewport height */
  /* overflow: hidden; Prevent video from spilling out */

  overflow: visible;
}

.video-container {
  position: absolute;
  /* Changed from fixed */
  inset: 0;
  z-index: 0;
  background-color: var(--border-light);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* .video-container::after{
    content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;

} */



/* =========================================
            Social Media Widget
           ========================================= */
/* Container acts as an anchor */
.social-media-widget {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 999;
  /* Ensure clicks pass through empty areas if necessary */
  pointer-events: none;
}

/* Make sure children react to pointer events */
.social-media-widget * {
  pointer-events: auto;
}

/* Social Icons Panel - Hidden by default off-screen */
.social-icons-panel {
  position: absolute;
  top: 0;
  /* Start positioned off the screen to the right */
  right: -80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 0 0 0 8px;
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1;
  /* Smooth slide animation */
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Active state for Panel - Slides into view */
.social-icons-panel.active {
  right: 0;
}

/* Toggle Button */
.social-toggle-btn {

  position: absolute;
  top: 0;
  right: 0;
  /* Starts at the edge of the screen */
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  width: 50px;
  height: 60px;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.3);
  color: var(--primary-color);
  font-size: 24px;
  z-index: 2;
  /* Smooth slide animation */
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Active state for Button - Moves left to make room for panel */
.social-toggle-btn.active {
  right: 60px;
  /* Adjust based on panel width */
  border-radius: 8px 0 0 8px;
  /* Optional: Keep styling consistent */
}

/* Icon Rotation */
.social-toggle-btn i {
  transition: transform 0.3s ease;
}

.social-toggle-btn.active i {
  transform: rotate(180deg);
}

.social-toggle-btn:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Individual Social Icons */
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Brand Colors */
.social-icon.facebook {
  background: linear-gradient(135deg, #3b5998, #2d4373);
}

.social-icon.instagram {
  background: linear-gradient(135deg,
      #f09433,
      #e6683c,
      #dc2743,
      #cc2366,
      #bc1888);
}

.social-icon.twitter {
  background: linear-gradient(135deg, #1da1f2, #0c85d0);
}

.social-icon.youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-icon.linkedin {
  background: linear-gradient(135deg, #0077b5, #005582);
}

/* Responsive */
@media (max-width: 768px) {
  .social-toggle-btn {
    width: 40px;
    height: 50px;
    font-size: 20px;
  }

  .social-toggle-btn.active {
    right: 56px;
  }

  .social-icons-panel {
    padding: 12px 8px;
    gap: 12px;
    right: -70px;
  }

  .social-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}


/* =========================================
           NAVBAR STYLES
           ========================================= */
.navbar {
  padding-top: 20px;
  z-index: 1000;
}

.logo {
  width: 140px;
  transition: width 0.3s ease;
}

.nav-link {
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  color: rgba(255, 255, 255, 0.9) !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* Underline Hover Effect */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.navbar-toggler {
  border: none;
  transform: scale(1.2);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.icon-toggler {
  border: none;
  font-size: 28px;
  color: var(--primary-color);
}

.icon-toggler:focus {
  box-shadow: none;
}

/* =========================================
            HOME HERO SECTION
           ========================================= */
.home-hero-section {
  height: 100vh;
  color: var(--primary-color);
  padding: 0px;
  /* Prevent text touching edges on mobile */
}

.home-hero-heading {
  font-size: 60px;
  font-weight: 900;
  font-family: var(--font-primary);
  text-transform: uppercase;
  line-height: 1.2;
}

.home-hero-title {
  font-size: 40px;
  font-weight: 300;
  font-family: var(--font-secondary);
  margin-top: 10px;
}

/* Text Animations */
.animate-text {
  opacity: 0;
  animation: textReveal 1.2s ease forwards;
}

.animate-text.delay {
  animation-delay: 0.8s;
  /* Slight delay for the subtitle */
}

@keyframes textReveal {
  from {
    opacity: 0;
    letter-spacing: 15px;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    letter-spacing: 1px;
    transform: translateY(0);
  }
}

/* =========================================
           SEARCH BOX
           ========================================= */
.search-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 12px;
  max-width: 550px;
  margin: auto;
  border-radius: 5px;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 1s ease-out 1.4s forwards;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-box .form-control {
  height: 45px;
  font-size: 16px;
  border: 1px solid #ddd;
}

.search-box button {
  height: 45px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  letter-spacing: 1px;
}

/* =========================================
           WHATSAPP FLOAT
           ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--wp-icon);
  color: var(--primary-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--primary-color);
}

.icon-toggler {
  border: none;
  font-size: 28px;
  color: var(--primary-color);
}

.icon-toggler:focus {
  box-shadow: none;
}

/* ===============================
   HERO BANNER
================================ */
.hero-section {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* animated background */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background: url("../images/contact/banner-contact.webp") center / cover no-repeat;

  transform: scale(1);
  animation: zoomBg 25s linear infinite;

  z-index: 0;
}

/* zoom animation */
@keyframes zoomBg {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.55);
  }
}

/* dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.55); */
  z-index: 1;
  background: rgba(0, 0, 0, 0.76);
}

/* content */
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  margin-top: 60px;
  padding: 20px;
}

/* breadcrumb */
.breadcrumb-capsule {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 14px;
  margin-bottom: 25px;
}

.breadcrumb-capsule a {
  color: #fff;
  text-decoration: none;
  font-family: --;
}

/* heading */
.general-heading {
  font-family: var(--font-primary);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin: 18px 0px;
}

/* ===============================
   INDEX PAGE
================================ */

.experience-right-content {
  height: 100%;
  display: flex;
  align-items: center;
}

.home-image-section {
  padding: 20px;
  margin-top: 50px;
}

.experience-wrapper {
  padding: 60px 0px;
}

.left-images {
  position: relative;
  margin-bottom: 20px;
}

.left-images img {
  width: 100%;
  height: 754px;
  object-fit: cover;
  border-radius: 25px;
}

.right-images {
  position: relative;
  margin-bottom: 20px;
}

.right-images img {
  width: 100%;
  height: 300px;
  object-fit: fill;
  border-radius: 25px;
}

.right-image-bottom img {
  width: 100%;
  height: 414px;
  object-fit: fill;
  border-radius: 25px;
}

.right-image-bottom {
  position: relative;
  margin-top: 20px;
}

.features-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-icon i {
  font-size: 30px;
}

.feature-image {
  position: relative;
}

.feature-image img {
  width: 100%;

  height: 500px;
  object-fit: cover;
  border-radius: 25px;
}

.video-container-div {
  position: relative;
  width: 100%;
  height: 700px;
  /* 👈 Change this value to adjust height */
  overflow: hidden;
}

.video-container-div video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ensures no stretching */
}

.video-container {
  padding: 0px;
}

.video-container iframe {
  border-radius: 15px;
}





.package-images img {
  width: 100%;
  object-fit: fill;
  border-radius: 25px;
}

.left-images {
  position: relative;
}


/* ::::::::::::::::REVIEW SECTION::::::::::::::::::::::::: */
/* .user-review-area {
  padding: 60px 0;
  background: linear-gradient(
    to right,
    var(--dark-logo-blue),
    var(--light-logo-blue)
  ); 
  text-align: center;
} */

.user-review-area {
  padding: 60px 0px;
  background: linear-gradient(to right, var(--dark-logo-blue), var(--light-logo-blue));
  text-align: center;
}

.review-header h1 {
  color: white;
  font-weight: bold;
  margin-bottom: 5px;
  font-family: var(--font-primary);
}

.review-header p {
  color: white;
  margin-bottom: 40px;
  opacity: 0.9;
  font-family: var(--font-secondary);
}

/* The Speech Bubble Card */
.alt-review-card {
  background: white;
  padding: 25px;
  border-radius: 4px;
  position: relative;
  text-align: left;
  min-height: 220px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* The Triangle Tail */
.alt-review-card::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 45px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid white;
}

/* Corrected Quote Icon - Fixed positioning */
.quote-watermark {
  position: absolute;
  top: 15px;
  left: 12px;
  font-size: 28px;
  /* Slightly smaller to match image scale */
  color: var(--lgt-grey);
  z-index: 1;
  line-height: 1;
}

/* Content Container - This creates the space for the stars */
.card-content {
  position: relative;
  z-index: 2;
  padding-left: 45px;
  /* Pushes everything (stars & text) to the right of the quote */
}

.alt-star-rating {
  color: var(--primary-gold);
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 3px;

}

.rating-text {
  color: var(--text-grey);
  font-size: 13px;
  font-style: italic;
  margin-left: 8px;
  font-weight: 500;
  font-family: var(--font-primary);
}

.alt-review-text {
  color: var(--text-grey);
  font-family: var(--font-secondary);
  font-size: 13px;
  line-height: 1.6;
  font-style: italic;
}

/* Facebook Icon */
.google-brand-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 28px;
  color: var(--medium-logo-blue);
}

/* User Info Section */
.alt-user-meta-box {
  display: flex;
  align-items: center;
  margin-top: 25px;
  padding-left: 20px;
  gap: 15px;
}

.alt-user-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.alt-user-name-title {
  text-align: left;
  color: white;
  font-family: var(--font-secondary);
}

.alt-user-name-title h4 {

  font-size: 18px;
  margin: 0;
  font-weight: bold;
  font-family: var(--font-primary);

}

.review-designation {
  font-size: 14px;
  opacity: 0.8;
  font-family: var(--font-secondary);
}

/* Swiper Controls */
/* 1. Add more room at the bottom of the wrapper for the dots to live in */
.alt-testimonial-wrapper {
  padding-bottom: 80px !important;
  /* Increased from 60px */
  position: relative;
}

/* 2. Push the dots container lower */

.alt-testimonial-wrapper .swiper-pagination {
  bottom: 10px !important;
  /* keep your correct value */

}

/* 3. Refine the bullet style to match the image (clean circles) */
.alt-testimonial-wrapper .swiper-pagination-bullet {
  background: whitefff !important;
  opacity: 0.4;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}

/* 4. Highlight the active dot */
.alt-testimonial-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}




/* ::::::::::::::::SERVICE::::::::::::::::::::::::: */
.mb-8 {
  margin-bottom: 100px;
}

.service-area-section {
  padding-top: 100px;
  background-image: url('../images/home/slider.jpg.jpeg');
  background-position: center center;
  background-attachment: fixed;
}

.service-area {
  padding: 60px 0;
}

.service-section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 80px;
  font-family: var(--font-primary);
  font-weight: 400;
}

.service-section-title span {
  font-weight: 700;
}

.service-head-area {
  display: flex;
  text-align: start;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.service-card-wrapper {
  /* background: linear-gradient(to right,  #234387, #2f5494); */
  background: #234387;
  border-radius: 12px;
  padding: 20px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.service-head-area h1 {
  font-size: 2.2rem;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.4;
}

.service-img-area {
  border-radius: 12px;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background-color: var(--primary-color);
}

.service-img-area img {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  background: var(--primary-color);
  padding: 10px;
}

.service-text-area {
  margin-top: 90px;
}

.service-text-area h1 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  min-height: 40px;
  text-align: center;
  margin-bottom: 20px;
  font-family: var(--font-primary);
}

.service-text-area p {
  color: var(--primary-color);
  line-height: 1.6;
  font-size: 0.95rem;
  font-family: var(--font-secondary);

}

.service-text-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--primary-color);
  line-height: 1.8;
}

.service-text-area ul li {
  padding: 5px 0;
  font-size: 0.95rem;
}

.service-text-area ul li::before {
  content: "✓";
  color: var(--primary-gold);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-right: 8px;
}

.alt-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.alt-service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  padding: 8px 0;
  color: var(--primary-color);
}

.alt-service-list li::before {
  content: none;
}

.alt-service-list .fi {
  font-size: 1.2rem;
  width: 24px;
  height: 18px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}


/* recommend */

.recommend-area {
  margin-bottom: 50px;
  padding: 60px 20px;
  background-image: url('../images/home/slider.jpg.jpeg');
  background-attachment: fixed;
}

.recommended-text {
  text-align: center;
  margin-bottom: 50px;
}

.recommend-place-body::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.3) 70%,
      rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}

.recommend-place-body {
  position: relative;
  border-radius: 20px;
  margin-bottom: 24px;
  overflow: hidden;
  max-height: 415px;
  /* Set height on the container */
}

.recommend-place-body img {
  width: 100%;
  height: 415px;
  object-fit: cover;
  object-position: center;
  border-radius: 25px;
  display: block;
  z-index: 0;
}

.recommend-place-content {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px 20px;
  z-index: 2;
}

.recommend-place-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.recommend-place-right {
  display: flex;
  flex-direction: column;
  justify-items: end !important;
}

.recommend-place-title {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.recommend-place-subtitle {
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 400;
  color: var(--lgt-grey);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.recommend-place-label {
  font-size: 14px;
  font-family: var(--font-secondary);
  font-weight: 400;
  color: var(--primary-color);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.recommend-place-price {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.recommend-place-body:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}



/*:::::::::::::::::: Pagination :::::::::::::::::*/

.custom-pagination-component {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* This ensures it stays below the cards and has space */
  clear: both;
  width: 100%;

}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 16px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  /* Ensure it doesn't overlap other elements */
  position: relative;
  z-index: 10;
}

.pagination-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
}

/* Page Buttons */
.pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  background: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  outline: none;
}

.pagination-item:hover {
  color: #2d3748;
  background-color: #edf2f7;
}

/* Active Page State */
.pagination-item.active {
  background-color: #3182ce;
  color: #ffffff;
  font-weight: 600;
}

.pagination-item.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background-color: #3182ce;
  border-radius: 50%;
  animation: pulseDown 1.5s infinite;
}

/* Navigation Arrows */
.pagination-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  background: #f7fafc;
  border-radius: 8px;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.pagination-arrow:hover {
  background-color: #edf2f7;
  color: #2d3748;
  transform: scale(1.05);
}

.pagination-arrow.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Info Text (Showing X of Y) */
.pagination-info {
  font-size: 14px;
  color: #718096;
  text-align: center;
  margin-top: 16px;
}

/* Animations */
@keyframes pulseDown {
  0% {
    opacity: 0.6;
    transform: translateX(-50%) scale(0.8);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }

  100% {
    opacity: 0.6;
    transform: translateX(-50%) scale(0.8);
  }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .pagination-wrapper {
    gap: 4px;
    padding: 12px;
  }

  .pagination-item,
  .pagination-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .pagination-ellipsis {
    display: none;
  }
}


/* ===============================
   ABOUT US 
================================ */

.about-us {
  padding: 20px 40px;
  margin-top: 60px;
}

.about-company-details h2 {
  font-size: 42px;
  font-family: var(--font-primary);
}

.about-company-details p {
  font-size: 18px;
  font-family: var(--font-secondary);
  text-align: justify;
}

@keyframes floatSlow {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

.about-image-stack {
  position: relative;
  width: 100%;
  height: 500px;
}

/* common image style */
.stack-img {
  position: absolute;
  border-radius: 22px;
  border: 8px solid #ffffff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  background: #fff;

  transition:
    transform 0.8s ease,
    box-shadow 0.8s ease;
  will-change: transform;
}

.img-bottom-left {
  width: 58%;
  height: 260px;
  bottom: 60px;
  left: 0;
  z-index: 2;

  /* animation: floatSlow 13s ease-in-out ; */
}

.stack-img.img-main {
  width: 78%;
  height: 360px;
  top: 0;
  left: 12%;
  z-index: 1;

  /* animation: floatSlow 12s ease-in-out ; */
}

.stack-img.img-bottom-right {
  width: 60%;
  height: 260px;
  bottom: 0;
  right: 0;
  z-index: 2;

  /* animation: floatSlow 11s ease-in-out ; */
}

.stack-img:hover {
  transform: scale(1.05) translateY(-6px);
  box-shadow: 0 45px 80px rgba(0, 0, 0, 0.35);
  z-index: 5;
}

.about-image-stack:hover .stack-img {
  z-index: 1;
}

.about-image-stack .stack-img:hover {
  z-index: 10 !important;
}

.about-address-section {
  background-image: url("../images/about/background3.jpeg");
  background-size: cover;
  background-position: center;
}

.about-company-address address {
  text-align: center;
}

.about-address-content {
  padding: 20px 80px;
  align-items: center;
  text-align: center;
}

.about-address-section {
  padding: 60px 0;
}

.company-address-box {
  margin-top: 50px !important;
  background: var(--primary-color);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  height: 100%;

  transition: 0.3s ease;
}

.company-address-box:hover {
  transform: translateY(-20px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.address-icon {
  width: 64px;
  height: 64px;
  background-color: var(--home-faq);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.address-icon i {
  font-size: 26px;
  color: var(--light-gray);
}

.office-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  background-color: var(--home-faq);
  color: var(--light-gray);
  margin-bottom: 12px;
  font-family: var(--font-primary);
}

.office-title span {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 14px;
  font-weight: 800;
}

.office-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--blue-div-color);
  font-family: var(--font-primary);
}

.address-text-card {
  font-style: normal;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-grey);
  margin-bottom: 24px;
}

.address-text-card i {
  /* color: #1C5D6F; */
  color: #2c7a8a;
}

.address-btn {
  background-color: var(--blue-div-color);
  color: var(--primary-color);
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.address-btn:hover {
  background-color: var(--faq-color);
}

.about-middle-content {
  padding: 15px 0px;
  align-items: center;
  text-align: center;
}

.about-left {
  margin-bottom: 20px;
}


.about-middle-img {
  margin-top: 20px;
}

.about-middle {
  padding: 20px 40px;

  background-color: var(--box-grey);
}

/* .about-bottom-img {
    margin-top: 20px;
} */

.about-bottom-img {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  margin-top: 20px;
  aspect-ratio: 4 / 3;
}

.about-bottom-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-bottom-img:hover img {
  transform: scale(1.12) translateY(-10px);
}

.about-card {
  border: rgb(239, 234, 234) solid 1.5px;
  border-radius: 14px;
  background-color: var(--primary-color);
  padding: 5px 20px;
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.about-bottom-wrapper {
  margin-top: 20px;
  margin-bottom: 50px;
}

.about-bottom-content {
  margin-top: 20px;
}

.rounded-img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-right-experience {
  background-color: var(--blue-div-color);
  color: var(--primary-color) !important;
  border-radius: 15px;
  padding: 20px;
}

.about-right-experience img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary-color);
  display: inline-flex;
  margin-right: -15px;
}

.small-card {
  background-color: var(--blue-div-color);
  color: var(--primary-color);
  border-radius: 15px;
  padding: 24px 20px;
  margin-bottom: 15px;
  align-items: start;
}

.about-icon {
  margin-right: 20px;
  background-color: var(--secondary-color);
  border-radius: 9999px;
  padding: 15px 19px;
}

.small-card i {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  padding: 13px 13px;
  margin-bottom: 10px;
}

/* Mission vison */

/* Container to allow the card to overlap the image */
.mission-vision-container {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  /* Clips the image and card to the rounded corners */
  display: flex;
  align-items: center;
  min-height: 450px;
  transition: 0.5s ease;
  margin-top: 30px;
}

.mission-vision-container:hover {
  transform: translateY(-20px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Background Image styling */
.mission-vision-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

@keyframes floatImage {
  0% {
    transform: translateY(0) scale(1.08);
  }

  50% {
    transform: translateY(-12px) scale(1.08);
  }

  100% {
    transform: translateY(0) scale(1.08);
  }
}

.mission-vision-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomBg 25s linear infinite;
  /* animation: zoomInOut 20s ease-in-out infinite; */
  /* animation: floatImage 5s ease-in-out infinite; */
}

/* The White Card with the slanted edge */
.mission-vision-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  margin-left: auto;
  width: 55%;
  padding: 60px 40px 60px 80px;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.about-mission-vision-item,
.about-vision {
  margin-bottom: 30px;
  margin-left: 30px;
}

.mission-vision-card h5 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--dark-green);
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.mission-vision-card i {
  background-color: var(--dark-green);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.mission-vision-card p {
  color: var(--dark-green);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-left: 55px;
  font-family: var(--font-secondary);
}

/* ===============================
  CONTACT US 
================================ */

.icon-box i {
  color: #fff;
  font-size: 28px;
}

.contact-section {
  margin: 70px 0px;
  background-image: url(../images/home/slider.jpg.jpeg);
  background-attachment: fixed;
}

.contact-form-section {
  position: relative;
  padding: 120px 0;
  background: url("../images/contact/con-bottm.jpeg") center / cover no-repeat;
  overflow: hidden;
}

.contact-form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.contact-form {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  padding: 60px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

/* .contact-card {
  position: relative;
  background: var(--primary-color);
  padding: 60px 25px 30px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  margin: 10px 0px;
  transition: 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-card .icon-box {
  background: var(--blue-div-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 15px;
  font-size: 18px;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(47, 110, 203, 0.35);
}

.contact-card h6 {
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-primary);
}

.contact-card p {
  font-size: 14px;
  color: var(--text-grey);
  margin: 0;
  font-family: var(--font-secondary);
} */



.contact-card {
  position: relative;
  /* background: var(--primary-color); */
  background-color: var(--card-color);
  padding: 60px 25px 30px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  margin: 10px 0px;
  transition: 0.3s ease;
  height: 150px !important;

}

.contact-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-card .icon-box {
  /* background: var(--blue-div-color); */
  background-color: teal;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 15px;
  font-size: 18px;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(47, 110, 203, 0.35);
}

.contact-card h6 {
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-primary);
}

.contact-card p {
  font-size: 14px;
  color: var(--text-grey);
  margin: 0;
  font-family: var(--font-secondary);
}

.section-subtitle {
  color: var(--primary-gold);
  letter-spacing: 3px;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-primary);
  text-transform: uppercase;
}

.section-title {
  font-weight: 800;
  margin-bottom: 40px;
  font-family: var(--font-primary);
  color: var(--primary-color);
  font-size: 48px;
  /* text-transform: uppercase; */
}

.contact-form .form-control {
  height: 52px;
  border-radius: 6px;
  border: 1px solid #dfe6ef;
  font-family: var(--font-secondary);
  font-size: 15px;
  padding: 10px 18px;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.3);
}

.contact-form textarea.form-control {
  height: 140px;
  resize: none;
  background: rgba(255, 255, 255, 0.3);
}

.contact-form .form-control:focus {
  border-color: var(--blue-div-color);
  box-shadow: 0 0 0 2px rgba(48, 110, 179, 0.15);
}

.send-btn {
  background: var(--blue-div-color);
  color: var(--primary-color);
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-family: var(--font-primary);
}

.send-btn:hover {
  background: var(--color-bg-blue);
}

/* Map */
.map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  filter: grayscale(100%);
}

/* ===============================
  package
================================ */

.package-section {
  background-color: var(--box-grey);


}


.package-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 380px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
}

/* Image */
.package-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* transition: transform 0.6s ease; */
  transition:
    transform 0.6s ease,
    opacity 0.6s ease;
}

.package-card:hover img {
  transform: scale(1.15);
  /* opacity: 0.9; */
}

/* Overlay */
/* .package-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0));
  display: flex;
  align-items: end;
  padding: 0px;
  transition: 0.5s;
  justify-content: center;
  pointer-events: none;
  width: 100%;
} */

.package-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}


/* List item */
/* .package-overlay-link {
  list-style: none;
  margin: 0;
  padding: 0;
  pointer-events: auto;
 
  position: relative;
  z-index: 2;
  
} */

.package-overlay-link a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 22px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;

  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0));

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border-radius: 0 0 20px 20px;

  transition: 0.3s;
}

/* Link styling */
/* .package-overlay-link a {
  width: 100%;
  color: #ffffff;
 
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);

  padding: 18px 22px;


  background-color: rgba(0, 0, 0, 0.3);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.5s ease;
  font-family: var(--font-primary);
  position: relative;
  z-index: 3;
  
} */

/* Icon wrapper with circle */
.package-overlay-link a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  /* Ensure icon is also white */
  width: 20px;
  /* Circle width */
  height: 20px;
  /* Circle height */
  border: 2px solid #ffffff;
  /* White border for circle */
  border-radius: 50%;
  /* Make it circular */
  transition: 0.3s ease;
}

/* Icon inside the circle */
.package-overlay-link a span i {
  font-size: 12px;
  /* Adjust icon size */
}

/* Hover effect */
.package-overlay-link a:hover {
  background-color: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

/* Hover effect for the circle */
.package-overlay-link a:hover span {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateX(3px);
  /* Slight move on hover */
}



.package-readmore {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0));
  display: flex;
  align-items: center;
  padding: 0px;
  transition: 0.5s;
  justify-content: center;
}

.package-readmore h5 {
  color: #f3f0f0;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  opacity: 1;
  transition: 0.5s ease;
  border: 1px solid rgb(248, 244, 244);
  padding: 10px;

  background-color: rgba(252, 249, 249, 0.03);
  backdrop-filter: blur(5px);
  font-family: var(--font-secondary);
}



/* Popular Packages */

.popular-packages-area {
  /* margin-bottom: 50px; */
  padding: 30px 10px;
  /* background-image: url(../images/home/slider.jpg.jpeg); */
  background-color: var(--box-grey);
}

.popular-packages-text {
  text-align: center;
  margin-bottom: 50px;
}

.package-card-body {
  position: relative;
  border-radius: 20px;
  margin-bottom: 24px;
  overflow: hidden;
  height: 280px;
}

.package-card-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.4) 70%,
      rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
  transition: opacity 0.4s ease;
}

.package-card-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  display: block;
  transition: transform 0.5s ease;
}

.package-card-content {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  width: 90%;
}

.package-card-title {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 12px;
}

.package-tours-badge {
  display: inline-block;
  background-color: var(--home-faq);
  color: var(--primary-color);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 400;
  padding: 6px 16px;
  border-radius: 25px;
  /* text-transform: uppercase; */
  letter-spacing: 0.5px;
}

.package-card-body:hover img {
  transform: scale(1.1);
}

.package-card-body:hover::before {
  opacity: 0.5;
}

.package-card-body:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.package-large {
  height: 380px;
}

/*========== enquiry pop up=============== */

/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  animation: fadeIn 0.3s;
}

.modal-overlay.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  background: white;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideIn 0.3s;
  position: relative;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  background: var(--blue-div-color);
  color: white;
  padding: 20px;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-size: 24px;
  font-family: var(--font-primary);
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.close-btn:hover {
  transform: rotate(90deg);
}

.modal-body {
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
  font-family: var(--font-secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-div-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  background: var(--blue-div-color);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: var(--blue-div-color);
}

.success-message {
  display: none;
  background: #4caf50;
  color: white;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  text-align: center;
}

.success-message.show {
  display: block;
}

/* ::::::::::::::::GALLERY::::::::::::::::::: */

.gallery-section {
  padding: 40px 0;
  background-image: url(../images/home/slider.jpg.jpeg);
  background-attachment: fixed;
}

.gallery-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  cursor: pointer;
  height: 300px;
}

.gallery-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.7) 50%,
      transparent 100%);
  /* color: white; */
  color: var(--primary-color);
  padding: 30px 20px 20px;
  transform: translateY(100%);

  /* transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); */
}

.gallery-image-wrapper:hover img {
  transform: scale(1.15);
}

.gallery-image-wrapper:hover .gallery-content {
  transform: translateY(0);
}

.gallery-content .place-title {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.gallery-content .place-location {
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--lgt-grey);
  margin-bottom: 12px;
  display: flex;
  gap: 6px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.gallery-content .place-location i {
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
  line-height: 2;
}

.gallery-content .place-description {
  font-family: var(--font-secondary);
  font-size: 14px;
  line-height: 1.6;
  /* color: rgba(255, 255, 255, 0.9); */
  color: var(--light-gray);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.gallery-image-wrapper:hover .place-title,
.gallery-image-wrapper:hover .place-location,
.gallery-image-wrapper:hover .place-description {
  opacity: 1;
  transform: translateY(0);
}

.gallery-image-wrapper:hover .place-badge {
  transform: translateY(0);
  opacity: 1;
}

.gallery-section-title {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-section-title h2 {
  font-size: 36px;
  font-weight: 700;
  font-family: var(--font-primary);
  /* color: #333; */
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.gallery-section-title p {
  color: var(--text-grey);

  font-family: var(--font-secondary);
  font-size: 16px;
}

/* PROMO SECTION */

.promo-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--primary-color);
  overflow: hidden;
}

.promo-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images//blog/blog-overlayimage.webp");
  background-position: center;
  filter: brightness(1.0);

  z-index: 0;
}

.promo-section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.promo-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 40px;
}

.promo-content h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  /* line-height: 1.2; */
  color: var(--primary-color);
}

.promo-contact-btn {
  text-decoration: none;
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-size: 18px;
}

.promo-content p {
  font-size: 1.1rem;
  /* margin-bottom: 40px; */
  line-height: 1.6;
  padding-bottom: 10px;
  color: var(--primary-color);
}

/*::::::::::::::::: Blog List Area ::::::::::::::::::*/

.blog-list-area {
  background-color: var(--primary-color);
  padding: 60px 0;
  background-image: url(../images/home/slider.jpg.jpeg);
  background-attachment: fixed;

}

.btn-all-posts {
  padding: 12px 30px;
  font-weight: bold;
  font-family: var(--font-secondary);
  color: var(--primary-color);
  background-color: var(--color-bg-blue);
  border: 2px solid var(--color-bg-blue);
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-all-posts:hover {
  background-color: var(--blue-div-color);
  border-color: var(--blue-div-color);
  color: var(--primary-color);
}

/* Blog Item Card */
.blog-item {
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--primary-color);
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin-bottom: 30px;
}

.blog-item:hover img {
  transform: scale(1.12) rotate(1.5deg);
  /* opacity: 0.9; */
  border-radius: 10px;
}

.blog-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 25px;
  margin-bottom: 20px;
  transition: transform 0.6s ease;
}

.blog-content h1 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
  color: var(--secondary-color);
  margin-bottom: 12px;
  margin-top: 0;
}

.blog-content p {
  font-family: var(--font-secondary);
  color: var(--text-grey);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-list-read-more {
  font-family: var(--font-secondary);
  font-weight: 400;
  color: var(--secondary-color);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.blog-list-read-more i {
  display: inline-block;
  vertical-align: middle;
  /* Aligns icon to middle of text */
  margin-left: 5px;
  /* Adds space between text and icon */
}

.blog-content a.read-more:hover {
  color: var(--text-grey);
}

.load-pagination {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

.load-pagination span {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: 2px solid var(--secondary-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.load-pagination span:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* FOOTER */

.footer {
  background-color: rgb(20, 20, 20);
  color: var(--text-grey);
  padding: 50px 0 0 0;
}

.footer-top {
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
}

.footer-logo {
  max-width: 140px;
  margin-bottom: 20px;
}

.footer-address {
  color: var(--text-grey);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.social-icons {
  display: flex;
  margin-top: 45px;
  gap: 15px;
}

.social-icons a {
  width: 20px;
  height: 20px;
  background: transparent;
  text-decoration: none;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--primary-color);
  color: #1a1a1a;
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer h5 {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-family: var(--font-primary);
  font-weight: 600;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-grey);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--blue-div-color);
}

.newsletter-text {
  color: var(--text-grey);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.newsletter-form {
  position: relative;
  max-width: 400px;
  margin-top: 30px;
}

.newsletter-input {
  width: 100%;
  background: transparent;
  border: 1px solid #444;
  border-radius: 50px;
  padding: 14px 130px 14px 20px;
  color: var(--primary-color);
  font-size: 12px;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-input:focus {
  border-color: var(--blue-div-color);
}

.newsletter-input::placeholder {
  color: #666;
}

.newsletter-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  color: #1a1a1a;
  border: none;
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: var(--blue-div-color);
  color: var(--primary-color);
}

.footer-bottom {
  padding: 25px 0;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0;
}

.footer-bottom a {
  color: var(--primary-color);
  text-decoration: none;
  font-family: var(--font-secondary);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/*:::::::::::::: Package List Area Styling :::::::*/

.package-list-area {
  padding: 20px 0;
  background-image: url('../images/home/slider.jpg.jpeg');
  background-attachment: fixed;
}

.package-item {
  background: var(--primary-color);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  display: flex;
  align-items: stretch;
  transition: all 0.3s ease;
  overflow: hidden;
}

.package-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

/* Package Image */
.package-img {
  flex: 0 0 350px;
  overflow: hidden;
  position: relative;
}

.package-img img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 330px !important;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.package-item:hover .package-img img {
  transform: scale(1.05);
}

/* Package Details */
.package-details {
  flex: 1;
  padding: 30px;
  background-color: var(--primary-color);
  border-top: 1px solid var(--text-lt-grey);
  border-bottom: 1px solid var(--text-lt-grey);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-details p {
  font-family: var(--font-secondary);
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-grey);
  margin-bottom: 20px;
  text-align: justify;
}

/* Package List Highlight */
.package-list-highlight {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: auto;
}

/* Highlight Section */
.high-light {
  background-color: var(--color-bg-light);
  display: inline-flex;
  gap: 15px;
  align-items: center;
  font-family: var(--font-secondary);
  border-radius: 50px;
  padding: 10px 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.high-light h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-grey);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.high-light .days,
.high-light .pax,
.high-light .location {
  color: var(--color-bg-blue);
}

.high-light .location i {
  font-size: 12px;
}

/* Read More Button */
/* .read-btn {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-secondary);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  white-space: nowrap;
  flex-shrink: 0;
  width: 140px;
} */

.fade-link {
  color: var(--bg-info--);
  font-weight: 600;
  font-size: 16px;
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--secondary-color);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

/* .read-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
  color: white;
} */

/* Package Price */
.package-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background-color: var(--color-bg-blue);
  box-shadow: -4px 0 15px rgba(19, 124, 194, 0.2);
}

.package-price a {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--color-bg-blue);
  text-decoration: none;
  border-radius: 25px;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid transparent;
}

.package-price a:hover {
  background-color: var(--color-bg-blue);
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}


/* ===================== PACKAGE DETAILS PAGE =============== */

/* Package Details */
.package-deatils-info {
  color: #212529;
  font-family: var(--font-secondary);
}

.details-wrapper {
  padding: 0 20px;
  margin-top: 120px;
}

.preview-head {
  border-bottom: 2px solid var(--blue-div-color);
}

.preview-wrapper {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  padding: 50px;

}

.package-preview {
  display: flex;
  align-items: start;
  /* Vertically centers image + text */
  gap: 20px;
  /* Space between image and text */
  padding: 17px 0 15px 0;
  /* Inner spacing */
  background: var(--primary-color);
  border-bottom: 1px solid var(--lgt-grey);
}

.package-preview h1 {
  font-size: 16px;
  color: var(--blue-div-color);
}

.package-preview p {
  color: var(--text-grey);
}

.package-preview p i {
  color: var(--blue-div-color);
}

.package-preview img {
  width: 80px;
  /* slightly larger like the Trevlo one */
  height: 80px;
  /* fixed height to align text properly */
  object-fit: cover;
  /* keeps proportions correct */
  border-radius: 6px;
}

.preview-text {
  display: flex;
  flex-direction: column;
  /* Stack text vertically */
  justify-content: center;
  /* Vertically center text within its column */
  line-height: 1.4;
}

.destination-details {
  padding: 50px;
}

.box-2 {
  height: 100%;
  /* optional: set fixed card width */

  overflow: hidden;
  /* makes image corners rounded if needed */
  /* margin: 20px 0; */
  /* padding: 20px; */
}

.box-2 img {
  width: 100%;
  /* make it span the card width */
  height: 500px;
  /* fixed height */
  border-radius: 25px;
  margin-bottom: 25px;
  object-fit: cover;
  /* crop image to fit nicely */
  display: block;
}

.box-3 img {
  width: 100%;
  /* make it span the card width */
  height: 500px;
  /* fixed height */
  border-radius: 25px;
  object-fit: cover;
  /* crop image to fit nicely */
  display: block;
  margin-top: 30px;
}

.box-2 .package-body {
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
  background: var(--primary-color);
  border-radius: 10px;
  /* padding: 20px; */
}

.box-4 {
  margin-top: 20px;
}

.info-card {
  width: 100%;
  padding: 20px;
  background-color: var(--box-grey);
  border-radius: 20px;
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.info-card h1 {
  text-align: center;
}

.info-card table {
  width: 100%;
  border-collapse: collapse;
}

.info-card tr {
  border-bottom: 1px solid var(--lgt-grey);
}

.info-card td {
  padding: 15px;
  text-align: center;
}

/* Custom Accordion Styles */
.travel-accordion {
  background-color: transparent;
}

.travel-accordion .accordion-item {
  background-color: var(--blue-div-color);
  border: none;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.travel-accordion .accordion-button {
  padding-left: 50px !important;
  background-color: var(--blue-div-color) !important;
  border: none;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3) !important;
  box-shadow: none !important;
  outline: none !important;
  color: var(--primary-color) !important;
  font-family: var(--font-primary);
  font-size: 20px !important;
  font-weight: 600 !important;
}

.travel-accordion .accordion-button:not(.collapsed) {
  background-color: var(--blue-div-color) !important;
  color: var(--primary-color) !important;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3) !important;
  padding: 20px !important;
}

.travel-accordion .accordion-button.collapsed {
  border-bottom: none !important;
  padding: 20px !important;
}

.travel-accordion .accordion-button:focus {
  box-shadow: none !important;
}

.travel-accordion .accordion-collapse {
  border: none;
}

.travel-accordion .accordion-body {
  padding: 20px !important;
  border: none;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-family: var(--font-secondary);
  font-size: 16px !important;
  font-weight: 400 !important;
}

.travel-accordion .accordion-button::after {
  width: auto !important;
  height: auto !important;
  margin-left: auto;
  content: "\f107";
  /* fa-angle-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  padding-left: 15px;
  color: var(--primary-color);
  font-size: 20px;
  background-image: none !important;
  background-repeat: no-repeat;
  background-size: 0;
  transition: transform 0.3s ease;
}

.travel-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

/*=========== Blog Overlay ============*/

.blog-img-overlay {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin-top: -440px;
  z-index: 10;
  margin-left: auto;
  margin-right: auto;
}

.overlay-image {
  width: 100%;
  height: auto;
  border-radius: 25px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/*::::::::::::::::::: Blog Section :::::::::::::*/

.blog-section {
  background: var(--primary-color);
  padding: 50px 0px 50px 0px !important;
}

.blog-img {
  margin-bottom: 20px;
}

.blog-img img {

  height: 500px !important;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-img:hover img {
  /* transform: translateY(-10px); */

  transform: rotate(3deg);
}

.blog-title {
  font-family: var(--font-primary);
  font-size: 40px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 30px;
  line-height: 1.1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-secondary);
  font-size: 17px;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.blog-author i {
  margin-right: 8px;
  color: var(--secondary-color);
}

.blog-divider {
  border: none;
  border-bottom: 2px solid var(--lgt-grey);
  margin: 32px 0 36px 0;
}

.service-title {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 28px;
}

.service-text {
  font-family: var(--font-secondary);
  font-size: 17px;
  color: var(--text-grey);
  margin-bottom: 20px;
  line-height: 1.8;
}

.section-tag-label,
.section-share-label {
  font-family: var(--font-primary);
  color: var(--secondary-color);
  font-weight: 700;
  margin-right: 8px;
}

.section-tag-value {
  font-family: var(--font-secondary);
}

.social-btn {
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  /* 0.5rem */
}

.section-divider {
  border-color: rgb(211, 211, 211);
  margin-top: 16px;
  /* 1rem */
  margin-bottom: 16px;
}

.section-reply-heading {
  font-family: var(--font-primary);
  font-weight: bold;
  font-size: 32px;
  /* 2rem */
  color: #000;
  margin-bottom: 8px;
  /* 0.5rem */
}

.section-reply-note {
  font-family: var(--font-secondary);
  color: #737373;
  font-size: 15.2px;
  /* 0.95rem */
  margin-bottom: 24px;
  /* 1.5rem */
}

.section-form-label {
  font-family: var(--font-secondary);
  color: var(--secondary-color);
  font-weight: 600;
}

.section-form-control {
  border-radius: 8px;
}

.section-form-check-label {
  font-family: var(--font-secondary);
  color: var(--secondary-color);
  font-size: 14.4px;
  /* 0.9rem */
  font-weight: 400;
}

.section-form-btn {
  padding: 8px 32px;
  /* 0.5rem 2rem */
  font-family: var(--font-primary);
  border-radius: 9999px;
  font-weight: bold;
}