/* Base Light Mode */
body {
  background-color: #ffffff;
  color: #2c3e50; /* Darker slate blue for better readability */
  padding-top: 80px;
  font-family: 'Poppins', sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 14px;
}
html {
  scroll-behavior: smooth;
}

/* Navbar - light with subtle shadow */
.custom-navbar {
  background: #ffffff;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease;
  z-index: 1030;
  box-shadow: 0 2px 6px rgba(13, 202, 240, 0.15); /* bright teal shadow */
  padding: 1rem 0.5rem;
}
.navbar-dark .navbar-nav .nav-link {
  color: #34495e !important; /* slightly muted blue-gray */
  font-weight: 500;
  transition: color 0.3s ease;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #0dcaf0 !important; /* bright teal */
  font-weight: 700;
  border-bottom: 2px solid #ff6f61; /* coral underline on active */
}

/* Buttons */
.btn-accent {
  background: linear-gradient(135deg, #0dcaf0, #20c997); /* teal to green */
  border: none;
  color: white;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 14px rgba(13, 202, 240, 0.4);
  border-radius: 8px;
  padding: 12px 28px;
}
.btn-accent:hover {
  background: linear-gradient(135deg, #ff6f61, #ff6f61);
  box-shadow: 0 5px 15px rgba(255, 111, 97, 0.5);
  transform: scale(1.08);
  color: white;
}

/* Section spacing */
section {
  padding: 70px 0;
}

/* Banner - light airy with subtle colorful gradient */


/* Footer - vibrant light theme */
footer {
  background-color: #000020!important;
  padding: 50px 20px;
  color: #34495e;
  font-size: 0.95rem;
  border-top: 4px solid #0dcaf0; /* teal accent border */
  transition: background-color 0.3s ease;
}
footer a {
  color: #0dcaf0;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
footer a:hover {
  color: #ff6f61; /* coral */
  text-shadow: 0 0 6px #ff6f61;
}

/* Vendor Dashboard */
#vendor-dashboard .login-section,
#vendor-dashboard .dashboard-section {
  max-width: 420px;
  margin: auto;
  background: #e9f7f9;
  color: #112d4e;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(13, 202, 240, 0.3);
}
#vendor-dashboard h3 {
  margin-bottom: 24px;
  color: #0dcaf0;
}
#bookings-list {
  margin-top: 24px;
  color: #34495e;
}

.text-accent {
  color: #0dcaf0 !important;
}

/* Links in light sections */
.footer-link, .footer-social {
  color: #7f8c8d;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-link:hover, .footer-social:hover {
  color: #0dcaf0;
}

/* Form focus */
#newsletterForm input.form-control:focus {
  border-color: #0dcaf0;
  box-shadow: 0 0 6px #0dcaf0;
  outline: none;
}

/* Light card hover */
.bg-light:hover {
  background-color: #d4f1f9 !important;
  transform: scale(1.05);
  transition: 0.3s ease;
  box-shadow: 0 12px 24px rgba(13, 202, 240, 0.25);
}


/* Shadow utility */
.shadow-sm {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08) !important;
}

/* Typing cursor */
.cursor {
  display: inline-block;
  background-color: #0dcaf0;
  width: 3px;
  animation: blink 0.7s steps(1) infinite;
  margin-left: 5px;
}
@keyframes blink { 50% { opacity: 0; } }

/* Logo */
.logo {
  font-family: 'Poppins', sans-serif;
  color: #0dcaf0;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.logo-icon {
  font-size: 2.4rem;
  margin-right: 12px;
}
.logo:hover {
  color: #0dcaf0;
  text-shadow: 0 0 10px rgba(13, 202, 240, 0.5);
  cursor: pointer;
}

/* Contact Section - Light */
./* Contact Section Styling - matching your light theme */

.contact-section {
  background: #e3f6f5;  /* very light teal */
  padding: 70px 24px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 10px 30px rgba(13, 202, 240, 0.15);
  margin-bottom: 70px;
}

