* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
}

.main-container {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  background-color: white;
}

@media (max-width: 768px) {
  .main-container {
      padding-bottom: 96px;
  }
}

/* Top Header */
.top-header {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 80px;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  color: white;
  background-color: #1d4ed8;
}

@media (max-width: 768px) {
  .top-header {
      padding: 8px 20px;
      max-width: 100%;
  }
}

.list-product-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 6px 8px;
  margin-left: 48px;
  max-width: 100%;
  background-color: #fb923c;
  border-radius: 4px;
  width: 189px;
}

@media (max-width: 768px) {
  .list-product-button {
      padding-right: 20px;
  }
}

/* Navigation */
.navigation {
  display: flex;
  z-index: 10;
  gap: 40px;
  align-items: center;
  align-self: flex-end;
  margin-top: 10px;
  margin-right: 128px;
  max-width: 100%;
  color: black;
  width: 469px;
}

@media (max-width: 768px) {
  .navigation {
      margin-right: 10px;
  }
}

.nav-item {
  align-self: stretch;
  margin: auto 0;
  font-size: 18px;
  font-weight: 500;
}

.nav-item:nth-child(2) {
  flex-grow: 1;
  flex-shrink: 1;
  width: 85px;
}

.login-section {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  color: white;
}

.login-number {
  align-self: center;
  font-size: 18px;
  font-weight: 600;
}

.login-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 12px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 32px;
  background-color: #fb923c;
  border-radius: 4px;
  border: 1px solid #fb923c;
}

.login-content {
  display: flex;
  gap: 4px;
  align-items: center;
}

.login-icon {
  object-fit: contain;
  flex-shrink: 0;
  align-self: stretch;
  margin: auto 0;
  width: 28px;
  aspect-ratio: 1;
}

.login-text {
  align-self: stretch;
  margin: auto 0;
  width: 123px;
}

/* Main Logo */
.main-logo {
  object-fit: contain;
  z-index: 10;
  margin-top: 0;
  margin-left: 128px;
  max-width: 100%;
  aspect-ratio: 2.38;
  width: 107px;
}

@media (max-width: 768px) {
  .main-logo {
      margin-left: 10px;
  }
}

/* Header Section */
.header-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  align-self: flex-start;
  margin-top: 0;
}

@media (max-width: 768px) {
  .header-section {
      max-width: 100%;
  }
}

.header-left {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  align-self: stretch;
  margin: auto 0;
  min-width: 240px;
}

@media (max-width: 768px) {
  .header-left {
      max-width: 100%;
  }
}

.logo-placeholder {
  display: flex;
  flex-shrink: 0;
  height: 24px;
  width: 118px;
}

.header-nav {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  min-width: 240px;
}

.header-nav-item {
  display: flex;
  flex-shrink: 0;
  height: 24px;
  width: 66px;
}

.header-nav-item-small {
  display: flex;
  flex-shrink: 0;
  width: 48px;
  height: 24px;
}

.header-nav-item-medium {
  display: flex;
  flex-shrink: 0;
  height: 24px;
  width: 61px;
}

.cart-section {
  display: flex;
  gap: 24px;
  align-items: center;
  align-self: stretch;
  margin: auto 0;
  width: 32px;
}

.cart-icon {
  display: flex;
  align-self: stretch;
  margin: auto 0;
  width: 32px;
  min-height: 32px;
}

/* Select Location */
.select-location {
  z-index: 10;
  align-self: center;
  margin-top: -28px;
  margin-left: 16px;
  font-size: 18px;
  font-weight: 500;
  color: black;
}

.location-icon {
  object-fit: contain;
  align-self: center;
  margin-top: 0;
  aspect-ratio: 1;
  width: 35px;
}

/* Main Content */
.main-content {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  width: 100%;
}

@media (max-width: 768px) {
  .main-content {
      max-width: 100%;
  }
}

