/*** Spinner Start ***/
/*** 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;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}

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

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

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

.btn-md-square {
  width: 44px;
  height: 44px;
}

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

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

.btn.btn-primary {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
  box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}

.btn.btn-light {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
  box-shadow: inset 300px 0 0 0 var(--bs-primary);
  color: var(--bs-light) !important;
}

.btn-hover {
  transition: 0.5s;
}

.btn-hover:hover {
  color: #fff !important;
}

/*** Section Title Start ***/
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-primary);
}

.section-title::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-left: -50px;
  border: 1px solid var(--bs-primary) !important;
}

/*** Topbar Start ***/
.fixed-top .container {
  transition: 0.5s;
}

.topbar {
  padding: 2px 10px 2px 20px;
  background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
  transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
  color: var(--bs-secondary) !important;
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}
/*** Topbar End ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  font-family: "Roboto", sans-serif;
  position: relative;
  padding: 25px 15px;
  color: var(--bs-primary) !important;
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 15px;
  color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
  color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
  color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
  }
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: var(--bs-white);
  }

  .navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--bs-dark) !important;
  }

  .navbar-light .navbar-nav .nav-link:hover,
  .navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}

@media (min-width: 992px) {
  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: var(--bs-light);
   
  }

  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: -1px;
    left: 0;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: -1;
    
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    height: calc(100% + 1px);
    left: 1px;
  }

  .navbar-light .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
  background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 25px 30px;
  border-top-left-radius: 0;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 50px;
  background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  padding: 25px 30px;
  border-top-left-radius: 50px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 0;
  background-size: 60% 60%;
}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
  opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
  position: relative;
  min-height: 100vh;
}

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

.carousel-header .carousel-inner .carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  background-size: cover;
}

@media (max-width: 768px) {
  .carousel-header .carousel-inner .carousel-item img,
  .carousel-header .carousel-inner .carousel-item .carousel-caption {
    height: 700px;
    margin-top: -100px;
  }

  .carousel-header {
    height: 700px !important;
  }

  .carousel-header .carousel-control-prev .carousel-control-prev-icon,
  .carousel-header .carousel-control-next .carousel-control-next-icon {
    opacity: 0;
  }

  .search-bar {
    margin-top: -100px;
    transition: 0.5s;
  }
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  background: linear-gradient(rgba(19, 53, 123, 0.1), rgba(19, 53, 123, 0.1)),
    url("../img/banner-4.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 80px 0 30px 0;
}

.bg-breadcrumb .breadcrumb-item a {
  color: var(--bs-secondary) !important;
}
/*** Single Page Hero Header End ***/

/*** About Start ***/
.about .container .section-about-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-primary);
}

.about .container .section-about-title::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid var(--bs-primary) !important;
}
/*** About End ***/

/*** Services Start ***/

/*** Service End ***/

/*** Destination Start ***/
.destination .tab-class .tab-content .tab-pane .destination-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}

.destination
  .tab-class
  .tab-content
  .tab-pane
  .destination-img
  .destination-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  z-index: 3;
  transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  display: flex;
  justify-content: end;
  padding: 20px 20px 0 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: 0.5s;
}

.destination
  .tab-class
  .tab-content
  .tab-pane
  .destination-img
  .search-icon
  a
  i {
  opacity: 0;
  transition: 0.5s;
}

.destination .tab-class .nav-item {
  padding: 0 0 20px 0;
}
.destination .tab-class .nav-item a.active {
  background: var(--bs-primary) !important;
}