.contact-section h2 {
  color: #0dcaf0;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.contact-section input,
.contact-section textarea {
  background-color: #ffffff;
  border: 1.5px solid #7f8c8d; /* muted gray */
  color: #2c3e50;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
}

.contact-section input:focus,
.contact-section textarea:focus {
  border-color: #0dcaf0; /* bright teal */
  box-shadow: 0 0 6px rgba(13, 202, 240, 0.6);
  outline: none;
}

.contact-section .invalid-feedback {
  color: #ff6f61; /* coral */
  font-weight: 600;
  margin-top: 6px;
}

.contact-section button {
  background: linear-gradient(135deg, #20c997, #0dcaf0);
  border: none;
  padding: 14px 28px;
  color: white;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 18px rgba(13, 202, 240, 0.4);
  cursor: pointer;
}

.contact-section button:hover {
  background: linear-gradient(135deg, #0aa174, #0a9ac9);
  box-shadow: 0 8px 28px rgba(13, 202, 240, 0.7);
  transform: scale(1.05);
}


/* Icons & Cards */
.service-icon {
  font-size: 44px;
  color: #0dcaf0;
  margin-bottom: 18px;
  transition: color 0.3s ease;
}
.service-icon:hover {
  color: #ff6f61;
}
section {
  padding: 70px 20px;
}
.section-title {
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
  color: #112d4e;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.testimonial {
  text-align: center;
  padding: 28px;
  background: #ffffff;
  border: 2px solid #d1e7e0;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(13, 202, 240, 0.15);
  transition: box-shadow 0.3s ease;
}
.testimonial:hover {
  box-shadow: 0 12px 32px rgba(255, 111, 97, 0.3);
}
.testimonial h6 {
  margin-top: 12px;
  font-weight: 600;
  color: #34495e;
}
/*.about {
  background: linear-gradient(135deg, #0dcaf0, #20c997);
  color: white;
  padding: 50px 20px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(13, 202, 240, 0.35);
  margin-bottom: 60px;
}*/


.about {
  background: linear-gradient(135deg, #0dcaf0, #20c997); /* Soft aqua gradient */
  color: #112d4e; /* Dark navy text for contrast */
  padding: 60px 30px;
  box-shadow: 0 10px 24px rgba(13, 202, 240, 0.2);
  
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: rgba(13, 202, 240, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.about h2, .about h3 {
  position: relative;
  z-index: 1;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0A74DA;
  margin-bottom: 20px;
}

.about p {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #34495e;
}



.list-group-item {
  position: relative;
  display: block;
  padding: 20px;
  color: #34495e;
  text-align: center;
  text-decoration: none;
  background-color: #f0f8f9;
  border: 1px solid #c4e3e2;
  border-radius: 10px;
  margin-bottom: 12px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.list-group-item:hover {
  background-color: #d4f1f9;
}

/* Nav Links */
.navbar-brand {
  font-weight: 800;
  font-size: 1.7rem;
  color: #112d4e;
}
.navbar-brand span {
  color: #0dcaf0;
}
.nav-link {
  color: #34495e;
  font-weight: 600;
  margin-right: 18px;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #ff6f61;
  font-weight: 700;
}

/* Services section background */
#services {
  background: #e9f7f9;
}
#services .bg-dark {
  background-color: #ffffff !important;
  border: 1px solid #c4e3e2;
  color: #112d4e;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border-radius: 14px;
  padding: 30px 20px;
  box-shadow: 0 6px 18px rgba(13, 202, 240, 0.15);
}
#services .bg-dark:hover {
  background-color: #d4f1f9;
  transform: translateY(-7px);
  box-shadow: 0 10px 30px rgba(13, 202, 240, 0.3);
}

/* Alternate section backgrounds */
/*section:nth-child(odd) {
  background: #ffffff;
}
section:nth-child(even) {
  background: #f0f8fa;
}*/

/* Active nav-link style */
.navbar-nav .nav-link.active {
  color: #0dcaf0 !important;
  font-weight: 700;
  border-bottom: 3px solid #ff6f61;
}
/* Booking Form Style */
/*#booking {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(13, 202, 240, 0.15);
  padding: 40px;
  max-width: 700px;
  margin: 60px auto;
  position: relative;
}*/
#booking h2 {
  background: linear-gradient(135deg, #0dcaf0, #20c997);
  color: white;
  padding: 16px 24px;
  border-radius: 12px 12px 0 0;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(13, 202, 240, 0.4);
}
#booking input.form-control,
#booking select.form-select,
#booking input[type="date"],
#booking input[type="time"] {
  border-radius: 10px;
  border: 1.5px solid #cceff1;
  padding: 14px 18px;  
  transition: border-color 0.3s ease;
}
#booking input.form-control:focus,
#booking select.form-select:focus,
#booking input[type="date"]:focus,
#booking input[type="time"]:focus {
  border-color: #0dcaf0;
  box-shadow: 0 0 8px rgba(13, 202, 240, 0.7);
  outline: none;
}
#booking button.btn-accent {
  background: linear-gradient(135deg, #0dcaf0, #20c997);
  padding: 14px 36px;
  font-size: 1.1rem;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(13, 202, 240, 0.5);
  transition: all 0.4s ease;
}
#booking button.btn-accent:hover {
  background: linear-gradient(135deg, #ff6f61, #ff6f61);
  box-shadow: 0 5px 15px rgba(255, 111, 97, 0.5);
  transform: scale(1.08);
}

/* Enroll as Vendor Form Style */
#vendor-enroll {
  
  border-radius: 14px;
  padding: 40px 36px;
  max-width: 80%;
}
#vendor-enroll h2 {
  color: #0dcaf0;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  border-bottom: 2px solid #0dcaf0;
  padding-bottom: 10px;
  text-align: center;
}
#vendor-enroll input.form-control,
#vendor-enroll select.form-select,
#vendor-enroll textarea.form-control {  
  border-radius: 10px;
  padding: 14px 18px; 
}
#vendor-enroll input.form-control:focus,
#vendor-enroll select.form-select:focus,
#vendor-enroll textarea.form-control:focus {
  border-color: #20c997;
  box-shadow: 0 0 10px rgba(32, 201, 151, 0.5);
  outline: none;
}

