
  

.user-menu {
  position: relative;
  cursor: pointer;
  color: #021b3c;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.user-menu i.fa-caret-down {
  transition: transform 0.3s ease;
}

.user-menu:hover i.fa-caret-down {
  transform: rotate(180deg);
}

.user-menu .dropdown {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background: #fff;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  z-index: 999;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
}

.user-menu:hover .dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.user-menu .dropdown a,
.user-menu .dropdown button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  background: #fff;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.user-menu .dropdown a:hover,
.user-menu .dropdown button:hover {
  background: #f5f5f5;
  color: #1a73e8;
}


/* ------------------ MAIN LAYOUT ------------------ */
.my-bookings{
  max-width:1100px;
  margin:40px auto;
  padding:0 16px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

@media(max-width:768px){
  .my-bookings{
    grid-template-columns:1fr;
  }
}

/* ------------------ BOOKING SECTION ------------------ */
.booking-section{
  background:#fff;
  border-radius:18px;
  padding:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.booking-section h3{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:18px;
  margin-bottom:18px;
  color:#0f172a;
}

/* ------------------ BOOKING CARD ------------------ */
.booking-card{
  background:#f8fafc;
  border-radius:14px;
  padding:16px;
  margin-bottom:14px;
  border:1px solid #e2e8f0;
  transition:.3s;
}

.booking-card:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.booking-card p{
  margin:6px 0;
  font-size:14px;
}

.booking-card strong{
  color:#475569;
}

/* Status badge */
.booking-card p:nth-child(2){
  display:inline-block;
  padding:4px 12px;
  border-radius:20px;
  font-size:12px;
  background:#e0f2fe;
  color:#0284c7;
  margin-bottom:6px;
}

/* ------------------ CANCEL BUTTON ------------------ */
.cancel-btn{
  margin-top:12px;
  padding:10px 14px;
  border-radius:10px;
  border:none;
  background:#fee2e2;
  color:#b91c1c;
  font-weight:600;
  cursor:pointer;
  transition:.25s;
}

.cancel-btn:hover{
  background:#fecaca;
}

/* ------------------ EMPTY STATE ------------------ */
.empty-state{
  text-align:center;
  padding:30px 20px;
  color:#64748b;
}

.empty-state img{
  max-width:180px;
  margin-bottom:16px;
}

.empty-state h4{
  font-size:18px;
  color:#0f172a;
  margin-bottom:6px;
}

.empty-state p{
  font-size:14px;
  margin-bottom:14px;
}

/* Book Now Button */
.btn{
  display:inline-block;
  padding:10px 18px;
  border-radius:10px;
  background:#0284c7;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.btn:hover{
  background:#0369a1;
}
/* ------------------ MESSAGES ------------------ */
.empty-message{
  text-align:center;
  padding:20px;
  color:#64748b;
  font-size:14px;
}







.plumber-small-card { display: flex; gap: 10px;
   background: #fff;
    padding: 10px; margin: 8px;
     border-radius: 10px; 
     box-shadow: 0 2px 6px rgba(0,0,0,0.1); 
     cursor: pointer; transition: 0.3s; }
 .plumber-small-card .details { flex: 1;
   display: flex;
    flex-direction: column; 
    justify-content: center; 
    font-size: 14px; line-height: 1.4; }
     .plumber-small-card img { width: 60px;
       height: 60px;
        border-radius: 50%; 
        object-fit: cover; }
         .plumber-small-card:hover { transform: scale(1.03); }







/* ---- Booking Popup Styling ---- */
.booking-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 3000;
  backdrop-filter: blur(3px);
}
.form-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  text-align: center;
  position: relative;
  animation: fadeIn 0.3s ease;
}
.form-box img.modal-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}
.form-box input,
.form-box textarea {
  width: 100%;
  margin: 8px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
}
.form-box button {
  background: #002961;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
  transition: background 0.3s ease;
}
.form-box button:hover {
  background: #004aad;
}
.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 22px;
  color: #333;
  cursor: pointer;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}





.user-menu-side {
  position: relative;
  cursor: pointer;
  color: #eff2f7;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #000000;
  border-radius: 6px;
  margin: 10px;
}
.user-menu-side i.fa-caret-down {
  transition: transform 0.3s ease;
}
.user-menu-side.active i.fa-caret-down {
  transform: rotate(180deg);
}
.user-menu-side .dropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: #000000;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  z-index: 999;
}
.user-menu-side.active .dropdown {
  display: block;
}

/* Product Section */
.product-page {
  padding: 30px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.product-card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: 0.3s;
}
.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.product-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 10px;
}
.product-card h4 {
  margin: 10px 0 5px;
}
.product-card p {
  font-weight: bold;
  color: #1a73e8;
}
.product-card button {
  background: #0d47a1;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.product-card button:hover {
  background: #155ab6;
}
/* Responsive */
@media (max-width: 768px) {
  .product-page {
    padding: 15px;
  }
}
.category-section {
  padding: 40px 20px;
  text-align: center;
}
.category-section h2 {
  margin-bottom: 30px;
  font-size: 28px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.category-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.category-card:hover {
  transform: translateY(-5px);
}
.category-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.category-card .content {
  padding: 20px;
}
.category-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}
.category-card a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
}
.category-card a:hover {
  text-decoration: underline;
}








/* --- Plumber Registration Page --- */
.form-section {
  background: #f4f4f4;
  padding: 50px 20px;
}
.form-container {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.form-container h2 {
  text-align: center;
  color: #0d47a1;
  margin-bottom: 20px;
}
.form-container label {
  display: block;
  margin: 15px 0 5px;
  font-weight: bold;
  color: #333;
}
.form-container input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.form-container button {
  margin-top: 15px;
  background: #0d47a1;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}
.form-container button:hover {
  background: #155ab6;
}




/* =========================================================
   🧰 JalSathi | Services Section - Premium Professional UI (Fully Responsive)
   ========================================================= */
/* Section */
    .services-section {
      padding: 25px 10px 60px;
      text-align: center;
    }
    .section-heading {
      font-size: 28px;
      color: #002961;
      margin-bottom: 20px;
    }
    /* Cards */
    .service-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 20px;
      padding: 10px;
    }
    .service-card {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    }
    .service-card i {
      font-size: 38px;
      color: #007bff;
      margin-bottom: 10px;
    }
    .service-card h3 {
      font-size: 18px;
      margin: 8px 0;
      color: #002961;
    }
    .service-card p {
      font-size: 14px;
      color: #555;
      margin-bottom: 12px;
    }
    .book-btn {
      background: #007bff;
      color: white;
      border: none;
      padding: 8px 14px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 14px;
      transition: background 0.3s;
    }
    .book-btn:hover {
      background: #0056b3;
    }
    /* Booking Popup */
    .booking-popup {
      display: none;
      justify-content: center;
      align-items: center;
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.55);
      z-index: 2000;
      padding: 15px;
    }
    .form-box {
      background: #fff;
      padding: 25px 18px;
      border-radius: 12px;
      width: 100%;
      max-width: 400px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
      position: relative;
    }
    .form-box h3 {
      text-align: center;
      color: #002961;
      margin-bottom: 10px;
    }
    .form-box p {
      text-align: center;
      margin-bottom: 12px;
      font-size: 14px;
      color: #444;
    }
    .form-box input,
    .form-box textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 14px;
    }
    .form-box button {
      width: 100%;
      background: #007bff;
      color: white;
      border: none;
      padding: 10px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 16px;
    }
    .form-box button:hover {
      background: #0056b3;
    }
    .close-btn {
      position: absolute;
      top: 10px;
      right: 14px;
      font-size: 22px;
      color: #333;
      cursor: pointer;
    }
