 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

/* HEADER */
 /* =========================
   HEADER
========================= */
header {
  background: #000;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}
.logo-anchor {
    text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === LOGO SECTION === */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.logo img {
  height: 60px; /* adjust based on your logo */
  width: auto;
  object-fit: contain;
}

.logo-text h1 {
  font-family: "serif";
  font-size: 26px;
  color: #e84a72;
  margin: 0;
  line-height: 1;
  text-align: center;
}

.logo-text p {
    font-size: 20px;
    color: #f58da5;
    margin: 0;
    font-style: italic;
    text-align: center;
}

.offers-section svg.svg-inline--fa.fa-whatsapp.whatsapp-ctm {
    color: #fff;
}
.menu-head{
    height: 50px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

nav .btn {
  background: #e91e63;
  padding: 8px 15px;
  border-radius: 4px;
}

/* =========================
   HAMBURGER MENU
========================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Close button in mobile menu */
.close-menu {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
  text-align: right;
  padding: 0 15px;
}

/* =========================
   RESPONSIVE STYLES
========================= */
@media (max-width: 768px) {
  /* Hamburger visible */
  .hamburger {
    display: flex;
  }

  /* Mobile menu */
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 220px;
    background: #000;
    flex-direction: column;
    gap: 30px;
    padding-top: 60px;
    padding-left: 15px;
    transition: right 0.3s ease;
    z-index: 999;
  }

    .logo-text {
        /*margin-left: 15px;*/
    }
    li.close-menu {
    position: absolute;
    top: 10px;
    right: 5px;
}
  /* Show menu when active */
  nav ul.active {
    right: 0;
  }

  /* Show close button in mobile menu */
  .close-menu {
    display: block;
    margin-bottom: 20px;
  }
}
/**end header**/

/* HERO banner slider */
 /* HERO SLIDER */
 .hero-slider {
  position: relative;
  height: 80vh; /* full viewport height */
  overflow: hidden;
}

.hero-slider .slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  height: 100%;
}

.hero-slider .slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-slider .overlay {
  background: rgba(0,0,0,0.5);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  max-width: 90%;
  margin: 0 auto;
}

.hero-slider h1 {
  font-size: 42px;
  margin: 20px 0;
}

.hero-slider h2 {
  font-size: 28px;
}

.hero-buttons {
  margin-top: 20px;
}

.hero-buttons .btn {
  background: #e91e63;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  margin: 10px;
}

.hero-buttons .btn-outline {
  border: 2px solid #fff;
  padding: 10px 20px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
}

/* Navigation Arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 10;
}

.slider-nav span {
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s;
}

.slider-nav span:hover {
  color: #e91e63;
}

/* Dot indicators on image */
.slider-dots {
  position: absolute;
  bottom: 30px; /* on image */
  width: 100%;
  text-align: center;
  z-index: 15;
}

.slider-dots .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dots .dot.active {
  background: #e91e63;
}

/* ========================
   Responsive for tablets
======================== */
@media (max-width: 1024px) {
  .hero-slider h1 {
    font-size: 36px;
  }
  .hero-slider h2 {
    font-size: 24px;
  }
  .hero-buttons .btn,
  .hero-buttons .btn-outline {
    padding: 8px 15px;
    margin: 5px;
  }
}

/* ========================
   Responsive for mobile
======================== */
@media (max-width: 768px) {
  .hero-slider h1 {
    font-size: 28px;
  }
  .hero-slider h2 {
    font-size: 20px;
  }
  .hero-buttons .btn,
  .hero-buttons .btn-outline {
    padding: 6px 12px;
    margin: 5px;
  }

  .slider-nav span {
    font-size: 30px;
  }

  .slider-dots .dot {
    width: 10px;
    height: 10px;
  }
}



/***slider tour**/
/* === TOUR SLIDER STYLES === */
/* === TOUR SLIDER STYLES === */
.tour-slider {
  width: 90%;
  max-width: 1300px;
  margin: 60px auto;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #222;
  position: relative;
}

.tour-slider__title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 30px;
}

.tour-slider__title span {
  color: #e84a72;
  font-family: "Great Vibes", cursive;
  font-size: 2rem;
  font-weight: 600;
}

/* === CONTAINER & TRACK === */
.tour-slider__container {
  overflow: hidden;
  position: relative;
  padding-bottom: 20px;
}

.tour-slider__track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* === CARD === */
.tour-slider__card {
  min-width: 25%; /* Show 4 cards at a time */
  box-sizing: border-box;
  padding: 10px;
  position: relative;
}

.tour-slider__card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  filter: brightness(85%);
}

.tour-slider__content {
  position: absolute;
  bottom: 20px;
  left: 25px;
  color: #fff;
  text-align: left;
}

.tour-slider__content h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.tour-slider__content p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* === DOTS === */
.tour-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.tour-slider__dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: 0.3s;
}

