@media (max-width: 768px) {
  .about-section {
    min-height: 20vh;  
    padding-bottom: 100px;
    overflow: hidden;
    border-radius: 0 !important; 
    margin: 0 !important;
    width: 100% !important;
  }
}

.about-section {
  position: relative;
  background: url('../images/kullu.webp') center/cover no-repeat;
  transition: all 0.6s ease-in-out;
  overflow: hidden;
  min-height: 70vh;
  border-radius: 0 !important;  /* corners bilkul square */
  margin: 0 !important;         /* left/right gap hatao */
  width: 100% !important;       /* full screen cover */
}

/* Sticker OUTSIDE */
.price-sticker {
  position: relative;
  margin: -0px auto 0 auto;   /* overlap karne ke liye upar kheench lo */
  background-color: #155a9c;
  color: #fff;
  padding: 12px 40px;
  border-radius: 0 0 16px 16px;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  width: fit-content;
  z-index: 5;
}
.price-sticker {
  transition: transform 0.5s ease;
}

/* Jab section hover ho */
.about-section:hover + .price-sticker {
  transform: scale(1.05) translateY(13px); /* thoda neeche aur zoom */
}

/* Optional: dark overlay effect */
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3); 
  transition: background 0.5s ease-in-out;
  z-index: 1;
}

.about-section:hover::before {
  background: rgba(0,0,0,0.5); /* darker on hover */
}

/* Keep text above overlay */
.about-section .container {
  position: relative;
  z-index: 2;
}
.about-section:hover {
  background-size: cover; /* always cover full section */
  transform: scale(1.05); /* zoom karo pura section, bg nahi bigadega */
}

.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }

  /* Mobile pe hide cards */
@media (max-width: 768px) {
  .feature-cards {
    display: none !important;
  }
}


.offer-section {
  padding: 20px 20px;
}

.offer-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #d9eaff;
  box-shadow: 0 0 8px rgba(27,120,199,0.2);
  padding: 20px 20px;
  max-width: 1100px;
  margin: auto;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.faq-section {
  padding: 0px 0px;
  background-size: cover;
  background-position: center;
}

@media (max-width: 576px) {
  .content h2 {
    font-size: 1.3rem;  /* chhota size for phone */
    line-height: 1.3;   /* line spacing thoda adjust */
  }
}


.cancellation-policy {
  background-color: #6a8dad; /* same light blue */
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-top: 40px;
  font-size: 15px;
  line-height: 1.6;
  width: 320px;         /* chhoti width */
  min-height: 350px;    /* height zyada */
  margin-left: auto;
  margin-right: auto;   /* center align under map */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* thoda shadow neat look ke liye */
}

.cancellation-policy h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
  text-align: center;
}

.cancellation-policy ul {
  padding-left: 18px;
  margin: 0;
}

.cancellation-policy li {
  margin-bottom: 10px;
  list-style-type: disc;
}
@media (max-width: 768px) {
  .cancellation-policy {
    width: 100%;
    min-height: auto; /* phone me normal height */
  }
}


.important-note {
  background-color: #93c890; /* soft green shade like screenshot */
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.6;
  width: 320px;          /* same size as cancellation card */
  min-height: 200px;
  margin-left: auto;
  margin-right: auto;    /* center align */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.important-note h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  color: #fff;
}

.important-note p {
  margin: 0;
  text-align: justify;
}

@media (max-width: 768px) {
  .important-note {
    width: 100%;
    min-height: auto;
  }
}


/* Package Heading */
.package-heading {
  text-align: center;
  margin-top: 20px; /* Upar se gap, adjust kar sakte ho 40px - 80px ke beech */
  margin-bottom: 15px; /* Heading aur tabs ke beech */
}

.package-heading h2 {
  font-size: 28px;
  font-weight: bold;
  color: #2c3e50;
  letter-spacing: 1px;
}

@media (max-width: 767px) {
  .package-heading {
    margin-top: 30px; /* Mobile me thoda kam gap */
  }
  .package-heading h2 {
    font-size: 22px;
  }
}

/* Tabs + Heading Alignment */
#packageTabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px; /* Heading ke niche thoda space */
}

/* Custom Tabs Styling */
.custom-tabs .nav-link {
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  transition: all 0.3s ease;
  color: #555;
  font-weight: 500;
  background-color: #f1f1f1;
  text-align: center;
  min-width: 120px; /* Uniform width for tabs */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Active Tab */
.custom-tabs .nav-link.active {
  background-color: #1DA851; /* Soft Green */
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

/* Hover Tab */
.custom-tabs .nav-link:hover {
  background-color: #1AA344; /* Lighter Green shade */
  color: #fff;
  transform: translateY(-2px);
}

/* Mobile Styles */
@media (max-width: 767px) {
  .custom-tabs {
    justify-content: center;
    gap: 8px;
  }

  .custom-tabs .nav-link {
    padding: 8px 15px;
    font-size: 14px;
    min-width: 100px;
    margin: 5px 0;
  }
}
.custom-tabs {
  border-bottom: 1px solid #ccc; /* ek subtle line neeche */
  padding-bottom: 10px; /* line aur links ke beech gap */
}
