/*
Theme Name: Shaurya Travel Theme
Author: Arc Solutions
Version: 1.0
*/
/********** Template CSS **********/
:root {
  --primary: #ff5e14;
  --secondary: #5f656f;
  --light: #f5f5f5;
  --dark: #02245b;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
  font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
  font-weight: 100 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
  font-weight: 500 !important;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.topbar-right {
  position: relative;
  background: #f2b014;
}

.topbar-right::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 100%;
  top: 0;
  left: -15px;
  transform: skewX(-30deg);
  background-color: #d44c4c;
}
/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand {
  position: relative;
  padding-right: 50px;
  height: 75px;
  display: flex;
  align-items: center;
}

/* Active link styling */
.nav-item.nav-link.active {
  color: #ff6b4a;
  font-weight: bold;
}

/* Base nav link */
.navbar .navbar-nav .nav-link {
  margin-right: 10px;
  padding: 10px 0;
  color: var(--dark);
  font-size: 16px;
  font-weight: 700;
  outline: none;
  transition: color 0.3s ease;
}

/* Hover + Active state */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #c8242c;
  font-weight: bold;
}

/* Dropdown arrow (Font Awesome down icon) */
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  vertical-align: middle;
  margin-left: 8px;
}

/* Mobile nav style */
@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }

  /* Ensure nested menus work on mobile */
  .dropdown-menu.show .dropdown-menu {
    margin-left: 1rem;
    margin-top: 0.5rem;
    display: block;
    position: relative;
  }
}

/* Desktop dropdown behavior */
@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover > .dropdown-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }

  /* Sub-dropdowns (nested) */
  .dropdown-menu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.2rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

  .dropend:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 0;
  }
}

/* Dropdown items hover styling */
.dropdown-item:hover {
  background-color: #2863a7;
  color: #fff !important;
}

/* Arrow for nested items */
.dropdown-item.dropdown-toggle::after {
  content: "\f105"; /* Font Awesome right arrow */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  float: right;
}

/* Prevent flickering between parent & sub-menu */
.dropend {
  position: relative;
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(
    to right,
    rgba(2, 36, 91, 1) 0%,
    rgba(2, 36, 91, 0) 100%
  );
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #c8242c;
  border: 15px solid #c8242c;
  border-radius: 3.5rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background: linear-gradient(
      to right,
      rgba(2, 36, 91, 1) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../images/banner/about.jpg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--light);
}

/*** Facts ***/
.facts {
  position: relative;
  margin: 6rem 0;
  background: var(--dark);
}

.facts .border {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/*** Features ***/
.btn-play {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  display: block;
  box-sizing: content-box;
  width: 16px;
  height: 26px;
  border-radius: 100%;
  border: none;
  outline: none !important;
  padding: 18px 20px 20px 28px;
  background: var(--primary);
}

@media (max-width: 992px) {
  .btn-play {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 100%;
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 100%;
  transition: all 200ms;
}

.btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  left: -1px;
  border-left: 16px solid #ffffff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

.modal-video .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

.modal-video .modal-body {
  position: relative;
  padding: 0px;
}

.modal-video .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

/*** Service ***/
.service-item {
  position: relative;
  margin: 65px 0 25px 0;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.service-item .service-img {
  position: absolute;
  padding: 12px;
  width: 130px;
  height: 130px;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
  z-index: 2;
}

.service-item .service-detail {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

.service-item .service-title {
  position: absolute;
  padding: 65px 30px 25px 30px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  transition: 0.5s;
}

.service-item:hover .service-title {
  top: -100%;
}

.service-item .service-text {
  position: absolute;
  overflow: hidden;
  padding: 65px 30px 25px 30px;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  display: flex;
  align-items: center;
  text-align: center;
  background: rgba(2, 36, 91, 0.7);
  transition: 0.5s;
}

.service-item:hover .service-text {
  top: 0;
}

.service-item .service-text::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100px;
  top: -100%;
  left: 0;
  transform: skewY(-12deg);
  background: #ffffff;
  transition: 0.5s;
}

.service-item:hover .service-text::before {
  top: -55px;
}

.service-item .btn {
  position: absolute;
  width: 130px;
  height: 50px;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  background: #ffffff;
  border: none;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
  z-index: 2;
}

.service-item .btn:hover {
  color: #ffffff;
  background: #d44c4c;
}

/*** Project ***/
.project-carousel {
  position: relative;
  background: var(--dark);
}

.project-item {
  position: relative;
  display: block;
}

.project-item img {
  transition: 0.5s;
}

.project-item:hover img,
.project-carousel .owl-item.center img {
  margin-top: -60px;
}

.project-item .project-title {
  position: absolute;
  padding: 0 15px;
  width: 100%;
  height: 80px;
  bottom: -110px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--dark);
  transition: 0.5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title {
  bottom: -60px;
}

.project-item .project-title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 30px;
  top: -15px;
  left: 0;
  transform: skewY(-5deg);
  background: var(--dark);
  transition: 0.5s;
}

.project-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 45px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  transition: 0.5s;
  opacity: 0;
  z-index: 1;
}

.project-carousel:hover .owl-nav {
  opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
  margin: 0 30px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
}

/*** Team ***/
.team-item .team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  display: flex;
  align-items: center;
  background: var(--primary);
  transition: 0.5s;
}

