:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Poppins", sans-serif;
}
img{
  max-width: 100%;
}
/* Colors */
:root {
  --color-default: #222222;
  --color-primary: #ff7a03;
  --color-secondary: #f85a40;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}
.carousel-control-next, .carousel-control-prev{
  background: transparent!important;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #dc3545;
  text-decoration: none;
}



/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 35px 0;
  overflow: hidden;
  scroll-margin-top: 70px;
  overflow: clip;
}

.sections-bg {
  background-color: #f6f6f6;
}

.section-header {
  text-align: center;
  padding-bottom: 35px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
  color: #6f6f6f;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 20px 0 20px 0;
  min-height: 10vh;
  position: relative;width: 100% !important;
  background-color: var(--color-primary);
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #f6f6f6;
  padding: 20px 0;clear: both;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-default);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li+li {
  padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary);
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-secondary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(248, 90, 64, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}


/*--------------------------------------------------------------
# Tab button by gk
--------------------------------------------------------------*/

.btnTab {
            padding: 5px 20px;
            background-color: #000; /* Green */
            color: white;
            border: none;
            cursor: pointer;
            font-size: 16px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

.btnTab:hover {
            background-color: #000;
              }

.btnTab a {
            color: white;
        }

/*--------------------------------------------------------------
# Banner button by gk
--------------------------------------------------------------*/

.carousel-caption {
	position: absolute;
	left: 55%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.65);
	color: white;
	padding: 10px;
	text-align: right !important;
	border-radius: 8px;
	max-width: 500px;
}

.banner-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.banner-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.banner-button {
    font-size: 1rem;
    padding: 10px 20px;
    background-color: #d32f2f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.banner-button:hover {
    background-color: #b71c1c;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
	.carousel-caption {
	display:none !important;
}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background: #914300;
  height: 35px;
  font-size: 0.8rem;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

.topbar .contact-info i {
  font-style: normal;
  color: #fff;
  line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

@media (max-width: 575px) {

  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 13px;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

.topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #fff;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 60px;
  background-color: #fff;
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #fff;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: #f96f59;
}

.sticked-header-offset {
  margin-top: 70px;
}
/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
    .bg-dark ul.d-flex.flex-wrap{
            text-align: center;
    justify-content: center;
    }
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 12px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1px;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    color: #000;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;        text-transform: uppercase;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-secondary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-secondary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 6px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 600;
    color: var(--color-primary);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-secondary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1600px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
  .chardham-route ul.list-unstyled{
      flex-wrap: wrap;
	  font-size: 16px;
  }
  .chardham-packages .card {
    position: relative;
    width: 31%;
}
.navbar ul li:nth-child(2) ul.sub-menu{
    left: 0!important;
        right: inherit!important;
}
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1079px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(52, 59, 64, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(0, 131, 116, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: transparent;
    border: 0;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 99;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(52, 59, 64, 0.9);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
}

.about .call-us {
  left: 10%;
  right: 10%;
  bottom: 0;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.about .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.about .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(0, 131, 116, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(0, 131, 116, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}



/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: #6c757d;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

.faq .accordion-item:last-child {
  margin-bottom: 0;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 20px 50px 20px 20px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-default);
  text-align: left;
  background: #fff;
  box-shadow: none;
  border-radius: 10px;
}

.faq .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  color: var(--color-primary);
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  border-bottom: 0;
  box-shadow: none;
}

.faq .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
}

.faq .accordion-body {
  padding: 0 40px 30px 45px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-category {
  font-size: 16px;
  color: #6f6f6f;
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 22px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--color-default);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--color-primary);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: #3c3c3c;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-container {
  background-color: var(--color-primary);
  height: 100%;
  padding: 20px;
  border-radius: 10px 0 0 10px;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.contact .info-item {
  width: 100%;
  background-color: #ff8f2b;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: #fff;
  color: var(--color-primary);
}

.contact .php-email-form {
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 0 10px 10px 0;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 14px 45px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(0, 131, 116, 0.8);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #555555;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
  border-radius: 10px;
}

.blog .blog-pagination li a {
  color: var(--color-default);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-primary);
  color: #fff;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog .posts-list .post-category {
  font-size: 16px;
  color: #555555;
  margin-bottom: 10px;
}

.blog .posts-list .title {
  font-size: 22px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .posts-list .title a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--color-primary);
}