.destination .tab-class .nav-item a.active span {
  color: var(--bs-white) !important;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon {
  background: rgba(19, 53, 123, 0.4);
}

.destination
  .tab-class
  .tab-content
  .destination-img:hover
  .destination-overlay {
  bottom: 0;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon a i {
  opacity: 1;
}

.destination .tab-class .tab-content .destination-img img {
  transition: 0.5s;
  height: 291px;
}
#long-img {
  height: 606px;
}

.destination .tab-class .tab-content .destination-img:hover img {
  transform: scale(1.2);
}
/*** Destination End ***/

/*** Packages Start ***/
.packages .packages-item .packages-img {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  z-index: 1;
}

.packages .packages-item .packages-img .packages-info {
  background: rgba(0, 0, 0, 0.3);
}

.packages .packages-item .packages-img .packages-info small,
.packages .packages-item .packages-img .packages-info small i {
  color: var(--bs-white);
  transition: 0.5s;
}

.packages .packages-item .packages-img::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0px solid;
  border-radius: 10px !important;
  visibility: hidden;
  transition: 0.7s;
  z-index: 3;
}

.packages .packages-item .packages-img:hover.packages-img::after {
  width: 100%;
  height: 100%;
  border: 300px solid;
  border-color: rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6)
    rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6);
  visibility: visible;
}

.packages .packages-item .packages-img small,
.packages .packages-item .packages-img small i {
  transition: 0.5s;
}

.packages .packages-item .packages-img:hover small,
.packages .packages-item .packages-img:hover small i {
  color: var(--bs-white) !important;
}

.packages .packages-item .packages-img img {
  transition: 0.5s;
  height: 332px;
}

.packages .packages-item .packages-img:hover img {
  transform: scale(1.3);
}

.packages .packages-item .packages-img .packages-price {
  position: absolute;
  width: 100px;
  top: 0;
  left: 12%;
  transform: translateX(-50%);
  display: inline-block;
  background: var(--bs-primary);
  color: var(--bs-white);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 5;
  text-align: start;
}

.off-price {
  text-decoration: line-through;
  text-align: start;
  font-size: 16px;
}

.packages .packages-carousel {
  position: relative;
}

.packages .packages-carousel .owl-nav .owl-prev {
  position: absolute;
  top: -50px;
  left: 0;
  padding: 5px 30px;
  border: 1px solid var(--bs-primary);
  border-radius: 30px;
  transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-next {
  position: absolute;
  top: -50px;
  right: 0;
  padding: 5px 30px;
  border: 1px solid var(--bs-primary);
  border-radius: 30px;
  transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
  color: var(--bs-primary);
  font-size: 17px;
  transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
  background: var(--bs-primary);
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
  color: var(--bs-white);
}
/*** Packages End ***/

/*** Explore Tour Start ***/
.ExploreTour .tab-class .nav-item {
  padding: 0 0 20px 0;
}
.ExploreTour .tab-class .nav-item a.active {
  background: var(--bs-primary) !important;
}

.ExploreTour .tab-class .nav-item a.active span {
  color: var(--bs-white) !important;
}

/* National Tour Start */
.ExploreTour #NationalTab-1 .national-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.ExploreTour #NationalTab-1 .national-item img {
  width: 416px;
  height: 250px;
}

.ExploreTour #NationalTab-1 .national-item .national-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: end;
  justify-content: center;
  transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-content {
  background: rgba(19, 53, 123, 0.6);
}

.ExploreTour #NationalTab-1 .national-item .national-plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  opacity: 0;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-plus-icon {
  opacity: 1;
}

.ExploreTour #NationalTab-1 .national-item .tour-offer {
  position: absolute;
  top: -1px;
  left: -1px;
  padding: 20px;
  border-top-right-radius: 40px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 80px;
  background: var(--bs-primary);
  color: var(--bs-white);
}

/* International Tour Start */
.ExploreTour #InternationalTab-2 .international-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.ExploreTour #InternationalTab-2 .international-item img {
  transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover img {
  transform: scale(1.2);
}

.ExploreTour #InternationalTab-2 .international-item .tour-offer {
  position: absolute;
  top: -1px;
  left: -1px;
  padding: 20px;
  border-top-right-radius: 30px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 80px;
  background: var(--bs-primary);
  color: var(--bs-white);
}

.ExploreTour #InternationalTab-2 .international-item .international-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: end;
  justify-content: center;
  transition: 0.5s;
}

