* {
    margin: 0;
    padding: 0;
    box-sizing:border-box;
}
body {
  font-family: var(--font-main);
  line-height: 1.6;
  background-color: var(--secondary-color);
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
::marker {
  content: "";
}

:root {
/* =========================
   BRAND COLORS (CONTROLLED)
   ========================= */
--primary-color: #7a0010;        /* softer red */
--primary-dark: #520008;         /* hover */
--primary-soft: #fff5f5;         /* VERY light (almost white) */
/* =========================
   BACKGROUNDS (CLEAN UI)
   ========================= */
--background: #f8fafc;           /* softer page bg */
--secondary-color: #ffffff;      /* 🔥 cards pure white */
--white: #ffffff;
--black: #111111;
/* =========================
   TEXT COLORS (IMPROVED HIERARCHY)
   ========================= */
--text-primary: #0f172a;
--text-secondary: #475569;
--text-muted: #94a3b8;
--text-inverse: #ffffff;
/* =========================
   GRAYS (SOFT & MODERN)
   ========================= */
--gray: #e2e8f0;                 /* softer borders */
--gray-light: #f1f5f9;           /* input bg */
--gray-dark: #64748b;
/* =========================
   ACCENTS (LIMITED USE)
   ========================= */
--accent:#15803d;
--accent-hover:#22c55e;

--success: #16a34a;
--warning: #f59e0b;
--danger: #dc2626;
/* =========================
   RATING
   ========================= */
--star: #f59e0b;
/* =========================
   FOOTER
   ========================= */
--footer-bg: #0b0b0b;
--footer-text: #ffffff;
  /* =========================
     UI TOKENS
     ========================= */
  --border-radius: 16px;
  --transition: 0.2s ease;
  --focus-ring: 0 0 0 3px rgba(139, 0, 16, 0.35);
  --font-main: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
html {
  scroll-behavior: smooth;
}
.tech-map {
  touch-action: pan-y;
}

.submit-btn:disabled{
opacity:.7;
pointer-events:none;
}
/* =========================================
FLOATING BUTTON PERFORMANCE CSS
========================================= */

.whatsapp-float-btn,
.call-btn-blk-95,
.call-time{

  transition:
    opacity .28s ease,
    transform .28s ease,
    visibility .28s ease;

  will-change:
    transform,
    opacity;

  backface-visibility:hidden;

  transform:
    translate3d(0,0,0);

}




 /* =========================================
   WHATSAPP POPUP - PRODUCTION VERSION
========================================= */

/* =========================================
OVERLAY
========================================= */

.wa-popup-overlay{
position:fixed;
inset:0;
display:none;
align-items:center;
justify-content:center;
padding:16px;
background:rgba(0,0,0,.72);
backdrop-filter:blur(6px);
z-index:9999999;
}

/* =========================================
POPUP BOX
========================================= */

.wa-popup-box{
width:100%;
max-width:400px;
background:#fff;
border-radius:24px;
padding:16px;
overflow:hidden;
box-sizing:border-box;
box-shadow:
0 20px 60px rgba(0,0,0,.2);
animation:popupFade .25s ease;
}

/* =========================================
POPUP ANIMATION
========================================= */

@keyframes popupFade{

from{
opacity:0;
transform:
translateY(20px)
scale(.96);
}

to{
opacity:1;
transform:
translateY(0)
scale(1);
}

}

/* =========================================
TOP BANNER
========================================= */

.wht-pop-bnr{
display:flex;
align-items:flex-start;
gap:10px;
padding:12px;
border-radius:16px;
background:var(--footer-bg);
}

.wht-pop-img{
width:54px;
height:54px;
object-fit:contain;
flex-shrink:0;
}

.wht-pop-hdr{
flex:1;
min-width:0;
}

.wht-pop-ttl{
margin:0;
font-size:15px;
line-height:1.35;
font-weight:700;
letter-spacing:.3px;
color:var(--footer-text);
}

.wht-pop-txt{
display:block;
margin-top:4px;
font-size:16px;
line-height:1.4;
font-weight:500;
color:var(--gray);
}

/* =========================================
FORM AREA
========================================= */

.whts-pop-dtl-are{
display:flex;
flex-direction:column;
gap:12px;
margin-top:10px;
}

.wa-field{
width:100%;
}

/* =========================================
SELECTED SERVICE
========================================= */

.selected-service-box{
padding:12px;
line-height:1.5;
}

.selected-service-label{
display:block;
font-size:16px;
color: var(--footer-bg);

}

#selectedServiceName{
font-size:16px;
font-weight:700;
color:var(--primary-color);
}

/* =========================================
INPUTS
========================================= */

.wa-popup-box input,
.wa-popup-box textarea,
#waCity{
width:100%;
border:1px solid #e5e7eb;
border-radius:16px;
padding:14px 12px;
font-size:16px;
font-family:inherit;
outline:none;
box-sizing:border-box;
transition:.25s ease;
color:#111827;
background:#fff;
}

.wa-popup-box input,
#waCity{
height:56px;
}

.wa-popup-box textarea{
height:92px;
resize:none;
}

.wa-popup-box input:focus,
.wa-popup-box textarea:focus,
#waCity:focus{
border-color:var(--accent);

}

/* =========================================
CITY SELECT
========================================= */

#waCity{
appearance:none;
-webkit-appearance:none;
cursor:pointer;
font-weight:500;
}

#waCity option{
background:#fff;
color:#111827;
}

/* =========================================
AUTO DETECT CITY
========================================= */

#waCity.auto-detected{
background: #f4f8f5;
border:1px solid var(--accent);
color:var(--accent)!important;
}

/* =========================================
BUTTON
========================================= */

#waSubmitBtn{
width:100%;
height:56px;
margin-top:8px;
border:none;
border-radius:16px;
background:var(--accent);
color:var(--white);
font-size:16px;
font-weight:600;
cursor:pointer;
transition:.2s;
}

#waSubmitBtn:active{
transform:scale(.98);
}

/* =========================================
GPS FINDING
========================================= */

.gps-fnd-lct{
display:flex;
color:var(--primary-dark);
font-size:15px;
font-weight:600;
animation:gpsPulse 1.2s infinite;
}

/* =========================================
GPS SUCCESS
========================================= */

.gps-success{
display:none;
color:var(--accent);
font-size:15px;
font-weight:600;
line-height:1.4;
animation:fadeSuccess .35s ease;
}

/* =========================================
MAP
========================================= */

.whts-map-img{
position:relative;
width:100%;
height:120px;
border-radius:12px;
overflow:hidden;
display:none;
box-shadow:0 5px 8px rgba(29, 11, 14, 0.06);
}

/* =========================================
LEAFLET FIX                     
========================================= */

.whts-map-img .leaflet-container{
width:100%;
height:100%;
border-radius:12px;
}

/* =========================================
FOOT NOTE
========================================= */

.enq-no-auto-grrt{
display:block;
margin-top:2px;
text-align:center;
font-size:13px;
font-weight:600;
line-height:1.4;
color:#dba50f;
}

/* =========================================
GPS ANIMATION
========================================= */

@keyframes gpsPulse{

0%{
opacity:1;
transform:scale(1);
}

50%{
opacity:.6;
transform:scale(.985);
}

100%{
opacity:1;
transform:scale(1);
}

}

