@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");

/***** General CSS *****/
body {
  font-family: "soleil", sans-serif;
  color: #000;
}

a {
  text-decoration: none;
  color: #000;
  white-space: initial;
  font-size: 14px;
}

a:hover {
  text-decoration: none !important;
  color: #001e46;
  transition: all 0.2s ease-in-out;
}

a:focus {
  text-decoration: none !important;
  color: #001e46;
  transition: all 0.2s ease-in-out;
}

a:hover {
  transition: all 0.2s ease-in-out;
}

img {
  object-fit: cover;
  max-width: 100%;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  transition: all 0.5s ease;
  outline: none;
}

select,
input,
textarea {
  appearance: auto;
}

/***** Font Files *****/
@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Mont";
  src: url(../fonts/Mont.otf);
  font-style: normal;
}

@font-face {
  font-family: "Soleil";
  src: url(../fonts/Soleil.otf);
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "SoleilBold";
  src: url(../fonts/SoleilBold.otf);
}

@font-face {
  font-family: "Mont-ExtraLight";
  src: url(../fonts/Mont-ExtraLight.ttf);
  font-weight: 700;
  font-style: normal;
}

/***** Custom Classes *****/
select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder {
  color: #575757;
}

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.pt_8,
.pb_8,
.py_8,
.sec {
  padding: 80px 0;
  position: relative;
}

.flexRow,
.flexCol {
  display: flex;
  align-items: center;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Mont", sans-serif;
  text-transform: uppercase;
  margin: 0 0 10px;
}

h1 {
  font-size: 49px;
  line-height: 70px;
  color: #001e46;
  font-weight: 500;
  font-family: "Mont", sans-serif;
}

h2 {
  font-size: 50px;
  line-height: 1.2;
  color: #001e46;
  font-weight: 500;
  font-family: "Mont", sans-serif;
}

h3 {
  font-size: 35px;
  line-height: 1.2;
  color: #000;
  font-weight: 600;
  font-family: "Mont", sans-serif;
}

h4 {
  font-size: 30px;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
  font-family: "Mont", sans-serif;
}

h5 {
  font-size: 22px;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
  font-family: "Mont", sans-serif;
}

h6 {
  font-size: 18px;
  font-family: "Mont", sans-serif;
  color: #000;
  font-weight: 500;
}

p {
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
  color: #3e3e3e;
  font-family: "Soleil", sans-serif;
}

/* Menu */
.nav ul {
  list-style: none;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  gap: 0;
  justify-content: space-between;
}

.nav ul li a {
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  transition: all 0.5s;
  position: relative;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
}

.nav.stroke ul li a:hover:after {
  width: 100%;
}

/* Buttons */
.theme_btn {
  font-size: 14px;
  color: white;
  width: fit-content;
  padding: 13px 24px;
  background-color: #34a853;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  z-index: 1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.theme_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: width 0.6s ease, height 0.6s ease;
}

.theme_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px #46a956;
  background: linear-gradient(45deg, #46a956, #46a956);
  color: #fff;
}

.theme_btn:hover::before {
  width: 300px;
  height: 300px;
}

.theme_btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px #46a956;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #46a956;
  }

  70% {
    box-shadow: 0 0 0 20px #46a956;
  }

  100% {
    box-shadow: 0 0 0 0 #46a956;
  }
}

.web-padding {
  padding: 0 3%;
}

.hdr_logo a {
  display: inline-flex;
  font-family: "Mont", sans-serif;
  font-size: 25px;
  text-transform: uppercase;
  color: #fff;
  justify-content: center;
}

.hdr_logo a img {
  height: 150px;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.hdr_logo {
  /* display: flex; */
  justify-content: flex-start;
  /* align-items: center; */
  /* height: 100%; */
  position: relative;
  z-index: 1;
}

section.header {
  border-bottom: 2px solid #00000029;
  padding: 20px 0;
}

.nav.stroke {
  height: 100%;
  display: block;
}

.nav ul a {
  text-transform: uppercase;
}

.hdr_btn {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.nav-ul a {
  text-transform: uppercase;
  font-weight: 500 !important;
}

/* Header */
/* Header end*/
/* Banner */
section.main-banner {
  padding-bottom: 100px;
}

.hero-banner {
  height: 750px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}

.hero-banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 30, 70, 0.99),
      rgba(0, 30, 70, 0));
  z-index: 1;
  border-radius: 50px;
}

.hero-upper {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 30px;
}

.hero-upper-left p {
  color: white;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.clickable-text {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.clickable-text:hover p {
  text-decoration: underline;
}

.counter-section {
  display: flex;
  justify-content: space-between;
  text-align: center;
  color: white;
}

.counter-box h2 {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
}

.counter-box p {
  font-size: 16px;
  margin-top: 5px;
}

.main-banner .row {
  display: flex;
  align-items: flex-end;
}

.main-banner .col-md-12,
.main-banner .col-md-6 {
  padding-left: 15px;
  padding-right: 15px;
}

.banner-top-left h1 span {
  font-weight: 800;
  display: block;
  margin: -10px 0 0 0;
}

section.banner-top.wow.fadeInLeft {
  position: relative;
  z-index: 1;
  padding: 20px 0;
}

section.banner-top.wow.fadeInLeft .row {
  align-items: center;
}

.counter-box h2 {
  color: white;
  font-size: 40px;
}

.counter-box p {
  color: white;
}

.hero-left-wrapper {
  padding: 0 30px;
}

.hero-upper-right {
  background-color: white;
  border-radius: 20px;
  padding: 20px 40px;
  margin: 0 auto;
  display: block;
  width: 70%;
}

.hero-upper-right>h3 {
  font-size: 35px;
  text-align: center;
  font-weight: 100 !important;
  color: #001e46;
  font-family: "Mont-ExtraLight";
}

.tab-chner-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main-banner .nav-tabs .nav-link.active,
.main-banner .nav-tabs .nav-item.show .nav-link {
  color: #fff;
  background-color: #34a853;
  border-color: #dee2e6 #dee2e6 #fff;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 50px;
}

.main-banner .nav-tabs {
  border-bottom: 1px solid transparent;
  background-color: #f2f4f5;
  padding: 7px 11px;
  border-radius: 50px;
  margin-bottom: 0;
  gap: 0px;
}

.main-banner .nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  color: black;
  text-transform: uppercase;
  font-family: 'Mont-ExtraLight';
  font-size: 13px;
  padding: 15px;
  font-weight: bold;
  padding: 10px 10px;
}

button.location-btn-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.tab-inner-wrapper {
  width: 100%;
  padding: 0;
}

button.location-btn-hero input {
  margin: 0;
  padding: 20px;
  background-color: transparent;
  outline: none;
  border: 1px solid transparent;
}

.search-btn input {
  border: 1px solid transparent;
  background: transparent;
  width: 100%;
}

.search-btn input::placeholder {
  color: #000;
  text-transform: capitalize;
}

.search-btn {
  height: 60px;
  background-color: #f2f4f5;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 15px 20px;
  border-radius: 50px;
  gap: 10px;
}

.time-selector .form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 10px;
  width: 100%;
  background-color: #f2f4f5;
  border: 1px solid transparent;
  padding: 20px 20px;
  border-radius: 50px;
}

.time-selector {
  margin: 20px 0 20px 0;
}

.tab-inner-wrapper p {
  padding: 0;
  margin: 0;
  padding: 15px 0;
  color: black;
}

.main-banner .col-md-12 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.main-banner .col-md-6 {
  margin: 0 !important;
  padding: 0 !important;
}

/* Banner Ends  */
/* packkage sec starst  */
section.packing {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 20px;
}

.heading-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.heading-row a {
  border: 1px solid black;
  padding: 5px 10px;
  border-radius: 50px;
  background-color: white;
}

.heading-row p {
  width: 55%;
}

.heading-row h2 {
  margin: 0;
  padding: 10px 0;
  color: #53aa59;
  text-transform: uppercase;
  font-weight: 900;
}

section.packing .container-fluid {
  background-color: #f2f4f5;
  padding: 0;
  border-radius: 20px;
}

.pkg-txt div img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.pkg-txt div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pkg-card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0px;
  display: flex;
  gap: 15px;
  border: 1.5px solid #001e46;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  align-items: center;
}

.pkg-img {
  width: 40%;
}

.pkg-img img {
  height: 160px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.pkg-card p {
  margin: 0;
}

.pkg-txt div p {
  margin: 10px 0 5px 0;
  color: black;
  font-size: 14px;
  font-weight: 600;
}

.pkg-txt>p {
  color: #223c5e;
  text-transform: uppercase;
  font-weight: 600;
}

.marque-item img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.marque .slick-slide {
  transition: all ease-in-out 0.3s;
  opacity: 1;
}

.pkg-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0 0 0;
}

/* packkage sec Ends */
/* list sec starst  */
/* list sec ENds */
/*download start*/
section.download-app {
  padding: 0;
  background-color: #f2f4f5;
  position: relative;
  margin-bottom: 10;
}

.download-app-txt h3 {
  font-size: 50px;
  color: #001e46;
  font-weight: 700;
}

.download-app-txt p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 25px;
}

.download-app-txt ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}

.down-app {
  position: unset;
  right: 300px;
  top: 0;
  width: 65%;
  margin: 0 0 0 auto;
}

.down-app img {
  height: 450px;
  object-fit: fill;
}

/*download end*/
/* work start */
section.work {
  padding: 40px 0 100px 0px;
}

.work-txt {
  text-align: center;
  margin-bottom: 30px;
}

.work-txt h3 {
  font-size: 50px;
  font-weight: 600;
  color: #001e46;
}

.work-txt p {
  text-align: center;
  margin: 0 auto;
  width: 46%;
  font-size: 14px;
  color: #000000;
}

.nav-tabs {
  display: flex;
  justify-content: center;
  border: unset;
  width: fit-content;
  padding: 10px 20px;
  border-radius: 100px;
  background-color: #f2f4f5;
  margin: 32px auto;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  background-color: #34a853;
  color: #fff !important;
  border-radius: 100px;
}

.nav-tabs h5 {
  margin: 0;
  color: #000;
  font-family: "Mont-ExtraLight";
  font-size: 20px;
}

.work-bx img {
  width: 170px;
  margin: 0 auto 20px auto;
}

.work-bx {
  text-align: center;
}

.work-bx h4 {
  font-size: 23px;
  font-weight: 700;
}

.work-bx p {
  font-size: 14px;
  width: 49%;
  margin: 0 auto;
}

.none {
  display: none;
}

/* work end */
/* section start */
.web-padding {
  padding: 5% 5%;
  background: #f2f4f5;
  border-radius: 20px;
}

.oval {
  color: #001e46;
  border: 1px solid #00000054;
  padding: 7px 20px;
  border-radius: 50px;
  background-color: white;
  font-size: 14px;
  font-family: "Soleil";
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 10px 0;
  display: flex;
  width: fit-content;
}

.list-card-image img {
  width: 100%;
  height: 300px;
  border-radius: 20px;
}

.list-card-image a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list-card-image a span.list-card-image-tex {
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: 90%;
  padding: 15px 10px;
  border-radius: 10px;
  background: #f4faff;
  transform: translateX(-50%);
  font-family: "Soleil";
}

.list-card-image {
  margin: 0 0 20px 0;
}

/* section end */
/* section start */
.park-space-box-image img {
  object-fit: scale-down;
  width: 50px;
  transition: 0.6s ease-in-out;
}

.park-space-box-image a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #46a956;
}

.park-space-box {
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 30px;
  background: #fff;
  border-radius: 10px;
  margin: 20px 0 20px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1.5px solid #001e46;
}

.park-space-box::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  content: '';
  background: #051f45;
  transition: 0.3s ease-in-out;
}

.park-space-box:hover::before {
  height: 100%;
  transition: 0.3s ease-in-out;
}

.park-space-box:hover p.park-space-heading {
  color: #ffff;
}

.park-space-box:hover .park-space-box-image img {
  transform: rotateY(180deg);
  transition: 0.6s ease-in-out;
}

.park-space-box:hover p {
  opacity: 70%;
  color: #ffff;
}

.park-space-box-text p {
  margin: 0;
  color: #696969;
  font-size: 15px;
}

p.park-space-heading {
  color: #001e46;
  font-size: 20px;
  font-weight: bold;
  opacity: 1 !important;
}

section.park-space-sec .heading-row {
  margin: 0 0 30px 0;
}

.park-space-card {
  width: 40%;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
}

.park-space-card-image img {
  height: 170px;
  border-radius: 10px;
}

p.park-space-head {
  margin: 0;
  text-transform: uppercase;
  color: #001e46;
}

.park-space-card-text * {
  margin: 0;
}

ul.park-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

ul.park-list li {
  display: flex;
  align-items: center;
  gap: 5px;
}

ul.park-list li img {
  object-fit: scale-down;
  width: 20px;
}

.park-space-card-text {
  padding: 20px 0 0 0;
}

.park-space-card-text a {
  width: 100%;
  text-align: center;
}

img.park-space-right-box-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 100%;
  z-index: -1;
  border-radius: 20px;
  object-position: -717px 0;
}

.park-space-right-box {
  position: relative;
  z-index: 1;
  height: 100%;
}

.park-space-right-box {
  display: flex;
  align-items: center;
}

/* section end */
/* section start */
a.faq-theme img {
  object-fit: scale-down;
  width: auto;
}

a.faq-theme {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
}

.faq-left {
  padding: 20px;
  background: #46a956;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

a.theme-faq {
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #ffff;
  width: fit-content;
  text-transform: uppercase;
}

.faq-left p {
  color: #ffff;
  font-size: 16px;
}

.faq-left * {
  margin: 0;
}

/* section end */
/* section start */
.testi-btn {
  display: flex;
  align-items: center;
  justify-content: end;
}

ul.stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

ul.stars i {
  color: #fbb02e;
}

/* Empty stars (outline) should be lighter */
ul.stars i.far {
  color: #ddd;
  font-weight: 300;
}

/* Filled stars (solid) */
ul.stars i.fas {
  color: #fbb02e;
  font-weight: 900;
}

ul.testi-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

ul.testi-img li {
  display: flex;
  align-items: center;
  gap: 10px;
}

ul.testi-img li img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

ul.testi-img li p {
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
  color: #001e46;
}

img.rating {
  object-fit: scale-down;
}

.testi-box {
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  border: 1.5px solid #001e46;
  box-shadow: 0 0 20px 0 #00000036;
  margin: 30px 0;
}

/* section end */
/* section start */
/* footer start */
footer.footer-sec {
  position: relative;
  padding: 60px 0 0;
  width: 100%;
  background: #001e46;
}

ul.footer-social-list {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 30px;
  gap: 20px;
}

ul.footer-social-list li i {
  font-size: 20px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8a8887;
  color: #fff;
}

.footer-text img {
  width: auto;
  object-fit: scale-down;
}

.footer-text.chg p {
  text-align: left;
  /* margin-top: 20px; */
  font-weight: 600;
  color: #fff;
  font-size: 17px;
}

ul.footer-social-list li i:hover {
  background: #004aad;
  transition: 1s ease-in-out;
  color: #fff;
}

.footer-text h2,
.footer-text span {
  font-size: 24px !important;
  line-height: 50px;
  margin-bottom: 15px;
  color: #fff;
}

ul.footer-link li a {
  font-size: 14px;
  color: #fff;
  line-height: 2.5;
  font-weight: 300;
  text-transform: capitalize;
  font-family: montserrat;
  display: block;
  width: 100%;
}

ul.footer-link-list li i {
  font-size: 22px;
  color: #ffff;
}

ul.footer-link-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  padding-right: 15px;
  margin-bottom: 10px;
}

ul.footer-link-list li p {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  line-height: 25px;
  margin: 0;
}

.footer-form {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  position: relative;
}

.footer-form input {
  width: 100%;
  height: 60px;
  padding: 15px;
  border: none;
  margin-bottom: 10px;
  color: #000;
  font-weight: 600;
  font-size: 17px;
  padding-left: 50px;
  border-radius: 30px;
}

