*{
    box-sizing:border-box;
}

html, body{
    margin:0;
    padding:0;
}

body{
    background-color: #fff;
   /*background-image: url("/image/back.svg");*/
}

/* ===== Form Box (Desktop SAME) ===== */
.formimage{
    display: flex;
    justify-content: center;
}

.sideimage img{
    width: 600px;
    height: 990px;
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 50px;
    margin-bottom: 30px;
    border-radius: 10px;

}

@media (max-width: 968px) {

    .formimage{
          flex-direction: column;
          align-items: center;
          margin: 0;
          height: 80vh;
          display: flex;
          justify-content: center;   /* horizontal center */
          align-items: center;       /* vertical center */
    }

    .sideimage img{
        width: 100%;
        height: auto;
        margin: 20px 0;
        border-radius: 10px;
    }
    

}


.form-box{
    width:400px;
    background:#fff;
    padding-top:3px;
    padding-left: 30px;
    padding-right: 35px;
    padding-bottom: 25px;
    margin-left: 150px;
    margin-top: 50px;
    margin-bottom: 50px;
    border-radius:8px;
    box-shadow:0 0 1px rgba(0,0,0,0.1);
}

.form-box h2{
    text-align:center;
    margin-bottom:20px;
    background-color: #28a745;
    font-size: 2.5rem;
}

.imagesss{
    display: flex;
    justify-content: center;
    text-align: center;
}

.form-box input,
.form-box textarea,
.form-box select{
    width:100%;
    padding:10px;
    margin-bottom:12px;
    border:1px solid #ccc;
    border-radius:5px;
    font-size:14px;
}

.helllw{
    display: flex;
    justify-content: center;   /* center me lane ke liye */
    gap: 50px;                 /* yaha se gap control hoga */
    margin-top: 20px;
}

.form-box button{
    width:40%;
    padding:12px;
    background:#28a745;
    color:#fff;
    border:none;
    border-radius:5px;
    font-size:16px;
    cursor:pointer;
    margin-top: 20px;
}

.form-box button:hover{
    background:#218838;
}

/* ===== 📱 Mobile + Tablet (ONLY GAP FIX) ===== */
@media (max-width:968px){
    body{
        margin:0;
        padding-left:0px;
        padding-right: 0px;
        background-color: #f6f9ff;
        /*background-image: url(/image/homeservice.jpg);*/
    }

    .form-box{
        width:100%;
        margin:0px;             /* upar / niche gap khatam */
        border-radius:0;
        background: transparent;
    }
}

.main-header{
    /* max-width: 1650px; */
    position: sticky;
    top: 0;
    z-index: 999;

    width:100%;
    height:70px;
    background:#e7e2e2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 40px;
    box-shadow:0 2px 5px rgba(0,0,0,0.08);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 20px;
    background:#fff;
    
}

.header-org{
    background:#ff6600;color:#fff;padding-left: 13px;padding-right: 12px;border-radius:6px;text-decoration:none;font-weight:600; height: 35px;
}
.header-send{
    font-size:10px;
}