@keyframes fadeSuccess{

from{
opacity:0;
transform:translateY(4px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/* =========================================
LOCATION SECTION
========================================= */

.uj-location-wrap{
max-width:1200px;
margin:0 auto;
padding-bottom:0;
}

.uj-location-box{
margin:20px 0;
padding:20px;
border-radius:28px;
background:var(--footer-bg);
box-shadow:
0 10px 35px rgba(0,0,0,.06);
}

/* =========================================
TOP TEXT
========================================= */

.uj-location-top{
margin-bottom:20px;
}

.uj-location-top h2{
font-size:24px;
font-weight:600;
color:var(--text-inverse);
}

.uj-location-top p{
font-size:18px;
font-weight:500;
line-height:1.5;
color:var(--gray-light);
}

/* =========================================
CITY GRID
========================================= */

.uj-city-grid{
display:flex;
flex-wrap:wrap;
gap:40px;
}

/* =========================================
CITY CARD
========================================= */

.uj-city-card{
width:25%;
display:block;
padding:0;
overflow:hidden;
border:1px solid #ececec;
border-radius:22px;
background:#fff;
cursor:pointer;
transition:.25s;
}

.uj-city-card:hover{
transform:translateY(-4px);
border-color:#7a0010;
box-shadow:
0 12px 25px rgba(122,0,16,.12);
}

/* =========================================
CITY IMAGE
========================================= */

.uj-city-img{
width:100%;
height:135px;
object-fit:cover;
display:block;
}

/* =========================================
CITY INFO
========================================= */

.uj-city-info{
padding:14px;
text-align:left;
}

.uj-city-info h3{
margin-bottom:6px;
font-size:18px;
color:#111827;
}

.uj-city-info p{
font-size:13px;
line-height:1.5;
color:#6b7280;
}

/* =========================================
MOBILE
========================================= */

@media(max-width:480px){

.wa-popup-box{
padding:12px;
}

.wht-pop-img{
width:48px;
height:48px;
}

.uj-location-wrap{
padding:8px;
padding-bottom:0;
}

.uj-location-box{
padding:8px;
margin:0;
border-radius:16px;
}

.uj-location-top{
margin-bottom:16px;
}

.uj-location-top h2{
font-size:20px;
}

.uj-location-top p{
font-size:16px;
}

.uj-city-grid{
gap:20px;
flex-wrap:nowrap;
overflow-x:auto;
padding-bottom:4px;
}

.uj-city-card{
width:50%;
min-width:50%;
}

.uj-city-img{
height:80px;
}

.uj-city-info{
padding:12px;
}

.uj-city-info h3{
font-size:16px;
}

.uj-city-info p{
font-size:12px;
}

}









/* =========================================
FLOATING PRODUCT BUTTONS
FINAL PRODUCTION CSS
========================================= */

.floating-product-btns{

  position:fixed;

  bottom:16px;

  left:50%;

  transform:
    translateX(-50%)
    translateY(100px);

  z-index:999999;

  opacity:0;

  visibility:hidden;

  pointer-events:none;

  transition:
    opacity .35s ease,
    transform .35s ease;

  will-change:
    transform,
    opacity;

}

/* =========================================
SHOW
========================================= */

.show-floating-btns{

  opacity:1;

  visibility:visible;

  pointer-events:auto;

  transform:
    translateX(-50%)
    translateY(0);

}

/* =========================================
HIDE
========================================= */

.hide-floating-btns{

  opacity:0;

  visibility:hidden;

  pointer-events:none;

  transform:
    translateX(-50%)
    translateY(100px);

}

/* =========================================
FLOATING WRAP
========================================= */

.floating-product-btns
.product-page-btns{

  width:100%;

  display:flex;

  flex-direction:column;

  gap:24px;

}

/* =========================================
MAIN GROUP
========================================= */

.btn-whts-call-grp{

  display:flex;

  flex-direction:column;

  gap:8px;

}

/* =========================================
BUTTON ROW
========================================= */

.btn-whts-call-row{

  width:100%;

  display:flex;

  align-items:center;

  gap:20px;

  flex-wrap:nowrap;

}

/* =========================================
WHATSAPP BUTTON
========================================= */

.btn-whts-call-row
.whatsapp-booking-btn{

  width:220px;

  height:56px;

  border-radius:16px;

  display:flex;

  align-items:center;

  justify-content:center;

  gap:8px;

  padding:0 16px;

  background: var(--accent);

  color:#fff;

  text-decoration:none;

  font-size:16px;

  font-weight:500;

  box-sizing:border-box;

}

/* =========================================
WHATSAPP ICON
========================================= */

.btn-whts-call-row
.whatsapp-booking-btn i{

  font-size:22px;

  margin:0;

  flex-shrink:0;

}

/* =========================================
CALL BUTTON
========================================= */

.btn-whts-call-row
.call-btn-all-95-grp{

  flex:0 0 auto;

  width:66px;

  height:56px;

  border-radius:16px;

  display:flex;

  align-items:center;

  justify-content:center;

  gap:6px;

  background:#000;

  color:#fff;

  text-decoration:none;

  padding:0 10px;

  box-sizing:border-box;

  flex-direction:row;

}

/* =========================================
CALL ICON
========================================= */

.btn-whts-call-row
.call-btn-all-95-grp i{

  order:1;

  margin-right:6px;

  margin-left:0;

  font-size:14px;

  flex-shrink:0;

}

/* =========================================
CALL TEXT
========================================= */

.btn-whts-call-row
.call-btn-all-95-grp span{

  order:2;

  font-size:12px;

  font-weight:600;

}

/* =========================================
BOTTOM TEXT
========================================= */

.call-time-grp{

  width:100%;

  display:block;

  text-align:center;

  font-size:13px;

  line-height:1.3;

  color:var(--text-light);

}

/* =========================================
INTERACTION
========================================= */

.btn-whts-call-row a:hover{

  transform:translateY(-2px);

}

.btn-whts-call-row a:active{

  transform:scale(.97);

}

/* =========================================
DESKTOP
========================================= */

@media(min-width:769px){

  /* FLOATING POSITION */

  .floating-product-btns{

    right:0;

    left:auto;

    transform:
      translateX(0)
      translateY(300px);

  }

  .show-floating-btns{

    transform:
      translateX(0)
      translateY(0);

  }

  .hide-floating-btns{

    transform:
      translateX(0)
      translateY(300px);

  }

  /* INLINE LAYOUT */

  .floating-product-btns
  .product-page-btns{

    flex-direction:row;

    align-items:center;

    gap:20px;

  }

  /* FORM BUTTON */

  .floating-product-btns
  .open-booking-btn{

    flex:0 0 auto;

    white-space:nowrap;

  }

  /* WHATSAPP GROUP */

  .floating-product-btns
  .btn-whts-call-grp{

    width:auto;

  }

  /* HIDE CALL BTN */

  .floating-product-btns
  .call-btn-all-95-grp{

    display:none;

  }

  /* HIDE BOTTOM TEXT */

  .floating-product-btns
  .call-time-grp{

    display:none;

  }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

  .floating-product-btns{

    width:calc(100% - 16px);

    left:50%;

    bottom:4px;

    transform:
      translateX(-50%)
      translateY(100px);

  }

  .show-floating-btns{

    transform:
      translateX(-50%)
      translateY(0);

  }

  .hide-floating-btns{

    transform:
      translateX(-50%)
      translateY(100px);

  }

  /* STACK */

  .floating-product-btns
  .product-page-btns{

    flex-direction:column;

    gap:16px;

  }

  /* SHOW EVERYTHING */

  .floating-product-btns
  .call-btn-all-95-grp{

    display:flex;

  }

  .floating-product-btns
  .call-time-grp{
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    display: block;
    width: fit-content;
    background-color: var(--secondary-color);
    padding: 4px 10px;
    border-radius: 6px;
    margin-inline: auto;
  }

  /* BUTTON ROW */

  .btn-whts-call-row{

    gap:16px;

  }

  /* WHATSAPP */

  .btn-whts-call-row
  .whatsapp-booking-btn{

    width:208px;

    height:56px;

    font-size:16px;

    padding:8px 14px;

    border-radius:16px;


  }

  /* MOBILE CALL BUTTON */

  .btn-whts-call-row
  .call-btn-all-95-grp{

    width:56px;

    min-width:56px;

    height:56px;

    border-radius:50%;

    padding:0;

    justify-content:center;

  }

  /* HIDE TEXT */

  .btn-whts-call-row
  .call-btn-all-95-grp span{

    display:none;

  }

  /* CENTER ICON */

  .btn-whts-call-row
  .call-btn-all-95-grp i{

    margin:0;

    font-size:18px;

  }

}














/* ======================================================
   PAGE LOADER
====================================================== */
#pageLoader {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  width: 0%;
  background: linear-gradient(90deg, #720310, #930012);
  z-index: 9999;
  transition: width 0.3s ease-out;
}
/* ======================================================
   NAVIGATION
====================================================== */
.container-main {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.my-nav {
  width: 1200px;
  margin: 0 auto;
}
.nav-one {
  height: 80px;
  display: flex;
  padding: 8px 8px;
  background-color: var(--black);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}
.uj-logo {
  width: 60px;
  height: 60px;
  transition: transform var(--transition);
}
.uj-logo:hover {
  transform: scale(1.1);
}
.nav-hdng {
  padding: 0 12px;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}
.nav-hdng:hover {
  background-color: var(--primary-color);
  border-radius: var(--border-radius);
}
.lct {
  width: 1200px;
margin: 0 auto;
}
.lct .location-finder {
  margin-top: 8px;
  width: 1200px;   /* same as container */
}
.map-location-btn {
  background: var(--background);
  border: 1px solid var(--black);
  color: var(--black);
  border-radius: 12px;
  padding: 6px 16px 6px 10px;
  font-size: 15px;
  cursor: pointer; /* 🔥 change */
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.map-location-btn.loading {
  cursor: wait;
  opacity: 0.7;
}
                .map-location-btn i {
                    color: var(--primary-color);
                    margin-right: 8px;
                    font-size: 20px;
                }
                #locationText {
                    font-weight: 500;
                }


/* SUCCESS LABEL */
.success-label {
  color: var(--accent);
  font-weight: 600;
}
.success-label {
  color: var(--accent);
  font-weight: 600;
}
#miniMapWrapper{
margin-top: 8px; 
display: none;
}
#miniMap {
  width: 100%;
  object-fit: cover;
  pointer-events: none;
  height:100px; 
border-radius:8px;
 overflow:hidden;
}
#miniMap {
  box-shadow: 0 5px 12px rgba(0,0,0,0.1);
}
/* ======================================================
   ROLLING BANNER – TEXT ONLY VERSION
====================================================== */
/* FULL WIDTH BACKGROUND */
#rollingBanner {
  width: 1200px;
  margin: 0 auto;
}
/* CENTER ALIGN (same as container) */
.rolling-inner {
  width: 100%;
  display: flex;
  gap: 40px;
}
/* ACTUAL BANNER */
#rolling-banner {
  width: calc(60% - 20px);
  margin: 8px 0px;
  padding: 8px 0;
  background: var(--black);
  overflow: hidden;
  border-radius: 0px 12px 12px 0px;
}
/* TEXT */
.rolling-text {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}
.rolling-text span {
  display: inline-block;
  animation: scrollText 15s linear infinite;
}
@keyframes scrollText {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* ======================================================
   BOTTOM NAVIGATION
====================================================== */
.bottom-nav {
  position: fixed;
  bottom: 16px;
  z-index: 1001;
  display: flex;
  gap: 20px;
  left: 50%;
  transform: translate(50%);
}
















/* ======================================================
   BUTTON
====================================================== */
.call-btn-blk-95{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.call-btn-all-95 {
    width: 240px;
    min-height: 56px;   /* ❌ height remove */
    padding: 16px;  /* 🔥 reduce padding */
    background: var(--footer-bg);
    color: var(--secondary-color);
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
}
.call-btn-all-95:hover,
.call-btn-all-95:focus {
  background: var(--primary-dark);
  transform: scale(1.05);
}
.call-time {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  display: block;          /* 🔥 change this */
  width: fit-content;      /* 🔥 main trick */
  background-color: var(--secondary-color);
  padding: 4px 10px;
  border-radius: 6px;
  margin-inline: auto;     /* 🔥 center perfectly */
}
.whatsapp-float-btn {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--gray-light);
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 8999;
  /* 🔥 ADD THIS */
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
}
.whatsapp-float-btn:hover,
.whatsapp-float-btn:focus {
  background: var(--accent-hover);
  transform: scale(1.05);
}
#ac-page-top-section-dtl, #ac-page-top-section-dtl-gurm, 
#ac-page-top-section-dtl-dlh, #ac-page-top-section-dtl-noda, 
#chmny-page-top-section-dtl,
#gysr-page-top-section-dtl, #hob-page-top-section-dtl,
#prsr-pmp-page-top-section-dtl, #ro-page-top-section-dtl,
#wtr-pmp-page-top-section-dtl,
#wtr-soft-page-top-sec-dtl,
#mcr-ovn-page-top-section-dtl,
 #ro-page-top-section-dtl-gurm,
  #ro-page-top-section-dtl-dlh,
   #ro-page-top-section-dtl-noda

{
   width: 100%; 
   margin-top: 16px;
}

#ro-city-main-page{

   width: 100%; 
   margin-top: 16px;

}