.footer-form i {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 20px;
  color: #001e46;
  font-weight: 400;
}

.footr-btn button {
  border: 0;
  margin: 0;
  width: 100%;
  font-size: 17px;
  color: #fff;
  font-weight: 400;
}

.footer-text.chg:before {
  display: none;
}

.footer-text.chg {
  padding: 0;
  margin: 0;
  /* padding-top: 30px; */
}

.footer-text {
  padding-left: 0;
  padding-top: 15px;
}

.footer-text.ftr-border:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 110%;
  left: -20px;
  top: -15%;
  background: #004aad;
  display: none;
}

.footer-text.ftr-border:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 110%;
  right: 20px;
  top: -15%;
  background: #004aad;
  display: none;
}

section.bottom-nav {
  padding: 15px 0;
  text-transform: capitalize;
  background: #001e46;
  margin-top: 30px;
  border-top: 1px solid #535656;
}

section.bottom-nav p {
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 30px;
  margin: 0;
  font-weight: 300;
}

/* .footer-text:before {
content: "";
position: absolute;
border: 1px solid #878787;
width: 1px;
height: 335px;
left: 0;
top: 0;
} */
.footer-text {
  position: relative;
}

ul.footer-link li {
  border-bottom: 1px solid transparent;
  width: 100%;
  transition: 1s ease-in-out;
}

ul.footer-link-list li {
  border-bottom: 1px solid transparent;
  padding-bottom: 10px;
  transition: 1s ease-in-out;
}

.footer-text ul.hdr-top-right-list {
  justify-content: start;
}

.footer-text ul.hdr-top-right-list li a:hover {
  transition: 0.3s ease-in-out;
  background-color: #34a853;
  border: 1px solid #34a853;
}

ul.footer-link {
  column-count: 2;
}

.get-quote-box select {
  width: 100%;
  height: 60px;
  color: #aeaeae;
  padding-left: 15px;
  margin-bottom: 25px;
  border: 1px solid #aeaeae;
  background-color: transparent;
  appearance: auto;
  border-radius: 12px;
  margin: 0 0 10px 0;
}

h2.montserrat.heading {
  position: absolute;
  writing-mode: sideways-rl;
  height: 100%;
  text-align: left;
  left: -120px;
  font-size: 90px;
  /* Ensure the text is bold for better visibility */
  color: transparent;
  /* Make the inner text transparent */
  -webkit-text-stroke: 2px #bbbbbb;
  /* Outline effect (change color as needed) */
  text-transform: uppercase;
  /* Optional for better visibility */
}

.get-quote-main-box {
  position: relative;
}

footer.footer-sec h5 {
  color: #fff;
}

ul.hdr-top-right-list {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

ul.hdr-top-right-list li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  border: 1px solid #ffff;
  transition: 0.3s ease-in-out;
}

ul.hdr-top-right-list li a:hover {
  transition: 0.3s ease-in-out;
  background-color: #2f2929;
  border: 1px solid #2f2929;
}

/* footer end */
/* section end */
/*Book Sec css Starts*/
.book-form-input input,
.book-form-input textarea,
.book-form-input select {
  width: 100%;
  padding: 20px 25px;
  margin: 0 0 30px 0;
  border-radius: 40px;
  border: 1px solid #878787;
  background-color: transparent;
  appearance: auto;
}

.book-form-input textarea {
  height: 200px;
  resize: none;
}

.contact-sec-h p a {
  color: #6c757d;
  font-weight: 600;
  position: relative;
  transition: ease-in;
  transition-duration: 0.2s;
}

.contact-sec-h p a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 0;
  margin: 0 auto;
  border-bottom: 1px solid #000;
  transition: ease-out;
  transition-duration: 0.2s;
}

.contact-sec-h p a:hover::before {
  width: 100%;
  transition: ease-out;
  transition-duration: 0.2s;
}

.book-form-btn {
  text-align: center;
  margin-top: 20px;
}

.theme2 {
  background-color: #001e46;
  color: white;
  width: 100%;
  height: 70px;
  border: none;
  border-radius: 40px;
  font-size: 29px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-form-input::placeholder {
  color: #000;
}

/*Book Sec css Ends*/
/* InnerPage Login start */
.login-body {
  background: url(../images/login-bg.png) no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 100vh;
}

.text-blue {
  color: #100c6c;
}

.text-black {
  color: #000 !important;
}

.log-in-wrap {
  padding: 40px 40px;
  border: 2px solid #000;
  float: right;
  width: 100%;
  border-radius: 10px;
  background: #fdfdfd;
}

.form-group {
  margin-bottom: 15px;
}

.log-in-wrap h2 {
  margin: 0 0 20px 0;
  text-align: left;
  color: #001e46;
  font-size: 35px;
  text-transform: capitalize;
  line-height: 50px;
  font-weight: 500;
  text-align: center;
}

.log-in-wrap.signup-bg h2 {
  color: #000;
}

.log-in-wrap.signup-bg input::placeholder {
  color: #fff;
}

.login_btn {
  width: 100%;
  background: #34a853;
  padding: 13px;
  display: block;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 40px;
  border: 2px solid var(--yellow2);
  transition: 0.5s all;
  font-family: "Montserrat";
}

.contact-page-main .form-control {
  height: 45px;
  background-color: #ffffff;
  border-color: #d5d5d5;
}

.log-in-page-main .form-check label.form-check-label {
  font-size: 14px;
  font-weight: 300;
  margin: 0;
  font-weight: 300;
  color: #000;
}

.form-check-input:checked {
  background-color: var(--yellow2);
  border-color: var(--yellow2);
}

.log-in-page-main .form-check,
.forgot-pass {
  display: inline-block;
}

.forgot-pass a {
  font-size: 15px;
  margin: 0;
  font-weight: 500;
  color: #000;
  text-decoration: underline;
}

.term-condition:hover {
  color: #000;
}

.forgot-pass a:hover {
  color: var(--yellow2);
}

.agree-text {
  color: #000;
  font-size: 18px;
  font-weight: 300;
  margin-top: 5px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Poppins";
  font-size: 14px;
  font-weight: 500;
}

.term-condition {
  font-weight: 500;
  margin-left: 10px;
  color: var(--yellow2);
  border-bottom: 2px solid var(--yellow2);
  /* font-size: 15px; */
}

.form-check {
  float: unset;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 0 10px;
}

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

.form-control {
  display: block;
  width: 100%;
  height: 50px;
  padding: 6px 22px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #000;
  background-color: #fff;
  background-image: none;
  border: 1px solid #000;
  border-radius: 40px;
}

.log-in-wrap input::placeholder {
  font-weight: 500 !important;
  font-family: "Poppins" !important;
  color: #b2b2b2 !important;
}

.login_btn:hover {
  color: #000;
}

.login-forms {
  padding: 80px 0;
}

.login-menu ul {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 0;
}

.login-menu ul li a {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
}

.header-main-right {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.login-menu {
  width: 100%;
}

.sign-up-btn {
  width: 42%;
}

.sign-up-btn a {
  color: var(--yellow1);
  border: 1px solid var(--yellow1);
  padding: 10px 25px;
  border-radius: 60px;
  font-size: 18px;
}

.sign-up-btn a:hover {
  background: var(--yellow1);
  color: #000;
}

.log-in-wrap.signup-bg .form-control::placeholder {
  color: #000;
  font-family: "Montserrat", sans-serif;
}

.log-in-wrap.signup-bg button.login_btn {
  background: #fff;
  color: #fff;
  font-family: "Montserrat";
  background: #34a853;
}

.term-condition {
  color: #001e46 !important;
  border-color: #000;
  border-bottom: 1px solid;
}

.log-in-wrap.signup-bg button.login_btn:hover {
  color: #000;
  border-color: #000;
}

.form-check .form-check-input:checked[type="checkbox"] {
  /* filter: invert(1); */
}

.form-check label {
  cursor: pointer;
  color: #000;
  font-family: "Poppins";
}

.form_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-group input::placeholder {
  color: #000 !important;
}

/* InnerPage Login end */
/*CONTACT US CSS*/
.contact-us .mg-40 {
  margin-top: 40px;
}

.contact-us .mg-40 iframe {
  height: 600px;
  width: 100%;
}

.contact-us .theme-h2 {
  color: #000000;
  font-size: 55px;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 60px;
  text-transform: uppercase;
}

.contact-form input {
  width: 100%;
  border: 1px solid #111111;
  padding: 20px 20px;
  margin-bottom: 30px;
  border-radius: 40px;
  font-size: 14px;
  font-family: montserrat;
}

.contact-form textarea {
  font-size: 14px;
  font-family: montserrat;
  width: 100%;
  padding: 5px 20px;
}

.contact-form input::placeholder {
  color: #000000;
  font-size: 14px;
  font-family: montserrat;
}

.contact-form textarea {
  width: 100%;
  padding: 20px 20px;
  border: 1px solid #424344;
  border-radius: 40px;
  margin: 0 0 20px 0;
  height: 210px;
  color: #000;
  resize: none;
}

.contact-form textarea::placeholder {
  color: #000000;
  font-size: 14px;
  font-family: montserrat;
}

.contact-form a {
  display: flex;
  justify-content: center;
  font-size: 22px;
  text-transform: capitalize;
  color: #fff;
  background-color: #2c5583;
  padding: 15px;
  border-radius: 25px;
}

.contact-links ul li img {
  font-size: 30px;
  background: #001e46;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  height: 90px;
  width: 90px;
  object-fit: scale-down;
}

.contact-links ul li p {
  margin: 0;
  font-size: 15px;
  color: #000000;
  font-weight: 500;
  font-family: montserrat;
}

.contact-links ul li a {
  color: #000;
  font-size: 17px;
  font-family: "Montserrat";
  font-weight: 500;
}

.contact-links ul li {
  margin-left: 0px;
  margin-right: 0;
  color: #000;
  display: flex;
  align-items: start;
  flex-direction: column;
}

.contact-links ul {
  display: flex;
  margin-bottom: 50px;
}

.contact-links ul li h3 {
  margin: 0;
  margin-bottom: 5px;
  color: #001e46;
  font-size: 30px;
  text-transform: uppercase;
}

section.contact-us {
  padding: 80px 0 80px;
}

section.neonatal-sec h3 a {
  color: #000;
  margin: 0;
  font-size: 30px;
}

.contact-links p {
  font-weight: 600;
  color: #000;
}

.contact-us span {
  color: #000000;
}

.contact-form p {
  font-weight: 600;
  color: #000;
}

.contact-form button.theme-btn {
  justify-content: center;
  width: 100%;
  color: #fff;
  font-size: 20px;
  background-color: #001e46;
  border: none;
  padding: 15px;
  border-radius: 40px;
}

.contact-form textarea::placeholder {
  font-weight: 600;
  color: #000;
  font-size: 19px;
}

.contact-form input::placeholder {
  font-weight: 600;
  color: #000;
  font-size: 19px;
}

/*CONTACT US END*/
/* finding parking space start  */
section.parking_space {
  /* background-color: #f2f4f5; */
}

.parking_space_cards_flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.parking_space_cards {
  background-color: #fffffd;
  padding: 20px 30px;
  box-shadow: 0 0 0 0 rgba(0, 174, 239, 0);
  border-radius: 10px;
  margin-bottom: 30px;
}

.prk-s-txt {
  color: #001e46;
  font-size: 14px;
  font-weight: 300;
}

.parking_space_cards_text ul {
  column-count: 2;
}

.parking_space_cards_text ul li {
  margin-bottom: 5px;
}

.parking_space_cards_text h4 {
  color: #001e46;
  font-size: 16px;
  font-weight: 100 !important;
}

.rating i {
  color: #ffcb2b;
}

.rating {
  margin-top: 5px;
}

.parking_space_right iframe {
  height: 762px;
  width: 100%;
  border-radius: 10px;
}

.parking_space_right p {
  text-align: end;
}

/* finding parking space end  */
/* finding_space start  */
p.finding_space_p {
  color: #7f7f7e;
}

.finding_space_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  margin-bottom: 20px;
}

.finding_space_card {
  background-color: #fffffd;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

section.inner-main-banner {
  padding: 0;
}

.more_btn {
  background-color: #001e46;
}

/* finding_space end  */
/* InnerPage start */
.inner-banner-top h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #001e46;
  gap: 10px;
}

span.light {
  font-weight: 100;
  font-family: "Mont-ExtraLight";
  line-height: normal;
  display: flex;
  align-items: start;
  justify-content: start;
  font-size: 50px;
}

.inner-hero-banner img {
  height: 500px;
  position: unset;
}

.inner-hero-banner {
  overflow: hidden;
  position: relative;
  height: auto;
}

.nav-tabs .nav-link.active h5 {
  color: #fff;
}

.list-card {
  margin: 20px 0;
  min-height: 100%;
  border-radius: 20px;
  border: 1.5px solid #001e46;
}

.list-card .list-card-text {
  padding: 0px 20px;
}

p.light {
  color: #696969;
  font-size: 16px;
}

/* InnerPage end */
/* InnerPage start */
.blog-image {
  position: relative;
}

.blog-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  height: 300px;
  box-shadow: 0 0 20px 0 #00000036;
  margin: 0 0 30px 0;
}

.blog-text {
  width: 92%;
  padding: 10px 20px;
  background: #fff;
  border-radius: 10px;
  position: unset;
  bottom: 0;
  box-shadow: 0 0 20px 0 #00000036;
  left: 0;
  margin: -40px 0 0 0;
  background: #fff;
  position: relative;
  z-index: 1;
  height: auto;
}

.blog-text ul {
  display: flex;
  margin: 10px 0;
  border-left: 0;
  border-right: 0;
  padding: 10px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.blog-text ul li {
  color: #000000;
  font-size: 15px;
  font-weight: 600;
  color: #636363;
  text-transform: uppercase;
}

.blog-text ul li i {
  color: #2f75e5;
}

.blog-box {
  position: relative;
  margin: 20px 0;
}

.blog-text h4 {
  margin-bottom: 15px;
  color: #000;
  font-size: 24px;
}

.blog-text p {
  line-height: 25px;
  color: #000;
  font-size: 16px;
}

.under-btn {
  padding: 20px 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  font-size: 16px;
  text-transform: uppercase;
  color: #001e46;
  border-top: 1px solid #b9b8b8;
}

/* InnerPage Blog end */
/* InnerPage end */
/* InnerPage start */
/* Blog Detail */
.blog-image>img {
  width: 100%;
  box-shadow: 1px 1px 10px 0 #00000091;
}

.recent-blog-tle {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}

.recent-blog-tle>img {
  height: 190px;
  box-shadow: 1px 1px 10px 0 #00000091;
  width: 190px;
  object-fit: cover;
  margin-right: 15px;
  border-radius: 10px;
}

.blog_image {
  position: relative;
}

.recent-blog-tle h6 {
  color: #000;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
}

.arichve-sm {
  color: #147bed;
  border: 1px solid #ddd;
  border-right: 0;
  border-left: 0;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 10px 0;
}

.arichve-sm span i {
  margin-right: 5px;
  color: #001e46;
}

section.blog-detail-sec {
  padding: 100px 0;
  position: relative;
}

.recent-blog h3 {
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
  color: #ff3299;
  font-family: "Oswald";
  margin-bottom: 30px;
  text-transform: uppercase;
}

section.blog-detail h4 {
  font-size: 40px;
  color: #000;
  font-weight: 500;
  margin: 50px 0 40px;
  font-family: "Oswald";
}

.arichve-sm span {
  width: 100%;
  color: #000;
}

.arichve-sm span:nth-child(2) {
  /* text-align: right; */
  border-left: 1px solid #ddd;
  padding: 0;
}

.arichve-sm.no-bdr {
  justify-content: start;
  margin: 20px 0 20px;
  flex-direction: row;
}

.arichve-sm.no-bdr span {
  width: auto;
}

.arichve-sm.no-bdr span:nth-child(2) {
  padding-left: 30px;
  margin-left: 30px;
}

.heading h2 span {
  color: #001e46;
}

.blog-detail p {
  color: #000;
  font-size: 22px;
  font-weight: 500;
  margin: 40px 0;
}

.blog_page .pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  justify-content: center;
  gap: 10px;
  margin: 50px 0 0 0;
}