.divider {
  width: 100%;
  background-color: black;
  border: 0.2px solid black;
  opacity: 0.3;
  min-height: 1px;
}

@media (max-width: 768px) {
  .divider {
      max-width: 100%;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: flex-end;
  margin-top: 24px;
  width: 100%;
  max-width: 1310px;
}

@media (max-width: 768px) {
  .content-wrapper {
      max-width: 100%;
  }
}

/* Hero Section */
.hero-section {
  align-self: stretch;
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .hero-section {
      max-width: 100%;
      flex-direction: column;
  }
}

.hero-left {
  width: 66%;
}

@media (max-width: 768px) {
  .hero-left {
      margin-left: 0;
      width: 100%;
  }
}

.hero-image {
  object-fit: contain;
  flex-grow: 1;
  width: 100%;
  aspect-ratio: 2.23;
}

@media (max-width: 768px) {
  .hero-image {
      margin-top: 24px;
      max-width: 100%;
  }
}

.hero-right {
  margin-left: 20px;
  width: 34%;
}

@media (max-width: 768px) {
  .hero-right {
      margin-left: 0;
      width: 100%;
  }
}

.hero-placeholder {
  display: flex;
  flex-shrink: 0;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 8px;
  background-color: #f4f4f5;
  height: 379px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  width: 437px;
}

@media (max-width: 768px) {
  .hero-placeholder {
      margin-top: 24px;
  }
}

/* Features Section */
.features-section {
  display: flex;
  flex-wrap: wrap;
  gap: 155px;
  padding: 14px 8px 14px 24px;
  margin-top: 40px;
  background-color: #dbeafe;
  border-radius: 8px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .features-section {
      padding-left: 20px;
  }
}

.feature-item {
  display: flex;
  gap: 14px;
}

.feature-item:last-child {
  gap: 12px;
}

.scroll-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.features-scroll {
  overflow: hidden;
  width: 100%;
}

.scroll-inner {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scroll-left 10s linear infinite;
}

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

.feature-item {
  flex: 0 0 auto;
}


.feature-icon-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4px;
  border-radius: 50%;
  background-color: rgba(96, 165, 250, 0.6);
  height: 39px;
  width: 39px;
}

.feature-icon-wrapper-blue {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4px;
  border-radius: 50%;
  background-color: rgba(96, 165, 250, 0.6);
  height: 39px;
  width: 39px;
}

.feature-icon-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4px;
  background-color: #1d4ed8;
  border-radius: 50%;
  height: 33px;
  width: 33px;
}

.feature-icon {
  object-fit: contain;
  aspect-ratio: 1;
  width: 25px;
}

.feature-icon-small {
  object-fit: contain;
  aspect-ratio: 1;
  width: 25px;
}

.feature-text {
  margin: auto 0;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: black;
  flex-basis: auto;
}

/* List Product Section */
.list-product-section {
  display: flex;
  gap: 20px;
  margin-top: 45px;
  max-width: 100%;
  width: 337px;
}

@media (max-width: 768px) {
  .list-product-section {
      margin-left: 6px;
  }
}

.section-indicator {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Adjust the bar (vertical/side bar) */
.indicator-bar {
  align-self: stretch;
  margin: auto 0;
  width: 20px;
  padding-top: 16px;
  background-color: #1d4ed8;
  border-radius: 2px;
}

/* The inner block beside the bar */
.indicator-inner {
  display: flex;
  z-index: 10;
  flex-shrink: 0;
  margin-bottom: -10px;
  background-color: #1d4ed8;
  border-radius: 2px;
  height: 33px;
}

/* Responsive tweaks for tablets and below */
@media (max-width: 768px) {
  .section-indicator {
      gap: 10px;
  }

  .indicator-bar {
      width: 14px;
      padding-top: 12px;
  }

  .indicator-inner {
      height: 24px;
      margin-bottom: -6px;
  }
}

/* Responsive tweaks for mobile phones */
@media (max-width: 480px) {
  .section-indicator {
      gap: 8px;
  }

  .indicator-bar {
      width: 10px;
      padding-top: 10px;
  }

  .indicator-inner {
      height: 20px;
      margin-bottom: -4px;
  }
}

.responsive-margin-top {
  margin-top: 50px; /* default for desktop */
}

/* Tablet screens */
@media (max-width: 768px) {
  .responsive-margin-top {
    margin-top: 30px;
  }
}

/* Mobile screens */
@media (max-width: 480px) {
  .responsive-margin-top {
    margin-top: 20px;
  }
}


.section-title {
  margin-top:8px;
  flex: 1 1 auto;
  align-self: flex-start;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 40px;
  color: black;
  width: 294px;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
    line-height: 34px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
    line-height: 28px;
    width: 100%;
    text-align: left; /* or center, depending on design */
  }
}