#ac-page-srch-bar, #ac-page-srch-bar-gurm,
#ac-page-srch-bar-dlh, #ac-page-srch-bar-noda,
#chmny-page-srch-bar,
 #gysr-page-srch-bar, #hob-page-srch-bar,
 #prsr-pmp-page-srch-bar, #ro-page-srch-bar,
 #wtr-pmp-page-srch-bar, #wtr-soft-page-srch-bar,
  #mcr-ovn-page-srch-bar,
  #ro-page-srch-bar-gurm,
  #ro-page-srch-bar-dlh,
  #ro-page-srch-bar-noda
 {
  width: 100%;
}
.srch-bar{
  display: flex;
  width: 100%;
  gap: 40px;
  position: relative;
  margin: 16px 0;
}
.page-srch-bar{
  width: 100%;
      display: flex;
  gap: 40px;
}
 .user-bar{
  display: flex;
  width: 100%;
  gap: 40px;
  margin: 0px 0;
}
#user-rntg-rew-box{
  width: 60%;
}
#user-rntg-rew-box-2{
   width: calc(60% - 20px);
}
.srch-img-text-home{
  display: flex;
  gap: 40px;
}
.user-rtng-call-btn,
.user-rtng-call-btn-top {
  display: flex;
  gap: 32px;
  padding: 0px;
}
.user-rtng-call-btn-top {
  margin-top: 48px;
}
.rtng-user,
.rtng-user-two {
  width: 60%;
  display: flex;
  align-items: flex-start;
  gap: 8%;
}
.rtng-user-block {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.rtng-star {
  font-size: 2rem;
  color: var(--star);
}
.combo {
  display: flex;
  flex-direction: column;
}
.rtng-score {
  font-size: 1.2rem;
  font-weight: 700;
}
.rtng-label {
  font-size: 1rem;
   color: var(--black);
}
.rtng-users {
  font-size: 2rem;
  color: var(--primary-color);
}
#text-voice-serch-box{
  width: 40%;
  padding: 16px;
  background: var(--footer-bg);
    border-radius: var(--border-radius);
    display: flex;
        align-items: center;
    justify-content: flex-end;
      position: relative;
    z-index: 2000;
}
.all-srch {
display: flex;
gap: 20px;
align-items: center;
justify-content: flex-end;
}
.text-search {
  display: flex;
}
.text-search input {
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid var(--gray);
  border-radius: 12px 0px 0px 12px;
  background: var(--white);
  color: var(--primary-color);
  outline: none;
}
.text-search button {
  padding: 8px 16px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  background: var(--primary-color);
  color: var(--background);
  border-radius: 0px 12px 12px 0px;
  transition: background var(--transition);
}
.text-search button:hover {
  background: var(--primary-dark);
}
/* ======================================================
   SEARCH RESULTS DROPDOWN
====================================================== */
.search-results {
    position: absolute;
    top: 112px;
    left: 0;
    width: 100%;
    max-height: 220px;
    overflow-y: auto;
    background: var(--secondary-color);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    z-index: 100;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 16px;
  color: var(--primary-color);
  cursor: pointer;
  border-bottom: 1px solid var(--white);
}
.search-result-img{
  width: 48px;
  height: 48px;
  border-radius: 4px;
}
.search-result-item:last-child {
  border-bottom: none;
}
.search-result-item:hover {
  color: var(--primary-dark);
}
/* ======================================================
   VOICE SEARCH
====================================================== */
.voice-search-container {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(147,0,18,0.08);
  position: relative;
  transition: box-shadow var(--transition);
}
.voice-search-container.active {
  box-shadow:
    0 0 0 8px rgba(147,0,18,0.08),
    0 2px 8px rgba(147,0,18,0.08);
}
#voiceSearchBtn {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#voiceSearchBtn .fa-microphone {
  font-size: 20px;
  color: var(--primary-color);
  transition: color 0.3s;
}
#voiceSearchBtn.listening .fa-microphone {
  color: var(--primary-dark);
}
/* ======================================================
   VOICE WAVE
====================================================== */
.wave-effect,
.wave-circle {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.wave-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  animation: wavePulse 1.5s linear;
}
@keyframes wavePulse {
  0%   { transform: translate(-50%, -50%) scale(1); opacity: .7; }
  70%  { opacity: .3; }
  100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}