.blog_page .page-link:focus {
  z-index: 3;
  color: #fff;
  background-color: #000;
  outline: 0;
  box-shadow: none;
}

.blog_page .page-link {
  font-size: 21px;
  color: #000;
  background-color: #fff;
  border: none;
  box-shadow: 0 0 20px 0 #00000069;
  padding: 15px 20px !important;
}

/* Blog Detail */
.abt-para {
  margin: 20px 0 0 0;
}

.search-text p {
  color: #b9b8b8;
}

.search-image img {
  height: 540px;
  border-radius: 20px;
}

section.search-sec.sec {
  padding-bottom: 0;
}

.step-image img {
  height: 400px;
  box-shadow: 0 0 20px 0 #00000036;
}

/* InnerPage end */
/* InnerPage start */
.step-main-box-hotel {
  padding: 0 0 50px 0;
}

.step-image {
  position: relative;
  z-index: 1;
  width: 90%;
  margin: 0 0 0 auto;
}

.step-image::before {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 100%;
  z-index: -1;
  height: 100%;
  background: #0095cc;
}

.middle .step-image {
  margin: 0 auto 0 0;
}

.middle .step-image::before {
  right: -10%;
  left: unset;
}

span.step.oval {
  background: #000;
  color: #fff;
}

/* InnerPage end */
.partnership-and-affiliates-heading {
  text-align: center;
}

.partnership-and-affiliates-sec {
  padding: 80px 0 30px;
}

.partnership-and-affiliates-box h2 {
  font-size: 25px;
}

/* Outer Box */
.partnership-and-affiliates-box {
  border-radius: 20px;
  margin-top: 20px;
  background: #fff;
  box-shadow: 0 0 5px 0 #0000006e;
  height: 370px;

  overflow: hidden;
  /* important */
}

/* Scroll Area */
.partnership-scroll {
  height: 100%;
  overflow-y: auto;
  padding: 40px 20px;
}

/* Scrollbar */
.partnership-scroll::-webkit-scrollbar {
  width: 4px;
}

.partnership-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.partnership-scroll::-webkit-scrollbar-thumb {
  background: #001e46;
  border-radius: 10px;
}

.partnership-scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* InnerPage start */
.counter-box .flex-center .montserrat {
  font-size: 31px;
}

section.header .container {
  max-width: 1550px;
}

/* InnerPage end */
.estimate-form {}

.estimate-form__container {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.estimate-form__title {
  text-align: center;
  font-size: 58px;
  color: #2d2d2d;
  margin-bottom: 10px;
}

.estimate-form__subtitle {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
}

.estimate-form__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.estimate-form__group {
  display: flex;
  flex-direction: column;
}

.estimate-form__group label {
  font-weight: bold;
  margin-bottom: 6px;
  color: #333;
  font-size: 25px;
  text-transform: uppercase;
  font-family: "Mont", sans-serif;
}

.estimate-form__group input,
.estimate-form__group select {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s ease;
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url();
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: auto;
  -moz-appearance: none;
  appearance: auto;
  padding: 10px;
  width: 100%;
  background-color: #f2f4f5;
  border: 1px solid transparent;
  padding: 20px 20px;
  border-radius: 50px;
}

.estimate-form__group input:focus,
.estimate-form__group select:focus {
  border-color: #34a853;
  outline: none;
}

.estimate-form__button {
  padding: 14px;
  font-size: 18px;
  background-color: #34a853;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.estimate-form__button:hover {
  background-color: #34a853;
}

.estimate-form__result {
  display: none;
  text-align: center;
  margin-top: 30px;
}

.estimate-form__result h3 {
  font-size: 22px;
  color: #333;
}

.estimate-form__result p {
  font-size: 32px;
  font-weight: bold;
  color: #34a853;
}

section.packing .web-padding {
  padding: 5% 3%;
}

.parking_space_cards_img {
  width: 40%;
}

.parking_space_cards_img img {
  height: 160px;
  border-radius: 20px;
}

.partner-contact .form-control {
  background-color: #e9ecef;
  font-size: 14px;
  border: 1px solid #0000;
  color: #858383;
  appearance: auto;
}

.partner-contact .form-control::placeholder {
  font-size: 14px;
  color: #858383;
}

.partner-contact .form-control:focus {
  color: #858383;
  background-color: #fff;
  border: 1px solid #001e46;
  outline: 0;
  box-shadow: unset;
}

/* InnerPage Blog start */
/*blog start*/
section.blog {
  padding: 70px 0;
}

.blog-txt {
  text-align: center;
  margin-bottom: 40px;
}

.blog-txt h2 {
  color: white;
  font-size: 59px;
  margin: 0;
  padding: 0;
}

.blog-txt p {
  font-size: 14px;
  margin: 0 auto;
  width: 73%;
}

.blog-img {
  position: relative;
  margin: 25px 6px;
}

.blog-img img {
  width: 44%;
  height: 400px;
  border-radius: 15px;
  object-position: center;
}

.blog-detail {
  transform: translateY(-50%);
  /* border: solid; */
  padding: 27px;
  background: #001e46;
  position: absolute;
  top: 50%;
  right: -1%;
  box-shadow: 0 0 4px #80808073;
  width: 57%;
  height: auto;
  border-radius: 7px;
}

.blog-detail p {
  color: white;
  font-size: 13px;
}

.blog-detail h5 {
  font-size: 18px;
  line-height: 25px;
  color: #000;
  font-weight: 500;
  margin: 0 0 20px;
  width: 75%;
}

.blog-detail h5 {
  font-family: "Montserrat";
  line-height: normal;
  color: white;
  font-weight: 500;
  margin: 0 0 14px 0;
  width: 100%;
  text-transform: uppercase;
  font-size: 19px;
  line-height: 29px;
}

.blog-detail h5 span {
  display: block;
}

.alignlist {
  display: flex;
  gap: 10px;
  justify-content: end;
  text-align: end;
  margin-left: 0;
}

.icons i {
  border: solid 1px transparent;
  /* padding: 9px; */
  border-radius: 20px;
  color: white;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #34a853;
}

.icons {
  display: flex;
  align-items: center;
  gap: 17px;
}

.blog-slider .slick-active {
  opacity: 1;
}

.blog-slider .slick-prev:before,
.blog-slider .slick-next:before {
  display: block;
  content: "";
  background: url(../images/arrow2.png);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1 !important;
  width: 75px;
  height: 45px;
  transition: 0.35s ease-in-out;
}

.blog-slider .slick-prev,
.blog-slider .slick-next {
  width: 75px;
  height: 45px;
  z-index: 2;
  bottom: -90px;
  top: unset;
}

.blog-slider .slick-prev {
  left: 0;
  right: 0px;
  /* transform: rotate(180deg); */
  margin: 0 auto;
  display: block;
  bottom: -90px;
  width: 18%;
}

.blog-slider .slick-next {
  right: 300px;
  width: 27%;
}

.blog-slider .slick-prev:before {
  transform: rotate(180deg);
}

.blog-slider .slick-prev:hover:before,
.blog-slider .slick-next:hover:before {
  filter: brightness(0);
}

.icons p {
  margin: 0;
}

.blog-txt.line-heading::before {
  background-color: #52b0b2;
}

.blog-dated {
  background-color: #34a853;
  width: fit-content;
  padding: 0px 10px;
  margin: 0;
}

.blog-dated p {
  font-size: 11px;
}

.blog-detail-page .blog-img img {
  width: 83%;
  height: 530px;
  border-radius: 5px;
}

.blog-img1 img {
  width: 44% !important;
  height: 400px !important;
  border-radius: 15px;
  object-position: center;
}

/*blog end*/
.form-input-box {
  position: absolute;
  top: 20px;
  right: 0;
  width: 40%;
}

.form-input-box button {
  position: absolute;
  top: 38%;
  right: 10px;
  transform: translateY(-50%);
  background: transparent;
  border: navajowhite;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 50%;
  color: #fff;
}

.contactus-map {
  position: relative;
}

.contactus-map iframe {
  height: 600px;
  width: 100%;
}

/* InnerPage Blog Ends*/
a.link {
  color: #001e46;
  font-weight: 800;
  text-decoration: underline;
  font-size: 16px;
}

.top-bar-text p {
  margin: 0;
}

.top-bar {
  padding: 15px 0;
  background: #34a853;
}

/* .marquee-wrapper {
  display: inline-block;
  animation: scroll-left 25s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
} */
/*
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 25s linear infinite;
  gap: 100px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
} */

.marquee-item {
  flex-shrink: 0;
  font-size: 14px;
  color: #fff;
  text-align: center;
}

a.update-date {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  font-size: 20px;
  margin: -51px 0 50px 0;
}

img.update-date-img {
  width: 30px;
}

a.link1 {
  color: #001e46;
  font-weight: 800;
  text-decoration: underline;
  font-size: 18px;
}

a.link2 {
  color: #001e46;
  font-weight: 800;
  text-decoration: underline;
  font-size: 17px;
  text-transform: capitalize;
}

.term-text p {
  line-height: 2;
  font-size: 16px;
}

ul.list li {
  position: relative;
  z-index: 1;
  padding: 0 0 0 40px;
  margin: 0 0 10px 0;
}

ul.list li::before {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: #001e46;
  transform: translateY(-50%);
}

ul.list li p {
  margin: 0;
}

.term-text-inner {
  padding: 20px 20px 20px 20px;
  /* border: 2px solid #46a956; */
  margin: 0px 0px;
  /* box-shadow: 0 0 7px 1px #46a956; */
}

b {
  color: #000;
  font-weight: bolder;
  font-family: "Mont", sans-serif;
}

/* This Css is for  Pricing Calculator for host  */
.leaflet-left {
  left: 0px;
  bottom: 0 !important;
  top: unset !important;
}

.btn-primary1 {
  background: #46a956;
  color: #fff;
}

/* Suggestions dropdown */
.suggestions-box {
  background: #fff;
  /* border: 1px solid #ccc; */
  max-height: 150px;
  overflow-y: auto;
  position: absolute;
  z-index: 1000;
  width: 100%;
}

.contactus-input {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 999;
  width: 30%;
}

.suggestions-box1 {
  background: #fff;
  /* border: 1px solid #ccc; */
  max-height: 150px;
  overflow-y: auto;
  position: absolute;
  z-index: 1000;
  width: 30%;
  right: 30px;
  top: 80px;
}

/* Suggestion item styling */
.suggestion-item {
  padding: 8px 10px;
  cursor: pointer;
}

.suggestion-item:hover {
  background: #f0f0f0;
}

/* Style for all day checkbox labels */
.day-checkboxes label {
  border: 2px solid #ccc;
  padding: 6px 12px;
  border-radius: 6px;
  background: #f9f9f9;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  gap: 10px;
}

/* When checkbox is checked - apply theme color */
.day-checkboxes input[type="checkbox"]:checked+label,
.day-checkboxes label input[type="checkbox"]:checked {
  border-color: #001e46;
  background-color: #e6f8fe;
  color: #001e46;
}

/* Input hidden inside label layout fix */
.day-checkboxes input[type="checkbox"] {
  accent-color: #001e46;
  margin: -2px 0 0 0;
}

/* On hover */
.day-checkboxes label:hover {
  background-color: #f0faff;
  border-color: #001e46;
}

/* Secure access checkbox styled */
.form-check-input:checked {
  background-color: #001e46;
  border-color: #001e46;
}

.form-check-input:focus {
  border-color: #001e46;
  box-shadow: 0 0 0 0.2rem rgba(0, 174, 239, 0.25);
}

/* Step transitions */
.animated-step {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.slide-out-left {
  transform: translateX(-100%);
  opacity: 0;
}

.slide-in-right {
  transform: translateX(100%);
  opacity: 0;
}

.active-step {
  transform: translateX(0);
  opacity: 1;
  z-index: 10;
  position: relative;
}

input#secureAccess {
  margin: 0;
}

input#toggleSuggestedPrice {
  margin: 0;
}

div#stepWrapper h4 {
  text-align: center;
}

/* Container styling for spacing */
.day-checkboxes {
  gap: 8px;
}

/* Hide the default checkbox */
.day-checkboxes input[type="checkbox"] {
  display: none;
}

/* Make label look like a toggle button */
.day-checkboxes label {
  display: inline-block;
  padding: 8px 30px;
  background-color: #f1f1f1;
  border: 2px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.25s ease;
  user-select: none;
  color: #333;
}

/* Active (checked) style using :has (modern) or JS fallback */
.day-checkboxes input[type="checkbox"]:checked+label,
.day-checkboxes label:has(input[type="checkbox"]:checked) {
  background-color: #e6f8fe;
  border-color: #001e46;
  color: #001e46;
  font-weight: 600;
}

/* Hover effect */
.day-checkboxes label:hover {
  background-color: #eefaff;
  border-color: #001e46;
}

label.form-label {
  margin: 10px 0 5px 10px;
  text-align: left;
  display: block;
}

div#stepWrapper {
  padding: 50px 70px;
  box-shadow: 0 0 8px 0 #0000001f;
}

.d-flex.flex-wrap.gap-2.day-checkboxes {
  justify-content: space-between;
}

button.theme_btn {
  border: none;
  display: flex;
  align-items: center;
  justify-self: center;
  margin: 0 auto;
  justify-content: center;
}

.result-box strong {
  font-size: 30px;
  font-family: "Mont";
  color: #001e46;
  font-weight: bold;
}

.result-box p {
  text-align: left;
  margin: 30px 0;
}

.result-box {
  padding: 50px 60px !important;
  box-shadow: 0 0 8px 0 #0000001f;
}

form#pricingCalculatorForm h5 {
  font-size: 30px;
}

/* Make all input fields 100% width in pricing calculator form */
form#pricingCalculatorForm input[type="text"],
form#pricingCalculatorForm input[type="number"],
form#pricingCalculatorForm select {
  width: 100% !important;
}

.result-box p span {
  font-size: 23px;
}

.result-box p {
  font-size: 23px;
}

.d-flex.justify-content-between.align-items-center.mt-4 {
  justify-content: center !important;
  gap: 30px;
}

.d-flex.justify-content-between.align-items-center.mt-4 button {
  margin: 0 !important;
}

/* This Css is for  Pricing Calculator for host  */
html {
  overflow-x: hidden;
}

/* This Css is for news page  */
img.news-img {
  height: 340px;
  border-radius: 20px;
}

.news-card {
  position: relative;
  z-index: 1;
  margin: 20px 0;
}

.news-card-text {
  position: relative;
  bottom: 0;
  width: 95%;
  padding: 20px 10px;
  background: #fff;
  border-radius: 20px;
  margin: -40px auto 0 auto;
  border: 1.5px solid #001e46;
  box-shadow: 0 0 6px 0 #0000002e;
}

span.new-update-date {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 5px;
  background: #fff;
  border-radius: 10px;
}

.news-card-image a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card-text {
  position: relative;
  bottom: 0;
  width: 95%;
  padding: 20px 10px;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #001e46;
  margin: -40px auto 0 auto;
  box-shadow: 0 0 6px 0 #0000002e;
  height: 300px;
}

ul.news-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px 0;
}

img.news-author-img {
  width: 50px;
  height: 50px;
  border-radius: 90%;
}

ul.news-list p {
  margin: 0;
  font-weight: bolder !important;
  font-family: "Montserrat";
  font-size: 15px;
}

.news-det-banner img {
  height: 600px;
  position: unset;
  border-radius: 50px;
}

.news-list-det ul.news-list {
  border-radius: 10px;
  justify-content: end;
  gap: 10px;
  margin: 0 0 50px;
}

.news-det-heading h1 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-det-heading h1 span.light {
  margin: -10px 0 0 0;
}