.team-item:hover .team-social {
  left: 0;
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
  width: 300px;
  opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: #d44c4c;
  font-size: 45px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
  margin-bottom: 30px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transform: scale(0.8);
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  transform: scale(1);
}

/*** Footer ***/
.footer {
  color: #b0b9ae;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #b0b9ae;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.copyright {
  color: #b0b9ae;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.btn_hover:hover {
  background: #2863a7 !important;
  color: white !important;
}

.nav-item {
  flex: 0 0 auto;
}

.Whatsapp_btn {
  position: fixed;
  bottom: 0px;
  left: 20px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.Whatsapp_icon {
  color: #fff;
  width: 50px;
  height: 50px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  box-shadow: 0 0 0 0 #00833b;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 206, 0, 0.795);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.Phone_btn {
  position: fixed;
  bottom: 0px;
  right: 20px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.Phone_icon {
  color: #fff;
  width: 50px;
  height: 50px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  box-shadow: 0 0 0 0 #0066ff;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
}

.auli_img {
  margin-bottom: 30px;
}

.images_border {
  border: 2px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
  transition: transform 0.3s ease;
}

.images_border:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.Char_dham {
  width: 100%;
  height: auto;
}

.tittle {
  font-weight: bold;
  color: #e74c3c;
  margin-top: 15px;
  font-size: 1.25rem;
}

.para {
  font-size: 1rem;
  color: #333;
  padding: 15px;
  line-height: 1.6;
}

.page_header_three {
  background: linear-gradient(
      to right,
      rgba(2, 36, 91, 1) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../images/char4.jpg) center center no-repeat;
  background-size: cover;
  padding: 150px 0;
}

.KedarNath_button {
  color: white;
  background: #02245b;
  transition: background 0.5s, color 0.5s;
  /* Ensure transition applies to both background and color */
  margin-bottom: 25px;
  /* Add margin-bottom */
}

.KedarNath_button:hover {
  background: white;
  /* Change background on hover */
  color: black;
  /* Change text color on hover */
}

.btn {
  font-weight: 500;
}

.page_header_three {
  background: linear-gradient(
      to right,
      rgba(2, 36, 91, 1) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../images/char5.jpg) center center no-repeat;
  background-size: cover;
  padding: 150px 0;
}

.page_header_eleven {
  background: linear-gradient(
      to right,
      rgba(2, 36, 91, 1) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../images/gangotri.webp) center center no-repeat;
  background-size: cover;
  padding: 150px 0;
}

.page_header_twelve {
  background: linear-gradient(
      to right,
      rgba(2, 36, 91, 1) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../images/yamunotri.jpg) center center no-repeat;
  background-size: cover;
  padding: 150px 0;
}

.page_header_ten {
  background: linear-gradient(
      to right,
      rgba(2, 36, 91, 1) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../images/banner/Local Taxi.png) center center no-repeat;
  background-size: cover;
  padding: 150px 0;
}

.page_header_five {
  background: linear-gradient(
      to right,
      rgba(2, 36, 91, 1) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../images/dodham.png) center center no-repeat;
  background-size: cover;
}

.page_header_four {
  background: linear-gradient(
      to right,
      rgba(2, 36, 91, 1) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../images/teendham1.webp) center center no-repeat;
  background-size: cover;
}
.page_header_three {
  background: linear-gradient(
      to right,
      rgba(2, 36, 91, 1) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../images/char4.jpg) center center no-repeat;
  background-size: cover;
  padding: 150px 0;
}
.page_header_car_banner {
  background: linear-gradient(
      to right,
      rgba(2, 36, 91, 1) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../images/ekdham-car-banner.jpg) center center no-repeat;
  background-size: cover;
  padding: 150px 0;
  height: 250px;
}

.page_header_helicopter_banner {
  background: linear-gradient(
      to right,
      rgba(2, 36, 91, 1) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../images/ekdham-helicopter-banner.webp) center center no-repeat;
  background-size: cover;
  padding: 150px 0;
  height: 300px;
}

.page_header_car_badrinath {
  background: linear-gradient(
      to right,
      rgba(2, 36, 91, 1) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../images/badrinath-helicopter-banner.jpg) center center no-repeat;
  background-size: cover;
  padding: 150px 0;
  height: 300px;
}
.page_header_helicopter_badrinath {
  background: linear-gradient(
      to right,
      rgba(2, 36, 91, 1) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../images/page_header_helicopter_badrinath.png) center center no-repeat;
  background-size: cover;
  padding: 150px 0;
  height: 300px;
}
.page_header_car_Gangotri {
  background: linear-gradient(
      to right,
      rgba(2, 36, 91, 1) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../images/gangotri-banner.jpg) center center no-repeat;
  background-size: cover;
  padding: 150px 0;
  height: 300px;
}
.page_header_helicopter_Gangotri {
  background: linear-gradient(
      to right,
      rgba(2, 36, 91, 1) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../images/page_header_helicopter_Gangotri.webp) center center no-repeat;
  background-size: cover;
  padding: 150px 0;
  height: 300px;
}
.page_header_car_Yamunotri {
  background: linear-gradient(
      to right,
      rgba(2, 36, 91, 1) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../images/yamunotri-banner-car2.jpg) center center no-repeat;
  background-size: cover;
  padding: 150px 0;
  height: 300px;
}
.page_header_helicopter_Yamunotri {
  background: linear-gradient(
      to right,
      rgba(2, 36, 91, 1) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../images/yamunotri-banner-Helicopter2.jpg) center center no-repeat;
  background-size: cover;
  padding: 150px 0;
  height: 300px;
}

#nainital_bg {
  background-image: url("../images/packages/nainital.jpg");
  padding: 100px;
  background-repeat: no-repeat;
  background-size: cover;
}
#Auli_bg {
  background-image: url("../images/packages/auli1.jpg");
  padding: 100px;
  background-repeat: no-repeat;
  background-size: cover;
}