.ExploreTour
  #InternationalTab-2
  .international-item:hover
  .international-content {
  background: rgba(19, 53, 123, 0.6);
}

.ExploreTour
  #InternationalTab-2
  .international-item
  .international-content
  .international-info
  a {
  font-size: 14px;
}

.ExploreTour #InternationalTab-2 .international-item .international-plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  opacity: 0;
}

.ExploreTour
  #InternationalTab-2
  .international-item:hover
  .international-plus-icon {
  opacity: 1;
}

/* carousel Start */
.ExploreTour
  #InternationalTab-2
  .InternationalTour-carousel
  .international-item {
  position: relative;
  overflow: hidden;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dots {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: var(--bs-light);
  border: 1px solid var(--bs-primary);
  border-radius: 10px;
  transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot.active {
  width: 40px;
  background: var(--bs-primary);
}
/*** Explore Tour End ***/

/*** Gallery Start ***/
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-item img {
  min-height: 300px;
  object-fit: cover;
}

.gallery .gallery-item .gallery-content {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  transition: 0.5s;
}

.gallery .gallery-item .gallery-content .gallery-info {
  position: relative;
  margin-bottom: -100%;
  opacity: 0;
  transition: 0.5s;
}

.gallery .gallery-item .gallery-plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
  opacity: 1;
  margin: 0;
}

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

.gallery .gallery-item:hover img {
  transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
  background: rgba(19, 53, 123, 0.8);
}

.gallery .tab-class .nav-item {
  padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
  background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
  color: var(--bs-white) !important;
}

/*** Gallery End ***/

/*** Tour Booking Start ***/
.booking {
  background: linear-gradient(rgba(19, 53, 123, 0.8), rgba(19, 53, 123, 0.8)),
    url(../img/tour-booking-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.booking .container .section-booking-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-white);
}

.booking .container .section-booking-title::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid var(--bs-white) !important;
}

.booking .container form .btn.btn-primary {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.booking .container form .btn.btn-primary:hover {
  box-shadow: inset 800px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}

/*** Tour Booking end ***/

/*** Travel Guide Start ***/
.guide .guide-item .guide-img {
  position: relative;
}

.guide .guide-item .guide-img .guide-icon {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: -50px;
  display: flex;
  justify-content: center;
  border: 1px solid var(--bs-primary);
  background: var(--bs-light);
  z-index: 9;
}

.guide .guide-item .guide-img .guide-img-efects {
  position: relative;
  overflow: hidden;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.guide .guide-item .guide-img .guide-img-efects::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
  height: 100%;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  background: rgba(19, 53, 123, 0.5);
}

.guide .guide-item .guide-img-efects img {
  transition: 0.5s;
  height: 200px;
}
.guide .guide-item:hover .guide-img-efects img {
  transform: scale(1.1);
}

.guide .guide-item .guide-title {
  position: relative;
  background: var(--bs-light);
  transition: 0.5s;
}

.guide .guide-item .guide-title::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
  height: 100%;
  background: var(--bs-primary) !important;
  color: var(--bs-white);
}

.guide .guide-item .guide-title .guide-title-inner,
.guide .guide-item:hover .guide-title .guide-title-inner h5 {
  transition: 0.5s;
}

.guide .guide-item:hover .guide-title .guide-title-inner {
  position: relative;
  color: var(--bs-white) !important;
  z-index: 2;
}

.guide .guide-item:hover .guide-title .guide-title-inner h5 {
  color: var(--bs-white);
}
/*** Travel Guide End ***/

/*** Blog Start ***/
.blog .blog-item .blog-img {
  position: relative;
}

.blog .blog-item .blog-img .blog-info {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  display: flex;

  color: var(--bs-primary);
}

.blog .blog-item .blog-img .blog-img-inner {
  position: relative;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
  position: absolute;
  width: 100%;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
  opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
  height: 100%;
  background: rgba(19, 53, 123, 0.6);
  opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
  overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
  transition: 0.5s;
  height: 333px;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
  transform: scale(1.2);
}