.tour-slider__dots .dot.active {
  background: #e84a72;
  transform: scale(1.2);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .tour-slider__card {
    min-width: 33.33%;
  }
}

@media (max-width: 768px) {
  .tour-slider__card {
    min-width: 50%;
  }
}

@media (max-width: 480px) {
  .tour-slider__card {
    min-width: 100%;
  }
}


/***end tour slider section**/

/**featured program**/

/* === FEATURED PROGRAM SECTION === */
.featured-program {
  width: 90%;
  max-width: 1200px;
  margin: 60px auto;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #222;
}

/* === TITLE === */
.featured-program__title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 30px;
}

.featured-program__title span {
  font-family: "Great Vibes", cursive;
  color: #e84a72;
  font-size: 2.2rem;
  font-weight: 600;
}

.featured-program__title i {
  color: #e84a72;
  font-style: normal;
  margin: 0 6px;
  font-weight: 500;
}

/* === CARD CONTAINER === */
.featured-program__card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.featured-program__image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* === OVERLAY CONTENT === */
.featured-program__overlay {
  position: absolute;
  bottom: 30px;
  left: 40px;
  color: #fff;
  text-align: left;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.featured-program__heading {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.featured-program__heading .highlight {
  font-family: "Great Vibes", cursive;
  font-size: 2.2rem;
  font-weight: 600;
  color: #f9c900;
  text-transform: none;
}

.featured-program__details {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.featured-program__duration {
  font-size: 1.1rem;
  font-weight: 500;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .featured-program__heading {
    font-size: 2rem;
  }

  .featured-program__overlay {
    bottom: 20px;
    left: 20px;
  }

  .featured-program__details,
  .featured-program__duration {
    font-size: 1rem;
  }
}

/**end featured program**/

/**happy customers**/
/* === HAPPY CUSTOMERS SECTION === */
.happy-customers {
  background-color: #fff7ee;
  padding: 80px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.happy-customers__title {
  font-size: 2rem;
  color: #555;
  font-weight: 500;
  margin-bottom: 10px;
}

.happy-customers__title span {
  color: #e75b73;
  font-weight: 700;
}

.happy-customers__subtitle {
  color: #8c8c8c;
  font-size: 1rem;
  margin-bottom: 40px;
}

/* === TESTIMONIALS CONTAINER === */
.testimonials {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* === INDIVIDUAL CARD === */
.testimonial-card {
  background: #fff;
  flex: 1 1 300px;
  max-width: 350px;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* === QUOTE MARK === */
.quote-mark {
  position: absolute;
  top: 0px;
  left: 6px;
  font-size: 3rem;
  color: #e75b73;
  z-index: 0;
}

.testimonial-card p {
  position: relative;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  z-index: 1;
}

.testimonial-card h4 {
  color: #e75b73;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .testimonials {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    max-width: 90%;
  }
}
/**end customers**/

/*** stories blog**/

.stories {
  margin: 50px auto;
  text-align: center;
  padding: 0 15px;
}

.stories h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #e05b74;
  margin-bottom: 30px;
}

.stories .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.stories .card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stories .card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 6px 15px rgba(0,0,0,0.15);
}

.stories .card-image {
  position: relative;
  overflow: hidden;
}

.stories .card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.stories .card:hover .card-image img {
  transform: scale(1.05);
}

.stories .tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255,255,255,0.9);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
}

.stories .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 15px;
  text-align: center;
  opacity: 1;                 /* Always visible */
  transform: translateY(0);   /* No slide animation */
}

.stories .overlay h3 {
  font-size: 16px;
  margin: 0;
  font-weight: bold;
}

.stories .overlay p {
  font-size: 14px;
  margin-top: 5px;
}

.stories .card-content {
  padding: 15px 18px 20px;
  text-align: left;
}

.stories .meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.stories .meta i {
  margin-right: 5px;
  color: #e05b74;
}

.stories .title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
  color: #222;
  transition: color 0.3s;
}

.stories .title:hover {
  color: #e05b74;
}

/* ============================= */
/* RESPONSIVE DESIGN             */
/* ============================= */

/* Tablets */
@media (max-width: 992px) {
  .stories.container h2 {
    font-size: 1.8rem;
  }
  .stories.container .overlay h3 {
    font-size: 15px;
  }
  .stories.container .overlay p {
    font-size: 13px;
  }
}

/* Mobiles */
@media (max-width: 600px) {
  .stories.container h2 {
    font-size: 1.6rem;
  }
  .stories.container .cards {
    grid-template-columns: 1fr; /* stack cards */
  }
  .stories.container .overlay h3 {
    font-size: 14px;
  }
  .stories.container .overlay p {
    font-size: 12px;
  }
}

/**end stories**/
/* SECTIONS */
section {
  padding: 60px 0;
}