.container-one {
  display: flex;
  width: 100%;
  gap: 40px;
}
#main-service-box, #main-service-box-2{
  width: 60%;
    padding: 16px;
  background: var(--secondary-color);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.container-one-1 {
}
/* ======================================================
   IMAGE NORMALIZATION (VALID & SAFE)
====================================================== */
.serv-img,
.review-img {
  aspect-ratio: 1 / 1;
}
.ac-img,
.logo-img {
  aspect-ratio: 3 / 2;
}
.product-page-img,
.pop-img {
  aspect-ratio: 16 / 9;
}
.serv-img,
.ac-img,
.logo-img,
.review-img,
.product-page-img,
.pop-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
/* ======================================================
   SEARCH RESULTS
====================================================== */
.search-result-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  cursor: pointer;
}
.search-result-item.active {
  background: #f0f4ff;
}
.search-result-item .result-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.search-result-item .result-text {
  display: flex;
  flex-direction: column;
}
/* ======================================================
   SEARCH ICON
====================================================== */
#searchBtn .fa-search {
  color: var(--gray-light);
}
/* ======================================================
   SEARCH + SERVICE CONTAINERS
====================================================== */
.serh-box-product-menu {
  width: 60%;
  height: 80px;
  padding: 8px 16px;
  display: flex;
  color: var(--white);
}
#user-rntg-rew{
width: 60%;
height: 120px;
display: flex;
align-items: flex-start;
gap: 16%;
  padding: 16px 8px;
   background: var(--gray-light); /* instead of red gradient */
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: box-shadow var(--transition);
}
.serch-container{
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 16px;
  gap: 16px;
  background: var(--black);
  border-radius: var(--border-radius);
  position: relative;
  z-index: 2000;
}
.srch-img-text {
  width: calc(60% - 40px);
    padding: 16px;
  display: flex;
   background: var(--secondary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius);
  transition: box-shadow var(--transition);
  justify-content: flex-start;
  gap: 32px;
}
/* ------------------------------------------------------
   HEADINGS & TEXT
------------------------------------------------------ */
.top-hdng {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
}
.top-pera {
  font-size: 16px;
  color: var(--text-primary);
}
.frst-hdng {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}
.main-hdng {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}
.main-pera {
    margin-top: 8px;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* max 3lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.container-all-service {
  margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.container-img-text {
    display: flex;
    gap: 40px;
}
.cont-ac-img-text {
    width: 100%;
    max-width: 164px;
    padding: 6px;
    border-radius: 8px;
    border: 1px solid var(--black);
    transition: transform var(--transition), box-shadow var(--transition);
}
.cont-ac-img-text:hover {
  transform: scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 0 4px 16px rgba(147,0,18,0.15);
}
.ac-img{
    width: 100%;
    height: 96px;
    border-radius: 8px;
}
#why-you-choose-uj-us, #why-you-choose-uj-box, #why-you-choose-uj-box-ac-gurm,
 #why-you-choose-uj-box-ac-dlh,  #why-you-choose-uj-box-ac-noda,
#why-you-choose-uj-box-2,
 #why-you-choose-uj-box-3, #why-you-choose-uj-box-4,
 #why-you-choose-uj-box-5, #why-you-choose-uj-box-6,
 #why-you-choose-uj-box-7, #why-you-choose-uj-box-8,
 #why-you-choose-uj-box-9,  #why-you-choose-uj-box-10,
  #why-you-choose-uj-box-gurm,  #why-you-choose-uj-box-dlh,
   #why-you-choose-uj-box-noda   
 {
    width: 40%;
}
.cont-new {
      width: 100%;
      display: flex;
    flex-wrap: wrap;
    row-gap: 32px;
    justify-content: flex-end;
    align-self: flex-start;
}
.cont-two-2, .cont-two-3, .cont-two-4 {
    width: 100%;
    padding: 8px 16px;
    border-radius: var(--border-radius);
}
.cont-two-2 {
  border: 1px solid var(--black);
}
.cont-two-3,
.cont-two-4 {
  background: var(--secondary-color);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.uj-whte-hdng {
    font-size: 22px;
    font-weight: 500;
    color: var(--black);
}
.uj-whte-pera {
    font-size: 18px;
    font-weight: 500;
    color
: var(--black);
}
#main-call-btn{
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-two{
    display: flex;
    width: 100%;
    gap: 40px;
    align-items: flex-start;
}
.how-faq-main-box{
width: 50%;
display: flex;
flex-wrap: wrap;
gap: 32px;
}
#faq-qustn-box{
  width: 100%;
}
#faq-qustn-box-ac, 
#faq-qustn-box-ac-gurm, 
#faq-qustn-box-ac-dlh, 
#faq-qustn-box-ac-noda, 
#faq-qustn-box-chmny,
#faq-qustn-box-gysr,
#faq-qustn-box-hob,
#faq-qustn-box-prsr-pmp,
#faq-qustn-box-wtr-pmp,
#faq-qustn-box-ro,
#faq-qustn-box-wtr-soft,
#faq-qustn-box-mcr-ovn,
#faq-qustn-box-ro-gurm,
#faq-qustn-box-ro-dlh,
#faq-qustn-box-ro-noda
{
  width: 100%;
}
#user-review-filter-box{
  width: 50%;
}
#user-review-filter-box-ac, 
#user-review-filter-box-ac-gurm, 
#user-review-filter-box-ac-dlh, 
#user-review-filter-box-ac-noda, 
#user-review-filter-box-chmny,
#user-review-filter-box-gysr,
#user-review-filter-box-hob,
#user-review-filter-box-prsr-pmp,
#user-review-filter-box-wtr-pmp,
#user-review-filter-box-ro,
#user-review-filter-box-wtr-soft,
#user-review-filter-box-mcr-ovn,
#user-review-filter-box-ro-gurm,
#user-review-filter-box-ro-dlh,
#user-review-filter-box-ro-noda
{
  width: 50%;
}
#how-it-wrk-box{
width: 100%;
}
#how-it-wrk-box-ac,
#how-it-wrk-box-ac-gurm,
#how-it-wrk-box-ac-dlh,
#how-it-wrk-box-ac-noda,
 #how-it-wrk-box-chmny,
  #how-it-wrk-box-gysr,
    #how-it-wrk-box-hob,
        #how-it-wrk-box-prsr-pmp,
        #how-it-wrk-box-ro,
        #how-it-wrk-box-wtr-pmp,
         #how-it-wrk-box-wtr-soft,
           #how-it-wrk-box-mcr-ovn,
               #how-it-wrk-box-ro-gurm,
                   #how-it-wrk-box-ro-dlh,
                       #how-it-wrk-box-ro-noda
 {
width: 100%;
}
.cont-hw-it-wrk {
    width: 100%;
    padding: 8px 16px;
    background: var(--black);
    border-radius: var(--border-radius);
}
.ac-hdng-work {
    margin-top: 8px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: var(--gray-light);
}
.ac-pera-work li{
    margin-top: 8px;
    font-size: 14px;
    color: var(--gray-light);
}
.all-review-home {
    width: 100%;
    padding: 8px 16px;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.cont-fltr{
    width: 100%;
    padding: 8px 16px;
    background: var(--black);
    border-radius: var(--border-radius);
}
/* ======================================================
   FAQ SECTION
====================================================== */
.faq-section {
  margin: 16px 0;
}
.faq-hdng {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
}
.faq-question {
  width: 100%;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
}
.faq-answer {
  display: none;
  padding: 10px 0;
  color: var(--white);
}
.faq-answer.show {
  display: block;
}
/* ------------------------------------------------------
   ARROW ICON
------------------------------------------------------ */
.faq-arrow {
  font-size: 1em;
  transition: transform var(--transition);
}
/* ======================================================
   FOOTER
====================================================== */
#footer{
  margin-top: 40px;
}
#footer-ro-repair-service-gurm{
  margin-top: 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0px auto 0;
  padding: 16px;
  display: flex;
  gap: 40px;
  background: var(--footer-bg);
  color: var(--footer-text);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}
/* ------------------------------------------------------
   FOOTER COLUMNS
------------------------------------------------------ */
.footer-part {
  width: 25%;
  margin-top: 16px;
}
.footer-title {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 600;
  color: var(--footer-text);
}
.footer-sign {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--footer-text);
}
/* ------------------------------------------------------
   SOCIAL ICONS
------------------------------------------------------ */
.footer-social-links {
  display: flex;
  gap: 10px;
}
/* keep IDs for backward compatibility */
#facebook-icon,
#instagram-icon,
#whatsapp-icon,
#email-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--footer-text);
  border-radius: 50%;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(24,119,243,0.15);
  transition: background var(--transition), color var(--transition);
}
#facebook-icon:hover,
#instagram-icon:hover,
#whatsapp-icon:hover,
#email-icon:hover {
  background: var(--footer-text);
  color: var(--primary-dark);
}
#page-top-section-dtl{
  width: 100%;
  display: flex;
  gap: 40px;
}
.top-section{
    width: calc(60% - 20px);
  padding: 0px;
}

