:root {
  --green: #f68048;
  --dark-green: #091569;
  --red: #e63946;
  --dark-overlay: rgba(0, 0, 0, 0.55);
  --body-text: #666666;
}

/* Global */
body {
  font-family: "Poppins", sans-serif;
}

/* Sticky Header Wrapper */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Top Bar */
.top-bar {
  background: linear-gradient(90deg, #000, #444);
  color: #fff;
  font-size: 14px;
  padding: 6px 0;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.top-bar a:hover {
  text-decoration: underline;
}

/* Social Icons */
.top-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  color: #fff;
  font-size: 14px;
  transition: 0.3s ease;
}

.top-icon:hover {
  transform: translateY(-2px);
}

.whatsapp {
  background: #25d366;
}
.instagram {
  background: #e4405f;
}
.facebook {
  background: #1877f2;
}

/* Offer Ticker */
.offer-ticker {
  display: flex;
  align-items: center;
  background: #f8ef75;
  color: #000;
  font-size: 14px;
  overflow: hidden;
}

.ticker-label {
  background: var(--red);
  padding: 6px 14px;
  font-weight: 600;
  white-space: nowrap;
}

.ticker-wrap {
  overflow: hidden;
  width: 100%;
}

.ticker {
  display: inline-flex;
  white-space: nowrap;
  animation: tickerMove 50s linear infinite;
}

.ticker span {
  padding: 6px 30px;
}

/* Hero Slider */
.hero-slider .carousel-item {
  height: 80vh; /* Adjust height as needed */
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slider .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Darkens the image so text is readable */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* Hero Section */
.hero-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1503220317375-aaad61436b1b?auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

/* Buttons */
.btn-teal {
  background: var(--green);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
}

.btn-outline-teal {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
}

.btn-teal:hover {
  background: var(--dark-green);
  border-color: var(--dark-green);
  color: #fff;
}

.btn-outline-teal:hover {
  background: var(--dark-green);
  border-color: var(--dark-green);
}

/* Floating Icons */
.floating-icons {
  position: fixed;
  right: 20px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-icons a {
  width: 52px;
  height: 52px;
  text-decoration: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.whatsapp {
  background: #25d366;
}
.call {
  background: #0487f1;
}

/* Color Palette */

.consultancy-section {
  background-color: #ffffff;
  overflow: hidden;
}

.sub-heading {
  color: var(--dark-green);
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.main-heading {
  color: var(--green);
  font-size: 2.8rem;
  line-height: 1.2;
}

.description {
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* The Unique Corner Styling */
.custom-rounded {
  /* Top-left and Bottom-right corners rounded, others sharp */
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}

/* Features Ribbon Styles */
.features-ribbon {
  background-color: #f5a642; /* The specific orange/yellow from the image */
  color: #000000;
}

.feature-item {
  padding: 10px;
  transition: transform 0.3s ease;
}

/* Hover effect to make it interactive */
.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem; /* Large icons as shown in the mockup */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text {
  font-size: 1.1rem;
  line-height: 1.2;
  margin-top: 15px;
  text-transform: capitalize;
}

/* Section */
.packages-section {
  background: #f9fafc;
}

/* Headings */
.main-heading {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--dark-green);
}

.highlight {
  color: var(--green);
}

.section-badge {
  background: rgba(246, 128, 72, 0.15);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
}

.section-subtext {
  color: var(--body-text);
  max-width: 600px;
  margin: 0 auto;
}

/* Top Bar */
.package-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 5px solid var(--green);
  padding: 15px 20px;
  background: #fff;
}

.package-top-bar h4 span {
  color: var(--green);
}

/* Buttons */
.btn-quote,
.btn-book {
  background: var(--green);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-book:hover,
.btn-quote:hover {
  background: var(--dark-green);
  color: #fff;
}

/* Card */
.package-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.package-card:hover {
  transform: translateY(-12px);
}

/* Image */
.package-img {
  position: relative;
}

.package-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.duration-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--red);
  color: #fff;
  padding: 5px 12px;
  font-size: 0.75rem;
  border-radius: 20px;
}

/* Body */
.package-body {
  padding: 25px;
  text-align: center;
}

.package-body h5 {
  font-weight: 700;
  color: var(--dark-green);
}

.rating {
  color: var(--green);
  font-size: 0.9rem;
  margin: 8px 0;
}

.price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red);
  margin: 12px 0;
}

.price small {
  font-size: 0.8rem;
  color: var(--body-text);
}

.package-body ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.package-body ul li {
  font-size: 0.9rem;
  color: var(--body-text);
  margin-bottom: 6px;
}

.visit {
  font-size: 0.85rem;
  color: var(--body-text);
  margin-bottom: 20px;
}

/* Footer */
.package-footer {
  background: linear-gradient(90deg, var(--dark-green), var(--green));
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  padding: 10px;
}

.testimonial-section {
  background-color: #f8f9fa;
}

.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.quote-icon {
  font-size: 2rem;
  color: #0d6efd; /* Bootstrap Primary Blue */
  margin-bottom: 20px;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  color: #444;
  line-height: 1.6;
}

.testimonial-card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

/* Customizing Carousel Controls for visibility */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.main-footer {
  position: relative;
  /* Replace with your mountain image path */
  background:
    linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
    url("image/mountain-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  font-size: 0.9rem;
}

.footer-heading {
  color: var(--green); /* The Teal color from your image */
  font-weight: 500;
  position: relative;
}

.footer-text {
  line-height: 1.6;
  color: #e0e0e0;
}

.contact-info li {
  margin-bottom: 5px;
  color: #e0e0e0;
}

.contact-info strong {
  color: #ffffff;
}

.footer-bottom {
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.text-teal,
.footer-link {
  color: var(--green);
  text-decoration: none;
}

.footer-link:hover {
  color: #ffffff;
}

.btn-whatsapp {
  background-color: #25d366;
}
.btn-call {
  background-color: #ff9800;
}

.text-teal {
  color: var(--green) !important;
}

.vertical-img-wrapper {
  position: relative;
}

.vertical-img-wrapper img {
  width: 100%;
  /* This forces a nice vertical aspect ratio if the image isn't already vertical */
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green);
  color: white;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Using the teal color from your brand identity */
.text-teal {
  color: var(--green) !important;
}

.btn-teal {
  background-color: var(--green);
  color: white;
  border: none;
  transition: 0.3s ease;
}

.btn-teal:hover {
  background-color: var(--dark-green);
  color: white;
}

.horizontal-img-container {
  position: relative;
  height: 450px; /* Adjust height as per your preference */
  overflow: hidden;
}

.horizontal-img-container img {
  height: 100%;
  width: 100%;
  object-fit: cover; /* Ensures the image covers the area without distortion */
  object-position: center 30%;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Darkens image for text clarity */
}

.image-wrapper {
  overflow: hidden;
  border-radius: 1rem; /* Adjust for more or less rounding */
  background-color: #f8f9fa; /* Prevents layout shift with a placeholder color */
}

.image-wrapper img {
  width: 100%;
  /* This ensures a horizontal 21:9 or 16:9 ratio regardless of original size */
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

/* Subtle hover effect to make it feel interactive without buttons */
.image-wrapper:hover img {
  transform: scale(1.03);
}

#backToTop {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 45px;
  height: 45px;
  background: var(--green);
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;

  /* IMPORTANT */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  z-index: 9999;

  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#backToTop:hover {
  background-color: #0d6efd;
  transform: translateY(-5px); /* Subtle lift on hover */
}

/* Ensure the icon itself doesn't have weird margins */
#backToTop i {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.tour-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("image/himachal-tours.jpg") no-repeat center center/cover;
  min-height: 450px;
  display: flex;
  align-items: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
  position: relative;
  padding: 60px 0;
}

.tour-section2 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("image/kashmir-tour.jpg") no-repeat center center/cover;
  min-height: 450px;
  display: flex;
  align-items: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
  position: relative;
  padding: 60px 0;
}

.badge-packages {
  background-color: red;
  color: white;
  padding: 8px 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.tour-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.location-box {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  padding: 15px;
  border-left: 4px solid #fff;
  max-width: 450px;
}

.location-box h6 {
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.location-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .tour-title {
    font-size: 2.2rem;
  }
  .tour-section {
    text-align: center;
  }
  .location-box {
    margin: 0 auto;
    border-left: none;
    border-top: 4px solid #fff;
  }
}

@media (max-width: 768px) {
  .image-wrapper img {
    aspect-ratio: 16 / 9; /* Slightly taller on mobile for better visibility */
  }
}

@media (max-width: 768px) {
  .horizontal-img-container {
    height: 350px;
  }
  .display-4 {
    font-size: 2.2rem;
  }
}

@media (max-width: 991px) {
  .img-badge {
    bottom: 10px;
    right: 10px;
    padding: 10px;
  }
}

/* Adjustments for small screens */
@media (max-width: 576px) {
  .feature-icon {
    font-size: 2.2rem;
  }
  .feature-text {
    font-size: 0.95rem;
  }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .main-heading {
    font-size: 2.2rem;
  }
  .custom-rounded {
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-bottom: 2rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
}

/* Ticker Animation */
@keyframes tickerMove {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Navbar */
.navbar .nav-link {
  font-weight: 500;
  padding: 8px 14px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--green);
}

.btn-booking {
  background: var(--green);
  color: #fff;
  border-radius: 30px;
  font-weight: 500;
}

.btn-booking:hover {
  background: var(--dark-green);
  color: #fff;
}

/* Mobile */
@media (max-width: 767px) {
  .top-bar {
    font-size: 13px;
  }
  .ticker span {
    padding: 6px 18px;
  }
}