section.bottom-nav .flex-center {
  justify-content: space-between;
}

section.bottom-nav .flex-center a {
  color: #fff;
}

.news-det-main-box {
  margin: 50px 0;
}

img.news-icon-img {
  width: 35px;
}

span.oval1 {
  align-items: center;
  padding: 10px 20px;
  margin: 10px 0;
  gap: 10px;
}

.news-det-box .flex-center {
  gap: 30px;
}

.news-det-card {
  padding: 20px;
  background: #f2f4f5;
  border-radius: 20px;
}

.news-det-card span.list-card-image-tex {
  text-align: center;
  bottom: 0% !important;
  width: 50% !important;
  background: #46a956 !important;
  color: #fff;
}

ul.news-park-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

ul.news-park-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

ul.news-park-list li img {
  width: 40px;
}

ul.news-park-list li p {
  margin: 0;
  font-size: 17px;
}

.news-det-card .list-card-image {
  margin: 0;
}

.news-det-card .list-card-text {
  padding: 20px 10px 20px 10px;
  border-radius: 10px;
  background: #fff;
  margin: -10px 0 0 0;
  position: relative;
  z-index: 99;
}

ul.space-cars {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  width: fit-content;
  justify-self: center;
  padding: 10px 40px;
  border-radius: 10px 10px 0 0;
  /* background: #46a956 !important; */
  /* margin: 30px 0 0 0; */
  width: 100%;
}

ul.space-cars img {
  width: 50px;
  /* filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7492%) hue-rotate(358deg) brightness(102%) contrast(101%); */
}

ul.space-cars p {
  font-size: 25px;
  margin: 0;
  /* color: #fff; */
}

.news-table {
  font-family: "Soleil", sans-serif;
  font-size: 15px;
  border-collapse: collapse;
  width: 100%;
  /* border: 2px solid #000; */
  box-shadow: 0 0 10px 0 #0000003b;
}

.news-table thead th {
  background-color: #001e46;
  color: white;
  font-weight: bold;
  padding: 25px 20px;
  text-align: center;
  font-size: 15px;
}

.news-table tbody tr:nth-child(even) {
  background-color: #001e46;
  color: white;
}

.news-table tbody tr:nth-child(odd) {
  background-color: #46a956;
  color: #fff;
}

.news-table td,
.news-table th {
  padding: 12px 10px;
  text-align: center;
  font-size: 15px;
}

.news-table .highlight-box {
  background-color: #001e46;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
}

.news-det-box {
  margin: 70px 0;
}

ul.news-park-list1 li {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 100%;
}

.news-table .right-align {
  text-align: right;
  padding: 12px 30px 12px 10px;
}

.left-align {
  text-align: left !important;
  padding: 12px 10px 12px 30px !important;
}

th.left-align {
  padding: 30px 10px 30px 30px !important;
}

th.right-align {
  padding: 30px 30px 30px 30px !important;
}

/* This Css is for news page  */
/* This Css is for Dropdown  */
.dropdown {
  position: relative;
  display: inline-block;
  font-family: "Soleil", sans-serif;
}

.dropdown .dropdown-toggle {
  background-color: #46a956;
  color: white;
  padding: 16px 30px;
  border-radius: 4px;
  text-decoration: none;
  display: flex;
  margin: 0;
  align-items: center;
}

.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  min-width: 200px;
  z-index: 9999;
  margin-top: 8px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%) !important;
}

.dropdown .dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown .dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: #001e46;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
  font-family: "Soleil", sans-serif;
  text-align: center;
}

.dropdown .dropdown-menu a:hover {
  background-color: #46a956;
  color: #fff;
}

/* This Css is for Dropdown  */
/* Host Page Css Start */
.soleil-bold {
  font-family: "SoleilBold";
}

label.form-lable1 {
  font-family: "SoleilBold";
  display: block;
  font-size: 25px;
  margin: 0 0 30px 0;
}

.form-group1 {
  padding: 30px 30px;
  box-shadow: 0 0 7px 0 #00000029;
  margin: 20px 0;
}

.form-control1 {
  width: 100%;
  padding: 15px 20px;
  border-radius: 3px;
  border: 1px solid #0000002e;
  color: #000;
  font-size: 17px;
  font-family: "Soleil";
  text-align: -webkit-auto;
  background: #0000;
  margin: 10px 0;
  display: block;
}

.form-control1::placeholder {
  color: #000;
  font-size: 17px;
  font-family: "Soleil";
}

.form-control1:focus {
  color: #000;
  border-color: #001e46;
  outline: 0;
  box-shadow: unset;
}

.form-control2 {
  width: 100%;
  padding: 15px 20px;
  border-radius: 3px;
  border: 1px solid #0000002e;
  color: #000;
  font-size: 17px;
  font-family: "Soleil";
  text-align: -webkit-auto;
  background: #0000;
  margin: 10px 0;
  display: block;
}

.form-control2::placeholder {
  color: #000;
  font-size: 17px;
  font-family: "Soleil";
}

.form-control2:focus {
  color: #000;
  border-color: #001e46;
  outline: 0;
  box-shadow: unset;
}

a.form-control1:focus {
  border-color: #001e46;
  outline: 0;
  background-color: #001e46;
  box-shadow: unset;
  color: #fff;
}

a.form-control1,
a.form-control2 {
  color: #000 !important;
}

a.active {
  border-color: #001e46;
  background-color: #001e46;
  color: #fff !important;
}

a.active p,
a.active h6 {
  color: #fff !important;
}

/* POPUP CSS */
.popup-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #707070b5;
  border-radius: 5px;
  padding: 30px 50px;
  z-index: 999;
  width: 100vw;
  max-width: 100vw;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  display: none;
  font-family: "Soleil";
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-box.active {
  display: flex !important;
}

.popup-content {
  position: relative;
  text-align: left;
  text-transform: capitalize;
  padding: 50px 70px;
  background: #fff;
  border-radius: 4px;
  width: 60%;
  z-index: 99999999999999999;
}

.popup-heading {
  font-family: "SoleilBold";
  font-size: 20px;
  color: #001e46;
  margin-bottom: 10px;
}

.popup-text {
  font-family: "Soleil";
  font-size: 14px;
  margin-bottom: 20px;
}

.popup-close {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 35px;
  color: #001e46;
  cursor: pointer;
}

.got-it-button {
  background-color: #4db2eb;
  color: white;
  border: none;
  padding: 10px 20px;
  font-family: "Soleil";
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: right;
}

.hidden {
  display: none !important;
}

button.popup-button i {
  font-size: 25px;
}

.popup-label {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

ul.popup-list li * {
  margin: 0;
}

ul.popup-list li {
  padding: 20px 10px 10px 10px;
  border-bottom: 1px solid #6666663b;
  margin: 0 0 20px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* POPUP CSS */
.form-group1.show {
  display: block !important;
}

.form-group1 {
  display: none;
}

.space-counter input {
  width: 60px;
  text-align: center;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #0000002e;
  color: #000;
}

.space-counter button {
  width: 40px;
  text-align: center;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #0000002e;
  color: #000;
}

.counter input {
  width: 60px;
  text-align: center;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #0000002e;
  color: #000;
}

.counter button {
  width: 40px;
  text-align: center;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #0000002e;
  color: #000;
}

.host-btn {
  padding: 12px 50px;
  border-radius: 5px;
  background: #001e46;
  color: #fff;
  border: 1px solid #000000e6;
}

a.host-btn:hover {
  color: #fff;
}

.form-step {
  display: none;
  margin: 40px 0;
}

.form-step.show {
  display: block;
}

.step-buttons {
  border-bottom: 1px solid #0000001f;
  display: flex;
  justify-content: space-between;
  padding: 20px 0 20px 0;
}

.host-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.back-btn {
  background-color: #46a956 !important;
}

.submit-btn {
  background-color: #28a745;
}

.form-step .flex-center {
  gap: 30px;
}

/* === Host Form Progress Bar === */
.step-progress-container {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  padding: 22px 10px;
  /* box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.05); */
  margin-bottom: 0;
}

.arrow-steps .step {
  font-size: 14px;
  text-align: center;
  color: #666;
  cursor: default;
  margin: 0 3px;
  padding: 10px 10px 10px 30px;
  min-width: 120px;
  float: left;
  position: relative;
  background-color: #e2e9fb;
  user-select: none;
  transition: background-color 0.2s ease;
}

.arrow-steps .step:after,
.arrow-steps .step:before {
  content: "";
  position: absolute;
  top: 0;
  right: -17px;
  width: 0;
  height: 0;
  border-top: 19px solid transparent;
  border-bottom: 21px solid transparent;
  border-left: 17px solid #e2e9fb;
  z-index: 2;
  transition: border-color 0.2s ease;
}

.arrow-steps .step:before {
  right: auto;
  left: 0;
  border-left: 17px solid #fff;
  z-index: 0;
}

.arrow-steps .step:first-child:before {
  /* border: none; */
}

.arrow-steps .step:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.arrow-steps .step span {
  position: relative;
}

.arrow-steps .step span:before {
  opacity: 0;
  content: "âœ”";
  position: absolute;
  top: -5px;
  left: -20px;
  color: #001e46;
  font-size: 19px;
}

.arrow-steps .step.done span:before {
  opacity: 0;
  transition: opacity 0.3s ease 0.5s;
}

.arrow-steps .step.current {
  color: #fff;
  background-color: #001e46;
}

.arrow-steps .step.current:after {
  border-left: 17px solid #001e46;
}

.yes-no-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.yes-no-box a {
  text-align: center;
  width: 30%;
}

form.step-form-main h5 {
  font-family: "SoleilBold";
  display: block;
  font-size: 25px;
  margin: 0 0 10px 0;
  color: #000;
  text-transform: capitalize;
}

form.step-form-main h6 {
  font-size: 17px;
  font-family: "Soleil";
  color: #000;
  text-transform: capitalize;
}

form.step-form-main p {
  font-size: 14px;
  font-family: "Soleil";
  color: #666;
}

button.popup-button {
  background: transparent;
  border: none;
}

.option * {
  margin: 0;
}

a.form-control1 p,
a.form-control1 h6,
a.form-control2 p,
a.form-control2 h6 {
  color: #000 !important;
}

a.active p {
  color: #ffffffd4 !important;
}

a.active h6 {
  color: #ffffffd4 !important;
}

.popup-list-image img {
  width: 50px;
}

.option1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.option1 .option1-text {
  width: 80%;
}

/* This Css is For Time Selector */
.day-list {
  padding: 20px 10px 0 0;
}

.day-item {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px 15px;
  margin-bottom: 15px;
  background: #fff;
  position: relative;
}

.day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.time-range {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.time-range.show {
  max-height: 100px;
  /* Enough to fit the content */
  opacity: 1;
}

.time-select {
  padding: 16px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 20px;
  flex: 1;
}

.to-text {
  white-space: nowrap;
  font-size: 17px;
}

/* Switch Style */
.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 34px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
  margin: 0;
  width: 44px;
}

.slider:before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 30px;
}

input:checked+.slider {
  background-color: #001e46;
}

input:checked+.slider:before {
  transform: translateX(20px);
}

/* This Css is For Time Selector */
.scroll {
  max-height: 623px;
  overflow-y: auto;
}

/* Hide scrollbar if not needed */
.scroll:empty,
.scroll:not(:has(:nth-child(n + 2))) {
  overflow-y: hidden;
}

/* Optional (hide scrollbar if not needed on short content) */
.scroll::-webkit-scrollbar {
  width: 6px;
}

/* Hide scrollbar track by default */
/* .scroll:has(> *:not(:last-child))::-webkit-scrollbar {
display: none;
} */
.scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

.scroll::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

.scroll::-webkit-scrollbar-thumb {
  background-color: #001e46;
  background-image: -webkit-linear-gradient(45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%,
      transparent);
}

/* Tooltip Wrapper */
.tooltip1 {
  position: relative;
  cursor: pointer;
  display: flex;
  width: fit-content;
  justify-self: right;
  margin: -20px 0 20px 0;
}

/* Tooltip1 Bubble */
.tooltip1::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 150%;
  /* position above the button */
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #000;
  padding: 30px 20px;
  font-size: 14px;
  /* white-space: nowrap; */
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
  width: auto;
  height: auto;
  z-index: 8888;
  text-align: center;
  box-shadow: 0 0 8px 0 #00000061;
  width: 300px;
}

/* Tooltip1 Arrow */
.tooltip1::before {
  content: "";
  position: absolute;
  bottom: 185%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  /* border-color: #333 transparent transparent transparent; */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  width: 0;
  height: 0;
  color: #fff;
  background: #00000061;
  z-index: 9999;
  border-radius: 10px;
}

/* Show on hover */
.tooltip1:hover::after,
.tooltip1:hover::before {
  opacity: 1;
}

/* Default style */
#hostTop {
  position: relative;
  z-index: 9;
  transition: all 0.9s ease-in-out;
  opacity: 1;
  transform: translateY(0);
  background: white;
}

#hostTop.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 1;
  transform: translateY(0);
}

#hostTop.hide {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

div#dynamicStepsBar {
  display: flex;
  align-items: center;
  justify-content: center;
}

section.become-host-sec {
  padding-top: 80px;
}

.time-input {
  padding: 15px 18px;
  width: 50%;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

button.satelite-btn {
  background: #001e46;
  color: #ffff;
  padding: 10px 20px;
}

.map-container {
  z-index: 1;
}

.counter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.counter h6 {
  margin: 0;
}

.auto-data {
  display: flex;
  flex-wrap: wrap;
}

ul.auto-data-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
  width: 50%;
}

ul.auto-data-list * {
  margin: 0;
}

ul.auto-data-list li i {
  color: #001e46;
  font-size: 25px;
}

ul.manual-data-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}

ul.manual-data-list li {
  display: flex;
  align-items: center;
  gap: 20px;
}

ul.manual-data-list li i {
  font-size: 25px;
  color: #001e46;
}

ul.manual-data-list * {
  margin: 0;
}

.custom-calendar {
  max-width: 360px;
  margin: 0 auto;
  font-family: "Segoe UI", sans-serif;
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 16px;
}

.nav-btn {
  background: none;
  border: none;
  font-size: 51px !important;
  color: #001e46;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  font-family: auto;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  color: #888;
  font-size: 13px;
  text-align: center;
  margin-bottom: 10px;
}

.calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  justify-content: center;
}

.calendar-dates div {
  text-align: center;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  font-size: 14px;
  color: #222;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-dates div:hover {
  background-color: #001e4696;
}

.calendar-dates .today {
  background-color: #001e46;
  color: #fff;
  font-weight: 600;
}

.calendar-dates .date-cell.disabled {
  color: #ccc !important;
  background-color: #f5f5f5 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  opacity: 0.5 !important;
  text-decoration: line-through;
}

.calendar-dates .date-cell.disabled:hover {
  background-color: #f5f5f5 !important;
  cursor: not-allowed !important;
}

.calendar-dates .date-cell.active {
  background-color: #001e46 !important;
  color: #fff !important;
  font-weight: 600 !important;
}

.calendar-dates .date-cell.active.today {
  background-color: #001e46 !important;
}

.calendar {
  width: 650px;
  justify-self: center;
  margin: 20px 0 20px;
}

.start-date * {
  text-align: center;
}

.end-date * {
  text-align: center;
}

.start-date-confirm {
  justify-self: center;
  margin: 0 auto;
  display: block;
}

.form-input label {
  margin: 0 0 0px 0;
  font-size: 21px;
}

.form-input {
  margin: 0 0 30px 0;
}

.image-upload-section {
  margin: 20px auto;
  font-family: sans-serif;
}

.upload-label {
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
  font-size: 18px;
}

.upload-box {
  border: 2px dashed #aaa;
  border-radius: 10px;
  padding: 50px 30px;
  text-align: center;
  color: #555;
  cursor: pointer;
  position: relative;
  background-color: #fafafa;
  transition: 0.2s ease-in-out;
}

.upload-box:hover {
  background-color: #f0f0f0;
}

