
  /* ============ NAVBAR CSS (FINAL) ============ */
  :root{
    --bg:#bdc7e2;
    --text:#0f172a;
    --muted:#64748b;
    --brand:#0b2a5b;
    --accent:#e11d8b;
    --line:rgba(15,23,42,.12);
  }

  *{box-sizing:border-box;margin:0;padding:0}

  body{
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    color:var(--text);
    padding-top:72px;
    background:#fffafada;
  }

  a{color:inherit;text-decoration:none}

  /* ===== HEADER ===== */
  .header{
    position:fixed;
    top:0;left:0;
    width:100%;
    z-index:1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.734);
    border-bottom:1px solid var(--line);
  }
  .nav{
    max-width:1200px;
    margin:auto;
    padding:10px 14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
  }

  /* ===== BRAND ===== */
  .brandBox{
    display:flex; align-items:center; gap:10px;
    min-width:0;
  }
  .logoImgWrap{
    width:42px;height:42px;border-radius:4px;
    display:grid;place-items:center;
    background:#ffffff00;
    border:1px solid var(--line);
    overflow:hidden;
    flex:0 0 auto;
  }
  .logoImg{width:100%;height:100%;object-fit:cover;display:block}
  .brandText{display:flex;flex-direction:column;line-height:1.05;min-width:0}
  .brandName{
    font-size:20px;font-weight:900;color:var(--brand);
    white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
  }
  .brandTag{
    font-size:12px;font-weight:700;color:var(--muted);
    white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
    margin-top:2px;
  }

  /* ===== HAMBURGER ===== */
  .hamburger{
    width:48px;height:44px;border-radius:14px;
    border:1px solid var(--line);
    background: rgba(255,255,255,.92);
    cursor:pointer;
    display:grid;place-items:center;
  }
  .hamburger span{
    display:block;width:20px;height:2px;background:var(--text);
    margin:3.5px 0;border-radius:2px;
  }

  /* ===== DESKTOP MENU ===== */
  .desktopMenu{display:none}
  .desktopMenu ul{
    list-style:none;
    display:flex;
    gap:6px;
    align-items:center;
  }
  .dlink, .dbtn{
    padding:10px 12px;
    border-radius:14px;
    font-weight:800;
    font-size:14px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    border:0;
    background:transparent;
    cursor:pointer;
    color:var(--text);
    transition: color .15s ease, background .15s ease;
  }
  .active{color:var(--accent)}
  .dlink:hover, .dbtn:hover{color:var(--accent)}

  /* ===== Desktop City Dropdown (Premium) ===== */
  .cityDropdown{ position:relative; }

  .cityMenu{
    position:absolute;
    top:54px;
    left:0;
    width:520px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:16px;
    box-shadow: 0 18px 50px rgba(2,6,23,.14);
    padding:12px;
    display:none;
    z-index:2000;
    transform: translateY(6px);
  }
  .cityMenu.open{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:10px;
  }
  .cityMenu a{
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:12px 10px;
    border-radius:1px;
    font-weight:800;
    font-size:13px;
    border:1px solid rgba(15,23,42,.10);
    background:linear-gradient(180deg, rgba(2,6,23,.02), rgba(2,6,23,.00));
    line-height:1.2;
  }
  .cityMenu a:hover{
    color:var(--accent);
    background:rgba(225,29,139,.08);
    border-color:rgba(225,29,139,.25);
  }

  /* ===== MOBILE DRAWER ===== */
  .overlay{
    position:fixed; inset:0;
    background: rgba(2,6,23,.45);
    opacity:0; visibility:hidden;
    transition:.2s;
    z-index:1500;
  }
  .overlay.open{opacity:1;visibility:visible}

  .drawer{
    position:fixed;
    top:0; left:-90%;
    width:82%;
    max-width:360px;
    height:100%;
    background:#fff;
    z-index:1600;
    transition:.25s ease;
    box-shadow: 24px 0 50px rgba(2,6,23,.18);
    display:flex;
    flex-direction:column;

    /* ✅ IMPORTANT for scroll */
    overflow-y:auto;
    -webkit-overflow-scrolling: touch;
  }
  .drawer.open{left:0}

  .drawerHead{
    padding:14px 14px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid var(--line);
    position:sticky;
    top:0;
    background:#fff;
    z-index:5;
  }
  .closeBtn{
    width:42px;height:42px;
    border-radius:12px;
    border:1px solid var(--line);
    background:#fff;
    cursor:pointer;
    font-size:18px;
    line-height:1;
  }

  .mList{list-style:none}
  .mItem{border-bottom:1px solid #f0f0f0}

  .mLink, .mBtn{
    width:100%;
    padding:14px 16px;
    background:transparent;
    border:0;
    cursor:pointer;
    font-size:14px;
    font-weight:800;
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:var(--text);
    transition: color .15s ease, background .15s ease;
  }
  .mLink:hover, .mBtn:hover{color:var(--accent); background:rgba(2,6,23,.02)}
  .mLink.active, .mBtn.active{color:var(--accent)}
  .arrow{font-size:18px; opacity:.7}

  /* ===== Mobile City Dropdown (2 Column Grid + Scroll) ===== */
  .mCityMenu{
    display:none;
    padding:10px 12px 14px 12px;
    background:rgba(2,6,23,.02);
    border-top:1px solid rgba(15,23,42,.06);

    max-height: 320px;       /* ✅ scroll area */
    overflow-y:auto;
    -webkit-overflow-scrolling: touch;
  }
  .mCityMenu.open{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:8px;
  }

  .mCityMenu a{
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:10px 8px;
    border-radius:1px;
    font-weight:800;
    font-size:10.5px;
    border:1px solid rgba(15,23,42,.10);
    background:#fff;
    line-height:1.2;
  }
  .mCityMenu a:hover{
    color:var(--accent);
    border-color:rgba(225,29,139,.25);
    background:rgba(225,29,139,.06);
  }

  /* ===== RESPONSIVE ===== */
  @media (min-width: 992px){
    body{padding-top:78px}
    .hamburger{display:none}
    .desktopMenu{display:block}
  }













/* =========================
   FINAL COMPLETE CSS (IMAGE + TEXT DONO SIDE EQUAL SPACE)
   ========================= */

/* reset */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Arial, sans-serif;
  background:#f8f9fa;
  margin:0;
  padding:0;
}