/* Responsive */
    @media (max-width: 600px) {
    
      
      .section-heading {
        font-size: 24px;
      }
      .service-card i {
        font-size: 32px;
      }
      .form-box {
        padding: 18px;
      }
    }
    






/* === Logout Button === */
#logoutBtn {
  background-color: #ff4d4d;
  color: white;
  border: none;
  padding: 7px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
#logoutBtn:hover {
  background-color: #cc0000;
  transform: scale(1.05);
}




/* Username Badge */
.username-badge {
  color: white;
  background-color: #004099;
  font-weight: 600;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 20px;
  display: inline-block;
  margin-right: 10px;
}






/* 🌟 Side Navigation */
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 2500;
  top: 0;
  left: 0;
  background: rgba(17, 17, 17, 0.95); /* dark glass effect */
  backdrop-filter: blur(8px);
  overflow-x: hidden;
  transition: width 0.4s ease;
  box-shadow: 4px 0 12px rgba(0,0,0,0.4);
  padding-top: 70px;
}
/* Links & Buttons inside sidenav */
.sidenav a, .sidenav button {
  padding: 14px 30px;
  font-size: 18px;
  font-weight: 500;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sidenav a:hover, .sidenav button:hover {
  color: #fff;
  background: linear-gradient(90deg, #003366, #0055aa);
  padding-left: 40px;
  border-radius: 8px;
}
/* Close Button */
.sidenav .closebtn {
  position: absolute;
  top: 7px;
  right: -11px;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.sidenav .closebtn:hover {
  color: #ff4444;
  transform: rotate(90deg);
}
/* Overlay Background (when sidenav open) */
.sidenav-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: none;
  transition: opacity 0.4s ease;
}
.sidenav-overlay.active {
  display: block;
  opacity: 1;
}






.mobile-plumber-btn {
  position: fixed;
  top: 61%;
  left: 0;
  transform: translateY(-50%);
  background: #ffcc00;
  color: #000;
  padding: 14px 10px;
  border-radius: 0 20px 20px 0;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  flex-direction: column; /* vertical letters */
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 2000;
  overflow: hidden;
}
.mobile-plumber-btn .letter {
 opacity: 0;
  transform: translateY(15px);
  animation: spell 5s infinite;
}
/* Delay for each letter */
.mobile-plumber-btn .letter:nth-child(1) { animation-delay: 0s; }
.mobile-plumber-btn .letter:nth-child(2) { animation-delay: 0.4s; }
.mobile-plumber-btn .letter:nth-child(3) { animation-delay: 0.8s; }
.mobile-plumber-btn .letter:nth-child(4) { animation-delay: 1.2s; }
.mobile-plumber-btn .letter:nth-child(5) { animation-delay: 1.6s; }
.mobile-plumber-btn .letter:nth-child(6) { animation-delay: 2s; }
.mobile-plumber-btn .letter:nth-child(7) { animation-delay: 2.4s; }
@keyframes spell {
  0%   { opacity: 0; transform: translateY(15px); }
  10%  { opacity: 1; transform: translateY(0); }
  60%  { opacity: 1; transform: translateY(0); }  /* visible hold */
  80%  { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 0; transform: translateY(-10px); } /* pause before restart */
}
@media (max-width: 768px) {
  .mobile-plumber-btn {
    font-size: 14px;
    padding: 10px 6px;
  }
}






footer {
  background: linear-gradient(135deg, #021b3c, #0a2a5e);
  color: #f1f1f1;
  padding: 20px 15px;
  font-size: 14px;
  text-align: center;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  text-align: center;
}
footer p {
  margin: 0;
  flex: 1;
  font-size: 14px;
}
footer a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  word-break: break-word;
}
footer a:hover {
  color: #ffffff;
}
.register-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffcc00;
  color: black !important;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  margin-left: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.register-link:hover {
  background: #155ab6;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
.social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: #1a73e8;
  transform: translateY(-3px);
}
/* ✅ Responsive adjustments */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  footer p {
    flex: unset;
    font-size: 13px;
    line-height: 1.6;
  }
  .register-link {
    margin-left: 0;
    margin-top: 8px;
    font-size: 13px;
    padding: 7px 12px;
  }
  .social-links {
    gap: 10px;
  }
  .social-links a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}
/* ✅ For very small screens */
@media (max-width: 480px) {
  footer {
    padding: 18px 10px;
  }
  footer p {
    font-size: 12.5px;
  }
  .register-link {
    font-size: 12.5px;
    padding: 6px 10px;
  }
}
main {
  flex: 1;
}



.mySwiper {
  width: 100%;
  height: 100vh; /* full screen look */
  position: relative;
}

/* Slide */
.mySwiper .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* 🔥 Blur background (same image effect) */
.mySwiper .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(25px);
  transform: scale(1.1);
  z-index: 0;
}

/* 🔥 Per slide background */
.slide1::before {
  background-image: url('image/banner01.jpg');
}
.slide2::before {
  background-image: url('image/banner02.jpg');
}
.slide3::before {
  background-image: url('image/banner03.jpg');
}

/* Main image / video */
.mySwiper img,
.mySwiper video {
  width: 100%;
  height: 100%;

  /* ✅ No crop */
  object-fit: contain;

  position: relative;
  z-index: 1;
}