.upload-box input[type="file"] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.image-preview {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.image-preview img {
  max-width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.listing-card {
  max-width: 800px;
  margin: 30px auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  font-family: sans-serif;
}

.listing-slider {
  width: 100%;
  height: 360px;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.listing-slider img {
  flex: none;
  width: 100%;
  height: 350px;
  object-fit: cover;
  scroll-snap-align: start;
  transition: 0.3s;
}

.map-preview {
  width: 100%;
  height: 300px;
  background: #eee;
}

.listing-info {
  padding: 20px;
}

.listing-info p {
  margin: 5px 0;
  color: #333;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.listing-info strong {
  font-weight: bold;
  font-family: "SoleilBold";
  font-size: 18px;
  color: #000;
  margin: 0;
  width: -webkit-fill-available;
  display: block;
}

hr {
  margin: 10px 0;
  border: 0;
  border-top: 1px dashed #ccc;
}

#imageSlider img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

/* Gallery Style */
.gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gallery img {
  height: 300px;
  cursor: pointer;
  border-radius: 6px;
  object-fit: cover;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.preview-thumbnail {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  object-fit: scale-down;
}

.preview-thumbnail:hover {
  opacity: 0.9;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox-img {
  max-width: 90%;
  max-height: 40vh;
  border-radius: 10px;
  object-fit: contain;
}

.lightbox .close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
  color: white;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
}

.lightbox-nav button {
  background: none;
  border: none;
  font-size: 50px;
  color: white;
  cursor: pointer;
}

.lightbox-nav button:hover {
  color: #ccc;
}

div#listingThumbnail {
  padding: 10px;
  background: #00000038;
}

.listing-info p * {
  width: 50%;
}

.listing-info p span {
  text-align: right;
}

/* Host Page Css End */

/* Additional Css */
.search-park-main-box {
  margin: 0 0 50px 0;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
}

.finding_space_left .pkg-card {
  margin: 0 0 30px 0;
}

/* Additional Css */

/* Driver Css Start */
.filter-datetime {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
  background: #fff;
  border-radius: 10px;
}

.datetime-group {
  position: relative;
}

.date-time-display {
  display: flex;
  gap: 10px;
  background: transparent;
  /* border: 1px solid #ccc; */
  padding: 10px 0px 10px 0px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  justify-content: space-between;
  flex-direction: row;
}

.date-picker-toggle,
.time-picker-toggle {
  padding: 15px 15px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ccc;
  background: #fff;
  width: 180px;
}

.calendar-popup,
.time-popup {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99999;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 4px;
  width: 300px;
  padding: 10px;
}

.hidden {
  display: none;
}

/* Example time options */
.time-popup div {
  padding: 6px;
  cursor: pointer;
}

.time-popup div:hover {
  background-color: #f0f0f0;
}

.filter-box {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 0 0 20px 0;
}

.time-popup {
  height: 270px;
  overflow-y: scroll;
}

.calendar-popup .calendar-dates div {
  width: 30px !important;
  height: 30px !important;
}

.calendar-popup .calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  justify-content: center;
}

.calendar-popup .calendar {
  width: 90%;
  justify-self: center;
}

.calendar-popup .calendar-header button {
  background: #00000014;
  border: none;
  font-size: 18px !important;
  color: #001e46;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  font-family: auto;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.datetime-group1 label {
  text-align: right;
  display: block;
}

/* When checkbox is checked - apply theme color */
.monthly-checkboxes input[type="radio"]:checked+label,
.monthly-checkboxes label input[type="radio"]:checked {
  border-color: #001e46;
  background-color: #e6f8fe;
  color: #001e46;
}

/* Input hidden inside label layout fix */
.monthly-checkboxes input[type="radio"] {
  accent-color: #001e46;
  margin: -2px 0 0 0;
  appearance: none;
}

/* On hover */
.monthly-checkboxes label:hover {
  background-color: #f0faff;
  border-color: #001e46;
}

.monthly-checkboxes label {
  border: 2px solid #ccc;
  padding: 6px 12px;
  border-radius: 6px;
  background: #f9f9f9;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  gap: 10px;
}

/* Hide the default checkbox */
.day-checkboxes input[type="radio"] {
  display: none;
}

/* Make label look like a toggle button */
.monthly-checkboxes label {
  display: inline-block;
  padding: 12px 30px;
  background-color: #f1f1f1;
  border: 2px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.25s ease;
  user-select: none;
  color: #333;
}

/* Active (checked) style using :has (modern) or JS fallback */
.monthly-checkboxes input[type="radio"]:checked+label,
.monthly-checkboxes label:has(input[type="radio"]:checked) {
  background-color: #34a853;
  border-color: #001e46;
  color: #fff;
  font-weight: 600;
}

/* Hover effect */
.monthly-checkboxes label:hover {
  background-color: #eefaff;
  border-color: #001e46;
}

form.search-park-form {
  position: relative;
  z-index: 1;
}

button.search-park-button {
  position: absolute;
  top: 50%;
  right: 1px;
  border: navajowhite;
  transform: translateY(-50%);
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 0 5px 5px 0;
}

.option-drive {
  position: relative;
  padding-right: 24px;
}

.option-drive .remove-btn {
  display: none;
  position: absolute;
  top: 50%;
  right: 8px;
  font-size: 29px;
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
}

.option-drive.active .remove-btn {
  display: inline;
}

.vehicle-detail-box {
  display: none;
  padding: 15px;
  margin: 8px 0 20px;
  background: #e6f8fe;
  border: 2px dashed #001e46;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(-10px);
}

.vehicle-detail-box.show {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  opacity: 1;
  transform: translateY(0);
}

.vehicle-detail-box .inner-box {
  flex: 1;
  min-width: 140px;
}

.vehicle-detail-box label {
  font-weight: 600;
  color: #007caa;
  margin-bottom: 4px;
  display: block;
}

.vehicle-detail-box input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.vehicle-detail-box {
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  background: #e6f8fe;
  padding: 15px;
  margin-top: 10px;
  border: 2px dashed #001e46;
  border-radius: 8px;
  flex-wrap: wrap;
  gap: 20px;
}

.vehicle-detail-box.show {
  display: flex !important;
  opacity: 1 !important;
}

.vehicle-detail-box .inner-box {
  flex: 1;
  min-width: 140px;
}

form.search-park-form input {
  margin: 0;
  padding: 13px 20px;
}

.search-park-box {
  margin: 0 0 20px 0;
}

.blog-det-main-box p {
  font-size: 16px;
  font-weight: 600;
}

.blog-det-main-box {
  width: 90%;
  margin: 0 auto;
}

.blog-det-box {
  margin: 20px 0;
  padding: 50px 40px;
  box-shadow: 0 0 9px 0 #0000003b;
}

.blog-det-box h4 {
  text-align: center;
  color: #001e46;
}

ul.blog-list {
  list-style: circle;
  font-size: 30px;
  padding: 0 0 0 30px;
}

ul.blog-list p {
  margin: 0 0 10px 0;
}


p.note b {
  font-size: 25px;
  font-weight: 500;
}

p.note {
  margin: 20px 0;
  font-size: 16px;
}

ul.blog-list b {
  font-size: 20px;
  font-weight: 300;
}

/* Driver Css End */


ul.list.new3-list b.label {
  font-size: 18px;
}


section.blog-detail-sec .blog-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  height: 600px;
  box-shadow: 0 0 20px 0 #00000036;
  margin: 0 0 30px 0;
}

/*
.park-space-right-box .park-space-card {
  display: none;
} */

section.park-space-sec span.oval {
  background: #001e46;
  color: #fff;
}

section.park-space-sec .park-space-card {
  width: 40%;
  padding: 10px;
  border-radius: 10px;
  background: #46a956;
}

section.park-space-sec .park-space-card-text a {
  background-color: #001e46;
}

section.park-space-sec .park-space-card-text * {
  margin: 0;
  color: #fff;
}

.partnership-and-affiliates-box p {
  font-size: 16px;
}

.partnership-and-affiliates-box a {
  font-size: 16px;
  text-decoration: underline;
}

.partnership-and-affiliates-box:hover {
  transition: 0.3s ease-in-out;
  background: #46a956;
  cursor: pointer;
}

/* .partnership-and-affiliates-box::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  content: '';
  background: #051f45;
  transition: 0.3s ease-in-out;
}

.partnership-and-affiliates-box:hover::before {
  height: 100%;
  transition: 0.3s ease-in-out;
} */

.partnership-and-affiliates-box:hover p,
.partnership-and-affiliates-box:hover h2,
.partnership-and-affiliates-box:hover a {
  color: #ffff;
}

.banner-bttom-img video {
  width: 93%;
  border-radius: 20px;
  box-shadow: 0 0 20px 0 #00000070;
  height: 676px;
}

.banner-bttom-img {
  text-align: center;
  margin: 0 auto 0;
}

section.banner-bottom-sec {
  padding-bottom: 100px;
}

/* Parking detail */
.image-box img {
  width: 100%;
  border-radius: 12px;
}

.summary {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.summary h2 {
  margin-top: 0;
  color: #001e46;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin: 15px 0;
}

.feature-card {
  background: #f9fbff;
  border: 1px solid #e0e7ff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.feature-card h4 {
  margin: 10px 0 5px;
  color: #001e46;
  font-size: 15px;
}

.booking-form {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  height: auto;
}

.booking-form h2 {
  margin-top: 0;
  color: #001e46;
  font-size: 40px;
}

.booking-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.booking-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: #0073e6;
  color: #fff;
  text-align: center;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #005bb5;
}

.btn.secondary {
  margin-top: 10px;
  background: #28a745;
}


.map {
  grid-column: span 2;
  background: #ddd;
  height: 380px;
  text-align: center;
  line-height: 280px;
  color: #555;
  font-size: 18px;
  margin-top: 20px;
  border-radius: 10px;
}

.price-display {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
  color: #333;
}

.gallery {
  margin-top: 20px;
}

.gallery h3 {
  margin-bottom: 10px;
  color: #001e46;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.paragraph-section {
  margin-top: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.paragraph-section h3 {
  color: #001e46;
}

.map iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

section.parking-details {
  padding: 80px 0;
  position: relative;
}

/* end */

.booking-form button.theme_btn {
  width: 100%;
  margin-bottom: 10px;
}

/* Summernote / DB HTML content bullets fix (Frontend) */
.content-area ul,
.content-area ol,
.blog-detail ul,
.blog-detail ol,
.post-content ul,
post-content ol,
.description ul,
.description ol,
.blog-content ul,
.blog-content ol,
.section-content ul,
.section-content ol,
.news-det-main-box ul,
.news-det-main-box ol {
  list-style-position: inside !important;
  padding-left: 25px !important;
  margin-left: 0 !important;
}

.content-area ul,
.blog-detail ul,
.post-content ul,
.description ul,
.blog-content ul,
.section-content ul,
.news-det-main-box ul {
  list-style-type: disc !important;
}

.content-area ol,
.blog-detail ol,
.post-content ol,
.description ol,
.blog-content ol,
.section-content ol,
.news-det-main-box ol {
  list-style-type: decimal !important;
}

.content-area li,
.blog-detail li,
.post-content li,
.description li,
.blog-content li,
.section-content li,
.news-det-main-box li {
  display: list-item !important;
}




/* New Css Start */
html {
  scroll-behavior: smooth;
}

/* Hotel Page Css Start */
.hotel-sec {
  font-family: "soleil", sans-serif;
}

.hotel-sec .main-header {
  text-align: center;
  margin-bottom: 20px;
}

.hotel-sec .logo {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Mont", sans-serif;
}

.hotel-sec .brand-green {
  color: #34a853;
}

.hotel-sec .dot {
  color: #34a853;
}

.hotel-sec .skip-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: #90a4ae;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hotel-sec .alpha-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hotel-sec .alpha-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #eef2f4;
  color: #78909c;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.hotel-sec .alpha-btn:hover {
  background-color: #34a853;
  color: #fff;
}

.hotel-sec .letter-section {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 50px;
}

.hotel-sec .section-header {
  background-color: #34a853;
  padding: 15px 70px;
}

.hotel-sec .section-header h2 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  font-family: "Mont", sans-serif;
}

.hotel-sec .section-content {
  padding: 40px 30px;
}

.hotel-sec .hotel-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px 25px;
}

