:root {
  --primary-color: #0d6efd;
  --secondary-color: #f8f9fa;
  --accent-color: #ff6b6b;
  --dark-color: #212529;
  --light-color: #ffffff;
  --text-color: #6c757d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-color);
  overflow-x: hidden;
}
.why-choose-section {
  transform: translateY(-6px);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 20px;
  font-weight: bold;
}

.feature-desc {
  color: #333;
  margin-top: 5px;
}

.experience-section {
  margin-top: 50px;
  padding: 30px;
  background: #eef2ff;
  border-radius: 10px;
}

.stats-container {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.stat-box {
  text-align: center;
}

.stat-number {
  font-size: 30px;
  font-weight: bold;
  color: #2c6bed;
}

/* Responsive */
@media (max-width: 900px) {
  .feature-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .feature-container {
    grid-template-columns: repeat(1fr);
  }
  .why-choose-section {
    padding: 20px;
  }
}

/* Navbar */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 10px;
  color: var(--dark-color) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}
/* Footer */
footer {
    position: relative;

    color: white;
    padding: 70px 0 20px;
    text-align: center;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}
.modal-body .form-control {
  border: 1px solid var(--text-color);
}

.footer-column h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 160px;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
}

.footer-column p {
  color: #adb5bd;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: #adb5bd;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-links i {
  margin-right: 10px;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: #adb5bd;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .carousel-content h1 {
    font-size: 2.5rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .carousel-content h1 {
    font-size: 2rem;
  }

  .carousel-content p {
    font-size: 1rem;
  }

  .trip-form {
    padding: 20px;
  }

  .section {
    padding: 60px 0;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-column {
    min-width: 100%;
  }
  .carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    z-index: 2;
    text-align: center;
    color: white;
  }
  .trip-form h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
    margin-top: -5px;
  }
  .btn-trip {
    background-color: #ff5522;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
    text-align: center;
    width: 66%;
    /* margin: auto; */
  }
}
/* Hero Banner */
.hero-banner {
  position: relative;
  height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)),;

  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease;
}

.hero-content p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

/* Content Section */
.content-section {
  padding: 60px 0;
  background: var(--secondary-color);
}

.content-wrapper {
  /* max-width: 800px; */
  margin: 0 auto;
  text-align: center;
}

.content-wrapper h2 {
  font-size: 3rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.content-wrapper p {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.8;
}

/* Packages Section */
.packages-section {
  padding: 20px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-color);
}

/* Column adjustments for 3 cards per row on large screens */
@media (min-width: 1350px) {
  .col-lg-6 {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
  }

  .container {
    max-width: 1300px;
  }
}

/* Package Cards */
.package-card {
  background: white;
  border-radius: 16px;

  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.package-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.package-badge {
  position: absolute;
  top: 0px;
  right: -5px;
  background: #ff5522;
  color: white;
  padding: 5px 15px;
  border-radius: 0px 0px 0px 14px;
  font-size: 0.9rem;
  font-weight: 600;
}

.package-content {
  padding: 25px;
}

.package-header {
  margin-bottom: 15px;
}

.package-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
  align-items: flex-start;
}

.flex-pricing-style {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-align {
  display: flex;
  align-items: center;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color);
  font-size: 0.95rem;
}

.meta-item i {
  color: #ff5522;
}

.package-description {
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.whatsapp-top {
  width: 100%;
  margin-bottom: 15px;
}

.button-row-bottom {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.button-row-bottom .btn-view-more,
.button-row-bottom .btn-enquire {
  flex: 1;
  width: auto;
}

.package-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.package-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0c2947;
}

.package-price small {
  font-size: 0.9rem;
  color: var(--text-color);
  font-weight: 400;
}

.btn-view-more {
  background: #ff5522;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  width: 100%;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: white;
  color: #25d366;
  border: 1px solid #25d366;
  border-radius: 6px;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.whatsapp-btn:hover {
  background: #25d366;
  color: white;
}

/* Package Details (Hidden by default) */
.package-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: var(--secondary-color);
}

.package-details.active {
  max-height: 2000px;
  transition: max-height 0.8s ease;
}

.details-content {
  padding: 30px;
}

.details-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--border-color);
}

.tab-btn {
  background: none;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.tab-btn.active {
  color: var(--primary-color);
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

/* Itinerary Styles */
.itinerary-day {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.day-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.day-number {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.day-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-color);
}

.day-activities {
  list-style: none;
  padding: 0;
}

.day-activities li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-color);
}

.day-activities li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Inclusions/Exclusions */
.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list.inclusions i {
  color: var(--success-color);
  font-size: 1.2rem;
  margin-top: 2px;
}

.info-list.exclusions i {
  color: var(--danger-color);
  font-size: 1.2rem;
  margin-top: 2px;
}

/* Enquiry Modal */
.enquiry-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.enquiry-modal.active {
  display: flex !important;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
  position: relative;
  margin: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.modal-content::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
  width: 0 !important;
}

.modal-header {
  padding: 25px;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-color);
}