/* container */
.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 2px;
}

/* header */
.section-header{
  text-align:center;
  margin-bottom:50px;
}

.section-title{
  font-size:18px;
  font-weight:600;
  color:#333;
  text-transform:uppercase;
  letter-spacing:2px;
  margin-bottom:15px;
}

.section-underline{
  width:100px;
  height:3px;
  background:linear-gradient(135deg,#ff6b35,#f7931e);
  margin:0 auto 30px;
}

/* search */
.search-container{
  max-width:600px;
  margin:0 auto 50px;
  position:relative;
  padding:0 2px;
}

.search-input{
  width:100%;
  padding:15px 50px 15px 20px;
  border:2px solid #e0e0e0;
  border-radius:5px;
  font-size:16px;
  outline:none;
  transition:all .3s ease;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.search-input:focus{
  border-color:#ff6b35;
  box-shadow:0 4px 20px rgba(255,107,53,.2);
}

.search-icon{
  position:absolute;
  right:20px;
  top:50%;
  transform:translateY(-50%);
  color:#666;
  font-size:18px;
}

/* GRID */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:25px;
  margin-top:40px;
  padding:0 2px 30px;
  position:relative;
}

/* CARD – padding se andar ka space (image + text same) */
.service-card{
  background:#fff;
  border-radius:5px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,.1);
  transition:all .3s ease;
  border:1px solid #f0f0f0;
  width:100%;
  max-width:400px;
  margin:0 auto;
  padding:0 8px 8px;   /* inner left-right space */
  box-sizing:border-box;
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 40px rgba(0,0,0,.15);
}