.hotel-sec .hotel-list li a {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.hotel-sec .hotel-list li a:hover {
  color: #34a853;
}

@media (max-width: 900px) {
  .hotel-sec .hotel-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hotel-sec .hotel-list {
    grid-template-columns: 1fr;
  }

  .hotel-sec .logo {
    font-size: 2rem;
  }
}

/* Hotel Page Css End */

/* Search/Details Page Specific Styles */
.top-location-page {
  background-color: #f9f9f9;
}

.search-section .inner {
  display: flex;
  flex-wrap: wrap;
  height: calc(100vh - 140px);
  /* Adjust based on header height */
  position: relative;
  overflow: hidden;
}

/* Sidebar Section (Left) */
.sidebar-section {
  width: 40%;
  /* Adjusted to be slightly wider as per typical split views, or keep 100% max-width logic */
  flex: 0 0 35%;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
  z-index: 10;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Map Section (Right) */
.map-section {
  flex: 1 !important;
  height: 100vh !important;
  background: #f5f5f5 !important;
  position: relative !important;
  overflow: visible !important;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Google Maps Container */
#parking-map {
  width: 100% !important;
  height: 100% !important;
  min-height: 600px !important;
  position: relative !important;
  overflow: visible !important;
}

/* Map Legend */
.map-legend {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}

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

.legend-color {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 8px;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.legend-color.available {
  background-color: #34a853;
}

.legend-color.destination {
  background-color: #ff4444;
}

.legend-color.radius {
  background-color: #000000;
  border-radius: 2px;
  height: 3px;
}

/* Map Controls */
.map-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.map-control-btn {
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #5f6368;
  transition: all 0.2s ease;
}

.map-control-btn:hover {
  background: #f8f9fa;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Breadcrumbs */
.app-breadcrumbs {
  padding: 15px 20px;
  font-size: 0.9rem;
  color: #666;
  background: transparent;
  border-bottom: 1px solid #eee;
}

.app-breadcrumbs a {
  color: #001e46;
  text-decoration: none;
  font-weight: 500;
}

.app-breadcrumbs a:hover {
  color: #34a853;
}

.app-breadcrumbs .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  display: flex;
  list-style: none;
}

.app-breadcrumbs .breadcrumb-item+.breadcrumb-item::before {
  content: ">";
  padding: 0 8px;
  color: #ccc;
}

/* Search Form Panel */
.search-sidebar-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  background: #fff;
  background: #f8f9fb;
  border-bottom: 1px solid #cdd9e1;
}

.form-group.input-wrapper {
  margin-bottom: 15px;
  position: relative;
}

.form-control,
.custom-select {
  width: 92% !important;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #333;
  transition: border-color 0.2s;
}

.form-control:focus,
.custom-select:focus {
  border-color: #34a853;
  outline: none;
}

/* Green Search Bar Style from Image */
.address-lookup-input input {
  font-weight: 500;
  border-left: 4px solid #34a853;
  /* Accent */
  width: 84% !important;
}

/* Dates Row */
.dates {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dates .date {
  flex: 1;
}

.date-divider {
  color: #999;
  font-size: 1.2rem;
}

/* Dropdown/Select Styling */
select.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>') no-repeat right 10px center;
  padding-right: 30px;
}

/* Results Container */
.results-container {
  padding: 30px;
  background-color: transparent;
  flex: 1;
  overflow-y: scroll;
  max-height: 500px;
}

.search-results-sort-select {
  margin-bottom: 20px;
  background: #fff;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-results-sort-select .floating-label {
  font-size: 0.85rem;
  color: #666;
  margin-right: 10px;
}

.search-results-sort-select select.custom-select {
  background: transparent;
  color: #333;
  padding: 5px;
  height: auto;
  font-weight: 500;
  border: none;
  width: auto;
  flex: 1;
  text-align: right;
}

/* Space Card Styling Refined */
.results-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.results-item {
  margin-bottom: 20px;
}

.space-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  /* Slightly sharper as per image */
  overflow: hidden;
  display: flex;
  transition: box-shadow 0.2s;
  height: auto;
  min-height: 160px;
}

.space-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.space-card .image {
  width: 190px;
  min-width: 190px;
  position: relative;
  background-color: #eee;
}

.space-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.space-card .content {
  padding: 15px 20px 0 0px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Main Details: Header & Price */
.main-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5px;
  margin-left: 20px;
}

/* Left components: Stars + Title */
.header-info {
  flex: 1;
  margin-right: 15px;
}

.review-rating {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 4px;
}

.review-rating .stars {
  color: #ffb80b;
  /* Golden Yellow */
  margin-right: 8px;
  font-size: 10px;
}

/* Empty stars in review rating */
.review-rating .stars i.far {
  color: #ddd;
}

/* Filled stars in review rating */
.review-rating .stars i.fas {
  color: #ffb80b;
}

.review-rating .rating-text {
  font-weight: 600;
  color: #001e46;
  font-size: 0.9rem;
}

.title {
  margin: 0;
  line-height: 1.2;
}

.title a {
  color: #001e46;
  /* Darker black/grey */
  text-decoration: none;
  font-weight: 700;
  /* Bold title */
  font-size: 15px;
  font-family: "Mont", sans-serif;
}

.title a:hover {
  color: #34a853;
}

/* Right component: Price */
.price-info {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.price-amount {
  display: block;
  font-size: 13px;
  color: #001e46;
  font-weight: 600;
  line-height: 1.1;
}

.price-period {
  font-size: 11px;
  color: #000;
  font-weight: 500;
  margin-top: 2px;
}

/* Divider line */
.divider {
  border: 0;
  border-top: 1px solid #e0e0e0;
  margin: 12px 0 3px 0;
  width: 100%;
}

/* Meta: Walking, Guardanteed */
.meta-row {
  display: flex;
  align-items: center;
  gap: 50px;
  font-size: 0.95rem;
  color: #5d7079;
  font-weight: 600;
  margin: 6px 0;
  justify-content: center;
  margin-left: 20px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-item i {
  color: #b0bec5;
  /* Lighter grey for icons */
  font-size: 1.1rem;
}

/* Footer Buttons */
.footer-buttons {
  margin-top: 0;
  display: flex;
  gap: 0;
  /* No gap (flush) or small gap? Reference has them distinct. */
  width: 100%;
  border-top: 1px solid #e0e0e0;
  /* If footer is full width? */
  /* Adjusting to match image: buttons seem to be bottom row. */
  /* Let's remove top border here and use the layout from reference:
       Left button white, right button green. Side by side.
    */
  border: none;
  padding-top: 5px;
}

/* Button overrides for this card */
.footer-buttons .btn {
  flex: 1;
  text-decoration: none;
  border-radius: 0;
  /* Square/Rectangle as per specific styles or keep small radius? 
                       Reference image shows sharp corners or slight radius. 
                       Code snippet shows 'btn-default' and 'btn-primary'. */
  padding: 12px 10px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-buttons .btn-default {
  background: #fff;
  border-top: 1px solid #ced4da;
  /* Light grey border */
  border-right: none;
  /* Merge borders? Or keep separation? Reference shows separate. */
  color: #001e46;
  /* Grey text */
  border-radius: 4px 0 0 4px;
}

.footer-buttons .btn-default:hover {
  background: #f8f9fa;
  color: #333;
}

.footer-buttons .btn-primary {
  background: #34a853;
  /* Specific green from reference image */
  border: 1px solid #34a853;
  color: #fff;
  border-radius: 0 4px 4px 0;
}

.footer-buttons .btn-primary:hover {
  background: #001e46;
  border-color: #001e46;
}

@media (max-width: 991px) {
  .search-section .inner {
    flex-direction: column-reverse;
    /* Map on top of list on mobile? Or just map hidden? Usually Map is separate tab or above. Let's stack them. */
    height: auto;
    overflow: visible;
  }

  .sidebar-section {
    width: 100%;
    flex: none;
    height: auto;
    overflow: visible;
  }

  .map-section {
    width: 100% !important;
    height: 400px !important;
    flex: none !important;
    min-height: 400px !important;
  }

  .space-card {
    height: auto;
    flex-direction: column;
  }


  .space-card .image {
    width: 100%;
    height: 180px;
  }
}

/* Custom Calendar Styles */
.custom-calendar-popup {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 5px;
  background: #fff;
  border: 1px solid #34a853;
  /* Green border */
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  width: 320px;
  z-index: 1000;
  font-family: 'Montserrat', sans-serif;
  display: none;
  /* Hidden by default */
}

.custom-calendar-popup.active {
  display: block;
}

/* Header with Green Line at top (optional or part of border) */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.calendar-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #001e46;
}

.calendar-nav-btn {
  background: none;
  border: none;
  color: #34a853;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px 10px;
}

.calendar-nav-btn:hover {
  background-color: #f0fbf4;
  border-radius: 4px;
}

/* Week Days */
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 10px 15px 5px;
  text-align: center;
  font-weight: 700;
  color: #001e46;
  font-size: 0.9rem;
}

/* Days Grid */
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 0 15px 15px;
  row-gap: 5px;
}

.calendar-day {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  /* Circle shape as per image */
  font-size: 0.95rem;
  color: #333;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transform: translateZ(0);
}

.calendar-day:hover:not(.disabled):not(.selected) {
  background-color: #f0fbf4;
  color: #34a853;
}

.calendar-day.disabled {
  color: #ccc;
  cursor: not-allowed;
  text-decoration: line-through;
}

.calendar-day.other-month {
  color: #ccc;
  visibility: hidden;
  /* Hide days from other months if preferred, or just grey them */
  pointer-events: none;
}

.calendar-day.selected {
  background-color: #34a853;
  color: #fff;
  font-weight: 700;
}

/* Footer Section */
.calendar-footer {
  background-color: #001e46;
  /* Dark footer */
  padding: 15px;
  border-radius: 0 0 4px 4px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.time-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.time-label {
  font-weight: 600;
  font-size: 1rem;
}

.time-selector-wrapper {
  position: relative;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.time-selector {
  padding: 8px 30px 8px 15px;
  border: none;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background: #fff url('data:image/svg+xml;utf8,<svg fill="%2334a853" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 5px center;
}

.calendar-done-btn {
  width: 100%;
  background-color: #34a853;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}

.calendar-done-btn:hover {
  background-color: #2d9249;
}


/* Custom Filter Box Styles */
.custom-filter-box {
  padding: 10px 0;
}

.filter-row {
  margin-bottom: 15px;
}

.filter-row:last-child {
  margin-bottom: 0;
}

/* Location & Type Row */
.location-type-row {
  display: flex;
  border: 1px solid #34a853;
  border-radius: 6px;
  overflow: hidden;
  height: 48px;
  /* Fixed height for consistency */
}

.location-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 12px;
  background: #fff;
  min-width: 0;
  /* Prevent overflow */
}

.icon-pin {
  flex-shrink: 0;
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.location-input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 0.95rem;
  color: #333;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  height: 49px;
}

.mode-select-btn {
  background-color: #34a853;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0;
  /* Remove padding from container as select will handle it */
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
  white-space: nowrap;
  position: relative;
  /* For positioning if needed */
}

.mode-select-btn:hover {
  background-color: #2d9249;
}

.mode-select-dropdown {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0 30px 0 15px;
  /* Right padding for arrow */
  height: 100%;
  width: 100%;
  cursor: pointer;
  outline: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
  background-repeat: no-repeat;
  background-position: right 5px center;
  font-family: inherit;
  cursor: pointer;
}

.mode-select-dropdown option {
  color: #333;
  /* Dark text for options in dropdown */
  background-color: #fff;
}

/* Date Row */
.date-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.date-input-box {
  flex: 1;
  border: 1px solid #34a853;
  border-radius: 6px;
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  cursor: pointer;
  position: relative;
  width: 45%;
  /* Ensure they share space */
  background-color: #f0fbf7;
  border-color: #2dc98a;
}

.date-input-box input {
  border: none;
  outline: none;
  width: 100%;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  background: transparent;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  height: 48px;
}

.dropdown-arrow {
  display: flex;
  align-items: center;
  margin-left: 5px;
}

.date-separator {
  color: #333;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Sort Row */
.sort-row {
  border: 1px solid #34a853;
  border-radius: 6px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  cursor: pointer;
  background-color: #f4faff;
  background: #f0fbf4;
  background: linear-gradient(to bottom, #f9fafb, #f1f3f4);
  background: #fff;
  background-color: #f0fbf7;
  border-color: #2dc98a;
}

.sort-content {
  display: flex;
  flex-direction: column;
}

.sort-label {
  font-size: 0.75rem;
  color: #6c757d;
  font-weight: 600;
}

.sort-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #212529;
}

.meta-item span {
  color: #001e46;
  font-size: 10px;
}

.filter-row.sort-row {
  padding: 0;
  position: relative;
  background: transparent;
  border: navajowhite;
  flex-direction: column;
  align-items: start;
}

.filter-row.sort-row select {
  width: 100%;
  border: 1px solid #34a853;
  border-radius: 6px;
  padding: 25px 20px 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  cursor: pointer;
  background-color: #f4faff;
  background: #f0fbf4;
  background: linear-gradient(to bottom, #f9fafb, #f1f3f4);
  background: #fff;
  background-color: #f0fbf7;
  border-color: #2dc98a;
}

label.sort-label {
  position: absolute;
  top: 8px;
  left: 25px;
}

.gm-style .place-card-large {
  display: none !important;
}


/* Filter Button */
.filter-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid #ddd;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 3px;
  display: flex;
  font-family: Soleil, sans-serif;
  width: fit-content;
}

/* Overlay */
#filter-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: none;
  z-index: 9;
}

/* Filter Box */
#filter-box {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 90%;
  background: #fff;
  z-index: 10;
  transition: bottom 0.35s ease;
  display: flex;
  flex-direction: column;
}

/* Header */
.filter-header {
  background: #34a853;
  color: #fff;
  padding: 14px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-title {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.close-btn {
  font-size: 22px;
  cursor: pointer;
}

/* Content */
.filter-content {
  padding: 24px 34px;
  overflow-y: auto;
  flex: 1;
}

.filter-content h4 {
  margin: 10px 0 5px;
  color: #001e46;
}

.sub-text {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.checkbox-grid label {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #001e46;
}

/* Footer */
.filter-footer {
  padding: 22px 33px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
}

.clear-btn {
  background: none;
  border: none;
  color: #34a853;
  font-weight: bold;
  cursor: pointer;
  padding: 0 0 0 30px;
  font-size: 15px;
}

.apply-btn {
  background: #46a956;
  color: #fff;
  padding: 13px 30px;
  border: none;
  cursor: pointer;
  border-radius: 30px;
}

.app-breadcrumbs-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

button#open-filter-btn i {
  color: #34a853;
}

.iframe-box iframe {
  width: 100%;
  height: 400px;
}

/* Booking Step Form Styles */
.booking-sec {
  padding: 0 0 40px 0;
  font-family: 'Montserrat', sans-serif;
  /* background-color: #fff; */
}

.step-main-box {
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
}

.booking-step {
  border: 1px solid #4a697c;
  background: #fff;
  padding: 14px 20px 4px 20px;
  box-shadow: 0 0 9px 0 #0000002e;
  margin: 0 0 20px 0;
  color: #4a697c;
}

.booking-step:last-child {
  border-bottom: none;
}

#step-2 .step-header {
  padding: 0 20px 20px 20px;
}

.step-header {
  display: flex;
  align-items: center;
  padding: 0 0 10px 0;
  cursor: pointer;
  margin: 0 0 10px 0;
}

.step-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #cfd8dc;
  border: 2px solid #cfd8dc;
  border-radius: 4px;
  font-size: 10px;
  transition: all 0.3s;
}

.booking-step.active .step-icon {
  border-color: #34a853;
  color: #34a853;
  background: #e8f5e9;
}

.step-header h2 {
  font-size: 16px;
  font-weight: 200;
  color: #4a697c;
  /* Inactive grey */
  margin: 0;
  transition: color 0.3s;
}

.booking-step.active .step-header h2 {
  color: #263238;
  /* Active black */
}

/* Step Content */
.step-content {
  padding-bottom: 0;
  /* padding-left: 47px; Indent active content? */
}

/* Booking Card */
.booking-card {
  border: 1px solid #34a853;
  border-radius: 0px;
  margin-bottom: 25px;
  overflow: hidden;
  background: #fff;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.05); */
}

.card-header-green {
  background-color: #34a853;
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.remove-btn {
  font-size: 0.8rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.remove-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.card-body {
  padding: 25px 20px;
}

/* Custom Alert */
.custom-alert.error {
  border: 1px solid #d32f2f;
  /* map-like red border from image */
  background-color: #fff;
  color: #d32f2f;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 0;
  margin-bottom: 25px;
}

.custom-alert .alert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  width: 30px;
  height: 30px;
  border: 2px solid #d32f2f;
  border-radius: 4px;
  color: #d32f2f;
}

.custom-alert .alert-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #001e46;
}

/* Date Inputs Row */
.dates-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.date-group {
  flex: 1;
}

.date-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #001e46;
  margin-bottom: 8px;
}

.date-input-wrapper {
  position: relative;
  cursor: pointer;
  width: 100%;
}

.date-input-wrapper input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #34a853;
  border-radius: 4px;
  font-weight: 600;
  color: #37474f;
  font-size: 0.95rem;
  background: #f1f8e9;
  /* Light green tint? Image looks white or very light green bg inside input? verify.. image looks white but maybe selected? let's stick to white */
  background: #fff;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

.date-input-wrapper i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #34a853;
  pointer-events: none;
  font-size: 0.9rem;
}

.arrow-separator {
  padding-bottom: 15px;
  color: #34a853;
  font-size: 1.2rem;
}

/* Add Date Button */
.add-date-container {
  text-align: center;
  margin: 30px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Green line with plus button for add date */
.add-date-container::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #34a853;
  z-index: 0;
  opacity: 0.4;
}

.btn-add-date {
  position: relative;
  z-index: 1;
  background: #fff;
  color: #34a853;
  border: none;
  padding: 0 15px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-add-date i {
  font-size: 1.4rem;
}

/* Proceed Button */
.step-footer {
  text-align: right;
  margin-top: 10px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.btn-proceed {
  background-color: #34a853;
  color: #fff;
  border: none;
  padding: 14px 40px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  border-radius: 34px;
  /* Image has slight radius */
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
  text-transform: capitalize;
}

.btn-proceed:hover {
  background-color: #34a853;
}

/* Mobile check */
@media (max-width: 768px) {
  .dates-row {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .arrow-separator {
    text-align: center;
    padding: 5px 0;
    transform: rotate(90deg);
    display: block;
  }

  .remove-btn span {
    display: none;
  }

  .remove-btn i {
    margin: 0;
  }
}

body {
  margin: 0;
}

.form-control:focus {
  color: #000 !important;
  background-color: #fff;
  border-color: #34a853 !important;
  outline: 0;
  box-shadow: 0 0 0 .25rem #34a85333 !important;
}


.card {
  font-weight: 700;
}

.confidence ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.confidence li {
  display: flex;
  align-items: center;
  font-size: 13px;
  margin-bottom: 6px;
}

.confidence i {
  color: #2bb673;
  margin-right: 8px;
  font-size: 14px;
}

.protected {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.protected a {
  color: #2bb673;
  font-weight: 700;
  text-decoration: none;
}

.trustpilot {
  padding: 14px 16px 18px;
  border-top: 1px solid #e6e6e6;
  text-align: center;
}

.stars i {
  color: #34a853;
  font-size: 16px;
  margin: 0 1px;
}

/* Empty stars should be lighter */
.stars i.far {
  color: #ddd;
}

/* Filled stars */
.stars i.fas {
  color: #34a853;
}

.trustpilot small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #555;
}

div.step-tab {
  width: 50%;
  height: 50px;
  border-top: 3px solid #e8eff3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8eff3;
  cursor: pointer;
  color: #001e46;
  font-weight: 600;
  border-bottom: 1px solid #b7b7b7;
  border-left: 1px solid #b7b7b7;
}

.step-tabs {
  display: flex;
  align-items: center;
  margin: 0 0 20px 0;
}

p.login-promo-text {
  color: #4a697c;
  font-size: 12px;
}

label.form-label {
  color: #001e46;
  font-weight: 600;
}

div.step-tab.active {
  background: #fff;
  border-top: 3px solid #00b67a;
}

div#step-2 {
  padding: 20px 0;
}

div#content-express {
  padding: 0 30px;
}

.booking-step .form-control {
  width: 100% !important;
  height: 40px;
  font-size: 12px;
}

label.form-check-label {
  font-size: 12px;
}

div#tab-express {
  border-bottom: none;
}