/*** Blog End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
  position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
  position: relative;
  width: 100px;
  height: 100px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid var(--bs-primary);
  border-style: dotted;
  border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: var(--bs-light);
  border: 1px solid var(--bs-primary);
  border-radius: 10px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
  width: 40px;
  background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
  position: absolute;
  top: -55px;
  left: 0;
  padding: 5px 30px;
  border: 1px solid var(--bs-primary);
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
  position: absolute;
  top: -55px;
  right: 0;
  padding: 5px 30px;
  border: 1px solid var(--bs-primary);
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
  color: var(--bs-primary);
  font-size: 17px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--bs-primary);
}

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

.testimonial
  .testimonial-carousel
  .owl-item.center
  .testimonial-item
  .testimonial-comment {
  background: var(--bs-primary) !important;
  color: var(--bs-white);
  transition: 0.5s;
}

.testimonial
  .testimonial-carousel
  .owl-item.center
  .testimonial-item
  .testimonial-img {
  border: 3px solid var(--bs-white);
  border-style: dotted;
  transition: 0.5s;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
  box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}
/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
  background: linear-gradient(rgba(19, 53, 123, 0.6), rgba(19, 53, 123, 0.6)),
    url(../img/subscribe-img.jpg);
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.subscribe .subscribe-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-white);
}

.subscribe .subscribe-title::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-left: -50px;
  border: 1px solid var(--bs-white) !important;
}
/*** Subscribe End ***/

/*** Footer Start ***/
.footer {
  background: var(--bs-dark);
}
.footer .footer-item a {
  line-height: 30px;
  color: var(--bs-white);
  transition: 0.5s;
}

.footer .footer-item a:hover {
  letter-spacing: 2px;
  color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-dark) !important;
}
/*** copyright end ***/

.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-wrap: normal !important;
}
.hero-form {
  background: -webkit-linear-gradient(
    303.52deg,
    rgba(255, 255, 255, 0.2) 1.3%,
    rgba(0, 0, 0, 0.1) 117.69%
  );
  background: linear-gradient(
    146.48deg,
    rgba(255, 255, 255, 0.2) 1.3%,
    rgba(0, 0, 0, 0.1) 117.69%
  );
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 40px;
  margin-left: -26px;
  width: 440px;
}
.mb-35 {
  margin-bottom: 35px;
}
.hero-form .sub-title2 {
  font-size: 20px;
  display: block;
  margin-bottom: 5px;
}
.hero-form .sec-title {
  font-size: 28px;
  font-weight: 600;
}
.title-area .sec-title {
  margin-bottom: 22px;
}
.form-group {
  margin-bottom: var(--bs-gutter-x);
  position: relative;
}
.hero-form .form-item {
  position: relative;

  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  border: 1px solid #e1e4e6;
  border-radius: 8px;
  padding: 14px 24px;

  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}

.hero-form .form-item:before {
  content: \F22C;
  position: absolute;
  top: 15px;
  right: 20px;
}
.hero-form .form-item label {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin: 0;
}
.th-btn.btn-fw {
  width: 100%;
  padding: 18px 30px;
}

.hero-form .form-item input {
  color: var(--white-color);
  height: auto;
  line-height: unset;
  background-color: transparent;
  border-radius: 0;
  border: none;
  font-weight: 400;
  padding: 0;
}

.th-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  text-align: center;
  background-color: #007bff;
  color: #fff;
  font-family: var(--body-font);

  display: inline-flex;

  justify-content: center;

  align-items: center;
  text-transform: capitalize;
  border: none;
  font-size: 16px;
  font-weight: 400;
  padding: 18.8px 35px;
  border-radius: 48px;

  transition: all 0.3s 0s ease-out;
  gap: 8px;
}
.th-btn.style1:before,
.th-btn.style1:after {
  background-color: var(--white-color);
}
.btn-form img {
  width: 15px;
}
.btn-transparent {
  background-color: transparent;
  border: 1px solid #fff; /* Keep a border for visibility */
  color: #007bff; /* Text color same as primary */
  transition: all 0.3s ease-in-out;
}

