/********** Template CSS **********/
:root {
  --primary: #ef8039;
  --light: #f1f8ff;
  --dark: #0f172b;
}
.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

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

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

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

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

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

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

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

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

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

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  margin-right: 15px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--dark);

  border-bottom: 2px solid #fff;
}
.display-3 {
  font-size: 3rem;
}
@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 43, 0.7);
  z-index: 1;
}

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

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

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .w-sm-100 {
    width: 100%;
    margin-top: 10px;
  }
}

.page-header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header-inner {
  background: rgba(15, 23, 43, 0.7);
}

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

.booking {
  position: relative;
  margin-top: 50px !important;
  z-index: 1;
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  left: -55px;
  margin-top: -1px;
  background: var(--primary);
}

.section-title::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  right: -55px;
  margin-top: -1px;
  background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
  display: none;
}

/*** Service ***/
.service-item {
  height: 320px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
}

.service-item:hover {
  background: var(--primary);
}

.service-item .service-icon {
  margin: 0 auto 30px auto;
  width: 65px;
  height: 65px;
  transition: 0.5s;
}

.service-item i,
.service-item h5,
.service-item p {
  transition: 0.5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
  color: #ffffff !important;
}

/*** Youtube Video ***/
.video {
  position: relative;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(rgba(15, 23, 43, 0.1), rgba(15, 23, 43, 0.1)),
    url(../img/video.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video .btn-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 18px 20px 18px 28px;
}

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

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

.video .btn-play img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid var(--dark);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

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

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

#videoModal {
  z-index: 99999;
}

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

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

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