.hero-slider {
    padding: 0px;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

section h2 span {
  color: #e91e63;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
}

/* TESTIMONIALS */
.testimonials {
  background: #fff5f7;
  text-align: center;
}

.testimonial {
  margin: 15px;
  font-style: italic;
  color: #555;
}

/* FOOTER */
footer {
  background: #111;
  color: #ddd;
  padding: 40px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}

footer h3, footer h4 {
  margin-bottom: 15px;
  color: #fff;
}

footer a {
  color: #ddd;
  text-decoration: none;
}

footer ul {
  list-style: none;
}

footer p {
  margin-bottom: 10px;
}

.copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
}

/****about us page**/
/* Hero Sections */
.hero {
  position: relative;
  height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero.about {
  background-image: url("https://jstourtravel.com/public/storage/best-travel-agency-pathankot.jpg"); /* replace with your own */
}

.hero.questions {
  background-image: url("https://jstourtravel.com/public/storage/best-travel-agency-pathankot.webp"); /* replace with your own */
}

.overlay-text {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 8px;
}

.hero h1, .hero h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 20px;
}

.hero button {
  padding: 12px 25px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  background: #333;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}
.talk-now {
    padding: 12px 25px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    background: #333;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration:none;
}
.hero button:hover {
  background: #555;
}

/* Content Section */
.content {
  padding: 60px 10%;
  background: #fff;
  text-align: center;
}
.content h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.content h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 20px;
}
.content p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #444;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero { height: 60vh; }
  .hero h1, .hero h2 { font-size: 2.5rem; }
}
@media (max-width: 768px) {
  .hero { height: 50vh; padding: 20px; }
  .hero h1, .hero h2 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .content { padding: 40px 5%; }
}
@media (max-width: 480px) {
  .hero { height: 40vh; }
  .hero h1, .hero h2 { font-size: 1.6rem; }
  .hero p { font-size: 0.9rem; }
  .content { padding: 30px 20px; }
  .content h2 { font-size: 1.5rem; }
  .content h3 { font-size: 1rem; }
}

/**end about page**/


/**contact us page**/
.contact-us-page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contact-us-page {
  font-family: 'Georgia', serif;
  color: #111;
  line-height: 1.6;
}

/* Hero Section */
.contact-us-page .hero {
  background: url('https://jstourtravel.com/public/storage/best-travel-agency-in-pathankot-near.jpg') no-repeat center center/cover;
  height: 380px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-us-page .hero h1 {
  font-size: 2.5rem;
  color: white;
  z-index: 2;
  letter-spacing: 2px;
  text-align: center;
}
.contact-us-page .hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
}

/* Contact Section */
.contact-us-page .contact-container {
  display: flex;
  justify-content: space-between;
  padding: 50px 10%;
  gap: 50px;
  flex-wrap: wrap;
}

/* Left Form */
.contact-us-page .contact-form {
  flex: 1;
  min-width: 280px;
}
.contact-us-page .contact-form h2 {
  margin-bottom: 20px;
  font-size: 48px;
}
.contact-us-page .contact-form form {
  display: flex;
  flex-direction: column;
}
.contact-us-page .contact-form label {
  margin: 10px 0 5px;
  font-weight: bold;
}
.contact-us-page .contact-form input,
.contact-us-page .contact-form textarea, .contact-form select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 1rem;
}
.contact-us-page .contact-form textarea {
  height: 100px;
  resize: none;
}
.contact-us-page .contact-form .captcha-box {
  background: #f5f5f5;
  padding: 10px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  font-size: 0.9rem;
}
.contact-us-page .contact-form button {
  padding: 14px;
  border: none;
  background: #333;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.contact-us-page .contact-form button:hover {
  background: #555;
}

/* Right Info */
.contact-us-page .contact-info {
  flex: 1;
  min-width: 280px;
}
.contact-us-page .contact-info h2 {
  margin-bottom: 20px;
  font-size: 48px;
}
.contact-us-page .contact-info p {
  margin-bottom: 15px;
}
.contact-us-page .social-links {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}
.contact-us-page .social-links img {
  width: 30px;
  height: 30px;
}

/* Profile Card */
.contact-us-page .profile-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  max-width: 250px;
}
.contact-us-page .profile-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}
.contact-us-page .profile-card h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}
.contact-us-page .profile-card p {
  color: #666;
  margin-bottom: 10px;
}

.alert.alert-success {
    background: #d4edda;
    color: #155724;
    padding: 10px;
    margin-bottom: 10px;
}