.btn-transparent:hover {
  background-color: #007bff;
  color: white;
}

.btn-banner {
  margin-top: 100px;
}

.reservation-form {
  background: -webkit-linear-gradient(
    303.52deg,
    rgba(255, 255, 255, 0.2) 1.3%,
    rgba(0, 0, 0, 0.1) 117.69%
  );
  background: linear-gradient(
    146.48deg,
    rgba(255, 255, 255, 0.2) 1.3%,
    rgba(0, 0, 0, 0.1) 117.69%
  );
  padding: 30px;
  border-radius: 10px;
  color: white;
  max-width: 400px;
  margin: auto;
  margin-top: 50px;
}
.btn-custom {
  background-color: #00aaff;
  color: white;
  width: 100%;
}

.category-card {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}

.category-card.style3 .box-img {
  border-radius: 24px;
  border: 10px solid var(--smoke-color);

  transition: all 0.4s ease-in-out;
}
.category-card .box-img {
  margin-top: 24px;
  margin-bottom: 22px;
}
.category-card.style3 .box-img img {
  border-radius: 24px;
  transform: scale(1.03);
}
.category-card.style3:hover .box-img {
  border-color: #003e7e;
  transform: scale(1.03);
}

.category-card.style3 .box-img {
  border-radius: 24px;
  border: 10px solid rgb(243 239 239);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

.global-img:after {
  background: rgba(255, 255, 255, 0.5);
  content: "";
  height: 0;
  left: 0;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9;
}
.category-card .box-title {
  margin-bottom: 0;
}
.box-title {
  font-size: 24px;
  line-height: 1.417;
  font-weight: 600;
  margin-top: -0.32em;
}

.box-title a {
  color: inherit;
}
.category-card .line-btn {
  text-transform: capitalize;
  color: #003e7e;
}
.wpte-elementor-widget
  .wpte-badge--layout-1.wpte-badge--left
  .wpte-badge__text {
  left: 4px;
  border-radius: 0px 13px 13px 4px;
  background-color: #003e7e;
  color: #fff;
}
.wpte-elementor-widget
  .wpte-badge--layout-1.wpte-badge--left
  .wpte-badge__text::before {
  left: 0;
  border-bottom-left-radius: 100%;
  border-top-left-radius: 100%;
}

.bg-cyan {
  background-color: #58aeb0;
}
.primary-font {
  font-family: "Jost", sans-serif;
}
.room-item {
  margin: 0px 0px 30px 0px;
}
.room-item img {
  height: 250px;
}

.cta-banner {
  background: url("https://wordpress.themeholy.com/tourm/wp-content/uploads/2024/08/cta_bg_2.png")
    no-repeat center center;
  background-size: cover;
  color: white;
  text-align: left;
  padding: 40px 0;
  position: relative;
  background-color: #003e7e;

  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cta-banner .overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cta-banner-content {
  position: relative;
  z-index: 2;
  color: white;
}
.cta-banner-content h4 {
  font-size: 48px;
  color: white;
}
.cta-banner-content h1 {
  font-size: 48px;
  color: white;
}
.cta-banner-content h3 {
  font-size: 28px;
  color: white;
}
.cta-banner-content p {
  font-size: 18px;
}
.cta-btn-custom {
  background-color: white;
  color: black;
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}
.cta-btn-custom:hover {
  background-color: #ddd;
}
.cta-image-section img {
  width: 200px;
}

.shape-mockup {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.world-map {
  background: url("https://wordpress.themeholy.com/tourm/wp-content/uploads/2024/08/cta_bg_2.png")
    no-repeat center center;
  background-size: cover;
  color: white;
  text-align: left;
  padding: 40px 0;
  position: relative;
  background-color: #003e7e;

  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.journey-section {
  background: url("https://dotcomwala.com/scholarsconsultinghub/Home-1/img/world-map.jpg")
    no-repeat center;
  background-size: cover;
  background-color: rgba(0, 62, 126, 0.8);
  background-blend-mode: overlay;
  padding: 50px 0;
  color: #003e7e;
}

.section-title {
  color: #002c5e;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}

.step {
  text-align: center;
  color: #fff;
  font-size: 14px;
}

.step i {
  font-size: 50px;
  color: #fff;
  display: block;
  margin-bottom: 10px;
  font-weight: 600 !important;
}

.arrow {
  font-size: 20px;
  color: red;
  line-height: 50px;
}

.refer-img img {
  width: 500px;
}

.hero-section {
  padding: 50px 0;
  text-align: center;
}

.featured-text {
  font-size: 18px;
  text-transform: uppercase;
  color: #ffcc00;
  letter-spacing: 2px;
}

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

.tour-card {
  position: relative;
  background: #fff;
  color: #333;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s;
}

.tour-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tour-img {
  position: relative;
  height: 290px;
}

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

.featured-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--bs-primary);
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 5px;
}

.discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  color: var(--bs-primary);
  padding: 5px 10px;
  font-size: 16px;
  border-radius: 5px;
  font-weight: 600;
}

.tour-info {
  padding: 15px;
}

.location {
  font-size: 14px;
  color: #777;
}

.details {
  font-size: 14px;
  color: #555;
}

.price-tag {
  background-color: var(--bs-primary);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 18px;
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.discount-price {
  background-color: var(--bs-primary);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 16px;
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.discount-price s {
  color: #fff;
}

.final-price {
  font-size: 18px;
}

.developer {
  color: rgb(68, 68, 68);
  font-size: 12px;
}
.developer a {
  color: rgb(68, 68, 68);
  font-size: 12px;
}

.wtsapp {
  position: fixed;
  transition: all 0.5s ease;
  background: #25d366;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  border-right: none;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  bottom: 50px;
  left: 30px;
  border: 0;
  z-index: 999;
  width: 56px;
  height: 56px;
  line-height: 48px;
}

.wtsapp i {
  font-size: 30px;
}

.card-custom {
  border-radius: 20px;

  padding: 40px 30px;
  text-align: center;
  background: white;
  transition: 0.3s;

  background: linear-gradient(rgba(19, 53, 123, 0.8), rgba(19, 53, 123, 0.8)),
    url(../img/banner-1.avif);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  width: 100%;
}

.icon-container {
  font-size: 40px;
  color: #fff;
  margin-bottom: 15px;
}

.card-title {
  font-weight: bold;
  color: #fff;
}
.card-text:last-child {
  margin-bottom: 0;
  line-height: 29px;
}

.icon-box {
  width: 70px;
  height: 70px;
  background-color: #e0f7fa;
  color: #002c5e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  flex-shrink: 0;
}

.icon-box i {
  font-size: 25px;
}

.accordion-button {
  background-color: #ffffff;
  color: #000;
  font-weight: 500;
}
.accordion-button:not(.collapsed) {
  color: #000;
  background-color: #e9ecef;
  box-shadow: none;
}
.accordion-item {
  border: none;
  border: 1px solid #dee2e6;
  border-radius: 0;
}
.accordion-header {
  font-size: 16px;
}
.section-title {
  font-size: 24px;
  font-weight: bold;
}
.sub-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.filter-card,
.package-card {
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.package-card img {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  object-fit: cover;
  height: 250px;
  width: 100%;
}
.package-details h5 {
  font-weight: 600;
}
.price-box {
  background-color: #e9f7ff;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
}
.price-box .discount {
  font-size: 12px;

  font-weight: 600;
}
.price-box .price {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}
.btn-view {
  color: #fff;
  border-radius: 8px;
}
.available-months span {
  font-size: 12px;
  color: #6c757d;
  margin: 0 4px;
}

.form-div {
  border-radius: 10px 10px 10px 10px;
  border: 1px solid #dde1e3;
}
.form-control {
  border: none;
}

.search-btn {
  border-radius: 0px 10px 10px 0px;
}
.sort {
  border: 1px solid #dde1e3;
  border-radius: 10px;
  padding: 7px 5px;
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.rounded-container {
  border-radius: 16px;
  overflow: hidden;
}
.overlay-btns {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.overlay-btns .btn {
  margin-left: 5px;
  background-color: white;
  border: none;
  font-weight: 500;
}
.equal-height {
  height: 100%;
}
.object-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.icon-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.trip-info-box {
  border: 1px solid #ddd;
  padding: 1.5rem;
  border-radius: 8px;
}
.trip-info-box h5 {
  font-weight: bold;
}
.icon-text i {
  font-size: 1.2rem;
}
.highlight {
  color: #003e7e;
}
.price-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}
.discount-span {
  background-color: #003e7e;
  color: white;
  font-size: 0.8rem;
  border-radius: 5px;
  padding: 2px 8px;
}
.btn-tabs .nav-link.active {
  border-bottom: 2px solid #00bcd4;
  font-weight: 600;
  color: #00bcd4;
}
.btn-tabs .nav-link {
  color: #333;
}
.trip-highlight i {
  color: #003e7e;
}
.trip-highlight li {
  margin-bottom: 0.5rem;
}

.breadcrumb-container {
  background-color: #f8f9fa; /* Light gray background */
  padding: 10px 15px;
}
.breadcrumb {
  margin-bottom: 0; /* Remove default bottom margin */
}
.breadcrumb-item a {
  color: #007bff; /* Bootstrap primary color for links */
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #495057; /* Darker gray for the active item */
}

.medical-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ddd;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}
.medical-img {
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.badge-discount {
  font-size: 0.8rem;
  background: #003e7e;
  color: white;
}
.right-box {
  border-left: 1px solid #eee;
  padding-left: 15px;
  place-content: center;
}

.gradient-overlay {
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  z-index: 1;
}

.banner-text {
  z-index: 3;
}

.sidebar {
  height: 60vh;
  width: 250px;
  background-color: #013b73;
  padding-top: 20px;
  color: white;
}

.sidebar a {
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  display: block;
  transition: background 0.2s;
}

.sidebar a:hover,
.sidebar a.active {
  background-color: #0056b3;
}

.main-content {
  padding: 30px;
}
@media (max-width: 768px) {
  .sidebar {
    position: relative;
    height: auto;
    width: 100%;
  }

  .main-content {
    margin-left: 0;
  }
}
.sidebar {
  background: #003049;
  color: #fff;
  height: 100vh;
  position: sticky;
  top: 0;
  padding-top: 6.5rem;
}
.sidebar .nav-link {
  color: #fff;
  margin-bottom: 0.25rem;
}
.sidebar .nav-link.active {
  background: #005f73;
  border-radius: 0.25rem;
}
.main {
  padding: 2rem;
}
.main-dashboard {
  border-top: 1px solid grey;
  padding: 4rem 2rem 2rem 2rem;
  margin-top: 20px;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
}
.card-icon {
  font-size: 1.5rem;
  color: #005f73;
}
.cart-item {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}

.cart-image {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 8px 0 0 8px;
}

.cart-details h5 {
  font-weight: 600;
}

.cart-details small {
  color: #666;
}

.summary-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}

.summary-box h6 {
  font-weight: bold;
}

.price-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.btn-checkout {
  background-color: #1c89f6;
  color: #fff;
  font-weight: bold;
}

.badge-package {
  font-size: 0.75rem;
  background-color: #333;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 5px;
}

.checkout-container {
  margin-top: 30px;
  margin-bottom: 30px;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #343a40;
}
.order-summary {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  border: 1px solid #e9ecef;
}
.order-item {
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Align items to the start, not center */
}
.order-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.item-details {
  flex-grow: 1;
  margin-right: 10px;
}
.item-title {
  font-size: 1rem;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 5px;
}
.item-date-time {
  font-size: 0.875rem;
  color: #6c757d;
}
.item-price {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
}
.charges-summary {
  padding-top: 15px;
  border-top: 1px solid #dee2e6;
  margin-top: 10px;
}
.charges-detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: #6c757d;
}
.grand-total {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 2px solid #dee2e6;
  margin-top: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #2c3e50;
}
.promo-code-section {
  margin-top: 20px;
}
.promo-code-input-group {
  display: flex;
}
.promo-code-input {
  flex: 1;
  border-radius: 5px 0 0 5px;
  border-right: none;
  padding: 10px;
  font-size: 0.9rem;
  border: 1px solid #ced4da;
}
.promo-code-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  border-color: #80bdff;
}
.apply-promo-btn {
  border-radius: 0 5px 5px 0;
  background-color: #663399; /* Changed to purple */
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.apply-promo-btn:hover {
  background-color: #562b82; /* Darker purple on hover */
}

.terms-and-conditions {
  margin-top: 20px;
  font-size: 0.875rem;
  color: #6c757d;
}
.terms-checkbox {
  margin-right: 5px;
}
.checkout-button {
  margin-top: 20px;
  width: 100%;
  background-color: #663399; /* Changed to purple */
  color: white;
  padding: 12px;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.checkout-button:hover {
  background-color: #562b82; /* Darker purple on hover */
}
.customer-details-form {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  border: 1px solid #e9ecef;
}
.form-row {
  display: flex;
  justify-content: space-between;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #343a40;
  margin-bottom: 5px;
}
.form-control {
  border-radius: 5px;
  padding: 10px;
  font-size: 0.9rem;
  border: 1px solid #ced4da;
}
.form-control:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  border-color: #80bdff;
}
.input-group-text {
  background-color: #e9ecef;
  border-radius: 5px 0 0 5px;
  border-right: none;
  font-size: 0.9rem;
  color: #343a40;
  border: 1px solid #ced4da;
  border-right: none;
  padding: 11px 5px;
}
.payment-details-form {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  border: 1px solid #e9ecef;
}
.form-check-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: #343a40;
}
.form-check-input {
  margin-top: 0.3rem;
}
.order-summary-container {
  position: sticky;
  top: 30px;
}
@media (max-width: 991px) {
  .order-summary-container {
    top: 0;
  }
}

#upiSection {
  display: none;
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
}
#upiSection label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #343a40;
  margin-bottom: 5px;
}
#upiId {
  border-radius: 5px;
  padding: 10px;
  font-size: 0.9rem;
  border: 1px solid #ced4da;
  width: 100%;
}
#upiId:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  border-color: #80bdff;
}
.payment-method-options {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.payment-method-option {
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}
.payment-method-option:hover {
  background-color: #f0f0f0;
}
.payment-method-option.active {
  background-color: #e0e0e0;
  border-color: #663399;
}
@media (max-width: 991px) {
  .order-summary-container {
    top: 0;
  }
}

.security-section {
  background-color: #fff; /* Light background */
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.security-text {
  font-size: 0.9rem;
  color: #6c757d; /* Gray text */
  margin-bottom: 15px;
}
.card-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.card-logos img {
  height: 30px; /* Adjust as needed */
  margin-right: 10px;
}

/* Responsive adjustments (optional - handled by Bootstrap, but can add more) */
@media (max-width: 576px) {
  .card-logos {
    justify-content: center; /* Center logos on small screens */
  }
}

.counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  text-align: center;
  line-height: 30px;
  border: none;
  background-color: #fff;
}
.counter-value {
  width: 40px;
  text-align: center;
  font-weight: 600;
}
.counter-label small {
  font-size: 12px;
  color: gray;
}

.swiper-slide {
  width: auto;
}
.swiper-button-next,
.swiper-button-prev {
  background-color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 35%;
  transition: all 0.3s ease;
  color: #000;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #007bff;
  color: white;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
  color: white;
}

.card-img-top {
  border-radius: 9px;
}

.swiperSlide {
  overflow: hidden;
}
.shadow-dashboard {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-top: 1px solid grey;
    margin-top: 2rem;
}
.text-blueth{
  color: #102d69;
}
.modal-dialog.one{
  max-width: 650px;
}
label.error{
  color: red;
}