/* IMAGE – ab width 100% + koi margin nahi, space card padding se milega */
.card-image{
  width:100%;
  height:160px;
  background-size:cover;
  background-position:center;
  display:block;
  margin:0;
  padding:0;
  line-height:0;
  border-radius:5px 5px 0 0;
  overflow:hidden;
}

/* agar <img> tag use ho */
.card-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  margin:0;
  padding:0;
}

/* CONTENT – horizontal padding 0, kyunki card pe already padding hai */
.card-content{
  padding:10px 0;
  text-align:center;
}

.card-title{
  font-size:16px;
  font-weight:600;
  color:#333;
  margin:0 0 10px;
  text-transform:uppercase;
  letter-spacing:1px;
  line-height:1.25;
}

.card-description{
  color:#666;
  line-height:1.5;
  margin:0 0 12px;
  font-size:13px;

  display:-webkit-box;
  -webkit-line-clamp:4;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* price + button */
.price{
  float:left;
  font-weight:bold;
  color:#28a745;
  margin-top:5px;
  margin-left:1px;
}

.call-btn{
  background:linear-gradient(135deg,#43b849,#07a850);
  color:#fff;
  border:none;
  padding:10px 15px;
  border-radius:5px;
  font-size:10px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:1px;
  cursor:pointer;
  transition:all .3s ease;
  text-decoration:none;
  display:inline-block;
  float:right;
  margin-right:1px;
}

.call-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(7,168,80,.3);
}

/* more btn */
.more-services-btn{
  background:linear-gradient(135deg,#28a745,#20c997);
  color:#fff;
  border:none;
  padding:15px 40px;
  border-radius:30px;
  font-size:16px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:1px;
  cursor:pointer;
  transition:all .3s ease;
  margin:40px auto;
  display:block;
  box-shadow:0 4px 15px rgba(40,167,69,.3);
  position:relative;
  overflow:hidden;
}

.more-services-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 25px rgba(40,167,69,.4);
}

/* hidden services */
.hidden-services{
  display:none !important;
  opacity:0;
  transform:translateY(30px);
  transition:all .6s ease;
}

.hidden-services.show{
  display:block !important;
  opacity:1;
  transform:translateY(0);
}

/* dropdown */
.dropdown-suggestions{
  position:absolute;
  top:100%;
  left:0;
  right:0;
  background:#fff;
  border:1px solid #e0e0e0;
  border-radius:15px;
  margin-top:5px;
  max-height:200px;
  overflow-y:auto;
  z-index:1000;
  display:none;
  box-shadow:0 4px 15px rgba(0,0,0,.1);
}

.suggestion-item{
  padding:12px 20px;
  cursor:pointer;
  border-bottom:1px solid #f0f0f0;
}

.suggestion-item:hover{ background:#f8f9fa; }
.suggestion-item:last-child{ border-bottom:none; }

.clearfix::after{
  content:"";
  clear:both;
  display:table;
}

/* peek */
.services-grid::after{
  content:'';
  position:absolute;
  bottom:0;
  left:2px;
  width:calc(100% - 4px);
  height:30px;
  background:linear-gradient(to top,rgba(248,249,250,1),rgba(248,249,250,0));
  pointer-events:none;
}

/* =========================
   MOBILE
   ========================= */
@media (max-width:768px){

  .container{
    padding:0 1px;
  }

  .services-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:6px;
    padding:0 1px 10px;
    margin-top:12px;
  }

  .service-card{
    max-width:none;
    margin:0;
    border-radius:4px;
    box-shadow:0 4px 10px rgba(0,0,0,.08);
    padding:0 4px 5px;   /* mobile mein bhi equal space */
  }

  .card-image{
    height:auto !important;
    aspect-ratio:16/9;
    margin:0;
    border-radius:4px 4px 0 0;
  }

  .card-content{
    padding:5px 0;
  }

  .card-title{
    font-size:7px;
    line-height:1.1;
    margin-bottom:3px;
    letter-spacing:0.2px;
    font-weight:700;
  }

  .card-description{
    font-size:7px;
    line-height:1.35;
    margin-bottom:4px;

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }

  .price{
    font-size:7px;
    margin-top:2px;
    margin-left:1px;
  }

  .call-btn{
    font-size:7px;
    padding:3px 5px;
    border-radius:3px;
    letter-spacing:0.1px;
    margin-right:1px;
  }
}

#page4{
  display:none !important;
}