.success-msg {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #c3e6cb;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatsapp-link{
    background-color: #25D366;
    color: white; 
    padding: 10px 15px; 
    border-radius: 6px; 
    text-decoration: none; 
    font-weight: bold; 
    text-align: center; 
    border: none; 
    cursor: pointer; 
    display: block; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.whatsapp-link svg.svg-inline--fa.fa-whatsapp{
    color: #fff;
}
/* Responsive Layout */
@media (max-width: 1024px) {
  .contact-us-page .contact-container {
    padding: 40px 5%;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .contact-us-page .hero {
    height: 180px;
  }
  .contact-us-page .hero h1 {
    font-size: 48px;
  }
  .contact-us-page .contact-container {
    flex-direction: column;
  }
  .contact-us-page .contact-info h2 {
    font-size: 35px;
    }
    .contact-us-page .contact-form h2 {
        font-size: 35px;
    }
}

.social-links svg {
    height: 30px;
}
svg.svg-inline--fa.fa-instagram {
    color: #f9574d;
}

svg.svg-inline--fa.fa-youtube {
    color: #e91e63;
}

svg.svg-inline--fa.fa-whatsapp {
    color: #06af06;
}
.email-text{
    text-decoration: none;
    color: #000;
    font-size: 16px;
}
/**end contact page**/

/**offers section**/
.offers-section {
    font-family: "Poppins", sans-serif;
    text-align: center;
    margin: 40px auto;
    width: 90%;
    max-width: 1100px;
}
.offers-section .heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
}
.offers-section .highlight {
    color: #e91e63;
    font-style: italic;
}

.offers-section .slider {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.offers-section .slides {
    display: flex;
    transition: transform 0.6s ease;
}
/*.offers-section .slide {*/
/*    min-width: 100%;*/
/*    position: relative;*/
/*}*/
/*.offers-section .offer-image {*/
/*    width: 100%;*/
/*    height: 330px;*/
/*    object-fit: cover;*/
/*}*/
.offers-section .slide {
       height: 330px;
    position: relative;
    width: 100%;


}
.offers-section .offer-image {
    width: 100%;
    height: 100%; /* fill parent slide */
    object-fit: cover;
    display: block;
}
.offers-section .offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* ensures it fully covers the image */
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px; /* optional, ensures bottom content has space */
    box-sizing: border-box;
}

.offers-section .offer-season {
    color: #ffd54f;
    font-size: 1.5rem;
    font-weight: 600;
}
.offers-section .offer-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.4);
}
.offers-section .offer-place {
    font-size: 1.25rem;
    font-style: italic;
    margin-top: 8px;
    color: #fff;
}
.offers-section .btn-click {
    background: #e53935;
    color: white;
    padding: 5px 24px;
    border-radius: 30px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.offers-section .btn-click:hover {
    background: #b71c1c;
}
.offers-section .whatsapp-bar {
    position: absolute;
    bottom: 15px;
    background: rgba(37, 211, 102, 0.4);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
}
.offers-section .prev,
.offers-section .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.5rem;
}
.offers-section .prev:hover,
.offers-section .next:hover {
    background-color: rgba(0,0,0,0.8);
}
.offers-section .prev { left: 15px; }
.offers-section .next { right: 15px; }

@media (max-width: 768px) {
    .offers-section .offer-title { font-size: 2rem; }
    .offers-section .offer-image { height: 300px; }
    
    .offers-section .whatsapp-bar{
        padding: 0px 15px;
        border-radius: 0;
        bottom: 0;
        width: 100%;

    }
    .offers-section svg.svg-inline--fa.fa-whatsapp.whatsapp-ctm {
        color: #fff;
    }
    .offers-section .slide {
        height: 300px;
    }
}

.tel-ph{
    text-decoration: none;
    color: #000;
}

/**package**/

.hero {
  position: relative;
  background: url('https://jstourtravel.com/public/storage/best-travel-agency-near-pathankot.jpg') center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
}
.hero-content p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #eee;
}

/* ---------- Packages Grid ---------- */
.packages-section {
  background-color: #fafafa;
  padding: 80px 20px;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.package-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.package-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.package-card:hover img {
  transform: scale(1.08);
}
.package-info {
  padding: 18px;
}
.package-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}
.package-info p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
}
.package-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #555;
}
.package-meta span.price {
  font-weight: 700;
  color: #c77f00;
}
.package-meta span.days {
  font-style: italic;
}

/* Debug styles */
.debug-box {
  background: #f8f9fa;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  padding: 20px;
  margin: 20px auto;
  max-width: 1200px;
  font-family: monospace;
  font-size: 12px;
  overflow-x: auto;
}
.debug-box h3 {
  color: #c77f00;
  margin-bottom: 15px;
  font-size: 16px;
}
.debug-box pre {
  background: #fff;
  padding: 15px;
  border-radius: 4px;
  overflow-x: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.packages-section a{
    text-decoration: none;
}

.side-br.nav-link.text-danger a {
    margin: 0 !important;
    padding: 5px !important;
    color: #fff;
    text-decoration: none;
}