.blog .posts-list .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog .posts-list .post-author-list {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog .posts-list .post-date {
  font-size: 14px;
  color: #3c3c3c;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
/* blog detail */
.blog-details h2{
  margin: 20px 0 15px 0;
  padding: 0;
}
.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-default);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 0;
}
.blog .blog-details .content h4 {
  font-size: 20px;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: bold;
    padding: 0;
}
.blog .blog-details ul{
  padding-left: 16px;
}
.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(34, 34, 34, 0.06);
  padding: 15px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(34, 34, 34, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #555555;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(34, 34, 34, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-default);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(34, 34, 34, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-default);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.3);
  padding: 5px 10px;
  position: relative;
  border-radius: 50px;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 50px;
  width: calc(100% - 60px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 25px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(0, 131, 116, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-primary);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(34, 34, 34, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #555555;
  font-size: 14px;
  padding: 6px 20px;
  margin: 0 6px 8px 0;
  border: 1px solid #d5d5d5;
  display: inline-block;
  transition: 0.3s;
  border-radius: 50px;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(85, 85, 85, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 50px;
  padding: 14px 40px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(248, 90, 64, 0.8);
}
*{
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
.container-fluid{
  padding: 0 130px;
}
.chardham-temples img{
  width: 200px;
  height: 150px;
  object-fit: cover;
}
.chardham-route{
  background: url('../images/route-map.jpg') no-repeat;
  background-size: 100%;padding-left: 0 !important;
  padding-right: 0 !important;
}
.chardham-route .nav{
 border-bottom: none;
}
.chardham-route .nav-link{
 background: white;
 border-radius: 0;
 border: none;
 color: black;
 margin-right: 4px;
}
.chardham-route .nav-link.active{
 background: coral;
 color: white;
}
.about-chardham .nav{
 border-bottom: none;
 display: flex;
 justify-content: center;
}
.about-chardham .nav-link{
 border-radius: 0;
 border: none;
 margin-right: 4px;
}
.about-chardham .nav-link.active{
 background: rgb(226, 64, 4);
 color: white;
}
.inclusion-icon::after{
content: '';
position: absolute;
left: 0;
bottom: 0;
background: orangered;
width: 100%;
height: 2px;
margin-bottom: 5px;
}
.chardham-updates .news img{
  min-width: 210px;
  height: 104px;
  object-fit: cover;
  width: 210px;
}
.chardham-updates .news p{
  display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;  
overflow: hidden;    color: var(--color-default);
font-weight: 600;
}
.news{
  width: 500px;
}
.card{position: relative;width: 400px;}
.card img{    height: 258px;
  width: 100%;
  object-fit: cover;}
.card::before{
  content: 'Budget-KMY';
  position: absolute;
  left: 4px;
  top: 4px;
  background: white;
  padding: 4px;
  border-radius: 2px;
}
.package_duration{
  position: absolute;
    left: 0px;
    top: -40px;
    background: crimson;
    padding: 5px 10px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    color: white;
}
.card-body{position: relative;}

.important-links{
  position: relative;
  margin-bottom: -129px;
  font-size: 14px;	
  clear: both;
}
footer{
  padding-top: 174px;
	font-size: 14px;
}
.slide img{
  object-fit: fill;
}
.chardham-packages .card-text span{
  color: #dc3545;padding: 5px 10px !important;
}
.chardham-packages a.btn.border:hover{
  color: #fff!important;
  background: #dc3545;
}
.chardham-packages,.about-chardham-yatra{
background:#f7f7f7!important;
}p:empty {
  display: none;
}
.chardham-temples .position-relative a{
  position: relative;display: block;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.pack-intro-txt h2{
  clear: inherit;
  margin-top: 0;
  padding-top: 0;
  font-weight: 600;
  margin-bottom: 20px;
}

.pack-intro-txt{
  background: #fff;
  border-bottom: solid 1px #e0d6bf;
  margin-bottom: 35px;
  padding: 15px;
  box-shadow: var(--bs-box-shadow-lg) !important;
  margin-top: 40px;
}
.btn-primary{
  padding: 8px 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
  border-color: var(--color-primary);
}
.item-box{
  padding: 20px;
    margin-top: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: #fff;
    display: flex;
}
.item-box-img{
  min-width: 340px;
    height: 240px;
    width: 340px;
}
.item-box-img img{
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.item-box-txt{
  padding: 0 30px;
  padding-top: 0;
}
.item-box-txt h2{
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 24px;
}
.item-box-txt br{
  display: none;
}

/*-------------------------------------------------------*/
/* Why section 
/*-------------------------------------------------------*/

.why-book-section {
  text-align: center;
  padding: 60px 20px;
  background: #f7f7f7;
}

.why-book-section .section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.why-book-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-book-box {
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-book-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.why-book-box .icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #d10000; /* default red icon */
}

.why-book-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.why-book-box h3 span {
  font-weight: 700;
}

.why-book-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Background variations */
.why-book-box.pink { background: #fdeaea; }
.why-book-box.blue { background: #eaf3ff; }
.why-book-box.green { background: #eafaf1; }
.why-book-box.yellow { background: #fff9e6; }

/* Matching icon colors */
.why-book-box.pink .icon { color: #d6336c; }
.why-book-box.blue .icon { color: #007bff; }
.why-book-box.green .icon { color: #28a745; }
.why-book-box.yellow .icon { color: #ff9800; }

.char-dham-banner {
  padding: 30px 15px;
  text-align: center;
  background-repeat: repeat;
}

.char-dham-banner h2 {
  color: #000;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.char-dham-banner p {
  font-size: 16px;
  color: #222;
  margin-bottom: 20px;
}

.char-dham-banner .btn-book {
  background: #e53935;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  font-size: 16px;
  transition: background 0.3s ease;
}

.char-dham-banner .btn-book:hover {
  background: #c62828;
}


/* package detail  */
.pkg-dtl {
  float: left;
  width: 100%;
  padding: 10px 0
}

.tabbing-menu li a {
  padding: 0 20px;
  display: inline-block;
  font-size: 1.1em;
  position: relative;
  font-weight: 500;
  font: 600 16px/36px "Poppins", sans-serif;
  text-transform: uppercase;
  margin: 15px 12px
}

.tabbing-menu li {
  float: left;
  list-style: none
}

.tabbing-menu.affix {
  z-index: 999;
  top: 64px;
  width: 892px
}

.pkg-highlights.affix3 {
  padding-top: 81px
}

.affix {
  position: fixed
}

.pkg-highlights {
  float: left;
  width: 100%
}

#description,#include,#itinerary,#price {
  float: left;
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  margin-top: 20px;
  background: #fff;
  box-shadow: 0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12)
}

.tabbing-menu li a.active,.tabbing-menu li a:hover {
  background-color: #ff7a03;
  box-shadow: 0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);
  font: 600 16px/36px "Poppins", sans-serif;
  padding: 0 20px;
  border-radius: 4px;
  color: #fff
}

.h4 {
  font-size: 24px;
  font-weight: 500;
  color: #4a197a;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  color: #ff7a03;
}

.h4,.icon-left {
  text-transform: uppercase;
  text-align: center
}

.icon-left {
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 17px;
  font-weight: 900;
  border-radius: 50%;
  font-size: 13px;
  border: 2px dashed #ff7a03;
  color: #fff;
  background: #ff7a03;
  padding-top: 8px
}

.icon-day h4 {
  padding-left: 60px;
  font-size: 19px;
  font-weight: 700;
  color: #ff7a03;
  margin-bottom: 12px;
  padding-top: 14px
}

.icon-day,.pkg-content {
  float: left;
  width: 100%
}

.pkg-content p,.pkg-highlights p {
  font-family: "Poppins", sans-serif;
  color: rgba(0,0,0,.87);
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
  margin-bottom: 10px;
  line-height: 1.7
}

.pkg-content {
  margin-bottom: 12px;
  padding-left: 60px
}

.pkg-highlights .table-responsive>.table-bordered {
  border: 0;
  margin-top: 10px
}

.pkg-highlights .table th {
  background: #ff7a03;
  color: #fff
}

.pkg-highlights .table td,.pkg-highlights .table th {
  font: 500 17px/24px "Poppins", sans-serif;
}

.att-dtl ul li,.pkg-highlights ol li,.pkg-highlights ul li {
  font: 500 16px/25px "Poppins", sans-serif;
  padding-bottom: 5px
}

.att-dtl ul,.pkg-highlights ol,.pkg-highlights ul {
  margin-left: 13px;
  margin-bottom: 15px
}

.enq-form h3,.pkg-sidebar h3 {
  font: 700 16px/22px "Poppins", sans-serif;
  background: #ff7a03;
  color: #fff;
  padding: 10px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;	
}

.enq-form form {
  padding: 15px;
  border: 0;
  background-color: #f9f9f9;
  border-top: 0;
  box-shadow: 0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12)
}

.input-with-icon {
  position: relative;
  margin-bottom: 15px
}

.enq-form input[type=date],.enq-form input[type=email],.enq-form input[type=number],.enq-form input[type=tel],.enq-form input[type=text] {
  padding-left: 15px;
  padding-right: 10px;
  background-color: transparent;
  outline: 0;
  -webkit-appearance: none;
  width: 100%;
  height: 39px;
  box-sizing: border-box;
  font: 500 14px/22px "Poppins", sans-serif;
  background: #fff;
  border: 1px solid #ebebeb
}

.enq-form textarea {
  height: 80px;
  font: 500 14px/22px "Poppins", sans-serif;
  background-color: transparent;
  outline: 0;
  -webkit-appearance: none;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ebebeb
}

.input-icon {
  position: absolute;
  right: 0;
  top: 0;
  height: 39px;
  width: 39px;
  line-height: 39px;
  text-align: center;
  border-left: 1px solid #ebebeb;
  font-size: 16px;
  color: #242625
}
#about{
    padding-bottom:0;
}
.innerPage h2{
    font:500 28px/34px "Poppins", sans-serif;
    margin:0px 0 20px 0;color:#ff7f50;padding:0;
}
.innerPage h3{
   font:500 25px/32px "Poppins", sans-serif;
    margin:0px 0 20px 0;color:#ff7f50;padding:0;
}
.innerPage h4{
    font:500 22px/30px "Poppins", sans-serif;
    margin:0px 0 20px 0;color:#000;padding:0;
}
.enq-form input[type=submit] {
  background-color: #ff7a03;
  box-shadow: 0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 36px;
  padding: 0 16px;
  border-radius: 4px;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 20px
}

.enq-form p {
  text-align: right;
  margin-bottom: 6px
}

.pkg-sidebar {
  padding: 0;
  background-color: #f9f9f9;
  border-top: 0;
  box-shadow: 0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);
  margin-top: 30px;
  float: left;
  width: 100%
}

.img-lnk {
  width: 100px;
  float: left;
  margin-top: 8px;
  margin-right: 10px
}

.pkg-sidebar h4 {
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
  color: #ff7a03;
  margin-bottom: 6px;
  padding-top: 7px
}

.pkg-sidebar p {
  font-family: "Poppins", sans-serif;
  color: rgba(0,0,0,.87);
  font-size: 14px;
  font-weight: 500;
  text-align: justify;
  margin-bottom: 10px
}

.pkg-dtl .col-md-9 {
  flex: 0 0 72%;
  max-width: 72%;
  padding-bottom: 20px
}

.pkg-dtl .col-md-3 {
  flex: 0 0 28%;
  max-width: 28%;
  padding-bottom: 20px
}

.oth-box {
  border-bottom: 1px dashed #ccc;
  padding: 10px 10px 17px;
  float: left;
  width: 100%
}

.pkg-sidebar table {
  margin: 0
}

.errorMsg {
  font-size: 12px;
  color: red;
  margin-top: -13px;
  display: block
}

.pkg-sidebar table th {
  font: 700 14px/21px "Poppins", sans-serif;
  color: #ff7a03;
}

.pkg-sidebar table td {
  font: 500 14px/21px "Poppins", sans-serif;
  padding: 5px!important;
  margin: 0!important
}

.pkg-sidebar table .ev-name {
  display: none
}

.pkg-sidebar table td p {
  color: #ff7a03;
  margin: 0;
  font: 700 14px/21px "Poppins", sans-serif;
}

.pd-bottom {
  float: left;
  width: 100%;
  padding-bottom: 110px
}
.pkg-rft{
  margin-top: -9px;
}
.ticket ul {
  padding: 0px;
  margin-bottom: 5px;
}
.ticket ul li {
  display: inline-block;
  background: #efefef;
  padding: 2px 7px;
  font-size: 14px;
  font-weight: 600;
  color: #253d52;
  margin-right: 1px;
}
.ticket ul li:nth-child(1) {
  background: #ff7a03;
  color: #fff;
}

/*-------------------------------------------------------*/
/* FEATURES 
/*-------------------------------------------------------*/
.featur {
  position: relative;
  overflow: hidden;
  padding-bottom: 10px;
}
.featur h4 {
  margin-top: 25px;
  padding-left: 0px;
  margin-top: 15px;
  color: #253d52;
  background-size: contain;
}
.featur ul {
  padding: 0px;
  margin-bottom: 0px;
  margin: 0;
}
.featur ul li {
  display: inline-block;
  padding: 3px;
  color: #253d52;
  font-size: 14px;
  font-weight: 600;
}
/*-------------------------------------------------------*/
/* BOOKING 
/*-------------------------------------------------------*/

.p2_book ul {
  padding: 0px;
}
.p2_book ul li {
  display: inline-block;
}
.p2_book ul li a {
  display: table;
}
.p2_book ul li a:hover {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  background: #1695c4;
  color: #fff;
 /* text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.35);
  */
}
.meal-icon img{
  width: 32px;
    height: auto;
    margin-top: 9px;
}
.inclusion-icon.position-relative{
  justify-content: space-between;
    align-items: center;width: 100%;
}
.p2_book ul li:nth-child(2) a:hover {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  color: #fff;
  background: #7eb73c;
  background: linear-gradient(to bottom, #8BC34A, #70ab2c);
}
.trip-img{
  float: left;
  width: 100%;
  margin-right: 25px;    margin-bottom: 20px;
}
.ask-expert,.why-book{
    margin-top:30px;
    float:left;width:100%;background-color: #f9f9f9;
    border-top: 0;
    box-shadow: 0 2px 1px -1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 3px 0 rgba(0, 0, 0, .12);
}
.shi-destilist li,.shi-destilist li{
    list-style: none;
    margin-bottom:7px;font: 500 16px / 25px "Poppins", sans-serif;
}
.shi-destilist .fa{
        color: var(--color-primary);
}
.shi-destilist,.shi-destilist{
    padding:20px 20px 10px 17px;
}
.trip-short-des-cntr p{
  clear: both;
  margin-top: 20px;
}
/*.single-post section{
  padding-bottom: 20px;
}*/
.page-header h1{
  color: #fff;
  font-size: 30px;
}
.page-template-blog .post-img img{
  width: 100%;
  object-fit: cover;
}
.page-template-blog  .posts-list .title a{
  font-weight: 600;
}
.page-template-blog .blog .posts-list .title {
  font-size: 20px;}
  .about-chardham-yatra h1{
    font-size: 32px;
  }
.social-media i,.social-links i{
  border: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 20px !important;
        color: #fff !important;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        padding: 6px;
        display: flex;
        justify-content: center;
        align-items: center;
}
.social-links i{
  font-size: 14px !important;
    color: #fff !important;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    padding: 6px;
}

.social-media li{
    list-style:none;
}

.pkg-dtl .container,.page-template-package-detail .breadcrumbs .container{
  max-width: 100%;
  padding: 0 40px;
}
a.call-btn {
  position: fixed;
  left: 10px;
  bottom: 10px;
  z-index: 99;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background: #ff7a03;
}
.call-btn {
  background: #d9534f;
  font-size: 14px;
  padding: 6px 12px; 
  border-color: #d9534f;
  font-weight: 400;
  display: none;
    justify-content: center;
    align-items: center;
}
.call-btn i,.whatsapp i{
  font-size: 28px;

}
.whatsapp {
  position: fixed;
  right: 10px;
  bottom: 10px;
  text-align: center;
  z-index: 99;
  display: none;
}
.whatsapp a {
  font-size: 34px;
  color: #fff;
  animation: mynave2 1s infinite;
  background: #47c756;
  padding: 4px 9px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: block;
  line-height: 39px;
}
.navbar>ul>li.dropdown{
  padding-right: 20px;
}
.tour-info{
        padding: 20px;
    margin-bottom: 30px;
}
.btn:hover{
    background: var(--color-secondary);border-color:var(--color-secondary);
}
.btn-primary.cta-link{
    margin-top: 10px;
    margin-bottom: 10px;
}
.call-btn-price{
    color:#dc3545;padding: 5px 10px !important;
}
.box-shadow{
    background: #fff;
    border-bottom: solid 1px #e0d6bf;
    margin-bottom: 35px;
    padding: 15px;
    box-shadow: var(--bs-box-shadow-lg) !important;
}
.pack-intro-txt .box-shadow{
 height: 85%;   
}
.page-template-main-info-page h2,#description h2,#description h3,.blog-details h2,.blog-details h3 {
    font: 500 28px / 34px "Poppins", sans-serif;
    margin: 10px 0 20px 0;
    color: #ff7f50;
    padding: 0;
}
#description h3,.blog-details h3 {
    font: 500 25px / 32px "Poppins", sans-serif;
}
.innerPage .box-shadow{
    float:left;width:100%;
}
.innerPage .box-shadow img{
    float:left;
    margin:0 20px 10px 0;
}
.innerPage .box-shadow.img-reverse img{
   float:right; 
   margin:0 0px 10px 20px;
}
.innerPage .box-shadow h2,.innerPage .box-shadow h3{
    display: inline-block;
}
.paginationBlog {
   clear: both;
    position: relative;
    font-size: 11px;
    line-height: 13px;
    float: right;
    margin: 0;border:0;
    padding: 0 0 30px 0;
}
.paginationBlog span, .paginationBlog a {
    display: block;
    float: left;
    margin: 2px 2px 2px 0;
    padding: 6px 9px 5px;
    text-decoration: none;
    width: auto;
    color: #fff;
    background: #555;
    -webkit-transition: background .15s ease-in-out;
    -moz-transition: background .15s ease-in-out;
    -ms-transition: background .15s ease-in-out;
    -o-transition: background .15s ease-in-out;
    transition: background .15s ease-in-out;
}
.paginationBlog .current {
    padding: 6px 9px 5px;
    background: #d9534f;
    color: #fff;
}
.paginationBlog a:hover
{
    text-shadow: inherit;
    color: #fff!important;
    background: #d9534f;
    box-shadow: inherit!important;
}.paginationBlog {
    padding: 0 0 0px 15px;
    margin-top: 20px;
}
section#blog{
    padding-bottom:0;
}

.accordion-otr,.faq_rft {
    margin: 50px 0 0 0;
    background: #fff;
    box-shadow: 0 0 22px 2px rgb(0 0 0 / 11%);
    padding: 20px;
}
.accordion-otr h2,.faq_rft h2
{
        color: #ff7a03;
    font-size: 20px;    margin: 10px 0 10px 0;
}
.faq_rft li
{
        list-style: none;
    float: left;
    margin: 0 2% 15px 0;
    width: 48%;
}
.faq_rft li:nth-child(2n)
{
    margin-right: 0;
}
.faq_rft li a {
     font-size: 12px;
    padding: 5px 6px;
    border-color: #d9534f;
    font-weight: 400;
    float: left;
    background: #fff;
    color: #d9534f;
    border: solid 1px #d9534f;
    border-radius: 5px;
    width: 100%;
   
}
.rotate {
  -webkit-transform: rotate(-180deg); /* Chrome, Safari, Opera */
  -moz-transform: rotate(-180deg); /* Firefox */
  -ms-transform: rotate(-180deg); /* IE 9 */
  transform: rotate(-180deg); /* Standard syntax */
}
.package-page .pack-box2
{border: 0;
    background: #fff;
    box-shadow: 0 0 22px 2px rgb(0 0 0 / 11%);
}
.accordion-otr .panel-title a
{
        display: block; padding-right:20px;
}.package-page .pack-box2 .btn.btn-primary {
    margin-right: 0;
}
.accordion-otr .panel-title a:hover{color: #ff7a03
}
.accordion-otr .panel-title a .fa
{
    text-align: right;
    float: right;
    padding-top: 0px;
    font-size: 28px;
    line-height: 1;
    margin-top: -4px;
    position: absolute;
right: 0;
top: 0;
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: all 0.5s;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}
.accordion-button::after {
  transition: all 0.5s;width: 1.25rem;
    height: 1.25rem;
}
.accordion-button {
    background: transparent !important;
}
.accordion-body{
    padding-bottom:15px;
}
.accordion-button{
    font-weight:600;
}
.accordion-item{
    border-bottom: dashed 1px #ccd;
}
#accordion{
    display: flex;
    flex-wrap: wrap;
}
#accordion .accordion-item{
    width: 48%;
    margin-right:4%;
}
#accordion .accordion-item:nth-child(2n){
    margin-right:0;
}
.chardham-updates h3{
    margin-bottom:30px!important;
}
.packages_info.news{
    width:49%;
}
.chardham-route ul.list-unstyled li a{
    margin-right:10px;
}
.btn-center{
    display:flex;
    justify-content: center;
}
.btn-center a{
    background: #dc3545;    color: #fff !important;
}
.chardham-packages .btn-center a.btn.border:hover{
    color:#dc3545!important;
    background:#fff!important;
}
@media only screen and (min-width:767px){
   
.navbar>ul>li.dropdown:before {
  content: "\F282";
  position: absolute;
  top: 15px;
  z-index: 99;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  right: 4px;
  font-size: 13px;
  font-family: bootstrap-icons !important;
  visibility: visible;
}
.navbar>ul>li.dropdown:hover:before{
  color: var(--color-primary);
}
.navbar .dropdown ul{
  width: 500px;
  left: inherit;
  right: 0;
}
.navbar .dropdown ul li {
  min-width: 200px;
  float: left;
  width: 50%;
  border-right: solid 1px #ccc;
  border-bottom: 1px #f6873c solid;	
}
.navbar .dropdown ul a{
  color: #000;
}
.navbar>ul>li#menu-item-86 .sub-menu li{
    width:100%;border-right: 0;
}
    .navbar>ul>li#menu-item-86 ul {
        width: 250px;
    }
}
@media only screen and (max-width:767px){
     #accordion .accordion-item{
    width: 100%;
    margin-right:0%;
}.tab-content .bg-danger-subtle{
    justify-content: center;
    align-items: center;
}
.packages_info.news, .news{
    width:100%;
}
.chardham-updates .news p{
    -webkit-box-orient: inherit;
}
.chardham-updates .news img{
    height:auto;
}	
  .call-btn,.whatsapp{
    display: flex;
  }
  .scroll-top{
    display: none!important;
  }
  .container-fluid {
    padding: 0 20px !important
}
#chardhamRoute ul.list-unstyled{
  flex-flow: wrap;        padding-bottom: 0;
  margin-bottom: 0;
  gap: .25rem !important;	
}
#chardhamRoute ul li{
  font-size:14px;!important;	
}	
#chardhamRoute{
  padding: 25px 20px 0 20px!important;
}
#chardhamTips ul{
  padding-left: 13px;
}
.slide img {
  height: auto;
}
.mobile-nav-show {
  color: #000;
}.pt-5 {
  padding-top: 2rem !important;
}
.important-links{
  text-align: center;	
}	
.about-chardham .nav{
 font-size: 14px;	
}	
.about-chardham-yatra h1 {
  font-size: 25px;
}
.chardham-temples{
  flex-wrap: wrap;
}
.chardham-temples .position-relative {
  width: 45%;
}
.chardham-packages>h3{
  padding:0 15px;
}	
.important-links .container-fluid{
  padding:30px 20px 20px 20px!important;
}
footer{
  padding-bottom: 20px!important;
}
footer ul{
  padding-left: 0;
}
section {
  padding: 35px 0;
}
.container{
  padding: 0 20px;
}
.section-header {
  text-align: center;
  padding-bottom: 35px;
}
.pkg-dtl .col-md-9,.pkg-dtl .col-md-3 {
  flex: 0 0 100%;
  max-width: 100%;
}
.trip-img {
  float: left;
  width: 100%;
  margin-right: 0;
}
.pkg-content {
  margin-bottom: 12px;
  padding-left: 0px;
}
.pkg-content ul,.pkg-highlights ol{
  padding-left: 0;
}
.icon-day h4{
  padding-top: 0;
}
.pkg-dtl .container, .page-template-package-detail .breadcrumbs .container {
  padding: 0 20px;
}
.ticket ul{
  margin-left: 0;
}
.icon-day{
  min-height: 63px;
}
.item-box-img {
  min-width: 100%;
  width: 100%;
  margin-bottom: 25px;
}
.item-box{
  display: block;
}
.item-box-txt {
  padding: 0;
}
.navbar a, .navbar a:focus{
  border-bottom: solid 1px rgb(204 204 204 / 17%);
}
.navbar .dropdown ul, .navbar .dropdown .dropdown ul{
  margin: 0;
padding: 0;
}
.navbar .dropdown ul a{
  padding-left: 30px;
}
.chardham-route .nav-link{
  font-size: 17px!important;
}
.pack-intro-txt h2{
  margin-top: 30px;
}
h3.h3_hdg{
  padding-top: 10px;
}
.navbar>ul>li.dropdown>a{
  position: relative;
}
.navbar>ul>li.dropdown>a:before {
  content: "\F282";
  position: absolute;
  top: 15px;
  z-index: 99;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  right: 16px;
  font-size: 13px;
  font-family: bootstrap-icons !important;
  visibility: visible;
}
.pkg-rft {
  margin-top: 10px;
}
.tour-info{
    margin-top:0;
}
.chardham-temples img {
    width: 100%;
}
.about-chardham .nav-link{
    padding: 5px 8px;
}
.pay-method{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.pay-method a{
    margin-bottom:20px;
}
.navbar .dropdown ul li,.navbar li{
    list-style:none;
}

}