#sub-service-serch-box{
  width: 100%;
}
.viewDetailModal,
.reviewPopupModal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
  background: rgba(0,0,0,0.5);
}
.viewDetailModal.active,
.reviewPopupModal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.viewDetailLink {
     margin-top: 8px;
     color: var(--primary-dark);
     font-weight: 600;
     text-decoration: none;
}
/* 🔥 popup box */
.pop-body {
    position: relative;
    max-width: 420px;
    width: 100%;
    max-height: 80vh;   /* 🔥 IMPORTANT FIX */
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
}
.closeViewDetail {
     position: absolute;
     top: 8px;
     right: 8px;
     font-size: 24px;
     cursor: pointer;
     color: #888;
     background-color: #f4f4f4;
     border: 1px solid #888;
     border-radius: 50%;
     width: 32px;
     height: 32px;
     display: flex;
     justify-content: center;
     align-items: center;
     overflow-y: auto;
     max-height: 400px;
}
.closeViewDetail:hover {
     color: #720310;
     border-color: #720310;
}
.intrl-stng{
  padding-left:0px; 
  margin-bottom:0;
}
button:active {
  transform: scale(0.95);
  filter: brightness(1.1);
}
.call-btn-all-95{
  transition: background 0.3s ease;
}
.call-btn-all-95.scrolled {
  background: #111;
}
.call-btn-all-95.scrolled a,
.call-btn-all-95.scrolled span {
  color: #fff5f5;
}
.whatsapp-booking-btn{
    width: 220px;
    height: 56px;
    display: flex;
    padding: 16px;
    font-size: 16px;
      background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    /* transition: background var(--transition); */
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.whatsapp-booking-btn:hover,
.whatsapp-booking-btn:focus {
  background: var(--accent);
  transform: scale(1.05);
}
.open-booking-btn {
    width: 220px;
    height: 56px;
    padding: 16px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.2s;
    justify-content: center;
}
.open-booking-btn:hover,
.open-booking-btn:focus {
  background: var(--primary-dark);
  transform: scale(1.05);
}
.open-booking-btn:active {
  transform: scale(0.97);
}
/* ------------------------------------------------------
   SUBMIT BUTTON
------------------------------------------------------ */
.submit-btn {
  width: 280px;
  height: 56px;
  margin: 20px auto 0;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background var(--transition);
}
.submit-btn:hover {
  background: var(--primary-dark);
}
button:active, a:active {
  transform: scale(0.97);
  transition: 0.1s;
}
.main{
background:var(--background);
display:flex;
justify-content:center;
padding:0px;
}
.container{
max-width:420px;
width:100%;
overflow:hidden;
 box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.intrl-containter{
margin: top 40px; 
}
.nav-one-user{
    display: flex;
    padding: 4px;
    background-color: var(--black);
}
.intrl-containter {
  background-color: var(--background); /* instead of #d4def1 */
}
/* banner */
.banner{
padding:0px;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.banner-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
}
.banner-top-hdng {
  margin-top: 10px;
    font-size: 30px;
    font-weight: 600;
    color: #2b2b2b;
    text-align: center;
}
.banner-top-pera {
    font-size: 20px;
       font-weight: 400;
    color: #111;
}
/* URGENCY */
.urgency{
margin-top: 8px;
padding:8px 12px;
text-align:center;
font-size:16px;
font-weight:600;
width: 90%;
transform: translateX(5%);
  background: var(--primary-soft);
  color: var(--success);
  border: 1px solid var(--gray);
  border-radius: 12px;
}


.web-lnk-dv{
width: 100%;

}

/* BENEFITS */
.benefits{
padding:12px;
}
.benefit{
padding:8px;
font-size:16px;
font-weight: 600;
}

.web-link{
  color: var(--text-primary);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.button{
  padding:0px;
display: flex;
justify-content: center;
align-items: end;
flex-wrap: wrap;
margin-top: 12px;
}
.call-btn-blk-ro-offer {
    width: 320px;
    height: 64px;
    display: flex;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    /* transition: background var(--transition); */
    align-items: center;
    justify-content: center;
}
.trust {
  margin: 8px 0;
  font-size: 12px;
  font-weight: 400;
  color: #555;
  text-align: center;
  display: block;
  width: 100%;
}
.user-techn{
  width: 100%;
  gap: 40px;
  display: flex;
  flex-direction: row;
}
.user-enq-gnrt{
  width: 50%;
  display: flex;
    flex-direction: column;
    padding: 40px;
    background-color: #dbf5e7;
    border-radius: 16px;
}
.techn-enq-gnrt{
  width: 50%;
  display: flex;
    flex-direction: column;
    padding: 40px;
        background-color: #f1cacf;
    border-radius: 16px;
}
/* ======================================================
   FONT (FIXED)
====================================================== */
.call-time-bottom{
  margin-top: 8px;
  font-size: 12px;
  color: var(--primary-soft);
  display: flex;
  justify-content: center;
}
@font-face {
  font-family: 'Lato';
  src: url('/fonts/lato-regular.woff2') format('woff2');
  font-display: swap;
}
/* ======================================================
   RESET & BASE
====================================================== */
.product-page-img {
  max-width: 100%;
  height: auto;
  display: block;
}
.logo-img {
  width: 120px;
  height: auto;
  object-fit: contain;
  display: block;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
.lmtd-slt {
  background-color: #facc15;
  padding: 8px;
  font-weight:700;
  text-align:left;
  margin:10px 0;
 border-radius:6px;
}
.uj-whte-ul{
  color: var(--text-primary);
  font-weight: 500;
}
/* ======================================================
   SERVICE ICON GRID
====================================================== */
.img-text-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
  border-radius: var(--border-radius);
  transition: transform var(--transition), background var(--transition);
}
.img-text-link:hover {
  transform: scale(1.05);
  background: var(--primary-color);
}
.serv-img {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid var(--black);
  background: linear-gradient(
    135deg,
    var(--primary-color) 60%,
    var(--primary-dark) 100%
  );

  transition: box-shadow var(--transition), border-color var(--transition);
}
.img-text-link:hover .serv-img {
  border: 1.5px solid var(--primary-color);
  box-shadow: 0 2px 8px rgba(147,0,18,0.08);
  animation: rotate-border 1.2s linear infinite;
}
@keyframes rotate-border {
  to { transform: rotate(8deg); }
}
.spannn {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: var(--black);
  transition: color var(--transition);
}
.img-text-link:hover .spannn {
  color: var(--text-primary);
}
.img-text-link:hover {
  background: var(--gray-light); /* remove red hover */
}
/* ======================================================
   SEARCH INPUT + RESULTS
====================================================== */
.new-nav-box-search {
  display: flex;
  width: 100%;
  height: 120px;
  margin-bottom: 24px;
  gap: 40px;
  background-color: red;
}
/* ------------------------------------------------------
   SIDE CONTAINERS
------------------------------------------------------ */
.container-two-one {
  width: 34%;
}
/* ------------------------------------------------------
   HEADINGS & TEXT
------------------------------------------------------ */
.uj-whte-hdng {
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
}
.uj-whte-pera {
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
}
.uj-whte-pera-bg {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}
/* ------------------------------------------------------
   BRAND LOGOS
------------------------------------------------------ */
.brand-logo-img {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.logo-img {
  width: 60px;
  height: 48px;
  border-radius: 8px;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  mix-blend-mode: darken;
}
/* ------------------------------------------------------
   CALL BUTTON
------------------------------------------------------ */
.call-btn-container {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* ------------------------------------------------------
   SERVICE LIST
------------------------------------------------------ */
.service-container {
  width: 100%;
  padding: 16px;
  margin-bottom: 40px;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
}
.container-repair {
  display: flex;
gap: 40px;
  width: 100%;
}
/* ------------------------------------------------------
   FILTERS
------------------------------------------------------ */
.all-review {
  width: 100%;
  padding: 8px 16px;
  background: var(--secondary-color);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.review-filters {
  margin: 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start; /* better alignment */
}
.filter-btn {
  padding: 6px 16px;
  font-size: 15px;
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-dark);
  background: var(--secondary-color);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-color);
}
/* ------------------------------------------------------
   REVIEW LIST
------------------------------------------------------ */
.review-list {
  display: flex;
  flex-direction: column;
  gap: 12px; /* spacing add */
}
.review-item {
  display: flex;
  gap: 12px;
  align-items: flex-start; /* ✅ FIX */
  padding-bottom: 16px;
  border-bottom: 1px solid var(--white);
}
.review-item:last-child {
  border-bottom: none;
}
/* ------------------------------------------------------
   REVIEW CONTENT
------------------------------------------------------ */
.review-img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0; /* image compress nahi hogi */
}
.review-content {
  flex: 1;
}
.review-stars {
  margin-bottom: 4px;
  font-size: 18px;
  color: var(--star);
  letter-spacing: 1px;
}
/* NAME + LOCATION INLINE FIX */
.review-user {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.review-location {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
}
.review-text {
  margin-top: 4px;
  font-size: 15px;
  color: #444;
  line-height: 1.4;
}
/* ======================================================
   SCROLLABLE CONTAINERS
====================================================== */
#ac-scrollable-div, #ac-scrollable-div-gurm,
#ac-scrollable-div-dlh, #ac-scrollable-div-noda,
#chmny-scrollable-div,#gysr-scrollable-div, #hob-scrollable-div,
 #prsr-pmp-scrollable-div, #ro-scrollable-div,
  #wtr-pmp-scrollable-div, #wtr-soft-scrollable-div,
    #mcr-ovn-scrollable-div, #ro-scrollable-div-gurm, 
    #ro-scrollable-div-dlh, #ro-scrollable-div-noda
  {
  width: 60%;
}
/* ✅ Modal scroll (NO auto movement) */
.scrollDivModal {
  overflow-y: auto;
}
/* ✅ Main scroll container */
.scrollable-div {
  width: 100%;
  overflow-y: auto;
  padding: 0 8px;
  background: var(--secondary-color);
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  height: auto;
  /* ✅ Soft snap only (safe) */
  scroll-snap-type: y proximity;
-webkit-overflow-scrolling:touch;
  

}
/* ✅ Hide scrollbar */
.scrollable-div::-webkit-scrollbar {
  display: none;
}
/* ✅ Cards */
.service-card {
  scroll-snap-align: start;
  min-height: fit-content;
  /* optional smooth UI (safe) */
  transition: transform 0.2s ease, opacity 0.2s ease;
}
/* ======================================================
   PRODUCT PAGE CARD
====================================================== */
.prodcut-page-all-details {
  margin-top: 12px;
  width: 100%;
  padding: 8px;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 1px solid var(--black);
  border-radius: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.prodcut-page-all-details:hover {
  transform: scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
/* ------------------------------------------------------
   PRODUCT LAYOUT
------------------------------------------------------ */
.box-1{
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
 .box-2 {
    display: flex;
    gap: 20px;
    align-items:end;
}
 .box-3 {
  margin: 16px 0 ;
    display: flex;
justify-content: flex-end;
}







.product-page-btns {
    display: flex;
    gap: 20px;
    display: none;
}
.tech-map {
  overflow: hidden;
  position: relative;
 width:100%; 
 height:220px; 
 border-radius:16px;
}
/* ========================= */
/* REMOVE LEAFLET BOX */
/* ========================= */
.leaflet-div-icon {
  background: transparent !important;
  border: none !important;
}
/* ========================= */
/* USER */
/* ========================= */
.user-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}
.user-dot {
  width: 14px;
  height: 14px;
  background: #007bff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,123,255,0.9);
  animation: pulseUser 2s infinite;
}
.user-label {
  font-size: 12px;
  font-weight: 700;
  color: #000000;
}
.user-label {
  background: white;
  padding: 0px 3px;
  border-radius: 4px;
}
/* ========================= */
/* TECHNICIAN */
/* ========================= */
.tech-card {
  position: relative;
  width: 60px;
  height: 60px;
  text-align: center;
}
/* 🔥 REMOVE BORDER */
.tech-card img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: block;
  margin: auto;
  border: none !important;   /* ❌ border removed */
  box-shadow: none !important;
}
/* ========================= */
/* STATUS DOT */
/* ========================= */
.status-dot {
  position: absolute;
  top: 2px;
  right: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none !important;   /* ❌ border removed */
}
.status-dot.online {
  background: #00c853;
  box-shadow: 0 0 6px #00c853;
}
.status-dot.offline {
  background: red;
}
/* ========================= */
/* TEXT */
/* ========================= */
.status-text {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-top: 2px;
  background: rgba(255, 255, 255, 0.6);
  padding: 0px;
  border-radius: 4px;
}
.status-text.online {
  color: #00c853;
}
.status-text.offline {
  color: red;
}
.distance-text {
  position: absolute;
  bottom: -28px;
  left: 0px;
  font-size: 12px;
  font-weight: 500;
  color: #00ff66;
  background: rgba(0,0,0,0.6);
  padding: 2px 4px;
  border-radius: 4px;
  white-space: nowrap;
}
/* ========================= */
/* POPUP */
/* ========================= */
.popup-card {
  text-align: center;
  font-size: 14px;
  font-family: Arial;
}
/* ========================= */
/* ANIMATION */
/* ========================= */
@keyframes pulse {
  0% { transform: scale(1); }
  70% { transform: scale(1.4); }
  100% { transform: scale(1); }
}
@keyframes pulseUser {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(1.6); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}
.viewDetailModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.viewDetailModal.active {
  display: flex;
}
/* Popup */
.reviewPopupModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.reviewPopupModal.active {
    display: flex;
}
/* Box */
.pop-body {
    background: #fff;
    width: 95%;
    max-width: 420px;
    padding: 20px;
    border-radius: 12px;
    position: relative;
}
/* Close */
.closeReviewPopup {
    position: absolute;
    right: 10px;
    top: 8px;
    font-size: 22px;
    cursor: pointer;
    border: none;
    background: none;
}
/* Rating Summary */
.rating-summary {
    text-align: center;
}
.rating-summary h2 {
    font-size: 32px;
    margin: 0;
}
.stars {
    color: #ffc107;
    font-size: 20px;
}
/* Rating Bars */
.rating-bars {
    margin: 12px 0;
}
.bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0;
}
.progress {
    flex: 1;
    height: 6px;
    background: #eee;
    border-radius: 4px;
}
.progress div {
    height: 100%;
    background: #ffc107;
    border-radius: 4px;
}
/* Reviews */
.review-list-popup {
    max-height: 180px;
    overflow-y: auto;
    margin-top: 10px;
}
.review-list-popup li {
    border-bottom: 1px solid #eee;
    padding: 8px 0;
}
.reviewPopupLink{
  display: block;
  margin: 4px 0; 
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.product-page-detail-1 { width: 65%; }
.product-page-detail-2 { width: 35%; }
.tech-map, .view-detl { width: 100%; }

.product-page-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}
.product-page-detail-3 { width: 65%; }
.product-page-detail-4 { width: 35%; }
/* ------------------------------------------------------
   SERVICE LINKS
------------------------------------------------------ */
.services-name a {
  display: inline-block;
  margin-top: 12px ;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}
.services-name a:hover {
  color: var(--gray-light);
}
/* ======================================================
   REVIEW POPUP / MODAL
====================================================== */
.review-popup-link {
  display: inline-block;
  font-size: 1em;
  color: var(--star);
  text-decoration: none;
}
.fa-star {
  color: var(--star);
}
.review-rating-1 {
  margin-left: 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
}
.review-count {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}
/* ======================================================
   FORM STYLES
====================================================== */
.form-hdng {
  text-align: center;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 20px;
}
/* ------------------------------------------------------
   FORM CARD / SERVICE ITEM
------------------------------------------------------ */
.cont-ac-img-text-form {
  width: 100%;
  margin: 12px 0;
  padding: 8px;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.ac-img-form {
  width: 40%;
  max-height: 80px;
  border-radius: 8px;
  object-fit: cover;
}
.main-hdng-form {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}
.main-pera-form {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
}
/* ------------------------------------------------------
   FORM WRAPPER
------------------------------------------------------ */
.container-main-form {
  display: flex;
  justify-content: center;
  padding: 0;
  background: var(--background);
}
.contact-container {
  width: 100%;
  max-width: 400px;
  padding: 8px;
  background: var(--background);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
/* ------------------------------------------------------
   FORM GROUPS
------------------------------------------------------ */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.form-group label {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}
.required {
  margin-left: 2px;
  color:var(--primary-color);
}
 #clear-cart-btn{
  display: none;
}
/* ------------------------------------------------------
   INPUTS & SELECTS
------------------------------------------------------ */
.form-input {
  width: 100%;
  padding: 10px 8px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-primary);
  background: var(--gray-light);
  border: 1px solid var(--gray-dark);
  border-radius: 8px;
  transition: border-color var(--transition);
}
.form-input-loctn {
  width: 80%;
  padding: 10px 8px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-primary);
  background: var(--gray-light);
  border: 1px solid var(--gray-dark);
  border-radius: 8px;
  transition: border-color var(--transition);
}
.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
}
.form-group select.form-input {
  background: var(--gray-light);
  color: var(--text-primary);
}
.form-group select.form-input:focus {
  border-color: var(--primary-dark);
}
/* optional service dropdown compatibility */
#service {
  margin-top: 12px;
  background: var(--gray-light);
  border-color: var(--gray-dark);
}
#service:hover {
  background: var(--gray-light);
  border-color: var(--primary-dark);
}
/* ------------------------------------------------------
   RADIO BUTTONS
------------------------------------------------------ */
.form-group fieldset label {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-primary);
}
.form-group fieldset input[type="radio"] {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  appearance: none;
  -webkit-appearance: none;
  background: var(--gray-light);
  border: 1px solid var(--primary-dark);
  border-radius: 50%;
  transition: border-color var(--transition);
}
.form-group fieldset input[type="radio"]:checked {
  background: radial-gradient(
    circle at center,
    var(--primary-dark) 60%,
    var(--gray-light) 61%
  );
}
.form-group fieldset label:hover input[type="radio"] {
  border-color: var(--primary-dark);
}
/* ======================================================
   BUTTONS & UTILITIES
====================================================== */
.wht-flex {
  display: flex;
  gap: 16px;
}
/* ------------------------------------------------------
   LOCATION / WHATSAPP INLINE BUTTONS
------------------------------------------------------ */
.location-btn,
.wa-location-btn {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  font-size: 22px;
  cursor: pointer;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background var(--transition);
}
.location-btn:hover,
.wa-location-btn:hover {
  background: #075e54;
}
.wa-location-btn {
  margin-left: 2px;
}
/* ======================================================
   THANK YOU PAGE
====================================================== */
.thankyou-container {
  width: 1000%;
  min-height: 100vh;
  background: var(--background);
}
.thnks {
  min-height: 100vh;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--secondary-color);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.thankyou-title {
  margin-top: 24px;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
}
.thankyou-message {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
}