/* 📱 Mobile optimization */
@media (max-width: 768px) {
  .mySwiper {
    height: 50vh;
  }
}
/* Overlay text */
.slide-overlay {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;

  /* 🔥 Professional glass look */
  background: linear-gradient(
    135deg,
    rgba(10, 40, 90, 0.85),
    rgba(0, 160, 190, 0.75)
  );
  color: #ffffff;

  padding: 22px 32px;
  border-radius: 14px;
  max-width: 82%;

  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);

  animation: fadeInUp 1s ease-in-out;
}

/* Heading */
.slide-overlay h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;

  /* 🔥 Accent color */
  color: #e6f9ff;
}

/* Subtitle */
.slide-overlay p {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.5;

  /* Soft aqua */
  color: #c8f1ff;
}

/* Mobile polish */
@media (max-width: 768px) {
  .slide-overlay {
    padding: 16px 20px;
    border-radius: 12px;
    bottom: 12%;
  }

  .slide-overlay h2 {
    font-size: 1.4rem;
  }

  .slide-overlay p {
    font-size: 0.9rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
/* Pagination dots */
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
  transition: all 0.3s;
}
.swiper-pagination-bullet-active {
  background: #1a73e8;
  opacity: 1;
  transform: scale(1.2);
}
/* Next / Prev buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 15px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #1a73e8;
  transform: scale(1.1);
}
/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .mySwiper {
    height: 60vh;
  }
  .slide-overlay {
    bottom: 10%;
    padding: 15px 20px;
  }
  .slide-overlay h2 {
    font-size: 1.4rem;
  }
  .slide-overlay p {
    font-size: 0.9rem;
  }
}
/* Animation */
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}







/* 🌊 Professional Floating Sidebar (Neon + Water Glassmorphism) */
.floating-plumber-box {
  position: fixed;
  top: 19%;
  left: -360px; /* hidden initially */
  width: 320px;
  max-height: 70%;
  background: rgba(20, 28, 45, 0.6);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-radius: 20px;
  padding: 20px;
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: left 0.7s cubic-bezier(.25,.8,.25,1);
  z-index: 1500;
  /* Water flowing gradient animation */
  background-image: linear-gradient(135deg, rgba(0,180,255,0.15), rgba(140,82,255,0.12));
  background-size: 250% 250%;
  animation: waterFlow 16s infinite ease-in-out;
}
/* Active: slide to right side */
.floating-plumber-box.active {
  left: calc(100vw - 340px - 24px);
}
/* Water gradient motion */
@keyframes waterFlow {
  0%   { background-position: 0% 40%; }
  50%  { background-position: 100% 60%; }
  100% { background-position: 0% 40%; }
}
/* Header */
.plumber-box-header {
  text-align: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.plumber-box-header h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #00c6ff, #7d2cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px rgba(0,198,255,0.55),
               0 0 22px rgba(125,44,255,0.35);
}
/* See more button */
.see-more {
  margin-top: 18px;
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #00c6ff, #7d2cff);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.see-more:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35),
              0 0 18px rgba(0,198,255,0.55);
  background: linear-gradient(135deg, #0096ff, #5a1fff);
}
/* Custom Scrollbar */
.floating-plumber-box::-webkit-scrollbar {
  width: 8px;
}
.floating-plumber-box::-webkit-scrollbar-track {
  background: transparent;
}
.floating-plumber-box::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00c6ff, #7d2cff);
  border-radius: 8px;
}
/* Responsive */
@media (max-width: 600px) {
  .floating-plumber-box {
    width: 94%;
    max-height: 79vh;
    left: -100%;
  }
  .floating-plumber-box.active {
    left: 3%;
  }
  .plumber-small-card img { 
    width: 46px; height: 46px; 
  }
}