.popup {
    background: #fff; /* White background for the popup */
    border-radius: 8px; /* Rounded corners */
    width: 100%; /* Responsive width */
    max-width: 500px; /* Maximum width */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
    padding: 0; /* No padding on popup */
}

.popup-header {
    background-color: #f44336; /* Red background */
    color: white; /* White text */
    padding: 0px 20px; /* Padding inside header */
    border-top-left-radius: 8px; /* Rounded corners for header */
    border-top-right-radius: 8px; /* Rounded corners for header */
    display: flex; /* Flexbox for alignment */
    justify-content: space-between; /* Space between title and close button */
    align-items: center; /* Center items vertically */
	margin-bottom:10px;
	max-height: 40px;
}

.popup-header h2{
    font-size: 25px;
	font-weight: 700;
    margin-left: -10px;
	padding-top: 5px;
	}

.popup .close-btn {
    color: white; /* Close button color */
    font-size: 28px; /* Font size */
    font-weight: bold; /* Bold text */
    background: none; /* No background */
    border: none; /* No border */
    cursor: pointer; /* Pointer cursor */
	box-sizing: content-box;
	border-radius: .375rem;
}

.popup-warning {
    background-color: #f44336; /* Red background for warning */
    color: white; /* White text */
    padding: 10px; /* Padding */
    border-radius: 5px; /* Rounded corners */
    margin-bottom: 15px; /* Spacing below */
    font-size: 14px; /* Font size */
	margin-left: 10px;
    margin-right: 10px;
}