/* Login Tab Styles */
.social-login-row {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px 30px 0 30px;
}

.btn-social {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #78909c;
  padding: 10px 5px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #001e46;
  cursor: pointer;
  white-space: nowrap;
}

.btn-social img {
  width: 20px;
  margin-bottom: 0;
}

.btn-social i {
  font-size: 1.2rem;
}

.divider-or {
  position: relative;
  text-align: center;
  margin: 20px 30px 30px 30px;
  border-top: 1px solid #cfd8dc;
}

.divider-or span {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 0 10px;
  color: #78909c;
  font-size: 1rem;
  font-weight: 700;
}

.email-login-form {
  padding: 0 100px;
}

@media (max-width: 768px) {
  .social-login-row {
    flex-direction: column;
    padding: 20px;
  }

  .email-login-form {
    padding: 0 20px;
  }
}

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #78909c;
  cursor: pointer;
  font-size: 1.1rem;
}

.btn-login-email {
  width: 100%;
  background-color: #34a853;
  color: #fff;
  border: none;
  padding: 12px;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  margin-top: 5px;
}

.btn-login-email:hover {
  background-color: #3cb371;
}

.forgot-link {
  color: #4cd964;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: underline;
}

.login-footer-row {
  border-top: 1px solid #eee;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  margin-left: 0px;
  margin-right: 0;
  margin-bottom: 0;
  background-color: #fcfcfc;
}

.no-account-text {
  font-weight: 700;
  color: #001e46;
  font-size: 0.9rem;
}

.btn-register-free {
  background: #fff;
  border: 1px solid #34a853;
  color: #000;
  padding: 8px 15px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  cursor: pointer;
}

.btn-register-free i {
  color: #34a853;
  font-size: 1.1rem;
}

/* Specific styling for Log in / Sign up tab to match image */
#tab-login.active {
  border-top: 3px solid #34a853;
  border-bottom: none;
  background: #fff;
  color: #000;
  border-right: 1px solid #ccc;
  /* Maybe separation line */
  border-left: 1px solid #ccc;
}

/* Ensure Express tab styling is correct when inactive */
#tab-express {
  border-right: 1px solid #ccc;
}

div#step-1 {
  padding: 14px 20px 5px 20px;
}

/* Step 3 Vehicle Layout */
.vehicle-form-container {
  padding: 10px 30px;
}

.step-3-header-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.step-3-header-center .icon-box-green {
  width: 44px;
  /* Slightly larger as per image */
  height: 44px;
  border: 2px solid #34a853;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34a853;
  font-size: 1.3rem;
  border-radius: 4px;
}

.step-3-header-center h3 {
  margin: 0;
  color: #263238;
  font-weight: 800;
  font-size: 1.4rem;
  font-family: inherit;
}

.step-3-header-center h3::after {
  content: ".";
  color: #34a853;
}


/* License Plate Input Styling matching image */
.license-plate-input-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  border: 1px solid #2d4d84;
  /* Dark blue border */
  border-radius: 4px;
  overflow: hidden;
  height: 48px;
  background: #fff;
  margin-bottom: 20px;
}

.plate-blue-strip {
  background-color: #2d4d84;
  /* UK Number Plate Blue */
  width: 20px;
  flex-shrink: 0;
}

.plate-input {
  border: none !important;
  border-radius: 0 !important;
  height: 100% !important;
  font-size: 1.2rem !important;
  font-weight: 700;
  padding-left: 15px !important;
  color: #333;
  flex: 1;
  outline: none !important;
  box-shadow: none !important;
}

.btn-find-vehicle {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  background-color: #cfd8dc;
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 0 15px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.2s;
}

.btn-find-vehicle:hover {
  background-color: #b0bec5;
}

/* Hide default step-header only when this step is active */
#step-3.active .step-header {
  display: none;
}

/* Vehicle Not Found Box Styling */
.vehicle-not-found-box {
  display: flex;
  border: 1px solid #c8dcf0;
  /* Light blue border */
  margin-bottom: 25px;
  background: #fff;
}

.vehicle-error-details {
  flex: 1;
  padding: 20px;
  border-right: 1px solid #c8dcf0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.vehicle-error-details .error-line {
  color: #d32f2f;
  /* Red color */
  font-weight: 700;
  font-size: 10px;
}

.vehicle-error-details .error-line:first-child {
  font-size: 1.1rem;
  /* First line slightly larger/bolder */
}

.vehicle-preview-image {
  width: 200px;
  /* Fixed width for image section */
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vehicle-preview-image img {
  max-width: 100%;
  height: 100px;
  margin-bottom: 5px;
  object-fit: contain;
}

.vehicle-preview-image .image-caption {
  font-size: 0.75rem;
  color: #2d4d84;
  text-align: center;
}

/* Vehicle Found Box Styling (Success) */
.vehicle-found-box {
  display: flex;
  border: 1px solid #c8dcf0;
  margin-bottom: 25px;
  background: #fff;
  /* Reuse layout logic */
}

.vehicle-details-left {
  flex: 1;
  padding: 20px;
  border-right: 1px solid #c8dcf0;
  display: flex;
  align-items: center;
  /* Vertically center content */
  gap: 20px;
}

.vehicle-logo-col .logo-text {
  font-family: serif;
  /* Mimic the serif font in the image logo */
  color: #888;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.vehicle-info-col {
  display: flex;
  flex-direction: column;
}

.vehicle-make {
  color: #001e46;
  /* Deep blue from image text */
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 2px;
}

/* Step 4 Checkout Styling */
#step-4.active .step-header {
  display: none;
}

.checkout-container {
  padding: 10px 20px;
}

/* Reusing center header from step 3 but mapped to step 4 usage */
.step-4-header-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.step-4-header-center .icon-box-green {
  width: 32px;
  height: 32px;
  border: 2px solid #34a853;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #34a853;
  font-size: 1rem;
}

.step-4-header-center h3 {
  margin: 0;
  font-weight: 800;
  color: #001e46;
  font-size: 1.5rem;
}

.step-4-header-center h3::after {
  content: ".";
  color: #34a853;
}

/* Checkout Options Row */
.checkout-options-row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.checkout-card {
  flex: 1;
  border: 1px solid #cfd8dc;
  border-radius: 6px;
  padding: 20px;
  position: relative;
  cursor: pointer;
  background: #fff;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.card-title {
  font-weight: 800;
  font-size: 1.1rem;
  color: #001e46;
}

.card-desc {
  font-size: 0.9rem;
  color: #546e7a;
  line-height: 1.4;
  margin-bottom: auto;
}

/* Basic Card Specifics */
.radio-circle {
  width: 20px;
  height: 20px;
  border: 2px solid #b0bec5;
  border-radius: 50%;
  display: block;
  /* Default visible */
}

/* Unified Selection Icon Logic */
.card-selection-icon i {
  font-size: 1.5rem;
  color: #000;
  display: none;
  /* Icon Default Hidden */
}

/* Active State Logic */
.checkout-card.active {
  border: 3px solid #34a853;
  /* Thicker light green border */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.checkout-card.active .radio-circle {
  display: none;
  /* Hide empty circle when active */
}

.checkout-card.active .card-selection-icon i {
  display: block;
  /* Show checkmark when active */
}

.pass-box {
  border: 1px solid #333;
  padding: 0 4px;
  margin-left: 2px;
  font-weight: 700;
}

/* Remove old leftover styles if any */
.card-check i {
  font-size: 1.5rem;
  color: #000;
}

.rec-badge {
  background-color: #e8f5e9;
  color: #34a853;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 3px 8px;
  display: inline-block;
  border-radius: 4px;
  margin-bottom: 15px;
  align-self: flex-start;
}

.card-price {
  font-weight: 900;
  font-size: 1.4rem;
  color: #001e46;
  margin-top: 15px;
}

/* Payment Section */
.payment-section {
  margin-top: 20px;
}

.payment-title {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #001e46;
}

/* Payment Error Box */
.payment-error-box {
  border: 1px solid #d32f2f;
  /* Red border */
  display: flex;
  padding: 15px;
  gap: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
  /* Slight radius */
  align-items: flex-start;
}

.payment-error-box .error-icon-box {
  width: 24px;
  height: 32px;
  /* Rectangular as per image */
  border: 2px solid #d32f2f;
  /* Red border for icon box */
  color: #d32f2f;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: inherit;
  line-height: 1;
}

.payment-error-box .error-content {
  flex: 1;
}

.payment-error-box .error-title {
  color: #001e46;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 3px;
}

.payment-error-box .error-desc {
  color: #546e7a;
  /* Dark teal/blue text from image */
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 500;
}


.iframe-box {
  margin: 0 0 -90px;
}

/* Input Styling */
.input-group {
  position: relative;
  display: block;
}

.payment-input {
  padding-right: 40px !important;
  height: 48px;
  border: 2px solid #cfd8dc !important;
  border-radius: 4px !important;
  font-weight: 500;
  color: #555;
  width: 100%;
}

.payment-input:focus {
  border-color: #34a853 !important;
  outline: none;
}

.input-icon-right {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #66bb6a;
  /* Green lock icon */
  font-size: 1rem;
  pointer-events: none;
}

/* Save with link badge styling */
.input-extras {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.save-link-badge {
  background-color: #062e21;
  /* Dark green/black bg from image */
  color: #fff;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.save-link-badge input[type="checkbox"] {
  accent-color: #34a853;
  /* Green checkbox */
  margin: 0;
  cursor: pointer;
}

.save-link-badge span {
  font-weight: 600;
}

.save-link-badge .link-text {
  color: #34a853;
  /* Green text for "link" */
  font-weight: 800;
}

.input-icon-lock {
  color: #34a853;
  font-size: 1rem;
}

/* --- Step Edit Button Logic --- */
.booking-step .btn-edit-step {
  display: none;
  /* Hidden by default */
}

.booking-step.completed .btn-edit-step {
  display: block;
  /* Visible only when completed */
}

/* Edit Button Style */
.btn-edit-step {
  background: #fff;
  border: 1px solid #cfd8dc;
  color: #546e7a;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 5px 15px;
  border-radius: 4px;
  margin-left: auto;
  /* Push to right */
  cursor: pointer;
  transition: all 0.2s;
}

.btn-edit-step:hover {
  background: #f5f5f5;
  border-color: #001e46;
}

.btn-edit-step i {
  margin-right: 5px;
  font-size: 0.8rem;
}

/* --- Step Summary View (Step 1 specific) --- */
.step-summary-view {
  padding: 20px 0 10px 0;
}

.summary-box {
  border: 1px solid #b0bec5;
  background: #fff;
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}

.summary-header-box {
  border-bottom: 1px solid #b0bec5;
  padding: 10px 15px;
  text-align: center;
  font-weight: 700;
  color: #455a64;
  font-size: 0.95rem;
}

.summary-details-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  background: #fcfcfc;
}

.summary-time-col {
  text-align: center;
  flex: 1;
}

.summary-time-col .lbl {
  display: block;
  color: #546e7a;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.summary-time-col .val {
  display: block;
  color: #001e46;
  font-weight: 700;
  font-size: 0.95rem;
}

.summary-arrow-col {
  padding: 0 20px;
  color: #2e7d32;
  font-size: 1.2rem;
}


/* --- Refined Step Header (Flex & Green Line) --- */
.step-header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  /* Default light grey line */
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.booking-step.completed .step-header {
  border-bottom: 1px solid #34a853;
  /* Green line when completed */
}

.step-icon {
  font-size: 11px;
  margin-right: 15px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #34a853;
  /* Green border box for icon */
  color: #004d40;
  font-weight: bold;
}

.step-header h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #001e46;
  margin: 0;
}

/* Edit Button Position Tweaks */
.btn-edit-step {
  border: 1px solid #cfd8dc;
  color: #001e46;
  font-size: 0.8rem;
  padding: 4px 12px;
  font-weight: 700;
  margin-left: auto;
  /* Pushes to right */
  background: #fff;
  border-radius: 2px;
}

/* --- Summary Lists (Steps 2 & 3) --- */
.summary-list {
  margin-top: 10px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eceff1;
  font-size: 0.9rem;
}

.summary-row:last-child,
.summary-row.no-border {
  border-bottom: none;
}

.summary-row .label {
  color: #546e7a;
  font-weight: 500;
}

.summary-row .value {
  color: #001e46;
  font-weight: 700;
  /* Bold values as per image */
  text-align: right;
}


div#step-2 .step-summary-view {
  padding: 0 20px;
}

/* --- New Sidebar Card Styles --- */
.sidebar-card {
  border: 1px solid #cfd8dc;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
  padding: 0;
}

.sidebar-header {
  padding: 20px 20px 10px 20px;
}

.sidebar-header .header-label {
  color: #34a853;
  /* Green label */
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.sidebar-header .header-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #001e46;
  margin: 0;
  line-height: 1.3;
}

.sidebar-map {
  height: 150px;
  background: #eee;
  margin-bottom: 15px;
  border-top: 1px solid #eceff1;
  border-bottom: 1px solid #eceff1;
  overflow: hidden;
}

/* Promo Section */
.sidebar-promo-section {
  padding: 0 20px 15px 20px;
  border-bottom: 1px solid #eceff1;
}

.promo-label {
  display: block;
  font-weight: 700;
  color: #001e46;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.promo-input-group {
  display: flex;
  gap: 0;
}

.promo-input {
  border: 1px solid #546e7a;
  border-right: none;
  border-radius: 4px 0 0 4px;
  height: 36px;
  font-size: 0.9rem;
  outline: none !important;
  box-shadow: none !important;
}

.btn-apply-promo {
  background: #34a853;
  /* Light green button */
  color: #fff;
  font-weight: 700;
  border: 1px solid #34a853;
  /* Match bg */
  border-radius: 0 4px 4px 0;
  padding: 0 15px;
  height: 59px;
  font-size: 0.9rem;
  cursor: pointer;
}

.btn-apply-promo:hover {
  background: #66bb6a;
}

/* Sidebar Total */
.sidebar-total-row {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #cfd8dc;
  /* Separator for card body */
  background: #fcfcfc;
  /* Slight off-white */
}

.sidebar-total-row .total-label {
  font-weight: 800;
  color: #001e46;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.sidebar-total-row .info-icon {
  color: #546e7a;
  font-size: 0.9rem;
  cursor: pointer;
}

.sidebar-total-row .total-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #001e46;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-total-row .total-price i {
  font-size: 1rem;
  color: #546e7a;
  cursor: pointer;
}

/* Confidence Box */
.confidence-box {
  margin: 20px;
  border: 1px solid #34a853;
  /* Green border */
  border-radius: 4px;
  background: #f1f8f6;
  /* Very light green hint */
  overflow: hidden;
}

.confidence-header {
  background: #fff;
  /* Header part might differ, keeping simple for now matching list */
  padding: 15px;
  font-weight: 800;
  color: #001e46;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  background: transparent;
}

.confidence-header i {
  color: #34a853;
  /* Padlock icon color */
}