/*** Testimonial ***/
.testimonial {
  background: linear-gradient(rgba(15, 23, 43, 0.7), rgba(15, 23, 43, 0.7)),
    url(../img/carousel-2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial-carousel {
  padding-left: 65px;
  padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
  padding: 30px;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 40px;
  top: calc(50% - 20px);
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 2px;
  font-size: 18px;
  transition: 0.5s;
}

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

/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
  transition: 0.5s;
}

.team-item:hover {
  border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
  background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
  color: var(--secondary) !important;
}

/*** Footer ***/
.newsletter {
  position: relative;
  z-index: 1;
}

.footer {
  position: fixed;
  bottom: 0;
  z-index: 999;
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

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

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

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 8px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

body.dark-mode {
  background-color: #121212;
  color: #ffffff;
}

body.light-mode {
  background-color: #ffffff;
  color: #000000;
}

.text_color {
  color: #ef8039;
}

.book-button,
.book-button:hover {
  font-size: 14px;
  background: #ef8039;
  border-radius: 5px;
  border: none;
  line-height: normal;
  min-height: 32px;
  color: #fff;
}
.book-button1,
.book-button1:hover {
  font-size: 14px;
  background: gray;
  border: 1px solid gray;
  border-radius: 5px;
  line-height: normal;
  min-height: 32px;
  color: #fff;
}

.parkname {
  color: #4d4d4d;
}
.parktitle {
  color: #011f6c;
}

/*=============================
        BOOKING SECTION
==============================*/

.booking-section {
  width: 100%;
  position: relative;
  padding: 70px 0 30px;
  max-width: 1400px;
  margin: auto;
}

/*=============================
        FLOATING MENU
==============================*/

.booking-menu {
  width: 86%;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.22);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 5;
  padding: 18px;
}

.booking-menu .menu-item {
  /* width:14.28%; */
  text-align: center;
  color: #333;
  text-decoration: none;
  transition: 0.25s;
  position: relative;
}

.booking-menu .menu-item i {
  display: block;
  font-size: 22px;
  color: #011f6c;
  margin-bottom: 10px;
}

.booking-menu .menu-item span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.booking-menu .menu-item:hover {
  color: #0d6efd;
}

/*=============================
      MAIN BOOKING CARD
==============================*/

.booking-card {
  margin-top: -40px;
  background: #fff;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  padding: 65px 30px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/*=============================
           LABELS
==============================*/

.booking-card label {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  display: block;
}

.booking-card label span {
  color: #d40000;
}

/*=============================
        INPUTS
==============================*/

.booking-card .form-control,
.booking-card .form-select {
  height: 36px;
  border-radius: 3px;
  border: 1px solid #cfcfcf;
  font-size: 15px;
  padding-left: 12px;
  box-shadow: none;
}

.booking-card .form-control:focus,
.booking-card .form-select:focus {
  border-color: #0d6efd;
  box-shadow: none;
}

/*=============================
         BUTTON
==============================*/

/* .availability-btn{
    height:45px;
    border:none;
    border-radius:2px;
    background:#1f76b9;
    color:#fff;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.availability-btn:hover{
    background:#095b98;
} */

/*=============================
        RESPONSIVE
==============================*/

@media (max-width: 1200px) {
  .booking-menu {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .booking-menu .menu-item {
    min-width: 160px;
  }
}

@media (max-width: 768px) {
  .booking-card {
    padding: 30px 20px;
    margin-top: 15px;
  }

  .booking-menu {
    padding: 15px;
  }

  .booking-menu .menu-item i {
    font-size: 20px;
  }

  .booking-menu .menu-item span {
    font-size: 12px;
  }
}

.btn-primary {
  background: #ef8039;
  color: #fff;
  border: 1px solid#ef8039;
  font-size: 14px;
}
.btn-primary:hover {
  background: #ef8039;
  color: #fff;
  border: #ef8039;
  font-size: 14px;
  border: 1px solid#ef8039;
}
.stepper-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  padding: 28px 20px 34px;
  max-width: 900px;
  margin: 60px auto;
}

.stepper {
  display: flex;
  align-items: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-connector {
  position: absolute;
  top: 15px;
  left: -50%;
  width: 100%;
  height: 3px;
  background-color: #e0e0e0;
  z-index: 0;
}

.step:first-child .step-connector {
  display: none;
}

.step.completed .step-connector,
.step.active .step-connector {
  background-color: #ef8039;
}

.step-circle {
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: #e0e0e0;
  color: #878787;
  font-weight: 600;
  font-size: 14px;
  margin: 0 auto 10px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step.completed .step-circle {
  background-color: #ef8039;
  color: #fff;
}

.step.active .step-circle {
  background-color: #fff;
  color: #ef8039;
  border: 2px solid #ef8039;
}

.step-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #878787;
  text-transform: uppercase;
}

.step.completed .step-label,
.step.active .step-label {
  color: #ef8039;
}

.step-sublabel {
  font-size: 12px;
  color: #212121;
  margin-top: 2px;
  font-weight: 400;
}

.step.active .step-sublabel,
.step.completed .step-sublabel {
  font-weight: 600;
}

.step-circle svg {
  width: 16px;
  height: 16px;
}

.controls {
  max-width: 900px;
  margin: 0 auto 0;
  text-align: center;
}

.btn-flipkart {
  background-color: #ef8039;
  border-color: #ef8039;
  color: #fff;
  font-weight: 600;
  border-radius: 2px;
  padding: 8px 24px;
}

.btn-flipkart:hover {
  background-color: #f28c4d;
  border-color: #f28c4d;
  color: #fff;
}

.btn-outline-flipkart {
  border-color: #ef8039;
  color: #ef8039;
  font-weight: 600;
  border-radius: 2px;
  padding: 8px 24px;
}

.grecaptcha-badge {
  /*bottom: 46px !important;*/
  z-index: 999;
}

.auth_form {
  border-radius: 15px;
}

.auth_form .btn-primary {
  background: #ef8039;
  border: 0;
}

.auth_form {
  border-radius: 16px;
}

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

.btn-primary:hover {
  background: #ef8039;
  border-color: #ef8039;
}

.error {
  color: red !important;
}

.fc-col-header {
  width: 100% !important;
}

.modal_css {
  min-height: 400px;
  /* overflow: scroll */
}

.unavailable-day {
  background: #dc3545 !important;
}

.fc-theme-standard td {
  background: #85c485b0;
}

.unavailable-day .fc-daygrid-day-frame {
  background: #dc3545 !important;
}

.unavailable-day .fc-daygrid-day-number {
  color: #fff !important;
  font-weight: bold;
}

.box_css {
  background-color: rgba(0, 0, 0, 0.04);
  height: 24px;
  border: 1px solid gray;
  border-radius: 50px;
  padding: 0 5px;
  color: #000;
  margin-left: 10px;
}

.fc-day-today {
  background: #ffe69c !important;
}

.fc-day-today .fc-daygrid-day-number {
  color: #664d03 !important;
  font-weight: bold;
}

.past-date {
  background: #f5f5f5 !important;
  opacity: 0.5;
}

.past-date .fc-daygrid-day-number {
  color: #999 !important;
}

.hero-section {
  min-height: 75vh;
  background: url("/assets/img/ambedkar-park4.jpg") center center / cover
    no-repeat;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.booking-wrapper {
  position: relative;
  z-index: 2;
  padding-top: 30px;
}

/* .booking-card {
        background: #fff;
        width: 580px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    } */

.top-tabs {
  display: flex;
}

.top-tabs .tab {
  flex: 1;
  background: #ef8039;
  color: #fff;
  text-align: center;
  padding: 14px;
  font-weight: 600;
}

.booking-body {
  padding: 30px;
}

.booking-title {
  text-align: center;
  color: #000;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}

.form-control,
.form-select {
  /* height: 50px; */
  border-radius: 2px;
}

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

.checkbox-section {
  margin-top: 20px;
}

.checkbox-section label {
  display: block;
  margin-bottom: 10px;
  color: #000;
  font-weight: 600;
}

.search-btn {
  background: #ef8039;
  color: #fff;
  border: none;
  padding: 12px 50px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
}

.search-btn:hover {
  background: #ef8039;
}

.right-content {
  color: #fff;
  text-align: center;
  padding-top: 20px;
}

.right-content h1 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.right-content p {
  font-size: 32px;
}

@media (max-width: 992px) {
  .right-content {
    display: none;
  }
}

.slider-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ef8039;
  color: #fff;
  border: none;
  transition: 0.3s;
}

.slider-nav button:hover {
  background: #d86d27;
  color: #fff;
}

.slider-nav {
  display: flex;
  gap: 10px;
}

.card.shadow-sm {
  min-height: 480px;
}

.selected {
  background-color: #ffc107;
}

.auth_form {
  border-radius: 15px;
}

.auth_form .btn-primary {
  background: #ef8039;
  border: 0px;
}

.auth_form {
  border-radius: 16px;
}

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

.btn-primary:hover {
  background: #ef8039;
  border-color: #ef8039;
}

.error {
  color: red !important;
}


.header_gredent {
  background: linear-gradient( 150deg, #ffff 45%, #ef8039 45%);
}

.logo_heading {
  font-size: 1.3rem;
}

@media screen and (min-width: 992px) and (max-width: 1400px) {
    .header_gredent {
        background: linear-gradient(150deg, #ffff 40%, #ef8039 40%);
    }

    .logo_heading {
        font-size:15px;
    }
      .navbar-expand-lg .navbar-collapse {
            flex-wrap: wrap;
  }
    .btn-light {
       font-size:14px;
   }
    .btn-dark {
        font-size:16px;
    }
}

@media screen and (max-width:975px) {
  .header_gredent {
    background: #ef8039;
  }

}