.title-highlight {
  font-weight: 600;
  color: #0e57da;
}

.more-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  width: 100%;
  margin: 40px auto 0;
  padding: 0 16px;
  box-sizing: border-box;
}

.category-card {
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #dbeafe;
  border-radius: 16px;
  transition: transform 0.2s ease;
  height: 100%;
  cursor: pointer;
}

.category-card:hover {
  transform: scale(1.03);
}

.category-card-image {
  width: 100%;
  max-width: 140px;
  aspect-ratio: 1;
  object-fit: contain;
  margin-bottom: 8px;
}

.category-label {
  font-size: 14px;
  text-align: center;
  line-height: 1.3;
  color: #000;
  white-space: normal;
  overflow-wrap: break-word;
}

@media (max-width: 480px) {
  .more-categories {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row on mobile */
    gap: 16px;
    padding: 0 12px;
  }

  .category-card {
    padding: 12px;
    border-radius: 8px;
  }
}
/* List Product Button Section */
.list-your-service-wrapper {
  margin-top: 70px;
  margin-bottom: 40px;
}

.horizontal-divider {
  position: relative;
  width: 100%;
  height: 3px;
  background-color: #d4d4d4; /* thin grey line */
}

.list-product-button-section {
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translateY(-50%);
  background-color: white; /* matches background to hide line behind */
  padding: 0 10px;
}

.list-product-btn {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 16px 40px;
  background-color: #1d4ed8; /* use your purple */
  color: white;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .list-product-button-section {
      position: static;
      transform: none;
      display: flex;
      justify-content: center;
      margin-top: 20px;
  }

  .horizontal-divider {
      height: auto;
      background-color: transparent;
  }
}


.btn-text {
  align-self: stretch;
  margin: auto 0;
  color: #fafafa;
}

/* Service Section */
.service-section {
  align-self: center;
  margin-top: 80px;
  width: 100%;
  max-width: 1187px;
}

@media (max-width: 768px) {
  .service-section {
      margin-top: 40px;
      max-width: 100%;
  }
}



.service-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 10px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .service-card {
      padding: 80px 20px;
      max-width: 100%;
  }
}

.service-title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: black;
}

.service-description {
  margin-top: 16px;
  font-size: 16px;
  letter-spacing: 0.025em;
  line-height: 24px;
  color: black;
  width: 533px;
}

.service-button {
  display: flex;
  gap: 8px;
  padding: 8px 14px;
  margin-top: 36px;
  text-align: center;
  color: white;
  background-color: #ea580c;
}

.service-btn-text {
  flex-grow: 1;
}

.service-arrow {
  object-fit: contain;
  flex-shrink: 0;
  width: 24px;
  aspect-ratio: 1;
}

/* Service Features */
/* Base desktop/tablet styling */
.service-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  margin-top: 36px;
  width: 100%;
  background-color: #dbeafe;
  border-radius: 8px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  gap: 16px; /* Spacing between items on larger screens */
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 1 auto;
}

.service-feature-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.service-feature-text {
  font-size: 15px;
  font-weight: 500;
  color: #000;
  line-height: 1.3;
}

