@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;
  overflow-x: hidden;
}

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 !important;
    display: flex;
    justify-content: center !important;
    align-items: center;
    text-align: center;
    height: 100%;
    gap: 0;
    justify-content: space-between !important;
    padding: 85px 0px 0px 0px;
}

.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;
}

.hdr_logo a img {
  height: 186px;
  width: 100%;
  object-fit: cover;
  /* object-position: left; */
}

.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: 30px 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: 10px;
  padding: 15px;
  font-weight: bold;
}

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: #001e46;
  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;
  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 {
  height: 300px;
  width: 100%;
  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;
}

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

.park-space-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 20px;
  background: #fff;
  border-radius: 10px;
  margin: 20px 0 40px 0;
}

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

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

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: -343px 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;
}

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;
  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: #1eb8d1;
  border: 1px solid #1eb8d1;
}

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;
}

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 {
  padding: 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;
}

.partnership-and-affiliates-box {
  border: 1px solid #7777;
  border-radius: 20px;
  padding: 20px;
  margin-top: 20px;
}

.partnership-and-affiliates-box {
  overflow-y: auto;
  height: 290px;
  background: #fff;
  box-shadow: 0 0 5px 0 #0000006e;
}

/* Custom Scrollbar Styles (WebKit browsers like Chrome, Safari) */
.partnership-and-affiliates-box::-webkit-scrollbar {
  width: 2px;
  margin-right: 10px;
}

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

.partnership-and-affiliates-box::-webkit-scrollbar-thumb {
  background: #001e46;
  border-radius: 4px;
}

.partnership-and-affiliates-box::-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 20px;
  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;
}

.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;
  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;
  margin: -40px auto 0 auto;
  box-shadow: 0 0 6px 0 #0000002e;
  height: 325px;
}

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.active {
  border-color: #001e46;
  background-color: #001e46;
  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: 1;
  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.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 {
  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;
}