/* =========================================
   POPUP SYSTEM ENGINE
========================================= */

/* body scroll lock */

body.popup-open {
  overflow: hidden;
  touch-action: none;
}

/* smoother popup */

.viewDetailModal {

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;

  will-change:
    opacity,
    transform;
}

/* active popup */

.viewDetailModal.active {

  opacity: 1;
  visibility: visible;
}


.tech-map.map-scrolling {
  pointer-events: none !important;
}



/* =========================
   UNCLEJOY PREMIUM THEME
========================= */

:root{


--uj-yellow: #7a0010;     
---uj-yellow-dark: #520008; 

--uj-black:#0b0b0b;
--uj-card:#111111;

--uj-border:rgba(255,255,255,0.08);

--uj-text:#ffffff;
--uj-muted: #94a3b8;

}

.brd-dv {
    background: var(--footer-bg);
    box-shadow
: 0 4px 8px rgba(0, 0, 0, 0.2);
   width: 100%;
    padding: 24px 16px;
    border-radius: var(--border-radius);
    display: flex;
justify-content: space-between;
align-items: flex-start;
}

.brd-hdng{
    color: #f0f4ff;
  font-size: 20px;
  font-weight: 600;
}

.you-are-hr{
  color: #f0f4ff;
  font-size: 16px;
  font-weight: 500;
}