.close-modal {
  background: none;
  border: none;
  font-size: 2rem;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
  position: absolute;
  top: 15px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
  z-index: 10;
}

.close-modal:hover {
  background-color: #f5f5f5;
  color: #333;
}

.modal-body {
  padding: 25px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-color);
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-enquire {
  width: 100%;
  height: 40px;
  padding: 10px;
  background: #011a38;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-enquire:hover {
  background: #ea653e;
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
    margin-top: 50px;
  }

  .package-footer {
    flex-direction: column;
    gap: 15px;
  }

  .package-footer > div {
    width: 100%;
  }

  .details-tabs {
    flex-wrap: wrap;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .col-lg-4.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px 20px;
  }

  .package-card {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
}

/* Section Styles */
.home5-destination-card-slider-section {
  padding: 80px 0;
  background-color: #f9fafb;
}

.mb-50 {
  margin-bottom: 50px;
}

/* Section Title */
.section-title4 {
  margin-bottom: 40px;
}

.eg-section-tag {
  display: inline-block;
  padding: 6px 15px;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title4 h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title4 h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* Destination Card Slider */
.destination-card-with-slider {
  position: relative;
}

.destination-card3-slider {
  overflow: hidden;
  padding: 10px 0 50px;
}

.destination-card3-slider .swiper-slide {
  height: auto;
}

/* Destination Card */
.destination-card3 {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.destination-card3:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.destination-card-img {
  display: block;
  overflow: hidden;
  position: relative;
  height: 200px;
}

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

.destination-card3:hover .destination-card-img img {
  transform: scale(1.1);
}

.destination-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.destination-card-content h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.destination-card-content h4 a {
  color: var(--dark-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.destination-card-content h4 a:hover {
  color: var(--primary-color);
}

.batch {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-color);
  z-index: 1;
}

.batch span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Slider Navigation */
.slider-btn-grp2 {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
}

.slider-btn {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
}

.slider-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.slider-btn svg {
  width: 12px;
  height: 20px;
  transition: fill 0.3s ease;
}

.slider-btn:hover svg {
  fill: white;
}

.slider-btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* CTA Button */
.secondary-btn3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  background-color: #ff5522;
  color: white;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.secondary-btn3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--accent-color);
  transition: width 0.3s ease;
  z-index: -1;
}

.secondary-btn3:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.secondary-btn3:hover::before {
  width: 100%;
}

@media (max-width: 500px) {
  .package-content > .d-flex {
    flex-direction: column;
    gap: 10px;
  }

  .package-content > .d-flex > .btn-view-more {
    order: 1;
    width: 100%;
    margin: 0 0 5px 0;
    text-align: center;
  }

  .package-content > .d-flex > .button-row {
    order: 2;
    display: flex;
    width: 100%;
    gap: 5px;
  }

  .package-content > .d-flex .whatsapp-btn,
  .package-content > .d-flex .btn-enquire {
    flex: 1;
    margin: 0;
    text-align: center;
    padding: 8px 5px;
    font-size: 12px;
  }
}

/* Reset for screens larger than 500px */
@media (min-width: 501px) {
  .package-content > .d-flex {
    flex-direction: row !important;
    gap: 0.5rem;
  }

  .package-content > .d-flex > .btn-view-more {
    order: initial !important;
    width: auto !important;
    margin: 0 0.5rem 0 0 !important;
    font-size: 12px;
    padding: 3px 9px;
  }

  .package-content > .d-flex > .button-row {
    display: contents !important;
  }

  .package-content > .d-flex .whatsapp-btn,
  .package-content > .d-flex .btn-enquire {
    flex: 1;
    margin: 0 0.5rem !important;
    padding: 1px 1px !important;
    font-size: 12px !important;
  }

  .package-content .d-flex .me-2 {
    margin-right: 5px !important;
  }

  .whatsapp-btn i.fab {
    margin-right: 5px;
  }
}

@media (max-width: 430px) {
  .btn-view-more,
  .btn-enquire,
  .whatsapp-btn {
    font-size: 11px;
  }

  .hero-banner {
    margin-top: 18px;
  }
}

@media (min-width: 1095px) {
  .trip-form {
    height: 379px;
    width: 507px;
    padding: 20px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .section-title4 h2 {
    font-size: 28px;
  }

  .slider-btn-grp2 {
    padding: 0 10px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }
}
/* Counter Section */
.home4-activity-counter-section {
  background: linear-gradient(
      180deg,
      rgba(16, 12, 8, 0.7) 0%,
      rgba(16, 12, 8, 0.7) 100%
    ),
    url("../../img/banner-manali.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 26px 0;
  position: relative;
}

.single-activity {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.single-activity:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.icon-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.single-activity:hover .icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

.icon svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.content {
  color: white;
}

.number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.counter {
  font-size: 48px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.number span {
  font-size: 32px;
  font-weight: 600;
  color: var(--accent-color);
}

.content p {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.section-title p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .home4-activity-counter-section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .counter {
    font-size: 36px;
  }

  .number span {
    font-size: 24px;
  }

  .icon {
    width: 60px;
    height: 60px;
  }

  .icon svg {
    width: 30px;
    height: 30px;
  }
}
/* Plan Your Trip Form */
.trip-form {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* For Safari */
  padding: 20px;
  border-radius: 12px;

  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1.2s ease;
  margin-top: 75px;
}

.trip-form h2 {
  color: white;
  margin-bottom: 15px;
  font-weight: 600;
  margin-top: -20px;
}

.form-control,
.form-select {
  border-radius: 10px;

  padding: 12px 15px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.input-group-text {
  border: none;
  height: 48px;
  background-color: #f8f9fa;
  padding: 0 15px;
}

.input-group-text i {
  font-size: 16px;
  height: 16px;
  line-height: 16px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-trip {
  background-color: #ff5522;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 10px;
  text-align: center;
  width: 50%;
  margin: auto;
  text-decoration: none;
}

.btn-trip:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
  color: white;
}
@media (max-width: 768px) {
  .hero-banner {
    position: relative;
    height: 800px;
    background: url("https://media.istockphoto.com/id/499377113/photo/village-in-the-middle-of-himalaya-mountains.jpg?s=2048x2048&w=is&k=20&c=Dp3dYJiKgKEh4mxxRPD-km_i7ZDMRK4MvkGuj3gTEzk=");
    background-size: cover;
    background-position: center;
    display: grid;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    color: white;}
    .trip-form {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px); /* For Safari */
      padding: 20px;
      border-radius: 12px;

      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      animation: fadeInUp 1.2s ease;
      margin-top: -50px;
    }
    .btn-trip {
      background-color: #ff5522;
      color: white;
      border: none;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
      margin-top: 10px;
      text-align: center;
      width: 52%;
      margin: auto;
      text-decoration: none;
    }
  }
  
  /* ------------------- Global Reset ------------------- */
.unique-container * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ------------------- Container ------------------- */
.unique-container {
  background-color: white !important;
  width: 100%;
  padding: 30px;
}

.unique-container .inner-container {
  width: min(1200px, 95%);
}

/* ------------------- Heading & Title ------------------- */
.unique-container .heading {
  margin-bottom: 25px;
  position:absolute;
  
}

.unique-container .title {
  font-size: 32px;
  font-weight: 800;
  display: flex;
  gap: 8px;
  align-items: center;
}

.unique-container .title .tripper {
  color: #011a38;
}

.unique-container .title .hub {
  color: #ff5522;
  background: #ffe4cc;
  padding: 6px 10px;
  border-radius: 8px;
}

.unique-container .subtitle {
  font-size: 14px;
  color: #555;
  margin-top: 6px;
}

/* ------------------- YouTube Box ------------------- */
.unique-container .yt-box {
  border-radius: 14px;
    overflow: hidden;
    margin-top: 104px;
    background: #fdfdfd;
    box-shadow: 0 30px 36px rgba(0, 0, 0, 0.15), 0 0 31px rgba(0, 0, 0, 0.10), 0 0 51px rgba(0, 0, 0, 0.08);
    position: relative;
}


/* ------------------- Carousel ------------------- */
.unique-container .carousel {
  position: relative;
  overflow: hidden;
}

.unique-container .track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.unique-container .slide {
  flex: 0 0 33.333%;
  padding: 10px;
}

/* ------------------- Responsive Slides ------------------- */
@media (max-width: 900px) {
  .unique-container .slide {
    flex: 0 0 50%;
  }
  
  
}

@media (min-width: 900px){
    
    .youtube-style-flex{
      display: flex; 
      align-items: center;
      justify-content: center;
      margin:auto;
      max-width:1300px;
      padding-bottom: 100px;
      
  }
    
}



@media (max-width: 600px) {
  .unique-container .slide {
    flex: 0 0 100%;
  }
}

/* ------------------- Thumbnails ------------------- */
.unique-container .thumb {
  width: 100%;
  height: 200px;
  background: #000;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}

/* ------------------- Play Icon ------------------- */
.unique-container .play-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: #000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ------------------- Captions ------------------- */
.unique-container .caption {
  margin-top: 8px;
  font-size: 14px;
  color: #222;
}

/* ------------------- Carousel Buttons ------------------- */
.unique-container .btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  cursor: pointer;
  z-index: 5;
}

.unique-container .btn.prev {
  left: 10px;
}

.unique-container .btn.next {
  right: 10px;
}

@media (max-width: 600px) {
  .unique-container .btn {
    display: none;
  }
}

/* ------------------- Fullscreen Player ------------------- */
.unique-container #fsPlayer {
  position: fixed;
  inset: 0;
  background: #000;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.unique-container #fsPlayer iframe {
  width: 100%;
  height: 100%;
}

/* ------------------- Responsive Font/Button Example ------------------- */
@media (min-width: 1200px) {
  .unique-container .btn-view-enquire {
    font-size: 14px;
    padding: 1px 1px !important;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .unique-container .col-lg-4 {
    flex: 0 0 auto;
    width: 45.333333%;
  }
}






