/* Font & Icon imports (kept as original) */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Faculty+Glyphic&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.1/css/all.min.css');

@font-face {
  font-family: 'CurrencySymbols';
  src: url('../../fonts/CurrencySymbols_V2.woff2');
  src: url('../../fonts/CurrencySymbols_V2.woff2') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  unicode-range: U+E000, U+E001;
}

/* ----------------------------
   Root variables (centralized)
   ---------------------------- */
:root {
  --primary: #4387c2;
  --primary-hover: #4a90e2;
  --accent: #ffb729;
  --bg-light: #f6faff;
  --white: #ffffff;
  --blue: #4387c2;
  --bg-blue: #4387c2;
  --black: #000000;
  --muted: #6e6e6e;
  --border: #d5d5d5;
  --bg-footer: #dbeeff;
  --light-blue: #dbeefe;

  --text-success: #006e0b;
  --text-warning: #d4900a;
  --text-danger: #e80000;

  --ff-base: 'Nunito', sans-serif;
  --ff-display: 'Faculty Glyphic', serif;

  --fw-normal: 400;
  --fw-medium: 600;
  --fw-bold: 700;

  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-pill: 30px;

  --fs-30: 30px;
  --fs-24: 24px;
  --fs-20: 20px;
  --fs-18: 18px;
  --fs-16: 16px;
  --fs-15: 15px;
  --fs-14: 14px;
}

/* ----------------------------
   Global reset + base
   ---------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-base);
  font-weight: var(--fw-normal);
  color: var(--black);
  font-size: 16px;
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Links & text */
a {
  color: var(--primary);
}
a:hover {
  color: var(--accent);
}
p,
li {
  color: var(--muted);
}

/* Container large-screen cap */
@media (min-width: 1400px) {
  .container {
    max-width: 1140px;
    margin: 0 auto;
  }
}

/* Utility classes */
.MainBody {
  padding-top: 80.5px;
}
.small-text-14 {
  font-size: var(--fs-14);
  color: var(--muted);
}
.pt-40 {
  padding-top: 40px;
}
.bg-light {
  background-color: #f5f5f5;
}

/* ----------------------------
   Buttons (consolidated)
   ---------------------------- */
.btn {
  display: inline-block;
  border: 0;
  padding: 8px 25px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-outline-primary {
  background-color: transparent;
  border: 1px solid var(--blue);
  color: var(--blue);
  border-radius: var(--radius-pill);
}
.btn-outline-primary:hover,
.btn-outline-primary.active {
  background-color: var(--bg-blue);
  color: var(--white);
  border-color: var(--bg-blue);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--black);
  color: var(--black);
  border-radius: 12px;
}

/* ----------------------------
   Forms
   ---------------------------- */
.form-label {
  display: block;
  margin-bottom: 5px;
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
}
.form-control {
  height: 50px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 12px;
  font-size: var(--fs-14);
  background: #fff;
  color: var(--black);
}

/* textarea overrides */
textarea.form-control {
  min-height: 150px;
  padding: 10px;
}
textarea.form-control.textarea-height {
  min-height: 100px;
}

/* focus states for accessibility */
.form-control:focus,
button:focus,
a:focus {
  outline: 3px solid rgba(67, 135, 194, 0.12);
  outline-offset: 2px;
}

/* ----------------------------
   Header / Nav
   ---------------------------- */
header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  background-color: var(--white);
  border-bottom: 1px solid #ebebeb;
}