/* =========================
   OVERRIDE: OUR CHIMNEY SERVICES SECTION ONLY
   (#select-service ke baad wale container ka gap control)
   ========================= */

/* Desktop + tablet */
#select-service ~ .container{
  max-width:100% !important;
  padding-left:10px !important;   /* thoda sa outer gap */
  padding-right:10px !important;
}

/* search + grid ke side ka gap halka sa */
#select-service ~ .container .search-container{
  padding-left:6px !important;
  padding-right:6px !important;
}

#select-service ~ .container .services-grid{
  padding-left:4px !important;
  padding-right:4px !important;
}

/* gradient poori width pe hi rahe */
#select-service ~ .container .services-grid::after{
  left:0 !important;
  width:100% !important;
}

/* Mobile override */
@media (max-width:768px){
  #select-service ~ .container{
    padding-left:6px !important;   /* mobile pe thoda kam gap */
    padding-right:6px !important;
  }

  #select-service ~ .container .services-grid{
    padding-left:3px !important;
    padding-right:3px !important;
  }

  #select-service ~ .container .search-container{
    padding-left:4px !important;
    padding-right:4px !important;
  }
}




/* FAQ Start */

  :root{
  --blue:#083D77;
  --blue-soft:#0b4a8f12;
  --light:#f8f9fa;
  --border:#dee2e6;
  --text:#333;
  --muted:#6c757d;
  --radius:14px;
}

/* ===== FAQ NEXT-GEN SECTION ===== */
.faq-ng{
  background:#fff;
  padding:70px 0;
  border-bottom:1px solid var(--border);
  position:relative;
  overflow:hidden;
}

/* Top decorative band */
.faq-ng::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:230px;
  background:
    radial-gradient(1200px 300px at 10% -10%, #083D7720, transparent 60%),
    radial-gradient(1200px 300px at 90% -10%, #083D7718, transparent 60%),
    linear-gradient(180deg, var(--blue-soft), transparent);
  z-index:0;
}

.faq-ng-wrap{
  width:90%;
  margin:0 auto;
  position:relative;
  z-index:1;
}

/* Header card */
.faq-head{
  background:var(--light);
  border:1px solid var(--border);
  border-radius:18px;
  padding:26px 26px 18px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  box-shadow:0 10px 22px rgba(0,0,0,0.05);
}

.faq-title{
  display:flex; align-items:center; gap:12px;
}

.faq-title .dot{
  width:48px; height:48px;
  display:grid; place-items:center;
  border-radius:50%;
  background:#fff;
  border:2px solid var(--blue);
  color:var(--blue);
  font-size:20px;
  font-weight:900;
}

.faq-title h2{
  font-size:30px;
  color:var(--blue);
  line-height:1.1;
}
.faq-title p{
  font-size:14px;
  color:var(--muted);
  margin-top:4px;
}

/* Search */
.faq-search{
  flex:1;
  min-width:220px;
  max-width:380px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:999px;
  padding:8px 12px 8px 16px;
  display:flex; align-items:center; gap:8px;
}
.faq-search i{ color:var(--blue); }
.faq-search input{
  width:100%;
  border:none; outline:none;
  font-size:15px; color:var(--text);
  background:transparent;
}

/* Category pills */
.faq-cats{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.faq-cat{
  padding:8px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--border);
  font-size:14px;
  cursor:pointer;
  color:var(--text);
  transition:.25s ease;
  user-select:none;
  white-space:nowrap;
}
.faq-cat.active,
.faq-cat:hover{
  background:var(--blue);
  color:#fff;
  border-color:var(--blue);
  transform:translateY(-1px);
}

/* Grid */
.faq-grid{
  margin-top:20px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}

.faq-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,0.04);
  transition:.25s ease;
  position:relative;
}