/* ✅ Add vertical spacing between feature rows on mobile */
@media (max-width: 576px) {
  .service-features {
      flex-direction: column;
      align-items: flex-start;
  }

  .service-feature {
      width: 100%;
      justify-content: flex-start;
      margin-bottom: 12px; /* 👈 This is the missing gap between feature points */
  }

  .service-feature:last-child {
      margin-bottom: 0; /* Removes gap after last item */
  }
}


/* Service Title Section */
.service-title-section {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 56px;
  max-width: 100%;
  width: 327px;
}

@media (max-width: 768px) {
  .service-title-section {
      margin-top: 40px;
  }
}

.service-indicator {
  padding-bottom: 12px;
  margin-top: 16px;
  background-color: #1d4ed8;
  border-radius: 2px;
}

.service-indicator-bar {
  display: flex;
  z-index: 10;
  flex-shrink: 0;
  margin-top: 0;
  height: 40px;
  background-color: #1d4ed8;
  border-radius: 2px;
}

.service-main-title {
  flex: 1 1 auto;
  margin-top:5px;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 40px;
  color: #1d4ed8;
  width: 284px;
}


.service-title-normal {
  font-weight: 500;
  color: black;
}

.peek-banner-container {
  overflow: hidden;
  padding-left: 0; 
  padding-right: 16px;
  position: relative;
}