/* WRAP */

.uj-crumb-wrap{
margin:18px 0;
}



/* LEFT */
.uj-crumb-left{
position:relative;
z-index:2;
max-width:520px;
}





/* RIGHT */
.uj-crumb-right{
position:relative;
z-index:2;
display:flex;
align-items:center;
gap:12px;
flex-wrap:wrap;
max-width:100%;
}

/* LINKS */
.uj-link{
display:flex;
align-items:center;
gap:8px;
padding:12px 16px;
border-radius:15px;
text-decoration:none;
font-size:14px;
font-weight:600;
white-space:nowrap;
  color: #f0f4ff;
border:
1px solid #f0f4ff;
transition:
all .28s ease;

}

/* ICON */

.uj-icon{
font-size:15px;
}

/* HOVER */

.uj-link:hover{
transform:translateY(-2px);
background:
rgba(206, 17, 17, 0.1);
border-color:
rgba(194, 21, 21, 0.4);
box-shadow:
0 8px 20px rgba(155, 9, 9, 0.1);
}

/* ACTIVE */

.active-link{
background:
linear-gradient(
135deg,
var(--uj-yellow),
var(--uj-yellow-dark)
);

color:#111;
border-color:
rgba(199, 48, 61, 0.65);
box-shadow:
0 10px 24px rgba(228, 73, 86, 0.2);

}


/* =========================
    MEDIA QUERIES
    ========================= */  
 /* =========================
   Laptop (≤1200px)
========================= */
@media (max-width: 1200px) {
  /* Common container spacing */
.container-main {
    width: 100%;
}
  .my-nav {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    gap: 24px;
  }
  .my-nav {
    width: 100%;
}
  #rollingBanner {
    width: 100%;
    gap: 32px;
  }
#rolling-banner {
    width: calc(60% - 16px);
}
.lct {
    width: 100%;
    padding: 0 16px;
}
.lct .location-finder {
    width: 100%;
}
  /* Reusable horizontal padding */
  .srch-bar,
  .container-one,
  .container-two,
  .container-three,
  .container-ac,
  .user-rtng-call-btn,
  .user-rtng-call-btn-top,
  .top-section {
    padding: 0px 16px; /* better than left/right */
  }
  /* Common gap system */
  .srch-bar,
  .user-bar,
  .container-one,
  .container-two,
  .container-three,
  .container-ac,
  .container-img-text,
  .container-repair,
  .user-rtng-call-btn,
  .user-rtng-call-btn-top,
  .bottom-nav,
  .footer-container {
    gap: 32px;
    padding: 0px 16px;
  }
  /* Smaller gap sections */
  .container-all-service {
    gap: 16px;
  }
  /* Specific elements */
  .rolling-banner {

  }
  .whatsapp-float-btn {
    right: 60px;
  }
.how-faq-main-box {
    gap: 24px;
}
.footer-container {
    width: 1200px;
    margin: 0px auto 0
}
}
@media (max-width: 1024px) {
  /* Common container spacing */
.container-main {
    width: 100%;
}
  .my-nav {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    gap: 20px;
  }
  .my-nav {
    width: 100%;
}
  #rollingBanner {
    width: 100%;
    gap: 24px;
  }
#rolling-banner {
    width: calc(60% - 10px);
}
.lct {
    padding: 0 12px;
}
  /* Reusable horizontal padding */
  .srch-bar,
  .container-one,
  .container-two,
  .container-three,
  .container-ac,
  .user-rtng-call-btn,
  .user-rtng-call-btn-top,
  .top-section {
    padding: 0px 12px; /* better than left/right */
  }
  /* Common gap system */
  .srch-bar,
  .user-bar,
  .container-one,
  .container-two,
  .container-three,
  .container-ac,
  .container-img-text,
  .container-repair,
  .user-rtng-call-btn,
  .user-rtng-call-btn-top,
  .bottom-nav,
  .footer-container {
    gap: 20px;
    padding: 0px 12px;
  }
  /* Smaller gap sections */
  .container-all-service {
    gap: 12px;
  }
  /* Specific elements */
  .rolling-banner {

  }
  .whatsapp-float-btn {
    right: 60px;
  }
.how-faq-main-box {
    gap: 20px;
}
.footer-container {
    width: 100%;
    margin: 0px auto 0
}
.page-srch-bar {
  padding: 0 12px;
}
}
@media (max-width: 768px) {

  .container-main {
        gap: 16px;
    }
    .nav-one {
      padding: 8px;
    }
  /* ===== BOTTOM NAV ===== */
  @media (max-width: 768px) {
  .bottom-nav {
    bottom: 8px;
    left: 50%;              /* 🔥 center base */
    right: auto;            /* 🔥 reset right */
    transform: translateX(-50%); /* 🔥 perfect center */
    gap: 20px;
  }
}
      #rollingBanner {
        width: 100%;
    }
        #rolling-banner {
        width: 100%;
        border-radius: 0px;
        margin-top: 12px;
    }
  .srch-bar, .user-bar, 
  .container-one, .container-two,
   .container-three, .container-ac,  
    .container-repair, .user-rtng-call-btn,
     .user-rtng-call-btn-top
     {
        gap: 16px;
        padding: 0px 12px;
    }
    .srch-bar {
    align-items: flex-start;
    margin: 8px 0;
}
.srch-img-text {
  width: 100%;
  gap: 20px;
        padding: 8px;
  justify-content: flex-start;
    }