/* Contact Us Form Style */
#contact {
  background: #111827;
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 900px;
  margin: 60px auto;
  box-shadow: 0 0 20px #0dcaf0aa;
  color: white;
}
#contact h2 {
  color: #0dcaf0;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-align: center;
  
}
#contact input.form-control,
#contact textarea.form-control {
  background-color: #000;
  border: 2px solid #0dcaf0;
  border-radius: 12px;
  padding: 16px 20px;
  color: white;
  font-weight: 600;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
#contact input.form-control::placeholder,
#contact textarea.form-control::placeholder {
  color: #85e1e9cc;
}
#contact input.form-control:focus,
#contact textarea.form-control:focus {
  outline: none;
  border-color: #20c997;
  box-shadow: 0 0 16px #20c997cc;
}
#contact button.btn-accent {    
  color: #111827;  
}


/* Common invalid feedback positioning and styling for all */
form .invalid-feedback {
  font-weight: 600;
  font-size: 0.875rem;
  color: #ff3d3d;
  margin-top: 6px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  #booking, #vendor-enroll, #contact {
    padding: 30px 20px;
    margin: 40px 15px;
  }
  #booking h2, #vendor-enroll h2, #contact h2 {
    font-size: 1.8rem;
  }
}
.card {
  margin-bottom: 20px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}
/* Banner - solid background with vector image */
/* Banner - solid background with vector image */
/* Banner - blue gradient background with vector image */

.custom-banner {
  background-image: url('https://www.w3.org/Icons/SVG/2022/svg-logo.svg');
  background-size: cover;
  background-position: center center;
}