/* Logo */
.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo-icon{
    width:40px;
    height:40px;
    background:#3b5bfd;
    color:#fff;
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.logo-text span{
    font-weight:700;
    font-size:16px;
    color:#2b2b2b;
}

.logo-text small{
    font-size:13px;
    color:#3b5bfd;
    font-weight:600;
}

/* Right Side */
.header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.pro-btn{
    padding:8px 18px;
    border:1.5px solid #3b5bfd;
    color:#3b5bfd;
    border-radius:20px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
}

.pro-btn:hover{
    background:#3b5bfd;
    color:#fff;
}

/* Icons */
.icon-box{
    width:38px;
    height:38px;
    border:1px solid #dcdcdc;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    color:#3b5bfd;
}

.icon-box:hover{
    background:#f2f5ff;
}

.hero-content{
    text-align:center;
    z-index:2;
}

.hero-content h1{
    display: none;
    font-size:70px;
    color:#ffffff;
    font-weight:700;
    line-height:1.3;
    margin-top: 90px;
    margin-left: 90px;
    margin-right: 90px;
}


.faq-question {
  padding: 30px 20px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* Tablet */
@media (max-width: 992px){
    .hero-content h1{
        font-size:50px;
    }

    .input-box{
        width:240px;
    }
}


.categories{
    width:100%;
    padding:80px 0;
    /* background:#fff; */
}

.cat-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(7, 1fr);
    gap:20px;
    padding:0 20px;
}

/* Card */
.cat-card{
    border:1px solid #e5e7eb;
    border-radius:10px;
    padding:20px 10px;
    text-align:center;
    cursor:pointer;
    transition:0.3s;
    background:#fff;
}

.cat-card img{
    width:45px;
    margin-bottom:12px;
}

.cat-card p{
    font-size:14px;
    color:#1f2937;
    font-weight:500;
    line-height:1.4;
}

.cat-card:hover{
    box-shadow:0 8px 18px rgba(0,0,0,0.08);
    transform:translateY(-3px);
}

/* =========================
   MEDIA QUERIES
========================= */

/* Large Tablet */
@media (max-width: 1024px){
    .cat-container{
        grid-template-columns:repeat(3, 1fr);
        padding-left: 45px;
        padding-right: 45px;
        height: 1100px;
    }
}

/* Tablet */
@media (max-width: 768px){
    .cat-container{
        grid-template-columns:repeat(2, 1fr);
    }
}


   
.pro-cta{
    width:100%;
    padding:80px 20px;
    /* background:#fff; */
    display:flex;
    justify-content:center;
    text-align:center;
}

.cta-content{
    max-width:1050px;
    max-height: 1100px;
    background-color: white;
    border-radius: 15px;

}

/* Icon */
.cta-icon{
    width:60px;
    height:60px;
    margin:0 auto 25px;
    border-radius:12px;
    background:#eaf0ff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#3b5bfd;
    font-size:28px;
    margin-top: 30px;
}

/* Heading */
.cta-content h2{
    font-size:34px;
    color:#020101;
    margin-bottom:20px;
}

/* Text */
.cta-content p{
    font-size:16px;
    color:#050607;
    line-height:1.7;
    margin-bottom:35px;
    margin-right: 40px;
    margin-left: 40px;
}

/* Button */
.cta-btn{
    display:inline-block;
    padding:14px 30px;
    border:1.5px solid #3b5bfd;
    border-radius:8px;
    color:#3b5bfd;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
    margin-bottom: 30px;
}

.cta-btn:hover{
    background:#3b5bfd;
    color:#fff;
}

/* =========================
   MEDIA QUERIES
========================= */

/* Tablet */
@media (max-width: 992px){
    .cta-content h2{
        font-size:28px;
    }
}

/* Mobile */
@media (max-width: 576px){
    .pro-cta{
        padding:60px 15px;
    }

    .cta-icon{
        width:50px;
        height:50px;
        font-size:22px;
    }

    .cta-content h2{
        font-size:22px;
    }

    .cta-content p{
        font-size:14px;
    }

    .cta-btn{
        padding:12px 24px;
        font-size:14px;
    }
}

.service-section{
    padding:0px 20px;
    /* background:#fff; */
    margin-left: 70px;
}

.section-title{
    font-size:20px;
    font-weight:600;
    margin:30px 0 15px;
    color:#fdfeff;
}

/* Horizontal row */
.service-row{
    display:flex;
    gap:16px;
    overflow-x:auto;
    padding-bottom:10px;
}

.service-row::-webkit-scrollbar{
    height:6px;
}
.service-row::-webkit-scrollbar-thumb{
    background:#d1d5db;
    border-radius:10px;
}

/* Card */
.service-card{
    min-width:220px;
    cursor:pointer;
}

.service-card img{
    width:100%;
    height:140px;
    object-fit:cover;
    border-radius:10px;
}

.service-card p{
    margin-top:8px;
    font-size:14px;
    color:#fcfcfc;
}

/* Hover */
.service-card:hover img{
    opacity:0.9;
}

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
    .service-section{
        margin-left: 20px;
        padding: 0 15px;
        padding-left: 25px;
        padding-right: 35px;
    }

    .section-title{
        font-size: 40px;
    }

    .service-card{
        min-width: 200px;
    }

    .service-card img{
        height: 300px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .service-section{
        margin-left: 0;
        padding: 0 10px;
    }

    .section-title{
        font-size: 16px;
        margin: 20px 0 10px;
    }

    .service-row{
        gap: 12px;
    }

    .service-card{
        min-width: 180px;
    }

    .service-card img{
        height: 120px;
    }

    .service-card p{
        font-size: 13px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .service-card{
        min-width: 160px;
    }

    .service-card img{
        height: 110px;
    }

    .service-card p{
        font-size: 12px;
    }
}



/* Section */
.service-section{
    padding:0 20px;
    margin-left:70px;
}

/* Title */
.section-title{
    font-size:20px;
    font-weight:600;
    margin:30px 0 15px;
    color:#fff;
}

/* Slider Row */
.service-row{
    display:flex;
    gap:16px;
    overflow:hidden;
    padding-bottom:10px;
    will-change:transform;
}

/* Card */
.service-card{
    min-width:220px;
    flex-shrink:0;
}

.service-card img{
    width:100%;
    height:140px;
    object-fit:cover;
    border-radius:10px;
}

.service-card p{
    margin-top:8px;
    font-size:14px;
    color:#fff;
}

/* ================= TABLET ================= */
@media (max-width: 991px){
    .service-section{
        margin-left:20px;
    }
    .service-card{
        min-width:180px;
    }
    .service-card img{
        height:250px;
        width:70%;
    }
    .section-title{
        font-size:50px;
    }
    .service-card p{
        font-size:25px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 600px){
    .service-section{
        margin-left:0;
        padding:0 10px;
    }
    .service-card{
        min-width:150px;
    }
    .service-card img{
        height:100px;
    }
    .service-card p{
        font-size:13px;
    }
    .section-title{
        font-size:16px;
    }
}

.box{
    margin-left: 1.5rem;
    margin-right: 3.5rem;

    
}

.imagesss img{
    width: 70rem;
    height: 25rem;
    border-radius: 15px;
    margin-top: 3rem;
    margin-left: 100px;
    margin-right: 100px;
}


@media  (max-width: 991px){
    .imagesss img {
        width: 870px;
        height: 500px;
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 2rem;
    }
}


/* footer  */


.footer-bottom{
    text-align:center;
    padding:15px;
    background:#000;
    font-size:13px;
    color:#aaa;
}

@media(max-width:768px){
    .footer-container{
        flex-direction:column;
        padding:30px 20px;
        text-align:center;
    }

    .footer-box{
        margin-bottom:25px;
    }
}

.form-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #e2ce67; /* Yellow background like image */
    border-radius: 50%;        /* Circular */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.form-btn img {
    width: 24px;   /* Icon size */
    height: 24px;
}

.form-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Responsive for tablets */
@media (max-width: 900px) {
    .form-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .form-btn img {
        width: 20px;
        height: 20px;
    }
}

/* Responsive for mobile */
@media (max-width: 480px) {
    .form-btn {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }

    .form-btn img {
        width: 18px;
        height: 18px;
    }
}

.search-wrap{
  display: flex;
  gap: 20px;
  max-width: 800px;
  margin: 40px auto;
}

.location-box,
.search-box{
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #bcd2ff;
  border-radius: 12px;
  padding: 12px 16px;
  background: #fff;
}

.location-box{
  min-width: 60px;
  cursor: pointer;
}

.location-box .icon{
  font-size: 20px;
}

.location-box .text strong{
  display: block;
  font-size: 14px;
  color: #000;
}

.location-box .text small{
  font-size: 12px;
  color: #777;
}

.location-box .arrow{
  margin-left: auto;
  font-size: 12px;
  color: #555;
}

.search-box{
  flex: 1;
}


.search-icon{
  font-size: 18px;
  color: #555;
}



.swal-content h4{
  margin: 15px 0 10px;
  font-size: 16px;
  text-align: left;
}

.services-row{
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.services-card{
  width: 140px;
  text-align: center;
  cursor: pointer;
}

.services-card img{
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
}

.services-card p{
  font-size: 13px;
  margin-top: 6px;
}

.containers{
  max-width:1200px;
  margin:20px auto;
  display:flex;
  gap:20px;
}

/* LEFT */
.left-box{
  flex:3;
  background:#fff;
  padding:20px;
  border-radius:10px;
  margin-right: 600px;
  margin-left: 200px;
}

.location{
  font-size:14px;
  color:#555;
  margin-bottom:10px;
}
.location i{
  color:#2f6bff;
}

h1{
  font-size:24px;
  margin:10px 0;
}

.rating{
  color:#2f6bff;
  margin-bottom:20px;
}

.service-banner{
  background:#f4b400;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-radius:12px;
  padding:20px;
  margin-bottom:20px;
}

.banner-text h2{
  color:#2f6bff;
}
.banner-text p{
  font-size: 20px;
  font-weight: normal;
  color: white;
}
.city-banner-btn{
    display: none;
}
.service-banner img{
  max-width:220px;
  border-radius:20px ;
}

h3{
  margin:15px 0;
}

.service-options{
  display:flex;
  gap:15px;
}

.option-card{
  background:#fff;
  /*border:1px solid #ddd;*/
  /*border-radius:10px;*/
  padding:5px;
  width:100px;
  text-align:center;
  cursor:pointer;
  transition:.3s;
}

.option-card:hover{
  box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.option-card img{
  /*width:60px;*/
  margin-bottom:10px;
  border-radius: 10px;
  
}

/* RIGHT */
.right-box{
    flex:1.2;
     position: fixed; 
     padding-left: 750px;
}


.cart-box{
  background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 15px;
    border-width: 1px;
    border-color: #e1e1e1;
}

.cart-box i{
  font-size:30px;
  color:#999;
  margin-bottom:10px;
}

.offer-box{
  background:#fff;
  padding:15px;
  border-radius:10px;
  margin-bottom:15px;
  border-width: 1px;
    border-color: #e1e1e1;
}

.offer-box p{
  margin-bottom:8px;
}

.why-box{
  background:#fff;
  padding:15px;
  border-radius:10px;
  border-width: 1px;
    border-color: #e1e1e1;
}

.why-box ul{
  margin-top:10px;
  list-style:none;
}

.why-box li{
  margin-bottom:8px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .container{
    flex-direction:column;
  }

  .service-options{
    flex-wrap:wrap;
  }
}
.servicess-sections h2 {
    font-size: 25px;
    margin-bottom: 0px;
    margin-top: 0px;
}
.servicess-sections{
background: #fff;
    padding: 20px;
    margin-top: 0px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.service-sections{
background: #fff;
    padding: 20px;
    margin-top: 0px;
    border-radius: 0px;
    border-width: 1px;
    border-color: #e1e1e1;
    border-radius: 13px;
}

.service-sections h2{
  margin-bottom:15px;
  font-weight: bold;
  font-size: 24px;
  color: white;
}
.big-swal .swal2-html-container {
        flex: 1;
        overflow-y: auto;
        margin-left: 5px;
        margin-right: 5px;
        /* margin-top: -290px; */
    }

.service-cards{
  display:flex;
  justify-content:space-between;
  border:0px solid #e5e7eb;
  border-radius:12px;
  padding:15px;
  margin-bottom:15px;
  border-bottom: 1px solid #e5e7eb;
}

.service-left{
  width:70%;
}

.service-left h3{
  font-size:16px;
  margin-bottom:6px;
  font-weight: 500;
}

.rating{
  font-size:13px;
  color:#2563eb;
  margin-bottom:6px;
}

.rating span{
  color:#6b7280;
}

.price{
  font-weight:bold;
  margin-bottom:8px;
}

.service-left ul{
  padding-left:18px;
  font-size:13px;
  color:#374151;
  margin-bottom:8px;
}

.service-left ul li{
  margin-bottom:5px;
}

.show-more{
  font-size:13px;
  color:#2563eb;
  text-decoration:none;
}

.service-right{
  width:50%;
  text-align:center;
  margin-top:30px;
}

.service-right img{
    width: 70%;
    border-radius: 10px;
    margin-bottom: 8px;
    margin-left: 30px;
}

.add-btn{
  background:#fff;
  border:1px solid #2563eb;
  color:#2563eb;
  padding:6px 18px;
  border-radius:6px;
  cursor:pointer;
  font-weight:bold;
}

.service-right small{
  display:block;
  margin-top:4px;
  font-size:12px;
  color:#6b7280;
}

/* MOBILE */

.underline{
    text-decoration: none;
    color: inherit;
}


.review{
    background-color: white;
    margin-top: 20px;
    border-radius: 10px;
    /* padding-left: 60px; */
    margin-right: 100px;
    margin-left: 100px;
}

.cr-reviews-section{
max-width: 1200px;
    margin: 0px auto;
    font-family: Arial, sans-serif;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    border-width: 1px;
    border-color: #e1e1e1;
    border-radius: 20px;
}

.cr-title{
  margin-bottom:20px;
  padding-top: 30px;
  font-size: 25px;
}

.cr-wrapper{
  display:flex;
  gap:30px;
}

.cr-summary{
  width:30%;
}

.cr-score{
  font-size:28px;
  color:#f4b400;
}

.cr-score strong{
  color:#000;
}

.cr-bars{
  margin-top:10px;
}

.cr-bar-row{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  margin:8px 0;
}

.cr-bar{
  flex:1;
  height:6px;
  background:#ddd;
  border-radius:6px;
}

.cr-bar div{
  height:100%;
  background:#f4b400;
  border-radius:6px;
}

.cr-cards{
  width:70%;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.cr-card{
  border:1px solid #e0e0e0;
  border-radius:10px;
  padding:15px;
}

.cr-user{
  display:flex;
  gap:10px;
  align-items:center;
}

.cr-avatar{
  width:36px;
  height:36px;
  border-radius:50%;
  background:#e8f0ff;
  color:#2f6bff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
}

.cr-stars{
  color:#f4b400;
  margin:8px 0;
}

.ccs-wrapper{
    /*max-width: 1100px;*/
    margin: 40px auto;
    font-family: Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 20px;
    padding-bottom: 30px;
    border-width: 1px;
    border-color: #e1e1e1;
    border-radius: 18px;
}

.ccs-main-title{
font-size: 22px;
    margin-bottom: 12px;
    padding-top: 20px;
    /* margin: 1.5em 0 .5em; */
    font-size: 1.5rem;
    font-weight: 600;
}

.ccs-sub-title{
  font-size:16px;
  margin-top:18px;
  margin-bottom:8px;
  font-weight:600;
}

.ccs-text{
color: #60697b;
    /*line-height: 1.5rem;*/
    font-weight: 300;
    font-size:16px;
}

.ccs-list{
  margin-left:18px;
  font-size:16px;
  color:#555;
}

.ccs-list li{
  margin-bottom:10px;
}

.ccs-bullets{
  margin-left:18px;
  font-size:14px;
  color:#555;
}

.ccs-bullets li{
font-size:14px;
}

.service-links{
  columns: 4;
  list-style: disc;
  padding-left: 20px;
}
.service-links li{
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.cartsss{
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 60px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: black;
}

.asdfgh{
    color: white;
    font-weight: bold;
}

.zxcvb{
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 60px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #f2f6fe;
    font-size: 14px;
}









.uc-service-box{
  background:#fff;
  border-radius:14px;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  overflow:hidden;
  max-width:950px;
  height: Auto;
}

.uc-service-img{
  width:100%;
  height:270px;
  object-fit:unset;
}

.rate-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#f5f6f7;
  border-radius:10px;
  padding:14px 18px;
  cursor:pointer;
  transition:0.2s;
  margin-top: 20px;
}

.rate-card:hover{
  background:#eceeef;
}

.left{
  display:flex;
  align-items:center;
  gap:8px;
}

.check{
  color:#00a884;
  font-size:20px;
}

.brand{
  font-weight:600;
  color:#111;
}

.middle{
  flex:1;
  text-align:left;
  margin-left:12px;
  color:#444;
  font-size:18px;
}

.right{
  font-size:22px;
  color:#888;
}

.uc-service-body{
  padding:18px;
}

.uc-service-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}

.uc-service-title{
  font-size:18px;
  font-weight:600;
  line-height:1.3;
}

.uc-add-btn{
  border:1.5px solid #2f6bff;
  color:#2f6bff;
  padding:6px 18px;
  border-radius:8px;
  background:#fff;
  font-weight:500;
  cursor:pointer;
}

.uc-service-rating{
  margin-top:6px;
  font-size:20px;
  color:#666;
  display: flex;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.price-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 0 4px rgba(0,0,0,0.04);
}

.top-cities{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.city-item i{
    font-size: 75px;
    color: #6c7a89;
    margin-bottom: 8px;
    transition: 0.3s;
}

.city-item p{
    margin: 0;
    font-size: 20px;
}

.city-item:hover i{
    color: #3f51b5;
}

.city-item:hover p{
    color: #3f51b5;
}

.city-popup-box{
    width: 750px;
    background: #fff;
    border-radius: 10px;
    padding: 25px;
}

.city-popup-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-area{
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon{
    background: #3f51b5;
    color: #fff;
    padding: 8px;
    border-radius: 8px;
}

.brand-name{
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
}

.popup-close{
    font-size: 22px;
    cursor: pointer;
}

.popup-title{
    margin: 0px 0 10px;
    font-size: 38px;
    text-align: start;
}

.city-search-box input{
    width: 100%;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #ddd;
    margin-bottom: 40px;
    font-size: 30px;
}

.top-cities{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    text-align: center;
    margin-bottom: 20px;
}

.city-item{
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.city-item:hover{
    background: #f0f3ff;
    color: #3f51b5;
}

.other-title{
    margin: 15px 0;
    font-size: 16px;
    color: #555;
}

.other-cities{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    font-size: 14px;
}

.other-cities span{
    cursor: pointer;
    color: #555;
}

.other-cities span:hover{
    color: #3f51b5;
}

.show-more{
    margin-top: 15px;
    color: #3f51b5;
    cursor: pointer;
}

.price-card h4 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #222;
}

.price-card .price {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.price-card button {
  padding: 6px 18px;
  border: 1px solid #3b7cff;
  background: #fff;
  color: #3b7cff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s;
}

.price-card button:hover {
  background: #3b7cff;
  color: #fff;
}

.uc-process-wrap {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
}

.uc-title {
  font-size: 25px;
  font-weight: 600;
  color: #000000db;
  margin-bottom: 10px;
}

.uc-process-list {
  padding-left: 18px;
}

.uc-process-list li {
  margin-bottom: 12px;
}

.uc-step-title {
  display: block;
  font-weight: 600;
  color: #374151;
  font-size: 20px;
}

.uc-step-desc {
  margin: 2px 0 0;
  color: #6b7280;
  font-size: 17px;
}

.uc-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 18px 0;
}

.uc-exclude-list {
  padding-left: 18px;
  margin-bottom:30px ;
}

.uc-exclude-list li {
  margin-bottom: 6px;
  color: #6b7280;
  font-size: 17px;
}

/* Desktop default */
.city-swal-popup {
  width: 600px !important;
  padding: 25px !important;
  border-radius: 12px;
}

.city-swal-popuppp {
  width: 850px !important;
  padding: 25px !important;
  border-radius: 12px;
  height: 750px !important;
}

.youcity{
      font-size: 30px;
      color: black
  }
.selectcity{
    width:100%;
    padding:12px;
    margin-top:15px;
    color: blue;
    text-align: center;
}



.price-accordion{
  border:1px solid #dcdcdc;
  border-radius:8px;
  overflow:hidden;
  margin:20px 0;
  font-family:Arial, sans-serif;
  margin-right: 30px;
  margin-left: 30px;
}

.price-acc-header{
  background:linear-gradient(90deg,#000,#2b2b2b);
  color:#fff;
  padding:14px 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

.price-acc-title{
  font-size:15px;
  font-weight:600;
}

.price-acc-icon{
  font-size:18px;
  transition:0.3s;
}

.price-acc-body{
  background:#fff;
}

.price-table{
  width:100%;
  border-collapse:collapse;
}

.price-table th,
.price-table td{
    border: 1px solid #e0e0e0;
    padding: 15px;
    padding-left: 40px;
    font-size: 14px;
    vertical-align: top;
}

.price-table th{
  background:#f6f6f6;
  text-align:left;
}

.price-labour{
  display:block;
  color:#777;
  font-size:12px;
  margin-top:3px;
}



.faq-item {
  border-bottom: 1px solid #ddd;
}



.faq-question i {
  transition: 0.3s;
  font-size: 20px;
}

.faq-answer {
  padding: 0 20px 15px;
  font-size: 17px;
  color: #555;
  display: none;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* accordion closed */
.price-acc-body.hide{
  display:none;
}

.price-acc-icon.rotate{
  transform:rotate(-90deg);
}







@media (max-width: 992px){
    .main-header{
        height: 135px !important;
        background-color: #000000ba;
    }
    
  .location {
        font-size: 1px;
        margin-bottom: 8px;
        /*color: white;*/
    }

h1 {
    font-size: 45px;
    margin: 10px 0;
}
h3 {
    font-size:35px;
}

.rating {
    font-size: 30px;
    color: #2563eb;
    margin-bottom: 6px;
}

.service-banner img {
    max-width: 420px;
    display: none;
}

.banner-text h2{
    font-size:42px;
  color:#2f6bff;
}
.banner-text p {
    font-size: 38px;
    font-weight: normal;
    padding-left: 30px;
    }

.option-card {
    padding: 5px;
    width: 180px;
}
.pp{ 
    font-size:30px;
}

.faq-answer {
  padding: 0 20px 15px;
  font-size: 31px;
  color: #555;
  display: none;
  line-height: 1.6;
}

.faq-question {
  padding: 30px 20px;
  font-size: 33px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-sections h2 {
        font-size: 50px;
        margin-bottom: 40px;
        margin-top: 40px;
        
    }
    
.banner-text h2 {
    font-size: 55px;
    color: white;
    padding-left: 30px;
    margin-top: 1px;
    margin-bottom: 1px;
    font-weight: bold;
    text-align: center;
}
    

.service-left h3 {
    font-size: 40px;
    margin-bottom: 6px;
    font-weight: 600;
    color: #0f1113;
}

.price {
    font-weight: revert;
    font-size: 40px;
    margin-bottom: 30px;
    margin-top: 30px;
}
.service-left ul li {
        margin-bottom: 5px;
        font-size: 33px;
        padding-bottom: 10px;
        padding-top: 0px;
    }
.service-right {
    width: 40%;
}

.service-right img {
    width: 80%;
    border-radius: 10px;
    margin-bottom: 8px;
    margin-top: 30px;
}

.add-btn {
    font-size: 30px;
}

.cat-card p{
    font-size:35px;
}
.cat-card img{
    width:70%;
    margin-bottom:12px;
}

.box {
    margin-top: 12rem;
}

.big-swal {
    min-height: 80vh !important;
    max-height: 80vh !important;
    display: flex;
    flex-direction: column;
}

/* content area */
.big-swal .swal2-html-container {
    flex: 1;
    overflow-y: auto;
    margin-left: 5px;
    margin-right: 5px;
    /*margin-top:-290px ;*/
}

.swal-content h4{
  font-size: 50px;
  text-align: left;
}
.services-card img{
  height: 250px;
}

.services-card {
    width: 30%;
}

.services-card p{
  font-size: 30px;
}

.review{
    background-color: white;
    margin-top: 0px;
    border-radius: 0px;
    /* padding-left: 60px; */
    margin-right: 0px;
    margin-left: 0px;
}

.cr-wrapper {
    display: block;
}

.cr-summary {
    width: 95%;
}

.cr-cards {
    width: 90%;
    display: block;
}

.cr-stars {
    font-size: 30px;
}

.cr-avatar {
    width: 76px;
    height: 76px;
    font-size: 40px;
}

.cr-bar-row {
    display: flex;
    font-size: 24px;
}

.cr-title {
    font-size: 50px;
}

.re4{
    font-size:30px;
}
.pps{
    font-size:30px;
}
.ccs-text {
    font-size: 35px;
    margin-bottom: 20px;
}
.ccs-sub-title {
    font-size: 40px;
    font-weight: bold;
}
.ccs-main-title {
    font-size: 47px;
}
.ccs-bullets {
    margin-left: 18px;
}
.ccs-list {
    font-size: 35px;
    font-weight: 300;
}

.ccs-wrapper {
    /*padding-left: 0px;*/
    /*padding-right: 0px;*/
    margin-top: 0px;
}
.ccs-list li {
    margin-top: 20px;
    font-size: 35px;
    list-style-type: disc;
}

.ccs-list li strong {
    margin-top: 20px;
    font-size: 35px;
    list-style-type: disc;
    color: #000;
    font-weight: 700;
}
.ccs-bullets li{
font-size:33px;
margin-top: 13px;
margin-bottom: 13px;
}

.service-links li {
    font-size: 20px;
    color: #555;
    margin-bottom: 8px;
    font-weight: bold;
}

.header-org{
    /*height:35px*/
}

.service-options {
    display: flex;
    gap: 30px;
}

.service-banner {
    position: relative;
    height: 420px;
    background-image: url(/image/image1.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.servicess-sections h2 {
    font-size: 50px;
    margin-bottom: 0px;
    margin-top: 30px;
}

.show-more{
  font-size:30px;
  color:#2563eb;
  text-decoration:none;
}






  .uc-service-box{
    max-width:100%;
    height:auto;
    border-radius:0;
  }

 

  .uc-service-body{
    padding:14px;
  }

  .uc-service-top{
    flex-direction:column;
    align-items:flex-start;
  }

  .uc-service-title{
    font-size:40px;
  }

  .uc-add-btn{
    padding:6px 14px;
    font-size:13px;
  }

  .uc-service-rating{
    font-size:30px;
  }

  /* Price grid */
  .price-grid{
    grid-template-columns: repeat(2, 1fr);
    gap:10px;
  }

  .price-card h4{
    font-size:40px;
  }

  .price-card .price{
    font-size:43px;
    color: black;
  }

  /* Process section */
  .uc-title{
    font-size: 50px;
    font-weight: bold;
    margin-left: 35px;
    color: #382828;
    display: flex;
    margin-top: 40px;
    
}

  .uc-step-title{
    font-size:40px;
    margin-left: 40px;
  }

  .uc-step-desc{
    font-size:34px;
    margin-left:40px;
  }
.uc-exclude-list {
  margin-bottom:50px ;
}

  .uc-exclude-list li{
    font-size:34px;
    margin-left:40px;
  }
.price-card button{
        font-size: 25px;
    }

.big-swal{
  position: relative;
}

/* Close (X) button – fixed corner */
.swal2-close {
    position: fixed !important;
    border-radius: 50%;
    background: #fff !important;
    color: #00000082 !important;
    font-size: 60px !important;
    /*line-height: 36px;*/
    text-align: center;
    /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);*/
    z-index: 99999;
}

/* hover */
.swal2-close:hover{
  background: #f3f4f6 !important;
}

.showw{
    font-size:30px;
    color: #2563eb;
}

.city-swal-popup {
    width: 700px !important;
    margin: 10px !important;
    padding: 18px !important;
    border-radius: 10px;
    height: 300px;
  }
  .youcity{
      font-size: 60px;
  }
  
  .selectcity{
    width: 600px;
    height: 95px;
    margin-top: 50px;
    font-size: 50px;
}

.city-banner-btn{
    display: inline-block;
    background: #1e90ff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 33px;
}
.city-status {
    color: #00ff7f;
    margin-left: 6px;
    animation: pulseDot 1s infinite;
}

.banner-text{
    position: relative;
    text-align: center;
    z-index: 2;
}

.city-banner-shade {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.search-wrap{
padding: 0 15px;
height: 100px;
}

.search-box input{
  border: none;
  outline: none;
  width: 100%;
  font-size: 45px;
}


.location-box{
    width:240px ;
  }

.location-box .icon{
  font-size: 50px;
}
  .location-box .text strong{
    font-size: 13px;
  }

  .location-box .text small{
    font-size: 11px;
  }

  .search-box input{
    font-size: 33px;
  }
  
  .search-icon{
  font-size: 45px;
}
  
/* SweetAlert full screen */
.big-swal {
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
}

/* remove default padding */
.swal2-popup.big-swal {
  padding: 0 !important;
}

/* content scroll inside */
.uc-service-box {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

/* image full width */
.uc-service-img {
  width: 100%;
  height: 30%;
  display: block;
}

/* body spacing */
.uc-service-body {
  padding: 14px;
}


/* price grid clean fit */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.rate-card{
    margin-top: 40px;
    margin-bottom: 40px;
}
.left{
    gap: 30px;
}
.check{
    font-size: 40px;
    font-size: 45px;
}
.middle{
    font-size: 40px;
    padding-left:20px;
}
.brand{
    font-size: 45px;
}
.right{
    font-size: 70px;
}

.cartsss{
    height: 160px;
}
.asdfgh{
    font-size: 35px;
}
.zxcvb{
    height: 160px;
    font-size:25px;
}
.price-acc-title{
    font-size: 45px;
}
.price-acc-icon{
    font-size:35px;
}
.price-acc-body {
    background: #fff;
    padding-left: 20px;
    padding-right: 20px;
}

.price-table th {
    background: #f6f6f6;
    text-align: left;
    font-size: 40px;
}

.price-table th, .price-table td {
    border: 1px solid #e0e0e0;
    padding: 40px;
    font-size: 33px;
    vertical-align: top;
}
.price-labour {
    display: block;
    color: #777;
    font-size: 28px;
    margin-top: 3px;
}
.darsss{
    background: white;
}

.price-accordion{
  margin-right: 0px;
  margin-left: 0px;
}

.mzaaa{
    border: 3px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
}

.uc-process-list li {
    margin-bottom: 12px;
    font-size: 38px;
    display: flex;
    padding-left: 50px;
}

.process-title {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  color: #2c2c2c;
}

.process-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  padding-left: 40px;
  margin-top: 30px;
}

.process-steps li {
  margin-bottom: 22px;
  padding-left: 28px;
  position: relative;
  text-align: left;
}

.process-steps li::before {
  counter-increment: step;
  content: counter(step) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
  color: #444;
  font-size: 40px;
}

.step-heading {
  font-weight: 600;
  font-size: 40px;
  color: #222;
  display: block;
  margin-bottom: 4px;
  text-align: left;
  padding-left: 20px;
}

.step-desc {
  font-size: 38px;
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
  text-align: left;
  padding-left: 20px;
}






}
@keyframes pulseDot{
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0.2;
  }
  100%{
    opacity: 1;
  }
}