.box_card_new img {
  border-radius: 10px;
  box-shadow: 1px 0px 1px 1px;
}

.box_card_name {
  background-color: black;
  border-radius: 10px;
  margin-top: -10px;
  position: relative;
  color: white;
  display: flex;
  justify-content: center;
}
.para_bg {
  background-color: #f7f7f7;
  background-image: url(".../images/whaterfall.jfif");
  background-repeat: no-repeat;
  background-size: cover;
}

.Nainital_bg_color {
  background-color: #f7f7f7;
  padding: 20px;
}
.auli_bg_img {
  background-image: url(".../images/packages/aulibanner.jpg");
  background-repeat: no-repeat;
  padding: 200px;
  background-size: cover;
}

.auli_img img {
  border-radius: 10px;
}

.rishikesh_bg {
  background-image: url(".../images/packages/rishikesh.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px;
}
#rishikesh_bg {
  background-image: url("../images/packages/rishikesh.jpg");
  padding: 100px;
  background-repeat: no-repeat;
  background-size: cover;
}
#Almora_bg {
  background-image: url("../images/packages/almora2.jpg");
  padding: 100px;
  background-repeat: no-repeat;
  background-size: cover;
}
#Jim-Corbett {
  background-image: url("../images/packages/Jim\ corbett1.webp");
  padding: 100px;
  background-repeat: no-repeat;
  background-size: cover;
}
#Lansdowne {
  background-image: url("../images/packages/Lansdowne.jpg");
  padding: 100px;
  background-repeat: no-repeat;
  background-size: cover;
}
#Ranikhet_bg {
  background-image: url("../images/packages/Ranikhet2.jpg");
  padding: 100px;
  background-repeat: no-repeat;
  background-size: cover;
}
#Haridwar_bg {
  background-image: url("../images/packages/Har\ Ki\ Pauri.jpg");
  padding: 100px;
  background-repeat: no-repeat;
  background-size: cover;
}
#Mussoorie_bg {
  background-image: url("../images/packages/mall\ road.jpg");
  padding: 100px;
  background-repeat: no-repeat;
  background-size: cover;
}
#vallyflower-national-park {
  background-image: url("../images/packages/vallery2.jpg");
  padding: 100px;
  background-repeat: no-repeat;
  background-size: cover;
}
.page_header_twoo {
  background: linear-gradient(
      to right,
      rgba(2, 36, 91, 1) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url("https://thekailashresidency.com/images/triyuginarayan%20holy-marriage-destination-banner.jpg")
      center center no-repeat;
  background-size: cover;
}
.page_header_fivee {
  background: linear-gradient(
      to right,
      rgba(2, 36, 91, 1) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../images/contact.jpg) center center no-repeat;
  background-size: cover;
}
.page_header_threee {
  background: linear-gradient(
      to right,
      rgba(2, 36, 91, 1) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../images/review1.jfif) center center no-repeat;
  background-size: cover;
  padding: 150px 0;
}

.slogan {
  font-size: 40px;
  font-weight: 900px;
  color: #f3f3f3;
}

/* ///// */
.nainital_icon img {
  border-radius: 20%;
  height: 70%;
  width: 80% !important;
}

.nainital_icon:hover {
  box-shadow: 0px -1px 0px 2px #3232;
}

.haridwar_bg {
  background-image: url(".../images/packages/haridwar.jpg");
  padding: 100px;
  background-repeat: no-repeat;
  background-size: cover;
}
.mussoorie_bg {
  background-image: url(".../images/packages/Mussoorie.jpg");
  padding: 100px;
  background-repeat: no-repeat;
  background-size: cover;
}

.cakrata_bg {
  background-image: url(".../images/packages/chakrata_tiger.jpg");
  padding: 200px;
  background-size: cover;
  background-repeat: no-repeat;
}

.harsil_bg {
  background-image: url(".../images/packages/Chopta1.jpg");
  padding: 200px;
  background-repeat: no-repeat;
  background-size: cover;
}

.danaulti_bg {
  background-image: url(".../images/packages/Dhanaulti.webp");
  padding: 200px;
  background-repeat: no-repeat;
  background-size: cover;
}

.flower_bg {
  background-image: url(".../images/packages/fool.webp");
  padding: 200px;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg_kausani {
  background-image: url(".../images/packages/kausani.webp");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 200px;
}

.bg_ranikhet {
  background-image: url(".../images/packages/ranikhet.jpg");
  padding: 200px;
  background-repeat: no-repeat;
  background-size: cover;
}

.almora_bg {
  background-image: url(".../images/packages/almora.jpg");
  padding: 200px;
  background-repeat: no-repeat;
  background-size: cover;
}

.jim_corbat_bg {
  background-image: url(".../images/zim.jpg");
  padding: 200px;
  background-size: cover;
  background-repeat: no-repeat;
}

.lansidown_bg {
  background-image: url(".../images/packages/lansidown.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px;
}
.tittle {
  color: #f40d0d;
}

.images_border {
  box-shadow: 0px 0px 1px;
  padding: 20px;
}

.img_box2 {
  position: relative;
}

.img_box2 .img_1 {
  border: 4px solid #fff;
}

.travel_bg {
  background-image: url(".../images/dham/travel.jfif");
  padding: 100px;
  background-size: cover;
  background-repeat: no-repeat;
}

.char_dham_bg {
  background-image: url(".../images/dham/4dham_bg.jpg");
  background-size: cover;
  padding: 200px;
  background-repeat: no-repeat;
  position: relative;
  color: #000;
}

.char_dham_bg::after {
  content: "";
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.krnatka_bg-heading {
  color: white;
  font-weight: bold;
  font-size: 30px;
  display: flex;
  justify-content: center;
}

.andr_bg {
  background-image: url(".../images/packages/andr_bg.webp");
  padding: 200px;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-info {
  text-align: center;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f8f9fa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.contact-info:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.contact-info i {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 10px;
}

.contact-info p {
  margin: 0;
  font-size: 1.1rem;
}

.banner-container {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  margin-bottom: 30px;
}

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

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3rem;
  text-align: center;
  z-index: 1;
  font-weight: bold;
}

@media (max-width: 768px) {
  .banner-text {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .contact-info {
    margin-bottom: 20px;
  }

  .contact-info i {
    font-size: 1.5rem;
  }

  .contact-info p {
    font-size: 1rem;
  }
}

.form-control {
  border-radius: 0.25rem;
  border-color: #ced4da;
  box-shadow: none;
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.25);
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #004085;
}

.enquiry-form {
  display: block !important;

  background-color: #f8f9fa;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 30px;
  padding: 10px 15px;
}

.form-label {
  font-weight: 600;
  margin-bottom: 0px;
}

.btn-danger {
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
}

/* Extra styling for alignment and padding */
.form-group {
  margin-bottom: 15px;
}

/* For desktop view */
@media (min-width: 992px) {
  .enquiry-form .row {
    display: flex;
    align-items: center;
  }

  .form-control {
    height: 45px;
  }

  .form-group {
    margin-right: 10px;
  }

  .form-group:nth-child(4) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 100px) {
  .slogan {
    font-size: 42px;
  }
}

.form-control:focus {
  border-color: #16f0b2;
  box-shadow: 0 0 8px rgba(22, 240, 178, 1);
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #004085;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:focus::placeholder {
  opacity: 0.5;
}

/* Enquiry Form Styles */
.enquiry-form {
  background: white;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 5;
}

.enquiry-form label {
  font-weight: 600;
  color: #555;
}

.enquiry-form input[type="text"],
.enquiry-form input[type="email"],
.enquiry-form input[type="tel"] {
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  background-color: #f8f9fa;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.enquiry-form input:focus {
  outline: none;
  background-color: #fff;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

.enquiry-form button {
  background: #dc3545;
  border: none;
  border-radius: 50px;
  color: #fff;
  padding: 10px 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.enquiry-form button:hover {
  background: #2863a7;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .carousel-caption {
    width: 90%;
    padding: 15px;
  }

  .enquiry-form {
    padding: 20px;
  }
}

.transparent-background {
  background-color: rgba(0, 0, 0, 0.5); /* Black with 50% transparency */
  color: white; /* Text color */
  padding: 10px;
  border-radius: 5px;
  display: inline-block;
}
.btn-lg-square {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shadow-lg {
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
/* Service Card */
.service-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(220,53,69,0.25);
}

/* Icon Box */
.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Gradient Colors */
.icon-box.taxi {
  background: linear-gradient(135deg, #dc3545, #ff6a00);
}

.icon-box.dham {
  background: linear-gradient(135deg, #b31217, #ff4b2b);
}

.icon-box.tour {
  background: linear-gradient(135deg, #93291e, #ed213a);
}

/* Hover Glow */
.service-card:hover .icon-box {
  box-shadow: 0 0 20px rgba(220,53,69,0.7);
}

/* Text */
.service-card h5 {
  font-weight: 600;
}


/* Responsive banner images */
#header-carousel .carousel-item img {
  width: 80%;
  height: 100%;          /* Desktop height */
  object-fit: cover;    /* Prevent image distortion */
}

/* Tablet view */
@media (max-width: 991px) {
  #header-carousel .carousel-item img {
    height: 100%;
  }
}

/* Mobile view */
@media (max-width: 575px) {
  #header-carousel .carousel-item img {
    height:100%;
  }
  #header-carousel .carousel-caption {
    bottom: 15%;
    text-align: center;
  }
}
.text-justify {
  text-align: justify;
  text-justify: inter-word;
}
.chardham-hero{
  background: linear-gradient(to right, rgba(2,36,91,0.9), rgba(2,36,91,0.3)),
              url('images/chardham-yatra-by-car.jpg') center/cover no-repeat;
  padding: 140px 0;
}