.popup-warning a {
    color: #fff; /* Link color */
    text-decoration: none; /* No underline */
}

.popup-warning a:hover {
    text-decoration: underline; /* Underline on hover */
}

.form-background {
    background: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
    padding: 10px; /* Padding around the form */
    border-radius: 4px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 30%); /* Shadow for form background */
	margin-left: 10px;
    margin-right: 10px;
}

.popup table {
    width: 100%; /* Full width for the table */
    border-collapse: collapse; /* Collapse borders */
}

.popup td {
    padding: 5px; /* Padding for table cells */
    vertical-align: top; /* Align items to the top */
}

.popup input,
.popup select,
.popup textarea {
    border: 1px solid #ccc; /* Light border */
    border-radius: 4px; /* Rounded corners */
    padding: 10px; /* Padding */
    font-size: 14px; /* Font size */
    width: 100%; /* Full width for inputs */
    box-sizing: border-box; /* Ensure padding is included in width */
}

.popup textarea {
    resize: vertical; /* Allow vertical resizing */
}

.popup .submit-btn {
    background: #d9534f; /* Red background for submit button */
    color: #fff; /* White text */
    border: none; /* No border */
    padding: 10px; /* Padding */
    font-size: 16px; /* Font size */
    border-radius: 4px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor */
    margin-top: 10px; /* Margin on top */
    width: auto; /* Auto width for submit button */
}