.container-img-text{
  gap: 16px;
  padding: 0px;
}
.cont-ac-img-text {
  padding: 8px;
}
#user-rntg-rew-box {
    width: 100%;
    padding: 0px;
}
.cont-new-home {
  gap: 20px;
}
.srch-img-text-home {
    gap: 20px;
      padding: 0px;
}
#text-voice-serch-box {
    width: 45%;
    padding: 16px 16px;
}
#main-service-box, #main-service-box-2 {
    width: 65%;
    padding: 8px;
}
#why-you-choose-uj-box, #why-you-choose-uj-box-2{
    width: 40%;
}

.cont-two-2, .cont-two-3, .cont-two-4 {
    width: 100%;
    padding: 8px 8px;
}
#user-rntg-rew-box-2 {
    width: calc(60% - 10px);
    padding: 0px;
}
.how-faq-main-box {
  gap: 16px;
}
#main-call-btn {
    padding: 0px;
}
.cont-hw-it-wrk {
    padding: 8px;
}
.cont-fltr {
    padding: 8px;
}
.all-review {
    padding: 8px;
}
.scrollable-div {
  width: 100%;
    gap: 24px;
    padding: 0px 4px;
}
    .cont-new {
width: 100%;
    }
.box-1 {
    gap: 12px;
}
.product-page-btns {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.open-booking-btn {
    width: 280px;
  }
  .whatsapp-booking-btn {
    width: 280px;
  }
  .rtng-user-block {
    gap: 16px;
}
.all-srch {
    gap: 16px;
}
.footer-container {
        padding: 16px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    .footer-part {
    width: 100%;
    margin-top: 8px;
}
.footer-social-links{
        gap: 12px;
        justify-content: center;
        text-align: center;
}
 .box-2 {
    display: flex;
    gap: 16px;
    align-items:start;
    flex-wrap: wrap;
}
.product-page-detail-3 { 
  width: 100%; 
}
.product-page-detail-4 {
   width: 100%; 
  }
.view-detl {
margin-top: 12px;
}
.tech-map {
        height: 140px;
        border-radius: 8px;
    }
}
@media (max-width: 480px) {
.nav-one {
    height: 56px;
    border-radius: 0px;
    padding: 4px;
  }

  .uj-logo {
    width: 45px;
    height: 45px;
  }
  .nav-hdng {
    padding: 0 4px;
    font-size: 16px;
  }
      #rolling-banner {
        margin: 8px 0;
    }
    /* ===== BOTTOM NAV ===== */
  @media (max-width: 480px) {
  .bottom-nav {
    bottom: 2px;
    left: 50%;              /* 🔥 center base */
    right: auto;            /* 🔥 reset right */
    transform: translateX(-50%); /* 🔥 perfect center */
    gap: 12px;
  }
}


      .container-main {
        gap: 16px;
    }
  .srch-bar {
    gap: 12px;
    flex-direction: column-reverse;
    margin: 0;
    padding: 0 8px;
}
#text-voice-serch-box {
        width: 100%;
        padding: 0px;
        background: none;
    }
    .all-srch {
        gap: 12px;
    }
    .rtng-star, .rtng-users {
    font-size: 1.35rem;
}
.rtng-user-block {
        gap: 12px;
    }
    .rtng-score {
    font-size: 1rem;
}
.srch-img-text {
        gap: 0px;
        justify-content: space-between;
    }

    .container-one-1 {
      padding: 8px;
}
 .container-one,
 .container-two, 
 .container-three, 
 .container-ac, .container-repair,
  .user-rtng-call-btn, .user-rtng-call-btn-top {
        flex-wrap: wrap;
        padding: 0px 8px;
    }
        #main-service-box, 
        #main-service-box-2 {
        width: 100%;
        padding: 0px;
    }
    .cont-new {
        row-gap: 16px;
        margin-bottom: 16px;
    }

        .cont-new-home {
        gap: 16px;
    }
.page-srch-bar {
  padding: 0 8px;
}
#why-you-choose-uj-us, #why-you-choose-uj-box, #why-you-choose-uj-box-ac-gurm,
#why-you-choose-uj-box-ac-dlh, #why-you-choose-uj-box-ac-noda,
#why-you-choose-uj-box-2,
 #why-you-choose-uj-box-3, #why-you-choose-uj-box-4,
  #why-you-choose-uj-box-5, #why-you-choose-uj-box-6,
   #why-you-choose-uj-box-7, #why-you-choose-uj-box-8,
     #why-you-choose-uj-box-9, #why-you-choose-uj-box-10,
     #why-you-choose-uj-box-gurm,   #why-you-choose-uj-box-dlh, #why-you-choose-uj-box-noda {
    width: 100%;
}
    #user-rntg-rew-box-2 {
        width: 100%;
    }
        #main-call-btn {
width: 100%;
    }
        .cont-ac-img-text {
        padding: 2px;
    }
    .img-text-link {
      padding: 0px;
    }
    .call-btn-all-95 {
    width: 240px;
    }
    .call-time {
    margin-top: 4px;
    }
    .how-faq-main-box {
      width: 100%;
    }
    #user-review-filter-box {
    width: 100%;
}
.review-filters {
    margin: 12px 0;
    gap: 8px;
}
.filter-btn {
    padding: 4px 12px;
    font-size: 14px;
}
    .footer-container {
      gap: 0px;
    }
    .scrollable-div {
      width: 100%;
    gap: 20px;
    padding: 0 5px;
}
#page-top-section-dtl {
    width: 100%;
    display: flex;
    gap: 40px;
}
.top-section {
width: 100%;
padding: 0px 8px;
    }
.how-faq-main-box-ac {
    width: 100%;
    gap: 16px;
}
#user-review-filter-box-ac, #user-review-filter-box-ac-gurm,
#user-review-filter-box-ac-dlh, #user-review-filter-box-noda,
#user-review-filter-box-chmny,
 #user-review-filter-box-gysr, #user-review-filter-box-hob,
  #user-review-filter-box-prsr-pmp, #user-review-filter-box-ro,
   #user-review-filter-box-wtr-pmp,
    #user-review-filter-box-wtr-soft, #user-review-filter-box-mcr-ovn,
    #user-review-filter-box-ro-gurm, #user-review-filter-box-ro-noda,  #user-review-filter-box-ro-dlh{
    width: 100%;
}

    .user-bar{
  margin-top: 0px;
  width: 100%;
  flex-wrap: wrap;
  padding: 0 8px;
}
#ac-scrollable-div, #ac-scrollable-div-gurm,
#ac-scrollable-div-dlh, #ac-scrollable-div-noda,
#chmny-scrollable-div,
 #gysr-scrollable-div, #hob-scrollable-div,
  #prsr-pmp-scrollable-div, #ro-scrollable-div,
    #wtr-pmp-scrollable-div,
      #wtr-soft-scrollable-div, #mcr-ovn-scrollable-div,
      #ro-scrollable-div-gurm,   #ro-scrollable-div-noda, #ro-scrollable-div-dlh
  {
    width: 100%;
}
.top-hdng {
    font-size: 20px;
}
.frst-hdng {
    font-size: 16px;
}
.uj-whte-hdng {
    font-size: 18px;
}
.uj-whte-pera {
    font-size: 16px
}
.ac-hdng-work {
    font-size: 18px;
}
.footer-title {
    font-size: 20px;
}
.uj-whte-ul {
    font-size: 16px
}
.viewDetailLink {
    font-size: 18px
}
.product-page-btns {
    gap: 16px;
}
    .lct {
        padding: 0 8px;
    }

.prodcut-page-all-details {
  padding-bottom: 20px;
}


    .box-2 {
      gap: 12px;
    }

    .tech-map {
        height: 140px;
    }

.box-3 {
margin: -70px 0 0 12px;
z-index: 999;
position: relative;
display: none;

}


    .web-link{
  text-align: center;
}




}
@media (max-width: 360px){
      .container-main {
        gap: 12px;
    }
        .container-img-text {
        gap: 12px;
    }
  .top-hdng {
        font-size: 18px;
    }
    .srch-bar, .user-bar, .container-one, 
    .container-two, .container-three, .container-ac,
     .container-repair, .user-rtng-call-btn,
      .user-rtng-call-btn-top {
        gap: 12px;
        padding: 0px 4px;
    }

    .cont-two-2, .cont-two-3, .cont-two-4 {
        width: 100%;
        padding: 4px 4px;
    }
        .lct {
        padding: 0 4px;
    }
    .box-1, .box-2 {
        gap: 8px;
    }
    .web-link{
  text-align: center;
}
}