.custom-banner {
  position: relative;
  overflow: hidden;
  color: #112d4e!important; /* dark navy */
  text-align: center;
  background: linear-gradient(135deg, #0d47a1, #1976d2); /* Blue gradient from dark to light */
  background-image: url('https://www.w3.org/Icons/SVG/2022/svg-logo.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain; /* Ensures the vector image fits within the container */
  z-index: 0; /* Ensure the background image stays behind text and overlay */
}

.custom-banner .bg-video {
  display: none; /* Hide the video if you're using a vector image */
}

.custom-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0A74DA 0%, #27AE60 100%);
  padding: 80px 0;
  color: white!important;
  z-index: 1;
}

.custom-banner .container {
  z-index: 2; /* Ensures the content stays on top of the background */
}

.custom-banner h1 {
  font-weight: 800;
  font-size: 2.5rem;
  color: #fff; /* bright teal */
  text-shadow: 0 2px 6px rgba(13, 202, 240, 0.7); /* Shadow for readability */
}

.custom-banner p {
  font-size: 0.9rem;
  margin-top: 20px;
  color: #34495e;
}
.bg-white {  
  background-color: #fff!important;
  opacity: 0.9;
}
.text-white {
  --bs-text-opacity: 1;
  color: #000!important;
}
/* Benefits List */
    .benefits {
      background-color: #F5F5F5;
      border-radius: 16px;
      padding: 30px 20px;
      margin-bottom: 40px;
    }
    .benefits ul {
      list-style: none;
      padding-left: 0;
      font-size: 1.1rem;
      color: #333;
    }
    .benefits li {
      margin-bottom: 15px;
      display: flex;
      align-items: center;
    }
    .benefits li i {
      font-size: 24px;
      color:  #27AE60;
      margin-right: 12px;
      min-width: 30px;
      text-align: center;
    }

    /* 3-Step Process */
    .steps {
      display: flex;
      flex-direction: column;
      gap: 40px;
      margin-bottom: 40px;
    }
    @media(min-width: 768px) {
      .steps {
        flex-direction: row;
      }
    }
    .step-card {
      background-color: #F5F5F5;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
      padding: 30px 20px;
      text-align: center;
      flex: 1;
      cursor: default;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .step-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 40px rgb(0 0 0 / 0.15);
    }
    .step-icon {
      width: 72px;
      height: 72px;
      margin: 0 auto 20px;
      background-color:  #0A74DA;
      border-radius: 50%;
      color: white;
      font-size: 32px;
      font-weight: 700;
      line-height: 72px;
      user-select: none;
      box-shadow: 0 4px 12px rgba(10, 116, 218, 0.4);
    }
    .step-title {
      font-size: 20px;
      margin-bottom: 12px;
      color:  #0A74DA;
    }
    .step-description {
      font-size: 1rem;
      color: #555;
      line-height: 1.4;
    }

    /* Testimonial Slider Placeholder */
    .testimonial-slider {
      background-color: #F5F5F5;
      border-radius: 20px;
      padding: 30px 20px;
      margin-bottom: 40px;
      text-align: center;
      color: #444;
      font-style: italic;
      font-size: 1.1rem;
      box-shadow: 0 8px 18px rgb(0 0 0 / 0.07);
    }
/* Floating WhatsApp Button */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25D366;
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      box-shadow: 0 8px 20px rgba(37,211,102,0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      cursor: pointer;
      z-index: 1100;
      transition: background-color 0.3s ease;
      user-select: none;
    }
    .whatsapp-float:hover {
      background-color: #1ebe57;
      text-decoration: none;
    }
    .container{      
      margin: 50px auto 80px;
      padding: 0 15px;
      max-width: 1320px;
    }
    .container-xl {
      max-width: 90%!important;
    }
    .accordion-button {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      color: #0A74DA;
      background-color: #F5F5F5;
    }
    .accordion-button:not(.collapsed) {
      background-color: #000020;
      color: white;
      box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
    }
    .accordion-body {
      font-family: 'Open Sans', sans-serif;
      font-size: 1rem;
      color: #444;
    }   
    #services .service-card {
      background: #fff;
      border-radius: 20px;
      padding: 40px 25px;
      box-shadow: 0 6px 20px rgb(0 0 0 / 0.08);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
      cursor: pointer;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    #services .service-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 20px 40px rgb(0 0 0 / 0.15);
    }
    #services .service-icon {
      font-size: 56px;
      color: #0A74DA;
      margin-bottom: 20px;
      line-height: 1;
    }
    #services h3 {
      margin-bottom: 18px;
      font-size: 1.3rem;
      color: #0A74DA;
    }
    #services p {
      flex-grow: 1;
      font-size: 1rem;
      color: #555;
      margin-bottom: 20px;
      line-height: 1.4;
    }
    #services .btn-book-now {
      background-color: #27AE60;
      border: none;
      color: #fff;
      border-radius: 12px;
      padding: 0.5rem 1.5rem;
      font-weight: 700;
      box-shadow: 0 6px 18px rgba(39, 174, 96, 0.5);
      transition: background-color 0.3s, transform 0.3s;
      user-select: none;
    }
    #services .btn-book-now:hover {
      background-color: #1f874f;
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(39, 174, 96, 0.7);
    }    
   /* Overall section padding & background */