.peek-banner-track {
  display: flex;
  gap: 12px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.peek-banner-slide {
flex: 0 0 auto;
height: 330px; /* set height as per your design */
border-radius: 12px;
overflow: hidden;
}

.peek-banner-slide img {
height: 100%;
width: auto;
object-fit: contain; /* show full image without cropping */
display: block;
margin: 0 auto; /* center the image horizontally */
}

@media (min-width: 1200px) {
  .peek-banner-slide {
    height: 350px;
  }
}
@media (max-width: 600px) {
  .peek-banner-container {
    overflow: hidden;
    padding: 0; /* no inner side-padding */
  }

  .peek-banner-track {
    display: flex;
    gap: 0; /* eliminate peek */
    transition: transform 0.5s ease-in-out;
  }

  .peek-banner-slide {
    flex: 0 0 100%; /* occupy full width */
    padding: 0;
    height: auto;
    box-sizing: border-box;
  }

  .peek-banner-slide img {
    width: 100%;
    height: auto;
    object-fit: cover; /* fill area, can use contain if needed */
    display: block;
    border-radius: 0; /* optional: remove border-radius if edge-to-edge */
  }
}


.swiper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.swiper-slide {
  width: 100%;
}

.swiper-slide img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

/* Position dots immediately after the image */
.swiper-pagination {
  position: relative;
  bottom: 0;
  text-align: center;
  margin-top: 8px;
}



/* .swiper-slide1 {
  width: 75%; 
  height: 50%;
}

.swiper-slide1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

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

.container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 120px;
  flex-wrap: wrap;
  position: relative;
}

.left-logo-menu {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  width: 100px;
}

.hamburger {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 60px;
  left: 20px;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 6px;
  width: 160px;
  z-index: 999;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: black;
  text-decoration: none;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background-color: #f8a24c;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 500;
}

.location-select {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.location-icon {
  width: 24px;
}

.login-btn {
  display: flex;
  align-items: center;
  gap: 0px;
  background-color: #fb923c;
  /* padding: 6px 6px; */
  border-radius: 6px;
  color: white !important;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.rentit4me-login{
  color: white !important;
  font-weight: 500;
}

.desktop-only-links {
  display: flex;
  gap: 20px;
}
.desktop-only-links a{
  color:black;
}

@media (max-width: 768px) {
  .top-nav {
    padding: 12px 20px;
  }

  .hamburger {
    display: block;
  }

  .desktop-only-links {
    display: none;
  }

  .dropdown-menu.show {
    display: block;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .logo {
    width: 80px; /* smaller logo on very small screens */
  }
  .left-logo-menu {
      width: 100%;
      justify-content: center;
      position: relative;
  }
  
  .left-logo-menu .hamburger {
      position: absolute;
      left: 0;
  }
  .nav-links {
      margin-top: 12px;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }
  
    .login-btn {
      font-size: 12px;
      padding: 4px 8px;
      border-radius: 3px;
      margin-left: auto;
    }
  
    .login-btn .btn {
      font-size: 12px;
      padding: 0;
    }
  
    .location-select span {
      font-size: 13px;
    }
}

/* .plan-wrapper {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 50px;
} */

.plan-card {
  max-width: 550px;
  padding: 32px 28px;
  background: linear-gradient(to bottom, #f8f8fc, #e5e7fb);
  border-radius: 16px;
  box-shadow: 0px 6px 20px #979494;
  text-align: center;
  margin: 0 auto;
  margin-top:50px;
  font-family: 'Segoe UI', sans-serif;
}

.plan-title {
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1e1e1e;
}

.plan-subtext {
  font-size: 17px;
  color: #555;
  margin-bottom: 24px;
}

.plan-price {
  font-size: 36px;
  font-weight: 700;
  color: #155DFC;
  margin-bottom: 24px;
}

.plan-listing {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 24px;
}

.listing-count {
  font-size: 20px;
  font-weight: bold;
  color: #155DFC;
}

.listing-duration {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin-top: 4px;
}

.how-it-works {
  max-width: 1480px;
  margin: 64px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', sans-serif;
}


.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-number {
  color: #155DFC;
  font-size: 35px;
  font-weight: 700;
  margin-right: 8px;
}

.step-item p {
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

}


.plan-features {
  padding: 0;
  text-align: left;
  margin: 0 auto 32px;
  max-width: 300px;
  font-size: 14px;
  color: #444;
}

.plan-features li {
  margin-bottom: 12px;
  line-height: 1.5;
}

.select-plan-btn {
  background-color: #155DFC;
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.select-plan-btn:hover {
  background-color: #0D4EDC;
}


.cta-buttons {
  display: flex;
  gap: 0; /* remove space between buttons */
  position: relative;
}

.product-btn {
  background-color: #fb923c;
  font-weight: 600;
  padding: 8px 16px;
  color: white;
  border: none;
  border-radius: 4px;
  position: relative;
  z-index: 2; /* Ensure it's on top during overlap */
  margin-right: -6px; /* overlap slightly */
}

.service-btn {
  background-color: white;
  color: #0e57da;
  font-weight: 600;
  padding: 8px 16px;
  padding-left: 25px;
  border: none;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0; /* 🔥 important: remove gap on mobile too */
    justify-content: center;
  }

  .product-btn,
  .service-btn {
    font-size: 13px;
    padding: 6px 10px;
    flex: 1 1 auto;
    white-space: nowrap;
  }
  .service-btn{
  padding-left: 20px;
  }
  .product-btn {
    margin-right: -6px; /* 🔥 overlap on small screens too */
  }
}


.faq-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 70px 0;
  gap: 20px;
}

.faq-left {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.4;
  color: #0a0a0a;
  flex: 1 1 300px;
}

.faq-right {
  flex: 2 1 600px;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-weight: 500;
  color: black;
}

.faq-item {
  padding: 16px 0;
  border-bottom: 1px solid #e5e5e5;
  cursor: pointer;
}

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

.faq-answer {
  font-size: 16px;
  color: #52525b;
  margin-top: 12px;
  display: none;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-toggle {
  font-size: 24px;
  font-weight: 400;
}

.faq-more {
  margin-top: 70px;
  max-width: 151px;
}

.faq-more-btn {
  padding: 12px 24px;
  background-color: #f4f4f5;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

a .category-label {
  text-decoration: none;
  color: #000 !important;
}

a {
  text-decoration: none !important;
}

.desktop-banner {
  display: block;
}

.mobile-banner {
  display: none;
}

@media (max-width: 768px) {
  .desktop-banner {
      display: none;
  }

  .mobile-banner {
      display: block;
  }
}


.toast-success {
  background-color: #51A351 !important;
  color: white !important;
}

.toast-error {
  background-color: #BD362F !important;
  color: white !important;
}

.toast-info {
  background-color: #2F96B4 !important;
  color: white !important;
}

.toast-warning {
  background-color: #F89406 !important;
  color: white !important;
}

.toast-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: fixed;
  z-index: 9999;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#user_phone {
  padding-left: 50px !important; /* leaves space for flag */
  height: 48px;
  font-size: 16px;
}

.iti {
  width: 100%;
}

.user-info-modal .modal-content input {
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
}

.modal-content {
  background: linear-gradient(145deg, #f4f7ff, #e2e4f9);
  padding: 30px 24px;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.modal-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.modal-subtext {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

#userDetailsForm input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 15px;
}

.modal-btn {
  background-color: #155DFC;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modal-btn:hover {
  background-color: #0D4EDC;
}

.hidden {
  display: none !important;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}
  
.profile-dropdown-container {
  position: relative;
  display: inline-block;
}

.profile-logo {
  height: 32px;
  width: 32px;
  cursor: pointer;
  border-radius: 50%;
}

.profile-dropdown-menu {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  min-width: 140px;
  z-index: 1000;
  padding: 8px 0;
}

.profile-dropdown-menu a,
.profile-dropdown-menu button {
  display: block;
  width: 100%;
  padding: 8px 16px;
  text-align: left;
  text-decoration: none;
  background: none;
  border: none;
  color: #333;
  font-size: 14px;
  cursor: pointer;
}

.profile-dropdown-menu a:hover {
  background-color: #fb923c;
}

/*
Products Rental listing by customers */
.listing-slider-by-customers h1{
font-size: 16px;
}

.listing-slider-by-customers .product-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 300px;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
  transition: 0.3s;
  }

  .listing-slider-by-customers   .image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  }

.listing-slider-by-customers  .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  }

.listing-slider-by-customers  .icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
  cursor: pointer;
  }

.listing-slider-by-customers  .product-info {
  padding: 15px;
  text-align: center;
  }

.listing-slider-by-customers  .product-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
  }