.faq-card:hover{
  border-color:var(--blue);
  transform:translateY(-3px);
  box-shadow:0 12px 26px rgba(8,61,119,0.12);
}

/* Left accent bar */
.faq-card::before{
  content:"";
  position:absolute;
  top:0; left:0;
  width:4px; height:100%;
  background:transparent;
  transition:.25s ease;
}
.faq-card.active::before{
  background:var(--blue);
}

.faq-q{
  padding:16px 16px;
  background:var(--light);
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  cursor:pointer;
}

.faq-q-left{
  display:flex; align-items:center; gap:10px;
  font-weight:800;
  color:var(--text);
  font-size:15px; /* ✅ questions text slightly smaller (pc) */
}

.faq-num{
  width:34px; height:34px;
  border-radius:10px;
  background:#fff;
  border:1px solid var(--blue);
  color:var(--blue);
  display:grid; place-items:center;
  font-size:14px; font-weight:900;
  flex-shrink:0;
}

.faq-toggle{
  width:34px; height:34px;
  border-radius:50%;
  display:grid; place-items:center;
  background:#fff;
  border:1px solid var(--border);
  color:var(--blue);
  font-size:16px;
  font-weight:900;
  transition:.3s ease;
  flex-shrink:0;
}

.faq-card.active .faq-toggle{
  background:var(--blue);
  color:#fff;
  border-color:var(--blue);
  transform:rotate(180deg) scale(1.05);
}

.faq-a{
  max-height:0;
  overflow:hidden;
  padding:0 16px;
  background:#fff;
  color:var(--muted);
  font-size:14.5px;
  line-height:1.7;
  transition:max-height .35s ease, padding .35s ease;
}

.faq-card.active .faq-a{
  max-height:260px;
  padding:14px 16px 16px;
}

/* Empty state */
.faq-empty{
  grid-column:1 / -1;
  text-align:center;
  padding:30px;
  background:var(--light);
  border:1px dashed var(--border);
  border-radius:12px;
  color:var(--muted);
  display:none;
}

/* ===== Responsive ===== */

/* Tablet & down */
@media (max-width: 992px){
  .faq-grid{ grid-template-columns:1fr; }
}

/* Mobile tight spacing + side-by-side categories */
@media (max-width: 576px){

  /* overall side space kam */
  .faq-ng-wrap{
    width:96%;
  }

  .faq-ng{
    padding:55px 0;
  }

  .faq-head{
    padding:18px 14px 14px;
    border-radius:14px;
  }

  .faq-title .dot{
    width:40px; height:40px;
    font-size:18px;
  }

  .faq-title h2{ font-size:22px; }

  /* ✅ questions text smaller on mobile */
  .faq-q-left{
    font-size:14px;
  }

  .faq-q{
    padding:14px 12px;
  }
  .faq-a{
    padding:0 12px;
    font-size:14px;
  }
  .faq-card.active .faq-a{
    padding:12px 12px 14px;
  }

  /* categories ek line me */
  .faq-cats{
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 6px;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #083D77 #f8f9fa;
  }

  .faq-cats::-webkit-scrollbar{ height: 4px; }
  .faq-cats::-webkit-scrollbar-track{ background: #f8f9fa; }
  .faq-cats::-webkit-scrollbar-thumb{
    background: #083D77;
    border-radius: 10px;
  }

  .faq-cat{
    flex-shrink: 0;
    font-size: 12px;
    padding: 6px 10px;
  }
}