#how-it-works {
  background: #f8fbfd; /* soft light background */
  padding: 60px 0;
}

/* Shared card styling for both Customers & Vendors */
#how-it-works .card {
  background: linear-gradient(145deg, #f0f8f9, #d4f1f9);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 18px rgba(13, 202, 240, 0.25);
  position: relative;
  overflow: hidden;
}

#how-it-works .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(13, 202, 240, 0.35);
}

#how-it-works .card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: #0dcaf0;
  opacity: 0.08;
  border-radius: 50%;
  z-index: 0;
}

/* Icon styling */
/*#how-it-works i {
  
  color: #fff;
  width: 72px;
  height: 72px;
  line-height: 72px;
  font-size: 32px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(10, 116, 218, 0.3);
  z-index: 1;
  position: relative;
}*/

/* Titles and text */
/*#how-it-works .card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #112d4e;
  margin-bottom: 10px;
}

#how-it-works .card-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}*/

#how-it-works h2.section-title {
  font-size: 2rem;
  color: #0A74DA;
  font-weight: 800;
}

#how-it-works h3,
#how-it-works h5.section-title {
  color: #2a4365;
  font-weight: 700;
}
.lead{
  color: #fff!important;
}
.footer-elegant {
  background-color: #0a0a4f;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.footer-top {
  padding: 2rem 0 5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: #00e0ff;
}

.footer-tagline { 
  margin-top: 0.5rem;
  color: #b0c7ff;
  margin-bottom: 10px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  display: flex;
  align-items: center;
}

.footer-menu a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-menu a i {
  margin-right: 6px;
  color: #00e0ff;
}

.footer-menu a:hover {
  color: #00e0ff;
  transform: translateX(3px);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  color: #fff;
  margin-left: 6px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: #00e0ff;
  color: #0a0a4f;
}


/* ======== Mobile-Only CSS (Max Width: 576px) ======== */
@media (max-width: 576px) {

  /* Fix navbar brand + toggle button */
  .navbar-brand {
    font-size: 1.2rem;
    white-space: nowrap;
    max-width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .navbar-toggler {
    margin-left: auto;
    margin-right: 0;
    padding: 6px 10px;
    border: none;
  }

  /* Fix nav menu dropdown */
  .navbar-collapse {
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-link {
    padding: 10px 0;
    font-size: 1rem;
  }

  /* Optional: Hide nav collapse background */
  .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }

  body {
    font-size: 13px;
    padding-top: 60px;
  }

  h1, .custom-banner h1 {
    font-size: 1.8rem;
  }

  h2, .section-title {
    font-size: 1.4rem;
  }

  .btn-accent {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
  }

  section {
    padding: 40px 15px;
  }

  .navbar-brand {
    font-size: 1.4rem;
  }

  .custom-banner {
    background-size: cover;
    padding: 40px 15px;
  }

  .custom-banner p {
    font-size: 0.85rem;
  }

  .step-card, .testimonial, .benefits, #how-it-works .card {
    padding: 24px 16px;
  }

  .steps {
    flex-direction: column !important;
  }

  .footer-top {
    padding: 2rem 1rem;
  }

  .footer-menu a {
    font-size: 0.95rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }

  #booking, #vendor-enroll, #contact {
    padding: 30px 15px;
    margin: 40px 10px;
  }

  #booking h2,
  #vendor-enroll h2,
  #contact h2 {
    font-size: 1.6rem;
  }

  .accordion-button {
    font-size: 1rem;
    padding: 12px;
  }

  .container,
  .container-xl {
    max-width: 100% !important;
    padding: 0 15px;
  }

  .about {
    padding: 40px 20px;
  }

  .about h2, .about h3 {
    font-size: 1.5rem;
  }

  .about p {
    font-size: 1rem;
  }
}
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: none;
  width: 45px;
  height: 45px;
  font-size: 18px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background-color: #0d6efd; /* Match your accent */
  color: #fff;
}
.scroll-top-btn:hover {
  background-color: #084298;
}
.form-check-input {
  width: 1.2em;
  height: 1.2em;
  accent-color: #007bff; /* Blue color or use your brand's color */
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  margin-right: 10px;
}