.confidence-list {
  list-style: none;
  padding: 0 15px 15px 15px;
  margin: 0;
}

.confidence-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.confidence-list li:last-child {
  margin-bottom: 0px;
}

.check-icon {
  width: 18px;
  min-width: 18px;
  height: 18px;
  background: #c8e6c9;
  /* Light green circle bg */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34a853;
  font-size: 0.65rem;
  margin-top: 2px;
}

.confidence-list .text {
  font-size: 0.85rem;
  color: #001e46;
  line-height: 1.4;
}

.confidence-list .text strong {
  font-weight: 700;
  text-decoration: underline;
  /* As per image for links/strong parts */
  color: #34a853;
}

/* Protection Footer */
.protection-footer {
  border-top: 1px solid #a5d6a7;
  /* Separator line */
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.protection-footer .protect-title {
  font-weight: 800;
  font-size: 0.85rem;
  color: #001e46;
  margin-bottom: 2px;
}

.protection-footer .protect-link {
  color: #34a853;
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 5px;
}

.shield-icon {
  font-size: 1.5rem;
  color: #66bb6a;
}

/* Trustpilot Footer */
.sidebar-trustpilot {
  text-align: center;
  padding: 0 20px 20px 20px;
  margin-top: -5px;
}

.tp-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #001e46;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.tp-star {
  color: #00b07e;
  /* Trustpilot star color */
}

.tp-stars-row {
  background: #34a853;
  display: inline-block;
  padding: 4px 8px;
  margin-bottom: 8px;
}

.tp-stars-box i {
  color: #fff;
  font-size: 1.2rem;
  margin: 0 2px;
}

.tp-score-row {
  font-size: 0.8rem;
  color: #001e46;
}


.search-section {
  padding: 0 0 80px 0;
}

.tp-logo-row i {
  color: #34a853;
}






/* Top Locations Section Styles from Clone Task */

.top-location-sec {
  background-color: #f9f9f9;
  padding: 40px 0;
}

.top-location-box {
  background: transparent;
  box-shadow: unset;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Horizontal Navigation Tabs (Bootstrap Override) */
.top-location-nav {
  background-color: #f1f3f5;
  /* Light grey background for tab bar */
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0px -1px 8px 0px #0000001f;
}

.top-location-nav .nav-tabs {
  border-bottom: none;
  /* Remove default Bootstrap border */
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.top-location-nav .nav-item {
  flex: 1 1 auto;
  /* Distribute space */
  border-right: 1px solid #e0e0e0;
  margin-bottom: 0;
  /* Remove default bootstrap margin */
}

.top-location-nav .nav-item:last-child {
  border-right: none;
}

.top-location-nav .nav-link {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  padding: 15px 20px;
  font-size: 12px;
  font-weight: 600;
  color: #001e46;
  /* Navy blue text */
  font-family: 'Mont', 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  border-radius: 0 !important;
  /* Bootstrap adds radius, we want square */
}

/* Override Bootstrap hover/focus states */
.top-location-nav .nav-link:hover,
.top-location-nav .nav-link:focus {
  background-color: #e8eaf6;
  color: #34a853;
  border-color: transparent;
}

.top-location-nav .nav-link i {
  color: #90a4ae;
  width: 20px;
  text-align: center;
}

/* Active State - Green Background */
.top-location-nav .nav-link.active,
.top-location-nav .nav-link.active:hover,
.top-location-nav .nav-link.active:focus {
  background-color: #34a853;
  color: #fff;
  border: none;
  position: relative;
}

.top-location-nav .nav-link.active i {
  color: #fff;
}

/* Content Area */
.top-location-content {
  background: #fff;
  padding: 40px;
  min-height: 650px;
  box-shadow: 1px 20px 20px 0 #0000001f;
  border-top: 1px solid #e0e0e0;
}

.top-location-content .section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #001e46;
  margin: 0 0 10px 0;
  font-family: 'Mont', 'Montserrat', sans-serif;
}

.top-location-content .title-underline {
  width: 40px;
  height: 3px;
  background-color: #34a853;
  margin-bottom: 30px;
}

/* Grid Layout */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px;
  row-gap: 20px;
}

.location-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #001e46;
  font-size: 1rem;
  font-weight: 600;
  padding: 5px 0;
  transition: 0.3s ease-in-out;
  flex-direction: row-reverse;
  width: fit-content;
  gap: 10px;
}

.location-item i {
  color: #34a853;
  font-size: 0.9rem;
  transition: transform 0.2s;
}

.location-item:hover {
  color: #34a853;
  padding-left: 10px;
}

.location-item:hover i {
  transform: translateX(5px);
}

/* Explore Button */
.explore-btn-wrapper {
  margin-top: 40px;
}

a.btn.btn-explore {
  width: fit-content;
  margin: 0 auto;
  display: block;
  /* Adjust if needed */
  align-items: center;
  /* Flex props only work if display flex */
  justify-content: center;
  padding: 10px 20px;
  border-radius: 40px;
  background-color: #34a853;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition: background-color 0.2s;
  font-size: 1.1rem;
  display: flex;
  /* Ensure flex for centering */
}

a.btn.btn-explore:hover {
  background-color: #2d9249;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
  }
}

@media (max-width: 576px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .top-location-nav .nav-tabs {
    flex-direction: column;
  }

  .top-location-nav .nav-item {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .top-location-content {
    padding: 20px;
  }
}

.calendar-header button {
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #46a956;
  color: #fff;
}


.calendar-footer button {
  background: #46a956;
  color: #fff;
  padding: 10px 40px;
  border: none;
  width: fit-content;
  border-radius: 50px;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}


/* New Css End  */

/* Blog and News Content Styling - For Summernote HTML Content */
.blog-content ul,
.section-content ul,
.news-det-main-box .blog-content ul,
.blog-det-main-box .section-content ul,
.news-det-box .blog-content ul,
.news-det-box .section-content ul {
  list-style-type: disc !important;
  padding-left: 40px !important;
  margin: 15px 0 !important;
  display: block !important;
}

.blog-content ol,
.section-content ol,
.news-det-main-box .blog-content ol,
.blog-det-main-box .section-content ol,
.news-det-box .blog-content ol,
.news-det-box .section-content ol {
  list-style-type: decimal !important;
  padding-left: 40px !important;
  margin: 15px 0 !important;
  display: block !important;
}

.blog-content li,
.section-content li,
.news-det-main-box .blog-content li,
.blog-det-main-box .section-content li,
.news-det-box .blog-content li,
.news-det-box .section-content li {
  display: list-item !important;
  margin-bottom: 8px !important;
  margin-left: 0 !important;
  line-height: 1.8;
  color: #3e3e3e;
  font-size: 14px;
  list-style: inherit !important;
  list-style-position: outside !important;
}

.blog-content ul ul,
.section-content ul ul,
.news-det-main-box .blog-content ul ul {
  list-style-type: circle;
  margin-top: 8px;
}

.blog-content ol ol,
.section-content ol ol,
.news-det-main-box .blog-content ol ol {
  list-style-type: lower-alpha;
  margin-top: 8px;
}

/* Fix for Summernote generated content - ensure lists inside paragraphs work */
.blog-content p ul,
.section-content p ul,
.blog-content p ol,
.section-content p ol {
  display: block !important;
  margin: 10px 0 !important;
}

.blog-content p li,
.section-content p li {
  display: list-item !important;
}

.blog-content h1,
.section-content h1,
.news-det-main-box .blog-content h1 {
  font-size: 32px;
  margin: 20px 0 15px 0;
  color: #001e46;
}

.blog-content h2,
.section-content h2,
.news-det-main-box .blog-content h2 {
  font-size: 28px;
  margin: 18px 0 12px 0;
  color: #001e46;
}

.blog-content h3,
.section-content h3,
.news-det-main-box .blog-content h3 {
  font-size: 24px;
  margin: 16px 0 10px 0;
  color: #001e46;
}

.blog-content h4,
.section-content h4,
.news-det-main-box .blog-content h4 {
  font-size: 20px;
  margin: 14px 0 8px 0;
  color: #001e46;
}

.blog-content p,
.section-content p,
.news-det-main-box .blog-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.blog-content strong,
.section-content strong,
.news-det-main-box .blog-content strong {
  font-weight: 600;
  color: #000;
}

.blog-content em,
.section-content em,
.news-det-main-box .blog-content em {
  font-style: italic;
}

.blog-content a,
.section-content a,
.news-det-main-box .blog-content a {
  color: #34a853;
  text-decoration: underline;
}

.blog-content a:hover,
.section-content a:hover,
.news-det-main-box .blog-content a:hover {
  color: #46a956;
}

.blog-content blockquote,
.section-content blockquote,
.news-det-main-box .blog-content blockquote {
  border-left: 4px solid #34a853;
  padding-left: 20px;
  margin: 20px 0;
  font-style: italic;
  color: #555;
}

.blog-content img,
.section-content img,
.news-det-main-box .blog-content img {
  max-width: 100%;
  height: auto;
  margin: 15px 0;
  border-radius: 10px;
}

.blog-content table,
.section-content table,
.news-det-main-box .blog-content table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
}

.blog-content table td,
.blog-content table th,
.section-content table td,
.section-content table th,
.news-det-main-box .blog-content table td,
.news-det-main-box .blog-content table th {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

.blog-content table th,
.section-content table th,
.news-det-main-box .blog-content table th {
  background-color: #f2f4f5;
  font-weight: 600;
}


/* Additional specificity for news detail page bullet points */
.news-det-sec .news-det-main-box ul,
.news-det-sec .blog-content ul,
.news-det-sec .section-content ul {
  list-style-type: disc !important;
  padding-left: 40px !important;
  margin: 15px 0 !important;
  display: block !important;
}

.news-det-sec .news-det-main-box ol,
.news-det-sec .blog-content ol,
.news-det-sec .section-content ol {
  list-style-type: decimal !important;
  padding-left: 40px !important;
  margin: 15px 0 !important;
  display: block !important;
}

.news-det-sec .news-det-main-box li,
.news-det-sec .blog-content li,
.news-det-sec .section-content li {
  display: list-item !important;
  margin-bottom: 8px !important;
  line-height: 1.8;
  color: #3e3e3e;
  font-size: 14px;
  list-style: inherit !important;
  list-style-position: outside !important;
}

/* Exclude specific lists that shouldn't have bullets */
.news-det-sec .news-list,
.news-det-sec .news-park-list,
.news-det-sec ul.news-list,
.news-det-sec ul.news-park-list {
  list-style-type: none !important;
  padding-left: 0 !important;
}


/* SUPER STRONG CSS for News Detail Bullet Points - Override Everything */
.news-det-sec .news-det-main-box ul,
.news-det-sec .news-det-main-box .blog-content ul,
.news-det-sec .news-det-main-box .section-content ul,
.news-det-sec .news-det-box ul,
.news-det-sec .news-det-box .blog-content ul,
.news-det-sec .news-det-box .section-content ul {
  list-style-type: disc !important;
  list-style-position: outside !important;
  padding-left: 40px !important;
  margin: 15px 0 !important;
  display: block !important;
}

.news-det-sec .news-det-main-box ol,
.news-det-sec .news-det-main-box .blog-content ol,
.news-det-sec .news-det-main-box .section-content ol,
.news-det-sec .news-det-box ol,
.news-det-sec .news-det-box .blog-content ol,
.news-det-sec .news-det-box .section-content ol {
  list-style-type: decimal !important;
  list-style-position: outside !important;
  padding-left: 40px !important;
  margin: 15px 0 !important;
  display: block !important;
}

.news-det-sec .news-det-main-box li,
.news-det-sec .news-det-main-box .blog-content li,
.news-det-sec .news-det-main-box .section-content li,
.news-det-sec .news-det-box li,
.news-det-sec .news-det-box .blog-content li,
.news-det-sec .news-det-box .section-content li {
  display: list-item !important;
  list-style: inherit !important;
  list-style-position: outside !important;
  margin-bottom: 10px !important;
  line-height: 1.8 !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* Override inline styles from pasted content */
.news-det-sec ul[style] {
  list-style-type: disc !important;
  padding-left: 40px !important;
}

.news-det-sec ol[style] {
  list-style-type: decimal !important;
  padding-left: 40px !important;
}

.news-det-sec li[style] {
  display: list-item !important;
  list-style: inherit !important;
}

/* Exclude special navigation lists */
.news-det-sec .news-list,
.news-det-sec .news-list li,
.news-det-sec .news-park-list,
.news-det-sec .news-park-list li,
.news-det-sec ul.news-list,
.news-det-sec ul.news-list li,
.news-det-sec ul.news-park-list,
.news-det-sec ul.news-park-list li {
  list-style-type: none !important;
  padding-left: 0 !important;
}


/* ============================================================ */
/* Partner Form Styles */
/* ============================================================ */

.partner-oppor-sec-5 {
  padding-top: 0 !important;
}

.partner-form-wrapper {
  background-color: #fff;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
  border: 1px solid #f2f4f5;
}

.partner-form-header h2 {
  color: #001e46;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 40px;
  text-transform: uppercase;
}

.form-group-custom {
  margin-bottom: 25px;
}

.form-label-main {
  display: block;
  font-family: "Mont", sans-serif;
  font-weight: 600;
  color: #001e46;
  margin-bottom: 15px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 15px 25px;
  background-color: #f2f4f5;
  border: 1px solid transparent;
  border-radius: 50px;
  font-family: "Soleil", sans-serif;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
}

.form-textarea {
  border-radius: 20px;
  resize: none;
}

.form-input:focus,
.form-textarea:focus {
  background-color: #fff;
  border-color: #34a853;
  box-shadow: 0 5px 15px rgba(52, 168, 83, 0.1);
}

/* Radio Group Styling */
.radio-group {
  display: flex;
  gap: 30px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
  margin-bottom: 0;
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-option .checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid #ced4da;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
  background-color: #fff;
}

.radio-option input[type="radio"]:checked+.checkmark {
  border-color: #34a853;
}

.radio-option input[type="radio"]:checked+.checkmark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #34a853;
  border-radius: 50%;
}

.radio-option .label {
  font-family: "Soleil", sans-serif;
  font-size: 15px;
  color: #3e3e3e;
  font-weight: 500;
}

/* Custom File Upload */
.file-upload-wrapper {
  position: relative;
}

.file-input {
  display: none;
}

.custum-file-upload {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 25px;
  background-color: #f2f4f5;
  border: 2px dashed #ced4da;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.custum-file-upload:hover {
  border-color: #34a853;
  background-color: #fff;
}

.custum-file-upload .icon {
  color: #34a853;
  font-size: 20px;
}

.custum-file-upload .text span {
  font-family: "Soleil", sans-serif;
  font-size: 14px;
  color: #575757;
}

/* Custom Checkbox */
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.checkbox-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #34a853;
  border-radius: 4px;
}

.checkbox-option label {
  font-family: "Soleil", sans-serif;
  font-size: 14px;
  color: #3e3e3e;
  cursor: pointer;
  margin-bottom: 0;
}

/* Submit Section */
.form-submit-wrapper {
  margin-top: 30px;
}

.form-submit-wrapper .pbtn {
  padding: 16px 45px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(52, 168, 83, 0.2);
}

.form-submit-wrapper .pbtn span {
  margin-right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .partner-form-wrapper {
    padding: 30px 20px;
  }

  .partner-form-header h2 {
    font-size: 28px;
  }

  .radio-group {
    gap: 15px;
  }
}

html body .results-container.single-result {
  overflow-y: scroll !important;
  max-height: none !important;
}

.time-selector {
  background-image: none !important;
  padding: 8px 10px 8px 15px !important;
}

.list-card.news-det-card ul.news-park-list {
  display: flex !important;
  margin: 0 !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
}

.list-card.news-det-card ul.news-park-list li {
  margin: 0 !important;
}

.list-card.news-det-card ul.news-park-list li img {
  margin: 0 auto;
  display: block;
}


.calendar-header button {
  line-height: 0 !important;
  font-size: 25px !important;
}