header.is-sticky {
  position: fixed;
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
  z-index: 99;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

nav.navbar.navbar-expand-lg {
  padding: 2px 0;
}

/* ----------------------------
   Banner / Hero
   ---------------------------- */
.banner-main {
  position: relative;
}
.bannerImg {
  width: 100%;
  object-fit: cover;
  display: block;
}

.banner-search-services {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  max-width: 560px;
  width: calc(100% - 30px);
  margin: auto;
  background: rgba(255, 255, 255, 0.62); /* #ffffff9c */
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.banner-search-services h1 {
  font-size: var(--fs-24);
  color: #2d2d2d;
  font-weight: var(--fw-bold);
  margin-bottom: 15px;
}

/* city search with icons */
.city-search-box {
  position: relative;
}
.city-search-box i.fa-location-dot {
  position: absolute;
  left: 18px;
  top: 17px;
  font-size: 18px;
  color: var(--muted);
}
.city-search-box i.fa-xmark {
  position: absolute;
  right: 20px;
  top: 17px;
  color: #929292;
  cursor: pointer;
}
.city-search-box i.fa-xmark:hover {
  color: #2d2d2d;
}
.city-search-box .form-control {
  border: 0;
  border-radius: 40px;
  padding: 0 42px;
  width: 100%;
}

/* ----------------------------
   Shared card & image utilities
   ---------------------------- */
.card-base {
  background: var(--white);
  border: 1px solid #e3e3e3;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card-base:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.zoom-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.card-base:hover .zoom-image,
.cleaning-box:hover .zoom-image,
.popular-box:hover .zoom-image,
.pest-box:hover .zoom-image,
.salon-box:hover .zoom-image,
.say-box figure:hover .zoom-image {
  transform: scale(1.2);
}

/* ----------------------------
   Top services & small boxes
   ---------------------------- */
.top-services {
  padding: 50px 0;
}
.top-service-box {
  text-align: center;
  cursor: pointer;
}
.top-service-box img {
  max-height: 56px;
}
.top-service-box a {
  color: var(--black);
  text-decoration: none;
}
.top-service-box:hover {
  color: var(--blue);
}
.top-service-box a:hover {
  color: var(--blue);
}
.top-service-box i {
  display: block;
  padding: 20px;
  border-radius: 5px;
  background-color: rgba(173, 181, 189, 0.22);
}
.top-service-box i.pest-control {
  background-color: #ffe8ec;
}
.top-service-box i.salon {
  background-color: #d5fff3;
}
.top-service-box i.packers {
  background-color: #f1e8ff;
}
.top-service-box i.maintenance {
  background-color: #d4ebff;
}
.top-service-box span {
  display: block;
  margin-top: 8px;
}

/* ----------------------------
   Headings & text
   ---------------------------- */
.heading {
  font-size: var(--fs-30);
  font-weight: var(--fw-bold);
  margin-bottom: 20px;
  color: #222;
}

/* ----------------------------
   Cleaning / category / popular boxes
   ---------------------------- */
.cleaning-service {
  padding: 0 0 50px 0;
}

.cleaning-box {
  text-align: center;
  background: var(--white);
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  margin: 0 10px;
  cursor: pointer;
}
.cleaning-box figure {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  margin: 0;
}
.cleaning-box .zoom-image {
  height: 250px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.cleaning-box h3 {
  font-size: 18px;
  font-weight: var(--fw-bold);
  margin: 20px 0;
}
.cleaning-box p {
  font-size: 14px;
  color: var(--muted);
}

/* popular / pest sections */
.popular-services {
  background-color: var(--bg-light);
  padding: 50px 0;
}
.popular-box {
  position: relative;
}
.popular-box a {
  color: var(--black);
  text-decoration: none;
  display: block;
}
.popular-box a:hover .box-content {
  color: var(--blue);
}
.popular-box figure {
  overflow: hidden;
  border-radius: 10px;
}
.box-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
}
.box-content span {
  font-size: var(--fs-15);
  font-weight: var(--fw-bold);
}

/* pest */
.pest-control {
  padding: 50px 0;
}
.pest-box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 18px;
}
.pest-box span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: rgba(0, 0, 0, 0.31);
  color: var(--white);
  text-align: center;
  font-size: var(--fs-20);
  font-weight: var(--fw-bold);
}

/* salon */
.women-salon {
  padding: 0 0 50px 0;
}
.salon-box {
  margin: 0 10px;
  cursor: pointer;
}
.salon-box figure {
  overflow: hidden;
  border-radius: 10px;
}
.salon-box .zoom-image {
  height: 300px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.salon-box a {
  color: var(--black);
  text-decoration: none;
}
.salon-box a:hover {
  color: var(--blue);
}
.salon-box span {
  display: block;
  text-align: center;
  font-size: var(--fs-18);
  font-weight: var(--fw-bold);
  margin-top: 10px;
}

/* ----------------------------
   Testimonials / people say
   ---------------------------- */
.people-say {
  background: var(--bg-light);
  padding: 50px 0;
}
.say-box {
  display: flex;
  align-items: center;
  gap: 24px;
}
.say-box figure {
  width: 40%;
  min-height: 450px;
  border-radius: 0 200px 200px 200px;
  overflow: hidden;
}
.say-box figure img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
.say-content {
  background: var(--white);
  padding: 40px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  margin-left: -5%;
  width: 65%;
  position: relative;
}
.say-content p {
  font-size: var(--fs-18);
  line-height: 30px;
  color: #222;
}
.say-content .fa-quote-left {
  font-size: var(--fs-20);
  color: var(--blue);
  margin-bottom: 10px;
}
.say-content span {
  font-size: var(--fs-18);
  color: var(--blue);
  font-weight: var(--fw-bold);
  display: block;
}

/* slick-dots tweak (kept original class) */
.peopleSay-slider .slick-dots {
  width: 40%;
}

/* ----------------------------
   Many reasons / download app
   ---------------------------- */
.many-reasons {
  padding: 60px 0;
}
.reasons-box {
  border-radius: 5px;
  border: 1px solid #e9e9e9;
  text-align: center;
  padding: 15px;
  height: 100%;
  font-size: 14px;
}
.reasons-box h3 {
  font-size: var(--fs-20);
  font-weight: var(--fw-bold);
  margin-top: 15px;
}
.reasons-box p {
  margin-bottom: 0;
}

.download-app {
  background: var(--bg-light);
  padding: 50px 0;
}
.download-app .heading {
  margin-bottom: 15px;
}
.download-app p {
  font-size: var(--fs-16);
  line-height: 28px;
  margin-bottom: 30px;
}

/* ----------------------------
   Footer & contact
   ---------------------------- */
footer {
  padding: 60px 0 0;
  background: var(--bg-footer);
}
.footer-title {
  font-size: 22px;
  font-weight: var(--fw-bold);
  margin-bottom: 15px;
  color: #333;
}
.footer-links {
  padding: 0;
}
.footer-links li {
  list-style: none;
  padding: 7px 0;
}
.footer-links li a {
  color: #616161;
  text-decoration: none;
  font-size: var(--fs-14);
  display: inline-block;
}
.footer-links a:hover {
  color: var(--black);
}
.contact-links li a {
  position: relative;
  padding: 0 0 0 30px;
  font-size: var(--fs-14);
  margin-bottom: 10px;
  color: #616161;
}
.contact-links li a i {
  position: absolute;
  left: 0;
  top: 5px;
}
.copyright {
  background-color: var(--bg-blue);
  padding: 10px 0;
  margin-top: 30px;
  font-size: var(--fs-14);
  text-align: center;
  color: var(--white);
}
.social-icons {
  display: flex;
  gap: 10px;
}
.social-icons a {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.social-icons a:hover {
  background: var(--bg-footer);
}
.social-icons a i {
  color: var(--blue);
}

/* ----------------------------
   Static / content boxes
   ---------------------------- */
.terms-pages h1 {
  font-size: 28px;
  margin-bottom: 12px;
}
.contant-inner {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.contant-inner p {
  color: #242424;
}
.contant-inner li::marker {
  color: #242424 !important;
  font-size: var(--fs-14);
}

/* ----------------------------
   Search & location list
   ---------------------------- */
.search-results {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background-color: #fff;
  left: 0;
  position: absolute;
  top: 56px;
  width: 100%;
  z-index: 40;
}
.location-items-list {
  list-style: none;
  padding: 0;
  max-height: 270px;
  overflow: auto;
  margin-bottom: 5px;
}
.location-items-list li {
  padding: 8px 12px;
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  display: block;
}
.location-items-list li:hover {
  background: #ecf3fb;
}
.location-items-list li b {
  font-size: 13px;
}
.location-items-list li p {
  font-size: 13px;
}
.city-search-box .location-items-list i.fa-location-dot {
  top: 14px;
}

/* ----------------------------
   Scrollbar styling (WebKit)
   ---------------------------- */
.scrollable::-webkit-scrollbar {
  width: 8px;
}
.scrollable::-webkit-scrollbar-thumb {
  background-color: var(--blue);
  border-radius: 6px;
  border: 2px solid #f4f4f4;
}
.scrollable::-webkit-scrollbar-thumb:hover {
  background-color: #333;
}
.scrollable::-webkit-scrollbar-track {
  background-color: #e4e4e4;
  border-radius: 6px;
}

/* ----------------------------
   Banner category
   ---------------------------- */
.banner-category {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  margin-top: 20px;
  min-height: 130px;
  background-position: center center;
  background-size: cover;
}
.banner-category::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: var(--black);
  content: '';
  opacity: 0.5;
}
.banner-category h1 {
  position: absolute;
  z-index: 1;
  color: var(--white);
  top: 50%;
  transform: translate(60px, -50%);
  font-size: 26px;
  font-weight: var(--fw-bold);
  margin: 0;
}
.banner-category img {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
}

/* ----------------------------
   Category grid
   ---------------------------- */
.category-services {
  padding: 20px 0 20px 0;
}
.category-box {
  text-align: center;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.category-box figure {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  margin: 0;
}
.category-box .zoom-image {
  height: 210px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.category-box:hover .zoom-image {
  transform: scale(1.2);
}
.category-box h3 {
  font-size: var(--fs-16);
  font-weight: var(--fw-bold);
  margin: 20px 0;
  color: var(--black);
}
.category-box p {
  font-size: 14px;
  color: var(--muted);
}
.category-box a {
  color: var(--black);
  text-decoration: none;
}
.category-box a:hover h3 {
  color: var(--blue);
}

/* ----------------------------
   Services filter buttons
   ---------------------------- */
.services-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  row-gap: 8px;
  background-color: var(--white);
  padding: 10px 15px;
}
.services-filter .btn-filter {
  border: 1px solid #c5c5c5;
  color: #9b9b9b;
  font-size: var(--fs-16);
  padding: 5px 20px;
  border-radius: 20px;
  display: inline-block;
  text-decoration: none;
}
.services-filter .btn-filter.active,
.services-filter .btn-filter:hover {
  background: var(--bg-blue);
  border-color: var(--bg-blue);
  color: var(--white);
}

/* ----------------------------
   Detail slider & service list
   ---------------------------- */
.detail-slider .detail-slider-img {
  border-radius: 5px;
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.detail-slider.slick-dotted.slick-slider .slick-dots {
  bottom: -20px;
}

.services-list-box {
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  padding: 15px;
  background: #fff;
  font-size: 14px;
}
.services-list h3 {
  font-size: 20px;
  font-weight: var(--fw-bold);
}
.services-list-box h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.service-img {
  border-radius: 5px;
  height: 100px;
  width: 100%;
  object-fit: cover;
}
.services-list-box .btn {
  padding: 4px 15px;
  font-size: 14px;
}
.services-list-box p {
  margin-bottom: 10px;
  line-height: 1.3;
}
.services-list-box h5 {
  font-size: 1rem;
  margin-bottom: 5px;
}

/* price summary */
.price-summery {
  background-color: var(--light-blue);
  border-radius: 5px;
  padding: 20px;
}
.price-summery h4 {
  font-weight: var(--fw-bold);
  font-size: var(--fs-16);
}
.total-summery {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid #abd0ef;
  padding-top: 10px;
  gap: 10px;
}

/* Included list */
.Included {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.Included li {
  position: relative;
  font-size: 14px;
  color: var(--muted);
  padding-left: 20px;
}
.Included li::before {
  content: '\f00c';
  font-size: 14px;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
}

/* ----------------------------
   Buttons active state (outline)
   ---------------------------- */
.btn-outline-primary.active {
  background-color: var(--bg-blue);
  color: #fff;
  border-color: var(--bg-blue);
}

/* ----------------------------
   Cart / login / history / booking
   ---------------------------- */
.cart-login-box,
.history-card,
.book-services-box {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 25px;
  background: #fff;
}
.cart-login-box h3 {
  font-size: var(--fs-18);
  font-weight: var(--fw-bold);
}

.cart-item {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  flex-wrap: wrap;
  margin: 10px 0;
}
.cart-item-loop {
  display: flex;
  /* gap: 7px; */
  justify-content: flex-end;
  width: 100%;
}
.cart-item-loop .item-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.cart-item .item-name {
  font-size: 13px;
}

.address-label {
  color: #4a4a4a;
  font-size: 13px;
  min-width: 100px;
  width: 100px;
}
.address-text {
  text-align: right;
  font-size: 13px;
  line-height: normal;
  width: calc(100% - 120px);
}
.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--blue);
  border-radius: 5px;
  overflow: hidden;
  background: var(--light-blue);
}
.qty-btn {
  background: var(--light-blue);
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-size: var(--fs-16);
  font-weight: var(--fw-bold);
  color: var(--bg-blue);
}
.qty {
  padding: 5px;
  font-size: var(--fs-16);
  font-weight: var(--fw-bold);
}

.coupon-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #5c8a00;
  border-radius: 5px;
  background: #fff;
  color: #5c8a00;
  font-size: var(--fs-14);
  cursor: pointer;
}
.coupon-icon {
  font-size: 14px;
  width: 22px;
  height: 22px;
  border: 1px solid #5c8a00;
  border-radius: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: var(--fw-bold);
  margin-right: 5px;
}

/* total area */
.total {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
}
.total h4 {
  margin: 0;
}
.total small {
  color: var(--muted);
  font-weight: 400;
  font-size: 14px;
}

/* more button */
.more-btn {
  font-size: 14px;
  color: var(--black);
  font-weight: var(--fw-bold);
}

/* ----------------------------
   Book services (cards & overlays)
   ---------------------------- */
.book-services-box {
  min-width: 175px;
  max-width: 175px;
  text-align: center;
  position: relative;
  margin: auto;
  border-radius: 5px;
}
.book-services-box img {
  margin: auto;
  margin-top: 10px;
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 100%;
  overflow: hidden;
}
.book-services p {
  font-size: 14px;
}
.book-services h4 {
  font-size: var(--fs-18);
  font-weight: var(--fw-bold);
  margin-bottom: 3px;
}
.book-services .btn-outline-danger {
  margin: auto;
  text-align: center;
  border: 1px solid #dfdfdf;
  padding: 5px 20px;
  color: var(--black);
  background: #dfdfdf;
  margin-bottom: 15px;
  font-size: var(--fs-14);
}
.book-services .btn-outline-danger:hover,
.book-services .btn-outline-danger:active,
.book-services :not(.btn-check) + .btn:active {
  background-color: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}
.book-services span {
  background: var(--accent);
  border-radius: 5px;
  padding: 3px 7px;
  font-size: 12px;
  color: #fff;
  display: inline-block;
  margin-bottom: 6px;
}
.book-services span i {
  font-size: 10px;
}

/* slider prev/next icons for icon-change */
.icon-change .slick-slide {
  margin: 0 5px;
}
.icon-change .slick-list {
  margin: 0;
}
.icon-change .slick-prev:before,
.icon-change .slick-next:before {
  content: '\f061';
  width: 26px;
  height: 26px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: var(--white);
  border: 1px solid var(--blue);
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  position: absolute;
  margin: 0 auto;
  right: 0;
  left: 0;
}
.icon-change .slick-prev:before {
  content: '\f060';
}
.icon-change .slick-prev,
.icon-change .slick-next {
  top: 0 !important;
  bottom: 0 !important;
  background: var(--white);
  width: 40px;
  height: 100%;
  right: -5px;
  border: 0;
  border-radius: 0;
  transform: inherit;
}
.icon-change .slick-prev {
  left: -5px;
  z-index: 9;
}
.icon-change .slick-prev.slick-disabled,
.icon-change .slick-next.slick-disabled {
  display: none !important;
}

/* overlay for active book-services */
.book-services-box .overlay-box {
  height: 100%;
  width: 100%;
  transition: 0.3s ease;
  background-color: var(--bg-blue);
  padding: 20px;
  color: #fff;
}
.overlay-box .btn-outline-danger {
  background: var(--accent);
  color: #fff;
  margin: 18px 0 0;
  font-weight: 400;
  padding: 6px 20px;
  font-size: 14px;
}
.book-services-box .overlay-box p {
  color: #fff;
  font-size: var(--fs-18);
  font-weight: var(--fw-bold);
  padding: 42px 4px 9px;
  letter-spacing: 0.5px;
}

/* .active state */
.book-services-box.active {
  border: 1px solid var(--blue);
}

/* ----------------------------
   Date box and book action
   ---------------------------- */
.date-box a {
  border-radius: 30px;
  border: 1px solid #cccccc;
  padding: 8px 20px;
  text-align: center;
  color: #636363;
  display: block;
  text-decoration: none;
  font-size: var(--fs-14);
}
.date-box a.active,
.date-box a:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.box-book {
  display: flex;
  justify-content: space-between;
  background-color: #e8e8e8;
  border-radius: 5px;
  font-size: var(--fs-16);
  color: var(--black);
  padding: 10px 20px;
  align-items: center;
  margin-top: 40px;
}
.box-book:hover,
.box-book:hover i {
  color: var(--primary);
  cursor: pointer;
}
.box-book i {
  color: #6d6d6d;
  font-size: var(--fs-20);
}

/* ----------------------------
   Modal / misc UI
   ---------------------------- */
.modal-header .btn-close {
  color: var(--blue);
  border-radius: 0;
  opacity: 1;
  font-size: var(--fs-24);
  background: transparent;
  height: auto;
  padding: 0;
  line-height: 20px;
  padding-right: 8px;
}
.modal-title {
  font-size: var(--fs-18);
  font-weight: var(--fw-bold);
}

/* heading-services */
.heading-services {
  font-size: var(--fs-18);
  font-weight: var(--fw-bold);
  margin-bottom: 15px;
}

/* back to page */
.backtoPage {
  display: flex;
  gap: 10px;
  align-items: center;
}
.backtoPage h1,
.backtoPage i {
  font-size: var(--fs-24);
  font-weight: var(--fw-bold);
  color: var(--blue);
}
.backtoPage h1 {
  color: #4e4e4e;
  margin: 0;
}
.backtoPage .fa-arrow-left {
  cursor: pointer;
}

/* booking tabs */
.bookingTabs .tab-pane {
  padding: 20px 20px 0 20px;
}
.booking-nav-tabs {
  display: flex;
  padding: 0;
  gap: 20px;
}
.tabborder {
  border: 1px solid #e2e2e2;
}
.booking-nav-tabs li {
  list-style: none;
  width: 50%;
  text-align: center;
}
.booking-nav-tabs li button {
  display: block;
  width: 100%;
  padding: 15px;
  background: #f5f5f5;
  border-radius: 20px 20px 0 0;
  border: 0;
}
.booking-nav-tabs li button.active {
  background-color: var(--bg-blue);
  color: #fff;
}

/* ----------------------------
   History & details list
   ---------------------------- */
.history-card {
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 20px;
  height: auto;
}
.history-card-title {
  font-size: var(--fs-20);
  font-weight: var(--fw-bold);
  padding: 20px 28px;
}
.history-card-content {
  padding: 15px 28px;
}

.DetailsUl {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.DetailsUl li {
  width: 50%;
  list-style: none;
  margin-bottom: 15px;
}
.DetailsUl li small {
  display: block;
  color: var(--muted);
  font-size: var(--fs-14);
}
.DetailsUl li span {
  color: var(--black);
}
.DetailsUl.PriceDetails li {
  width: 100%;
  display: flex;
  gap: 10px;
}
.DetailsUl.PriceDetails li small {
  min-width: 30%;
}

/* user image */
.userimg {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  object-fit: cover;
  overflow: hidden;
}

/* certificate icon */
.fa-certificate {
  color: var(--bg-blue);
}

/* view more */
.view-more-history {
  color: var(--blue);
  text-decoration: none;
}
.view-more-history:hover {
  text-decoration: underline;
  color: var(--blue);
}

/* ----------------------------
   Thank you box & misc
   ---------------------------- */
.thankubox {
  background: #f6faff;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 5px;
  text-align: center;
  margin-top: 20px;
}
.thankubox img {
  max-width: 155px;
}
.thankubox h2 {
  color: #5c8a00;
  font-size: var(--fs-24);
  font-weight: var(--fw-bold);
}
.thankubox p {
  color: var(--muted);
  font-size: var(--fs-18);
  margin-bottom: 0;
}

/* ----------------------------
   Form-group helpers
   ---------------------------- */
.form-group {
  position: relative;
}
.apply-btn {
  position: absolute;
  right: 0;
  top: 0;
  padding: 13px 15px;
}

/* offer list */
.offer-list ul {
  display: flex;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  gap: 12px;
}
.offer-list ul li {
  width: 100%;
  border: 2px dashed #ccc;
  padding: 10px 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.offer-image {
  width: 32px;
  min-width: 32px;
  background-color: var(--accent);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.offer-image span {
  transform: rotate(270deg);
  display: block;
  padding: 36px 0;
  color: #fff;
}
.offer-list ul li h5 {
  margin: 0;
  font-weight: 500;
  font-size: 1rem;
}
.offer-prc {
  color: green;
}
.offer-list-cont {
  flex-grow: 1;
  padding-left: 15px;
}
.offer-list-cont p {
  margin: 0;
}
.apply-link a {
  text-decoration: none;
  color: var(--accent);
}
.apply-link a:hover {
  color: var(--blue);
}

/* ----------------------------
   Checkout page
   ---------------------------- */
.checkout-page {
  padding: 30px 0;
}
.checkout-step {
  padding-top: 30px;
}
.checkout-service-details {
  background-color: #f5f5f5;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 20px;
}
.checkout-service-details h4 {
  font-size: 18px;
  font-weight: var(--fw-bold);
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.checkout-service-details ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.checkout-service-details ul li {
  display: flex;
  width: 100%;
  padding-bottom: 15px;
}
.checkout-service-details ul li:last-child {
  padding-bottom: 0;
}
.checkout-service-details ul li .checkout-service-image {
  width: 100px;
  display: inline-block;
  vertical-align: top;
  border-radius: 5px;
  overflow: hidden;
}
.checkout-service-cont {
  padding-left: 15px;
}
.checkout-service-cont h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
}
.checkout-service-date {
  color: var(--muted);
  font-size: 14px;
}

/* steps column */
.steps-column {
  background: #fff;
  border: 1px solid #ebebeb;
  padding: 15px 20px;
  border-radius: 5px;
  margin-bottom: 15px;
}
.steps-column h3 {
  font-size: 18px;
  font-weight: var(--fw-bold);
  margin: 0;
  display: flex;
  width: 100%;
  align-items: center;
}
.steps-column h3 i {
  width: 36px;
  height: 36px;
  background-color: #e1e1e1;
  color: #898989;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 16px;
}
.step-address {
  display: flex;
  width: 100%;
}
.steps-column-left {
  flex-grow: 1;
}

/* select address */
.select-address {
  padding-left: 50px;
  color: var(--muted);
  font-size: 14px;
}

/* edit/add address */
.edit-btn {
  padding: 4px 15px;
  font-size: 14px;
}
.add-address {
  text-decoration: none;
}
.add-address-sec {
  border-top: 1px solid #ebebeb;
  margin-top: 20px;
  padding-top: 10px;
}

/* ----------------------------
   Radio button custom
   ---------------------------- */
.radio-button-container {
  color: rgba(0, 0, 0, 0.75);
  display: block;
  position: relative;
  padding-left: 40px;
  line-height: 25px;
  margin-top: 12px;
  cursor: pointer;
  font-size: 18px;
  user-select: none;
}
.radio-button-container h6 {
  font-weight: var(--fw-bold);
  margin: 0;
}
.radio-button-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 21px;
  width: 21px;
  background: transparent;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}
.radio-button-container:hover input ~ .checkmark {
  border-color: rgba(0, 0, 0, 0.5);
}
.radio-button-container input:checked ~ .checkmark {
  border-color: #000;
}
.checkmark::after {
  content: '';
  position: absolute;
  display: none;
  top: 2px;
  left: 2px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #000;
}
.radio-button-container input:checked ~ .checkmark::after {
  display: block;
}

/* ----------------------------
   Payment options list
   ---------------------------- */
.pay-option-sec {
  padding-top: 10px;
}
.payment-option a {
  border-bottom: 1px solid #dee2e6;
  padding: 10px 0 10px 2px;
  border-radius: 3px;
  margin: 5px 0;
  display: flex;
  width: 100%;
  text-decoration: none;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}
.payment-option a:hover {
  color: var(--blue);
}
.payment-option a span i {
  margin-right: 10px;
}
.payment-option:last-child a {
  border-bottom: none;
}

/* ----------------------------
   Misc components
   ---------------------------- */
.contact-info {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 20px;
  border-radius: 5px;
}
.contact-icon {
  background-color: var(--primary);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 10px;
}
.contact-form .form-group {
  padding-bottom: 20px;
}
.contact-right {
  border-radius: 30px;
  overflow: hidden;
}
.map-area {
  width: 100%;
  display: inline-block;
}
.map-area img {
  width: 100%;
}

/* AED icon & prices */
.aed-icon {
  width: 20px;
  margin-right: 8px;
}
.old-price {
  text-decoration: line-through;
  color: var(--muted);
  margin-left: 5px;
  font-weight: normal;
}
.popup-aed-price {
  color: var(--blue);
}

/* duration */
.duration-time {
  color: var(--muted);
  padding: 5px 0 15px;
}
.duration-time label {
  color: var(--black);
}

/* productlist popup & banner */
.productlist-popup ul {
  padding: 0 0 15px 20px;
  color: var(--muted);
}
.productlist-banner {
  border-radius: 5px;
  overflow: hidden;
}

/* services-filter background duplicate removed - defined earlier */

/* ----------------------------
   Small interactions and hover states
   ---------------------------- */
i.fa-solid.fa-circle-xmark:hover {
  opacity: 0.8;
}
.booknow {
  padding-top: 36px;
  max-width: 270px;
}
.booknow .btn {
  display: block;
}

/* ----------------------------
   History details & lists
   ---------------------------- */
.historyDeatils {
  margin-bottom: 0;
  margin: 0 -10px;
}
.historyDeatils li {
  margin-bottom: 20px;
  padding: 0 10px;
}

/* ----------------------------
   Offer & apply link
   ---------------------------- */
.apply-link a {
  text-decoration: none;
  color: var(--accent);
}
.apply-link a:hover {
  color: var(--blue);
}

/* ----------------------------
   Scroll / slick minor adjustments preserved
   ---------------------------- */
.slick-track {
  margin-left: 0;
}
.icon-change .slick-prev.slick-disabled,
.icon-change .slick-next.slick-disabled {
  display: none !important;
}

/* End of optimized & DRY CSS */
/* profile css start here */

/* Page-level parent */
.profile-page {
  color: var(--black);
  background: #fff;
  padding: 30px 0 60px 0;
}

/* HERO / banner area (parent scoped) */
.profile-page .profile-hero {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.profile-page .profile-hero .hero-title {
  font-size: var(--fs-30);
  font-weight: 700;
  color: #111;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.profile-page .profile-hero .hero-img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* breadcrumb row */
.profile-page .breadcrumb-row {
  margin-top: 8px;
  margin-bottom: 20px;
  color: var(--gray);
  font-size: 14px;
}
.profile-page .breadcrumb-row a {
  text-decoration: none;
}

/* layout: sidebar + content  (parent scoped) */
.profile-page .account-wrap {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.profile-page .sidebar {
  width: 270px;
  background: #fff;
  border-radius: 5px;
  padding: 15px 0px;
  box-shadow: 0px 0px 6px #00000029;
}
.profile-page .sidebar .nav-link {
  color: #4b5563;
  padding: 10px 6px 10px 15px;
  display: flex;
  gap: 12px;
  align-items: center;
  border-left: 4px solid transparent;
}
.profile-page .sidebar .nav-link.active,
.profile-page .sidebar .nav-link:hover {
  color: var(--blue);
  border-left-color: var(--blue);
  background: rgba(67, 135, 194, 0.03);
}
.profile-page .sidebar .nav-link i {
  width: 22px;
  text-align: center;
  color: var(--gray);
}

/* content area */
.profile-page .content {
  flex: 1;
  min-width: 0;
  width: 100%;
}
.profile-page .card-panel {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

/* form grid inside content (parent-scoped) */
.profile-page .profile-form .form-label {
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}
.profile-page .profile-form .form-control {
  border: 1px solid var(--border);
  border-radius: 8px;
  height: 48px;
  background: #fff;
}
.profile-page .profile-form .select-gender {
  height: 48px;
  padding-right: 34px;
}

.profile-page .profile-form .save-btn {
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  padding: 8px 28px;
  border: 0;
}

/* spacing for rows */
.profile-page .field-row {
  margin-bottom: 20px;
  position: relative;
}

#record_form label small {
  color: #f00;
}

.error-message {
  font-size: 12px;
  color: #f00;
  position: absolute;
  top: 100%;
  left: 12px;
}

/* small helper text color */
.profile-page .muted {
  color: var(--gray);
  font-size: 14px;
}

/* make inputs placeholder color muted */
.profile-page .form-control::placeholder {
  color: #bdbdbd;
}

.profile-page .address-card-wrapper {
  display: block; /* make label fill column */
  cursor: pointer;
  position: relative;
}

/* hide native outline on wrapper but keep focusable control visible via radio */
.profile-page .address-card-wrapper:focus {
  outline: none;
}

/* the actual radio input - placed before .card-inner in DOM to use sibling selector */
.profile-page .address-card-wrapper .address-radio {
  position: absolute;
  left: 13px;
  top: 20px;
  z-index: 2;
  width: 18px;
  height: 18px;
  margin: 0;
}

/* card-inner holds visible border/background */
.profile-page .address-card-wrapper .card-inner {
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  padding-left: 48px; /* space to visually account for radio on left */
  border-color: #e6e6e6;
  background: var(--white);
}

/* change visual when radio is checked (CSS-only) */
.profile-page .address-card-wrapper .address-radio:checked + .card-inner {
  border-color: var(--blue) !important;
  box-shadow: 0 6px 18px rgba(67, 135, 194, 0.08);
}

/* hover state for better affordance */
.profile-page .address-card-wrapper:hover .card-inner {
  border-color: rgba(0, 0, 0, 0.12);
}

/* make sure clickable anchors remain visible and styled */
.profile-page .address-card-wrapper .card-inner a {
  z-index: 3;
  position: relative;
}

/* Scoped to your page container */
.profile-page .transactions-balance {
  background-clip: padding-box;
}

/* table header rounded corners fix on small screens */
.profile-page .table thead th {
  padding: 0.75rem 1rem;
  font-weight: 600;
}

.profile-page .table tbody td {
  padding: 0.5rem 1rem;
  vertical-align: middle;
  color: #222;
}

/* badges: using your variables for text colors and subtle bg shades */
.profile-page .tx-badge {
  display: inline-block;
  padding: 0.28rem 0.6rem;
  border-radius: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.profile-page .tx-badge.badge-success {
  color: var(--text-success);
  background: #e6f4e7; /* light green */
}
.profile-page .tx-badge.badge-decline {
  color: var(--text-danger);
  background: #ffeaea; /* light red */
}
.profile-page .tx-badge.badge-progress {
  color: var(--text-warning);
  background: #fff2d6; /* light yellow */
}

/* subtle row separators handled by table row borders — ensure no heavy default borders */
.profile-page .table {
  border-collapse: separate;
  border-spacing: 0;
}
.profile-page .table tbody tr + tr td {
  border-top: 1px solid #eaeaea;
}

/* responsive: allow table to scroll horizontally if needed */
.profile-page .table-responsive {
  overflow-x: auto;
}

/* small visual tweak for balance block (use the variables) */
.profile-page .transactions-balance {
  background: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.balance-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  padding: 20px 25px;
  background-color: #fff4df;
  margin-bottom: 30px;
}
.balance-banner .balance-figure {
  display: flex;
  flex-direction: column;
  color: #ffa900;
}
.balance-banner .balance-label {
  font-size: 16px;
  line-height: normal;
}
.balance-banner .balance-amount {
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

.referral-invite-banner {
  width: 100%;
  background-image: url(../images/referrals-banner-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10px 30px 10px 180px;
  min-height: 150px;
  position: relative;
  border-radius: 5px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.referral-invite-banner:before {
  position: absolute;
  content: '';
  width: 101px;
  height: 99px;
  background-image: url(../images/referrals-banner-bg-left.png);
  background-repeat: no-repeat;
  background-size: 100%;
  left: 45px;
  top: 50%;
  transform: translateY(-50%);
}
.referral-invite-banner:after {
  position: absolute;
  content: '';
  width: 88px;
  height: 102px;
  background-image: url(../images/referrals-banner-bg-right.png);
  background-repeat: no-repeat;
  background-size: 100%;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
}
.referral-invite-banner .referral-invite-tex {
  position: relative;
  z-index: 99;
}
.referral-invite-banner .referral-invite-text h2 {
  padding: 0;
  margin: 0;
  color: var(--primary);
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
}
.referral-invite-banner .referral-invite-text h2 strong {
  font-weight: 700;
}

.referral-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.referral-steps-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.referral-steps-card .card-image {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 82px;
  background-color: rgba(67, 135, 194, 0.15);
  margin-bottom: 20px;
}
.referral-steps-card .card-image img {
  width: 33px;
  height: auto;
}
.referral-steps-card .card-body {
  display: flex;
  flex-direction: column;
}
.referral-steps-card .card-title {
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 19px;
  font-weight: 700;
}
.referral-steps-card .card-text {
  font-size: 16px;
  color: #5f6368;
  margin-top: auto;
}
.referral-step-arrow {
  padding: 15px;
}
.referral-step-arrow img {
  width: 120px;
  top: 25px;
  position: relative;
}

.referral-share {
  border: solid 1px #cccccc;
  border-radius: 10px;
  padding: 22px;
  margin-top: 10px;
}
.referral-share h3 {
  padding: 0;
  margin: 0 0 5px 0;
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
}

.referral-link-box {
  background-color: #f2f6ff;
  border-radius: 30px;
  padding: 13px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.referral-link-box .referral-link-text {
  color: #959595;
  padding-right: 10px;
  word-break: break-all;
}
.referral-link-btn {
  text-decoration: none;
  white-space: nowrap;
}

.help-text-banner {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
}
.help-text-banner .banner-text {
  padding: 0 20px 0 0;
}
.help-text-banner .banner-action {
  white-space: nowrap;
}

.custom-accordion .accordion-item {
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: solid 1px #cccccc;
}
.custom-accordion .accordion-button {
  padding: 15px 0;
  font-size: 18px;
  font-weight: 700;
}
.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: transparent;
  box-shadow: none;
  font-size: 18px;
  font-weight: 700;
}
.custom-accordion .accordion-body {
  padding: 0 0 15px 0;
}
.custom-accordion .accordion-button::after {
  width: auto;
  height: auto;
  content: '+';
  background-image: none;
  background-repeat: no-repeat;
  background-size: unset;
  color: #4a4a4a;
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
}
.custom-accordion .accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: none;
  content: '-';
  color: var(--primary);
  font-size: 40px;
}
/* Small custom alert like screenshot */
.swal2-popup.small-alert {
  width: 260px !important;
  padding: 12px !important;
  border-radius: 16px !important;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15) !important;
}

.swal2-title {
  font-size: 15px !important;
  font-weight: 500 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.swal2-html-container {
  font-size: 13px !important;
  margin-top: 4px !important;
}

.swal2-icon {
  margin: 0 10px 0 0 !important;
  width: 28px !important;
  height: 28px !important;
}

.swal2-toast {
  border-radius: 16px !important;
}
/* Custom small alert like your UI */
.swal2-popup.small-alert {
  width: 350px !important;
  padding: 12px !important;
  border-radius: 16px !important;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Hide default SweetAlert icon */
.swal2-icon {
  display: none !important;
}

/* Custom icon container */
.custom-alert {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
  margin-right: 10px;
}

.custom-error {
  background: #ff4d4d; /* red circle */
}

.custom-success {
  background: #53c12f; /* green circle */
}

/* Title style */
.swal2-title {
  font-size: 15px !important;
  font-weight: 500 !important;
  padding-left: 5px !important;
}

/* Flex layout for icon + text */
.custom-alert-wrapper {
  display: flex;
}
.custom-alert-wrapper h3 {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  margin-bottom: 4px;
}
.swal2-title {
  font-size: 13px !important;
  padding: 0 !important;
}
.swal2-border-radius {
  border-radius: 5px !important;
}
.swal-progress-green {
  background-color: #28a745 !important; /* your color */
}
.swal-progress-red {
  background-color: #dc3545 !important; /* your color */
}

.swal2-timer-progress-bar {
  border-radius: 5px !important;
}
.swal2-container {
  padding-top: 10px !important;
}
.login_mobile {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #ccc;
  font-size: 16px;
  padding-top: 4px;
}

.login_mobile:focus {
  outline: 0;
  box-shadow: none;
  border-bottom: 1px solid #ccc;
}

#loginModal,
#otpModal p {
  color: #000 !important;
}
.otp-modal {
  border-radius: 14px;
  padding-bottom: 10px;
}

/* OTP Boxes */
.otp-box {
  width: 55px;
  height: 55px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  font-size: 24px;
  text-align: center;
  outline: none;
}

/* WhatsApp / SMS Buttons */
.btn-success-light {
  background: #e7f8ef;
  color: #1f9c5a;
  border-radius: 20px;
  font-weight: 600;
  padding: 6px 18px;
  border: none;
}

.btn-outline-info-light {
  background: #f3f8ff;
  color: #4d8cd8;
  border-radius: 20px;
  font-weight: 600;
  padding: 6px 18px;
  border: none;
}

.btn-success-light.active {
  background: #1f9c5a;
  color: white;
}

/* Verify button */
.verify-btn {
  background: #ffe9a9;
  color: #9a8b62;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 0;
  border: none;
}

.login_process {
  padding: 15px 0 !important;
}
.login_process:disabled {
  background: #5da9e5c4;
  border-color: #5da9e5c4;
}
.login_process:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

#resendOtp,
#resendOtp a {
  text-decoration: underline;
  color: var(--black) !important;
  font-size: 12px !important;
}

#resendOtp a:hover {
  text-decoration: underline;
  color: var(--black) !important;
}
.h-profile-icon {
  display: flex;
  align-items: center;
}
.h-profile-icon i {
  font-size: 24px;
  margin-right: 10px;
}
.user-login .dropdown-toggle {
  white-space: nowrap;
  display: flex;
  align-items: center;
  text-decoration: none;
  border: 1px solid #e3e3e3;
  padding: 7px 15px;
  border-radius: 40px;
}
.user-login .dropdown-menu[data-bs-popper] {
  left: auto;
  right: 0;
  min-width: 190px;
  margin: 0;
  padding: 5px 0;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
  border-color: #efefef;
}
.user-login a:focus {
  outline: none;
  outline-offset: 0;
}

.user-login .dropdown-menu .nav-link {
  color: #4b5563;
  padding: 8px 6px 8px 15px;
  display: flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid #efefef;
  font-size: 14px;
}
.user-login .dropdown-menu .nav-link:hover {
  background: rgba(67, 135, 194, 0.03);
  color: var(--blue);
}

.booking-card {
  min-height: 290px;
}

.currency-symbol {
  font-family: CurrencySymbols;
}

.form-control:focus {
  box-shadow: none !important;
  outline: none !important;
}

.popup-form-filed .form-control {
  height: 44px;
}

.date-month-listing {
  padding: 0;
  margin: 0;
  display: inline-block;
  width: 100%;
}

.date-month-listing .date-month-listin-cont {
  background-color: var(--white);
  padding: 5px 10px;
  border-radius: 5px;
  list-style-type: none;
  text-align: center;
  color: var(--black);
  border: 1px solid var(--blue);
  cursor: pointer;
}
.date-month-listing .date-month-listin-cont.active,
.date-month-listing .date-month-listin-cont:hover {
  background-color: var(--blue);
  color: var(--white);
}

.booking-date {
  display: block;
  font-size: 14px;
  line-height: normal;
}
.frequency-slider {
}
.frequency-slider > div {
  margin-right: 10px;
  display: inline-block;
}
.frequency-slide-show .slick-list {
  /*padding-left: 30px;*/
  display: block;
}

.locationmap {
  position: relative;
}
.locationmap-search {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 10px;
  z-index: 1;
}
.quantity {
  display: flex;
}
.quantity button {
  border: none;
  background-color: var(--blue);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 5px;
}
.quantity .input-box {
  border: 1px solid #ccc;
  text-align: center;
  padding: 0;
  width: 50px;
}

.quantity strong {
  padding: 5px 9px;
  font-size: 14px;
}

button:disabled {
  background: #5da9e5c4 !important;
  border-color: #5da9e5c4 !important;
  cursor: not-allowed !important;
}

#mapWrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

#map {
  width: 100%;
  height: 500px;
}

/* Fixed Marker */
.center-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 999;
  pointer-events: none;
}

/* Pin */
.center-marker img {
  width: 40px;
  height: 60px;
}