/* Reset */
 /* Reset */
    * { margin:0; padding:0; box-sizing:border-box; }
    body { font-family: 'Segoe UI', sans-serif; background:#f8f9fc; }

/* Header */
header { 
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 12px 20px; 
  background: #002961;   
  color: white; 
  position: relative; 
  top: 0; 
  z-index: 1000; 
}
/* Logo Section */
.logo {
  display: flex;
  align-items: flex-start;
  flex-direction: column; /* Brand aur slogan ko vertical align karega */
  gap: 2px;
  color: #fff;
}
.logo .brand-name {
  font-size: 22px; /* Mobile-friendly size */
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.2;
}
.logo .slogan {
  font-size: 12px;
  font-weight: 500;
  font-family: "Noto Sans Devanagari", sans-serif;
  color: #ffd700; /* Golden color */
  margin: 0;
  line-height: 1.1;
}
/* Search Bar */
.search-bar {
  display: flex;
  flex: 1;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  background: #fff;
}
.search-bar input {
  width: 100%;
  padding: 10px 12px; /* padding inside input */
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px 0 0 8px;
  outline: none;
  text-align: left; /* ensures placeholder and text start from left */
  box-sizing: border-box;
   flex: 1;
  background: transparent;
  z-index: 1;
  position: relative;
  color: #333;
}
.search-bar button {
  padding: 10px 15px;
  border: none;
  background-color: #ffcc00;
  color: #000;
  font-weight: 700;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}
.search-bar button:hover {
  background-color: #ffd633;
  transition: background-color 0.2s ease-in-out;
}
/* Typing wrapper */
.typing-wrapper {
  position: relative;
  flex: 1;
  overflow: hidden;
}
/* Typing effect without blinking cursor */
.typing-wrapper .typing {
  position: absolute;
  top: 50%;
  left: 16px; /* inside input padding */
  transform: translateY(-50%);
  color: #999;
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: typingLoop 5s steps(40, end) infinite;
  pointer-events: none;
}
/* Hide typing when input is focused */
.typing-wrapper input:focus + .typing {
  display: none;
}

/* 🔥 Hide typing when user types */
.typing-wrapper input:not(:placeholder-shown) + .typing {
  display: none;
}
/* Looping typing keyframes */
@keyframes typingLoop {
  0%, 10% { width: 0; }       /* start hidden */
  50%, 60% { width: 100%; }   /* full text typed */
  100% { width: 0; }          /* reset to 0 for loop */
}
/* Responsive adjustments */
@media screen and (max-width: 900px) {

  .search-bar {
    max-width: 100%;          /* full width */
    width: calc(100% - 20px); /* 🔥 left-right space kam, box wide */
    margin: 10px auto;
  }

  .search-bar input {
    padding: 10px 12px;       /* horizontal space input ke liye */
    font-size: 14px;
  }

  .search-bar button {
    padding: 10px 12px;
    font-size: 14px;
  }

  .typing-wrapper .typing {
    font-size: 12px;
    width: auto;
  }
}








/* Navbar */
.navbar {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 20px;
  background:#fff;
  box-shadow:0 2px 5px rgba(0,0,0,0.1);
}
.nav-left, .nav-right {
  display:flex;
  align-items:center;
  gap:15px;
}
.navbar a, .navbar button {
  color:#021b3c;
  text-decoration:none;
  font-weight:500;
  display:flex;
  align-items:center;
  gap:6px;
  transition:.3s;
}
.navbar a:hover, .navbar button:hover {
  color:#1a73e8;
  transform:translateY(-2px);
}
.navbar button {
  background:none;
  border:none;
  cursor:pointer;
}






/* Hamburger */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  position: fixed;
  left: 15px;
  top: 16px;
   padding: 8px 12px;
  color: white;
    background: #003366;
      border-radius: 8px;
  z-index: 1100;
}
@media (max-width: 900px) {

  .navbar { display: none; }
   .hamburger { display: block; }
  
  header {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .logo {
    align-items: center;
    width: 100%;
    text-align: left;
  }

  .search-bar {
    max-width: 90%;
    margin-top: 8px;
  }

  .search-bar input {
    font-size: 14px;
    padding: 8px;
  }

  .search-bar button {
    font-size: 14px;
    padding: 8px 12px;
  }

  .hamburger {
    top: 122px;
    left: 2px;
  }
}





/* === Home Button Right Side Position === */
.home-btn {
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  transition: transform 0.2s;
  position: absolute;
  right: 20px;  /* screen ke right edge se space */
  top: 50%;
  transform: translateY(-50%);
}
/* Hover effect */
.home-btn:hover {
  transform: translateY(-50%) scale(1.2);
}
/* Responsive adjustment for mobile if needed */
@media (max-width: 768px) {
  .home-btn {
    right: 15px;
    font-size: 20px;
  }
}


/* 🔥 Loader Overlay (layout-safe) */
#loader {
  position: fixed;
  inset: 0; /* top, left, width, height shortcut */
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 9999;

  /* 👇 important fix */
  pointer-events: none; 
  opacity: 1;
  visibility: visible;

  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Center Content */
.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 🔄 Spinner (smooth + premium) */
.spinner {
  width: 65px;
  height: 65px;
  border: 5px solid rgba(0,0,0,0.1);
  border-top: 5px solid #002961;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin-bottom: 10px;
}

/* ✨ Loading Text */
.loading-text {
  font-size: 16px;
  font-weight: 600;
  color: #002961;
  letter-spacing: 1px;
  animation: blink 1.2s infinite;
}

/* Animations */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ✅ Hide Loader */
#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* 🔥 Scroll Animation (unchanged but clean) */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}






    
    /* About Section */
    .about-section {
      max-width: 1100px;
      margin: 3rem auto;
      padding: 0 1.5rem;
    }
    .about-section h2 {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 700;
      color: #002961;
      margin-bottom: 1.2rem;
    }
    .about-section h3 {
      font-size: 1.6rem;
      margin: 2rem 0 1rem;
      color: #004aad;
    }
    .about-section p {
      line-height: 1.7;
      font-size: 1.05rem;
      margin-bottom: 1.5rem;
    }
    /* Owner Profile */
    .owner-profile {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 2rem;
      background: #fff;
      padding: 1.8rem;
      border-radius: 14px;
      box-shadow: 0 4px 18px rgba(0,0,0,0.08);
      margin-bottom: 2rem;
      border-left: 5px solid #00b4d8;
    }
    .owner-profile img {
      border-radius: 12px;
      width: 200px;
      object-fit: cover;
      box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    }
    .owner-details h4 {
      margin: 0 0 0.5rem;
      font-size: 1.4rem;
      font-weight: 600;
      color: #002961;
    }

    /* Why Choose Us */
    ul {
      list-style: none;
      padding: 0;
    }
    ul li {
      background: #e0f7fa;
      padding: 0.9rem 1rem;
      border-radius: 8px;
      margin-bottom: 0.6rem;
      font-size: 1rem;
    }

    /* Values Grid */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.2rem;
      margin-top: 1.5rem;
    }
    .value-card {
      background: #fff;
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: 0 4px 16px rgba(0,0,0,0.05);
      text-align: center;
      transition: transform 0.3s ease;
    }
    .value-card:hover { transform: translateY(-6px); }
    .value-card h4 {
      color: #004aad;
      margin-bottom: 0.5rem;
    }
    .value-card i {
      font-size: 28px;
      color: #00b4d8;
      margin-bottom: 0.5rem;
    }



    /* Fade-in animation for scroll */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .fade-in.show {
      opacity: 1;
      transform: translateY(0);
    }







    /*cart*/
    h2 {
      text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #0077b6;
  margin-bottom: 30px;
}
    .cart-container { max-width:900px; margin:20px auto; padding:20px; background:#fff; border-radius:10px; box-shadow:0 2px 8px rgba(0,0,0,0.1); }
    .cart-item { display:flex; align-items:center; justify-content:space-between; padding:15px; border-bottom:1px solid #ddd; }
    .cart-item img { width:80px; height:80px; object-fit:cover; border-radius:8px; margin-right:15px; }
    .cart-details { flex:1; display:flex; flex-direction:column; }
    .cart-title { font-size:1.1rem; font-weight:bold; margin-bottom:5px; }
    .cart-price { color:#555; margin-bottom:5px; }
    .cart-actions { display:flex; align-items:center; gap:10px; }
    .cart-actions button { padding:5px 10px; border:none; border-radius:5px; cursor:pointer; }
    .qty-btn { background:#007bff; color:#fff; }
    .qty-btn:hover { background:#0056b3; }
    .remove-btn { background:#dc3545; color:#fff; }
    .remove-btn:hover { background:#a71d2a; }
    .total { text-align:right; font-size:1.3rem; font-weight:bold; margin-top:20px; }
    .checkout-btn { display:block; margin:20px auto 0; padding:12px 20px; background:#28a745; color:#fff; border:none; border-radius:6px; font-size:1.1rem; cursor:pointer; }
    .checkout-btn:hover { background:#218838; }
    /*cart end*/





    /*contact us*/
.contact-header {
  text-align: center;         /* horizontally center */
  margin-top: 50px;           /* thoda upar se gap */
}
.contact-header h1 {
  font-size: 36px;
  color: #0d47a1;
  margin-bottom: 10px;
}
.contact-header p {
  font-size: 18px;
  color: #333;
}
    .contact-wrapper { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; padding: 30px 20px; max-width: 1200px; margin: auto; }
    .map-image { flex: 1 1 400px; text-align: center; }
    .map-image img { max-width: 100%; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
    .contact-form { flex: 1 1 400px; background: #ffffff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
    .contact-form h2 { margin-bottom: 20px; color: #0d47a1; }
    .contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 6px; }
    .contact-form button { background-color: #e53935; color: white; padding: 12px 20px; border: none; border-radius: 6px; font-size: 16px; cursor: pointer; }
    .contact-form button:hover { background-color: #d32f2f; }
    .info-banner { display: flex; justify-content: center; gap: 40px; background-color: #e53935; padding: 30px 20px; color: white; flex-wrap: wrap; }
    .info-item { background: white; color: #e53935; padding: 15px 25px; border-radius: 50px; font-weight: bold; box-shadow: 0 3px 8px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 10px; }
    .info-item i { font-size: 20px; }
    .addresses { display: flex; justify-content: center; flex-wrap: wrap; padding: 40px 20px; gap: 40px; }
    .address-block { flex: 1 1 300px; }
    .address-block iframe { width: 100%; height: 250px; border: 0; margin-bottom: 15px; border-radius: 8px; }
    .address-block h3 { color: #0d47a1; margin-bottom: 8px; }
    @media(max-width: 768px) {
      .info-banner { flex-direction: column; align-items: center; }
      .contact-wrapper { flex-direction: column; }
    }






    
 
  #orders-list {
    max-width:1000px;
    margin:30px auto;
    padding:0 15px;
  }
  .order-card {
    background:#fff;
    border-radius:10px;
    box-shadow:0 2px 6px rgba(0,0,0,0.08);
    margin-bottom:20px;
    padding:18px 20px;
    transition:all 0.25s ease;
  }
  .order-card:hover {
    transform:translateY(-3px);
    box-shadow:0 6px 14px rgba(0,0,0,0.12);
  }
  .order-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid #eee;
    padding-bottom:10px;
    margin-bottom:12px;
  }
  .order-id { font-size:16px; font-weight:600; color:#222; }
  .order-date { font-size:13px; color:#777; }
  .order-status {
    padding:5px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    color:#fff;
    text-transform:capitalize;
  }
  .status-pending { background:#f0ad4e; }
  .status-approved { background:#007bff; }
  .status-completed { background:#28a745; }
  .status-cancelled { background:#dc3545; }
  .order-body {
    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
  }
  .order-thumb {
    width:60px;
    height:60px;
    border-radius:8px;
    background:#f7f7f7 url('https://cdn-icons-png.flaticon.com/512/679/679922.png') center/40px no-repeat;
    flex-shrink:0;
  }
  .order-info { flex:1; }
  .order-info p { margin:4px 0; font-size:15px; }

  .order-actions {
    margin-top:12px;
    display:flex;
    gap:10px;
  }
  .btn {
    padding:7px 14px;
    border:none;
    border-radius:6px;
    font-size:14px;
    cursor:pointer;
    transition:background 0.2s;
  }
  .btn-details { background:#007bff; color:#fff; }
  .btn-details:hover { background:#0056b3; }
  .btn-track { background:#17a2b8; color:#fff; }
  .btn-track:hover { background:#11707f; }

  .empty-message, .error-message {
    text-align:center;
    font-size:17px;
    color:#555;
    margin-top:40px;
  }

  @keyframes spin { 100% { transform:rotate(360deg); } }
/* ✅ Responsive adjustments for My Orders */
@media (max-width: 768px) {
  h2 {
    font-size: 22px;
    padding: 15px;
  }

  .order-card {
    padding: 15px;
    margin-bottom: 16px;
  }

  .order-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .order-id {
    font-size: 15px;
  }
  .order-date {
    font-size: 12px;
  }

  .order-status {
    align-self: flex-start;
    font-size: 12px;
    padding: 4px 10px;
  }

  .order-body {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-thumb {
    width: 50px;
    height: 50px;
  }

  .order-info p {
    font-size: 14px;
  }

  .order-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
  }

  .btn {
    flex: 1;
    font-size: 13px;
    padding: 8px 10px;
  }
}

/* ✅ Extra-small screens */
@media (max-width: 480px) {
 

  .order-card {
    padding: 12px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  h2 {
    font-size: 20px;
  }
}

/* ===== LAYOUT ===== */
.profile-layout {
  max-width: 1200px;
  margin: 30px auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 30px;
  padding: 0 15px;
}

/* ===== LEFT CARD ===== */
.profile-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  padding: 25px;
}

.profile-top {
  text-align: center;
}

.profile-top img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #e5e7eb;
}

.profile-top h2 {
  margin-top: 12px;
  font-size: 22px;
}

.status-badge {
  display: inline-block;
  margin: 6px 0 14px;
  padding: 5px 14px;
  font-size: 13px;
  border-radius: 20px;
  background: #dcfce7;
  color: #166534;
}

/* ===== BUTTONS ===== */
.btn {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  border: none;
}

.btn.primary {
  background: #2563eb;
  color: white;
}

.btn.outline {
  background: #f1f5f9;
  color: #0f172a;
}

/* ===== PROFILE INFO ===== */
.profile-info {
  margin-top: 20px;
}

.profile-info p {
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  color: #334155;
}

.profile-info i {
  color: #2563eb;
  width: 16px;
}

.profile-info .bio {
  margin-top: 10px;
  background: #f1f5f9;
  padding: 10px;
  border-radius: 8px;
}

/* ===== BOOKINGS ===== */
.booking-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  padding: 25px;
}

.booking-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.booking-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-item {
  background: #f8fafc;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
  box-shadow: inset 0 0 0 1px #e5e7eb;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .profile-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .profile-top img {
    width: 110px;
    height: 110px;
  }
  .profile-top h2 {
    font-size: 20px;
  }
  .profile-info p {
    font-size: 13px;
  }
}

/* ===== EDIT MODAL ===== */
#editModal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.45);
  z-index: 999;
}

.modal-box {
  background: #fff;
  padding: 20px;
  width: 360px;
  border-radius: 12px;
}

.modal-box input,
.modal-box textarea {
  width: 100%;
  margin: 6px 0;
  padding: 9px 10px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
}

.save-btn {
  width: 100%;
  padding: 10px;
  background: #1e40af;
  color:#fff;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
  cursor: pointer;
}

.close-btn {
  background: #94a3b8;
  width: 100%;
  padding: 10px;
  color:#fff;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
  cursor: pointer;
}




:root{--brand:#004080;--brand-dark:#002961;--muted:#f1f5f9}

main{max-width:960px;margin:28px auto;padding:0 16px}
.card{background:#fff;border-radius:12px;padding:22px;box-shadow:0 6px 24px rgba(2,6,23,0.06)}
.intro{display:flex;gap:20px;align-items:center}
.intro .left{flex:1}
.intro .cta{flex-basis:260px}
.btn{background:var(--brand);color:#fff;padding:12px 16px;border:none;border-radius:8px;cursor:pointer;font-weight:600}
.btn.ghost{background:transparent;border:1px solid #e6eef8;color:var(--brand)}
.steps{margin-top:18px}
.progressbar{display:flex;gap:8px;align-items:center;margin-bottom:18px}
.dot{width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#eee;color:#777;font-weight:600}
.dot.active{background:var(--brand);color:#fff}
.bar{flex:1;height:6px;background:#eee;border-radius:6px}
label{display:block;margin:10px 0 6px;font-weight:600}
input[type='text'],input[type='tel'],input[type='number'],select,input[type='file'],input[type='email']{width:100%;padding:10px;border-radius:8px;border:1px solid #e6eef8}
.grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.center{text-align:center}
#preview {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 8px;
}

@media(max-width:720px){.grid{grid-template-columns:1fr}.intro{flex-direction:column}.cta{width:100%}}
.modal{position:fixed;left:0;top:0;width:100%;height:100%;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,0.5);z-index:999}
.modal .mcard{background:#fff;padding:20px;border-radius:10px;max-width:420px;width:90%;text-align:center}







/* 🌊 All Plumbers Page Fixes */
.main-header {
  background: linear-gradient(90deg, #002961, #021b3c);
  color: #fff;
  text-align: center;
  padding: 18px;
  font-size: 22px;
  font-weight: 600;
  border-radius: 0 0 10px 10px;
}

/* 🔹 Filter box styling */
.filter-container {
  background: #fff;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 8px;
  margin: 20px auto;
  width: 90%;
  max-width: 500px;
  text-align: center;
}

.filter-container select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  background-color: #fff;
}

/* 🔹 Grid for plumber cards */
.plumber-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 30px 40px;
}

/* 🔹 Individual plumber card */
.plumber-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.plumber-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* 🔹 Image scaling */
.plumber-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* 🔹 Text content */
.plumber-card h3 {
  margin: 10px 0 5px;
  color: #002961;
  font-size: 18px;
  font-weight: 600;
}

.plumber-card p {
  margin: 4px 0;
  color: #555;
  font-size: 14px;
}

.plumber-card p strong {
  color: #002961;
}

/* 🔹 Book button */
.book-now-btn {
  background: #002961;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 8px;
}

.book-now-btn:hover {
  background: #0b5bd3;
}



/* 🔹 Responsive tweaks */
@media (max-width: 768px) {
  .main-header {
    font-size: 18px;
    padding: 14px;
  }
  .filter-container {
    width: 95%;
    padding: 12px;
  }
  .plumber-grid {
    padding: 20px;
    gap: 20px;
  }
}







    .products-container { display:grid; grid-template-columns:repeat(auto-fit, minmax(250px, 1fr)); gap:20px; padding:20px; }
    .product-card { background:#fff; padding:15px; border-radius:10px; box-shadow:0 2px 8px rgba(0,0,0,0.1); text-align:center; }
    .product-card img { width:100%; height:200px; object-fit:cover; border-radius:8px; }
    .product-card h3 { margin:10px 0 5px; font-size:1.2rem; color:#333; }
    .product-card p { margin:5px 0; color:#555; }
    .product-card .price { font-weight:bold; color:#000; margin-top:8px; font-size:1.1rem; }
    .product-card button { margin-top:10px; padding:8px 14px; border:none; border-radius:5px; background:#28a745; color:#fff; cursor:pointer; transition:0.3s; }
    .product-card button:hover { background:#218838; }
    .container { display:flex; 
      flex-wrap:wrap; max-width:1100px; 
      margin:2rem auto; gap:1.5rem; } 
     
               /* ---- SETTINGS TAB FIX ---- */
#settingsTab {
  padding: 20px;
  background: #ffffff;
  border-radius: 15px;
  margin-top: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

#settingsTab h3 {
  margin-bottom: 15px;
  color: #1b2430;
  font-size: 20px;
  font-weight: 600;
}

/* Buttons inside Settings */
#settingsTab .btn {
  width: 100%;
  display: block;
  text-align: center;
  padding: 12px;
  font-size: 15px;
  margin: 10px 0;
  border-radius: 10px;
}

/* Reset Password Button */
#resetPasswordBtn {
  background: #003c80;
  color: #fff;
}

/* Delete Account Button */
#deleteAccountBtn {
  background: #d62828;
  color: #fff;
}

/* Sidebar list space fix */
.sidebar ul li {
  margin-bottom: 8px;
}

/* Gap between sidebar and content */
.container {
  gap: 25px;
}






/* Fullscreen Popup Background */
.map-popup {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  padding: 15px;
}

/* Main Popup Container */
#mapContainer {
  width: 92%;
  max-width: 450px;
  height: 72%;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.22);
  animation: popupFade 0.35s ease;
  display: flex;
  flex-direction: column;
}

/* Map area perfectly rounded */
#map {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
}

/* Popup Animation */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: scale(0.88);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile Optimized */
@media (max-width: 420px) {
  #mapContainer {
    width: 95%;
    height: 75%;
    padding: 10px;
  }

  .detect-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }
}
/* 🔥 Adsense Size Fix */
.ads-top {
  max-width: 100%;
  height: auto;
  max-height: 90px;          /* 👈 height kam */
  margin: 8px auto;
  overflow: hidden;
}

/* Desktop ke liye */
@media (min-width: 992px) {
  .ads-top {
    max-width: 728px;        /* 👈 classic leaderboard */
    max-height: 90px;
  }
}

/* Mobile ke liye */
@media (max-width: 768px) {
  .ads-top {
    max-width: 100%;
    max-height: 60px;        /* 👈 mobile slim */
  }
}
.adsbygoogle {
  display: block;
  min-height: 50px;
}
#orderDetailsModal ul {
  padding-left: 18px;
}
#orderDetailsModal li {
  margin-bottom: 6px;
}
.btn-cancel {
  background-color: #e74c3c;
  color: #fff;
  border: none;
  padding: 8px 12px;
  margin-left: 5px;
  border-radius: 5px;
  cursor: pointer;
}
.btn-cancel:hover {
  background-color: #c0392b;
}/* ===== Tank Cleaning Banner ===== */
.tank-banner {
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 16px;
}

/* Image Link */
.tank-link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

/* Image */
.tank-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

/* Overlay Gradient */


/* ===== Text Overlay ===== */
.tank-overlay {
  position: absolute;
  left: 7%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 420px;
  color: #ffffff;
}

/* Title */
.tank-overlay h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.15;
}

/* Subtitle */
.tank-overlay p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 22px;
  color: #e0f6ff;
}

/* CTA Button */
.btn-book {
  display: inline-block;
  background: linear-gradient(135deg, #ffcc00, #ffb703);
  color: #003049;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

/* Hover Effects */
.tank-link:hover img {
  transform: scale(1.06);
}

.tank-link:hover .btn-book {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
}

/* ===== Mobile Optimization ===== */
@media (max-width: 768px) {
  .tank-banner {
    margin: 40px auto;
  }

  .tank-link {
    aspect-ratio: 3 / 2; /* mobile-friendly */
    border-radius: 16px;
  }

  .tank-overlay {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
  }

  .tank-overlay h2 {
    font-size: 24px;
  }

  .tank-overlay p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .btn-book {
    padding: 10px 22px;
    font-size: 14px;
  }
}
/* ===== Plumber Service Banner ===== */
.plumber-banner {
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 16px;
}

/* Image Link */
.plumber-link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}

/* Image */
.plumber-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

/* Overlay Gradient */


/* ===== Text Overlay ===== */
.plumber-overlay {
  position: absolute;
  left: 7%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 460px;
  color: #ffffff;
}

/* Heading */
.plumber-overlay h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: 0.4px;
}

/* Description */
.plumber-overlay p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 22px;
  color: #e6f2ff;
}

/* CTA Button */
.btn-book {
  display: inline-block;
  background: linear-gradient(135deg, #ffcc00, #ffb703);
  color: #002b3a;
  padding: 13px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
}

/* Hover Effects */
.plumber-link:hover img {
  transform: scale(1.06);
}

.plumber-link:hover .btn-book {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}

/* ===== Mobile Optimization ===== */
@media (max-width: 768px) {
  .plumber-banner {
    margin: 40px auto;
  }

  .plumber-link {
    aspect-ratio: 3 / 2;
    border-radius: 16px;
  }

  .plumber-overlay {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
  }

  .plumber-overlay h2 {
    font-size: 24px;
  }

  .plumber-overlay p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .btn-book {
    padding: 10px 24px;
    font-size: 14px;
  }
}
/* ===== Plumber Registration Banner ===== */
.plumber-reg-banner {
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 16px;
}

/* Image Link */
.plumber-reg-link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}

/* Image */
.plumber-reg-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

/* Overlay Gradient (same premium look) */

/* ===== Text Overlay ===== */
.plumber-reg-overlay {
  position: absolute;
  left: 7%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 520px;
  color: #ffffff;
}

/* Heading */
.plumber-reg-overlay h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: 0.4px;
}

/* Description */
.plumber-reg-overlay p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 22px;
  color: #e6f2ff;
}

/* CTA Button */
.btn-join {
  display: inline-block;
  background: linear-gradient(135deg, #1aa36f, #0f8a5c);
  color: #ffffff;
  padding: 13px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
}

/* Hover Effects */
.plumber-reg-link:hover img {
  transform: scale(1.06);
}

.plumber-reg-link:hover .btn-join {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}

/* ===== Mobile Optimization ===== */
@media (max-width: 768px) {
  .plumber-reg-banner {
    margin: 40px auto;
  }

  .plumber-reg-link {
    aspect-ratio: 3 / 2;
    border-radius: 16px;
  }

  .plumber-reg-overlay {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
  }

  .plumber-reg-overlay h2 {
    font-size: 24px;
  }

  .plumber-reg-overlay p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .btn-join {
    padding: 10px 24px;
    font-size: 14px;
  }
}

/* =========================
   PROFESSIONAL UI ADDITIONS
========================= */

.benefits {
  list-style: none;
  padding: 0;
  margin-top: 14px;
}
.benefits li {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #334155;
  margin-bottom: 6px;
}
.benefits i {
  color: #16a34a;
}

/* Progress bar polish */
.progressbar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.progressbar .dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background: #fff;
  transition: all .3s ease;
}
.progressbar .dot.active {
  background: #0ea5e9;
  color: #fff;
  border-color: #0ea5e9;
}
.progressbar .bar {
  height: 4px;
  width: 60px;
  background: #cbd5e1;
}

/* Section titles */
.section-title {
  margin: 20px 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  border-left: 4px solid #0ea5e9;
  padding-left: 8px;
}

/* Helper text */
.help {
  font-size: 12px;
  color: #64748b;
}

/* File upload polish */
input[type=file] {
  padding: 10px;
  border: 1px dashed #94a3b8;
  border-radius: 8px;
  background: #f8fafc;
}

/* Trust note */
.trust-note {
  margin-top: 14px;
  font-size: 13px;
  color: #475569;
  display: flex;
  gap: 6px;
  align-items: center;
}
.trust-note i {
  color: #16a34a;
}

/* Mobile */
@media (max-width: 768px) {
  .intro {
    flex-direction: column;
    gap: 16px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
}

                                                            /* login page start 
/* ===== AUTH PAGE MAIN LAYOUT ===== */
.auth-wrapper {
  max-width: 1100px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* ===== LEFT ILLUSTRATION (NO GAP) ===== */
.auth-illustration {
  background: linear-gradient(135deg, #e0f2fe, #f8fbff);
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;          /* 🔥 GAP REMOVED */
  margin: -63px;
}

.auth-illustration img {
  width: 100%;
  height: 100%;
  max-width: none;     /* 🔥 NO LIMIT */
  max-height: none;
  object-fit: contain; /* SVG/Image tight fit */
  display: block;
  margin: 0;
  padding: 0;
}

/* ===== RIGHT FORM ===== */
.container1 {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .auth-wrapper {
    grid-template-columns: 1fr;
  }

  .auth-illustration {
    padding: 0;
  }

  .container1 {
    padding: 35px 25px;
  }
}






.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.service-card i {
  font-size: 36px;
  color: #0a7cff;
  margin-bottom: 12px;
}

.book-btn {
  background: linear-gradient(135deg,#0a7cff,#00c6ff);
  color: #fff;
  border-radius: 25px;
  padding: 10px 20px;
}
.navbar a.active{
  color:#0a7cff;
  border-bottom:2px solid #0a7cff;
}
/* ===== TRUST BAR ===== */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 40px auto;
  padding: 20px;
  max-width: 1100px;
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.trust-bar div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #0a2540;
  background: #ffffff;
  padding: 14px 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.trust-bar div:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(10,124,255,0.18);
  color: #0a7cff;
}
@media (max-width: 768px) {
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .trust-bar {
    grid-template-columns: 1fr;
  }
}
.trust-bar div::before {
  content: "✔";
  color: #00b35a;
  font-weight: bold;
}
/* ================= HOW IT WORKS ================= */
.how-it-works {
  background: linear-gradient(135deg, #f7fbff, #ffffff);
  padding: 60px 20px;
  text-align: center;
}

.how-it-works h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #0a2540;
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.step-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10,124,255,0.15);
}

.step-card img {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
}

.step-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0a7cff;
  font-weight: 600;
}

.step-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 600px) {
  .how-it-works h2 {
    font-size: 26px;
  }
}    







/* ========== LAYOUT ========== */
.container{
  max-width:1200px;
  margin:30px auto;
  display:grid;
  grid-template-columns:260px 1fr;
  gap:24px;
  padding:0 16px;
}

/* ========== SIDEBAR ========== */
.sidebar{
  background:#fff;
  border-radius:22px;
  padding:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}
.sidebar h3{
  font-size:12px;
  color:#6b7280;
  letter-spacing:1px;
}
.sidebar ul{list-style:none;margin-top:10px}
.sidebar li{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  border-radius:14px;
  margin-top:6px;
  cursor:pointer;
  transition:.25s;
}
.sidebar li i{width:18px}
.sidebar li.active{
  background:linear-gradient(90deg,#0d6efd,#38bdf8);
  color:#fff;
}
.sidebar li:hover{background:#f1f5f9}







/* ========== CONTENT ========== */
.content{
  background:#ffffffcc;
  backdrop-filter:blur(10px);
  border-radius:26px;
  padding:24px;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}
.hidden{display:none}

/* ========== PROFILE HEADER ========== */
.profile-header{
  background:linear-gradient(135deg,#0d6efd,#38bdf8);
  border-radius:26px;
  padding:26px;
  display:flex;
  align-items:center;
  gap:20px;
  color:#fff;
}
#profilePic{
  width:96px;
  height:96px;
  border-radius:50%;
  border:4px solid #fff;
  cursor:pointer;
}
.profile-header h2{font-size:22px}
.profile-header p{opacity:.9}

/* ========== FORM ========== */
.form-group{
  background:#fff;
  padding:16px;
  border-radius:18px;
  box-shadow:0 6px 18px rgba(0,0,0,.07);
  margin-top:16px;
}
.form-group label{
  font-size:12px;
  color:#6b7280;
}
.form-group input,
.form-group select{
  width:100%;
  border:none;
  outline:none;
  margin-top:6px;
  font-size:15px;
  background:transparent;
}

/* ========== BUTTON ========== */
.btn{
  margin-top:22px;
  background:linear-gradient(90deg,#0d6efd,#38bdf8);
  color:#fff;
  border:none;
  padding:12px 28px;
  border-radius:30px;
  font-size:15px;
  cursor:pointer;
  transition:.3s;
}
.btn:hover{transform:translateY(-2px)}
.logout-btn{
  background:linear-gradient(90deg,#ef4444,#dc2626);
}

/* ========== CARDS ========== */
.card{
  background:#fff;
  border-radius:20px;
  padding:18px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  margin-top:16px;
}

/* ========== RESPONSIVE ========== */
@media(max-width:900px){
  .container{grid-template-columns:1fr}
}





/* ===== EMPTY STATE ===== */
.empty-orders {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  max-width: 500px;
  margin: 40px auto;
}

.empty-illustration img {
  width: 140px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.empty-orders h3 {
  font-size: 22px;
  color: #1e293b;
  margin-bottom: 10px;
}

.empty-orders p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.empty-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */
.primary-btn {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(2,132,199,0.35);
  transition: all 0.3s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(2,132,199,0.45);
}

.outline-btn {
  border: 2px solid #0ea5e9;
  color: #0ea5e9;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.outline-btn:hover {
  background: #0ea5e9;
  color: #fff;
}



.btn-delete{
  background:#dc3545;
  color:#fff;
}
.btn-delete:hover{
  background:#b52a37;
}
@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}

.shake {
  animation: shake 0.4s;
  border: 1px solid #ef4444 !important;
}
.otp-help{
  margin-top:10px;
  font-size:13px;
  color:#64748b;
}

.resend-link{
  color:#2563eb;
  cursor:pointer;
  font-weight:600;
  margin-left:6px;
}

.resend-link:hover{
  text-decoration: underline;
}
.disabled-item {
  padding: 8px 10px;
  color: #999;
  font-size: 14px;
}

.dropdown-title {
  font-size: 12px;
  font-weight: bold;
  color: #0a7cff;
  padding: 6px 10px;
}
/* ===== OVERLAY ===== */
.booking-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  display: none; /* JS control karega */
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999;
}

/* ===== POPUP BOX ===== */
.premium-box {
  background: #ffffff;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 18px;
  padding: 30px;
  position: relative;
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
  animation: popupSlide 0.3s ease;
}

/* ===== CLOSE BUTTON ===== */
.close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: #e90505;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover {
  background: #e4e8ee;
}

/* ===== HEADER ===== */
.popup-header {
  text-align: center;
  margin-bottom: 25px;
}

.popup-header h2 {
  font-size: 22px;
  margin-bottom: 6px;
  font-weight: 600;
}

.service-title {
  color: #0a7cff;
  font-weight: 600;
  font-size: 14px;
}

/* ===== FORM SECTIONS ===== */
.form-section {
  margin-bottom: 22px;
  padding: 18px;
  background: #f9fafc;
  border-radius: 14px;
}

.form-section h4 {
  font-size: 14px;
  margin-bottom: 14px;
  font-weight: 600;
  color: #333;
}

/* ===== INPUTS ===== */
.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid #dcdfe6;
  font-size: 14px;
  transition: 0.3s;
  background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #0a7cff;
  box-shadow: 0 0 0 3px rgba(10,124,255,0.15);
  outline: none;
}

/* ===== SCHEDULE ROW ===== */
.schedule-row {
  display: flex;
  gap: 12px;
}

.schedule-row .half {
  flex: 1;
}

/* ===== TERMS ===== */
.terms {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 18px;
}

/* ===== BUTTON ===== */
.confirm-btn {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #0a7cff, #075ecf);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.confirm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(10,124,255,0.35);
}

/* ===== ANIMATION ===== */
@keyframes popupSlide {
  from {
    transform: translateY(25px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .premium-box {
    padding: 22px;
  }

  .schedule-row {
    flex-direction: column;
  }
}/* Page wrapper logic (safe) */
body {
  min-height: 100vh;
  position: relative;
  padding-bottom: 120px; /* footer height ke barabar */
}

/* Footer fix */
footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}