.listing-slider-by-customers  .product-info p {
  font-size: 16px;
  margin-bottom: 12px;
  }

.listing-slider-by-customers  .price {
  /* color: #ff4f00; */
  font-weight: bold;
  font-size: 18px;
  }

.listing-slider-by-customers  .rent-btn {
  background-color:rgb(245 245 245);
  border: 1px solid black;
  padding: 12px 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s ease;
  transition-duration:0.4s;
  float: right;
  clear: both;
  }

.listing-slider-by-customers  .rent-btn:hover {
  background-color: #1d4ed8;
  color:white;
  border:none;
  }
/* 
  .listing-slider-by-customers .city-loc-slider-listing{
    color:red;
  } */
  .red-color-span{
    color:red;
  }
  /* Responsive */
  @media (max-width: 480px) {
    .listing-slider-by-customers  .rent-btn{
      float: left;
    }
    .listing-slider-by-customers .image-container{
      height:unset;
    }
    .listing-slider-by-customers .image-container img{
      height: 160px;
    }

    .listing-slider-by-customers{
      font-size:14px;
    }
    .listing-slider-by-customers  .product-card {
          width: 90%;
      }

    .listing-slider-by-customers  .product-info h3 {
          font-size: 14px;
      }

    .listing-slider-by-customers  .product-info p {
          font-size: 14px;
      }

    .listing-slider-by-customers  .price {
          font-size: 14px;
          min-height: 28px;
          display: inline-block;
      }

      .services-slider-list .price{
        min-height: 46px;
      }

    .listing-slider-by-customers  .rent-btn {
          padding: 6px 14px;
      }
  }