.popup .submit-btn:hover {
    background: #c9302c; /* Darker red on hover */
}

.popup-footer {
    display: flex;
    margin-top: 20px; /* Margin on top */
    background: #e7f3fe; /* Light blue for footer */
    padding: 5px; /* Padding */
    border-radius: 4px; /* Rounded corners */
    color: #666; /* Dark gray text */
	margin-left: 10px;
    margin-right: 10px;
}

.popup-footer p{
    font-size: 12px; /* Font size */
    text-align: left; /* Center text */
	 margin:0px;
}

.popup-btclose {
    margin-top: -15px;
    margin-right: 10px;
}

.popup-footer svg {
    margin-right: 10px; /* Space between SVG and the text */
  }

.popup-cbtn {
    margin-top: 5px; /* Margin on top */
}

.popup-cbtn hr{
    border: none;
    height: 1px;
    background: linear-gradient(to right, #ff7f50, #ff6347); /* Gradient from coral to tomato */
    width: 100%;
}

.footer-close-btn {
    background: #d9534f; /* Red close button */
    color: white; /* White text */
    border: none; /* No border */
    padding: 10px; /* Padding */
    border-radius: 4px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor */
    margin-top: 15px; /* Margin on top */
    float: right; /* Align close button to the right */
	margin-bottom: 10px;
}

.footer-close-btn:hover {
    background: #c9302c; /* Darker red on hover */
}
.hiddenField{
    display: none;
}

/* Responsive styles */
@media (max-width: 576px) {

    .popup {
        padding: 0; /* No padding on popup */
		 width: 100%;
    }

    .popup-header h2 {
        font-size: 20px; /* Smaller font size for header */
    }

    .popup-warning {
        font-size: 12px; /* Smaller font size for warning */
    }

    .popup-footer {
        font-size: 10px; /* Smaller font size for footer */
    }

    
}