/* ===========================
   Global / Reset
=========================== */
:root {
  --blue:#083D77;
  --white:#ffffff;

  --service-accent: #0057a7;
  --service-muted: #6b7280;
  --service-bg: #f7f7f8;
  --service-card-bg: #fff;
  --service-max-width: 1100px;
  --service-gap: 18px;

  --red: #0057a7;
  --black: #111;
  --gray: #555;
  --line: #e2e2e2;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--service-bg);
  color: #111;
}

/* ===========================
   Chimney Hero + Cards
=========================== */
.service-section {
  max-width: var(--service-max-width);
  margin: 28px auto;
  padding: 0 18px;
}

.service-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.service-hero-img {
  background: #eee;
  border-radius: 1px;
  height: 260px;
  background-size: cover;
  background-position: center;
}

.service-hero-text {
  font-size: 12px;
  line-height: 1.6;
}

.service-hero-text h2 {
  text-align: center;
  color: var(--service-accent);
  margin-bottom: 8px;
  font-size: 18px;
}

.service-hero-cta { margin-top: 12px; }

.service-cards-wrap {
  margin-top: 26px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--service-gap);
}

.service-card {
  background: var(--service-card-bg);
  border-radius: 1px;
  overflow: hidden;
  border: 1px solid #ccc;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.service-card a {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

/* ✅ FIXED: ALL service card images 960x540 ratio */
.service-thumb {
  /* height: 140px;  <-- remove */
  aspect-ratio: 16 / 9;        /* 960x540 */
  width: 100%;
  background: #f0f0f0;
  display: grid;
  place-items: center;
  overflow:hidden;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;           /* image kisi bhi size ki ho same ratio me crop hoke fit */
  display:block;
}

.service-card-content {
  padding: 12px;
}

.service-title {
  font-weight: bold;
  color: var(--service-accent);
  font-size: 15px;
  margin-bottom: 8px;
}

.service-desc {
  color: var(--service-muted);
  font-size: 12px;
  line-height: 1.5;
}

.service-btn {
  display: inline-block;
  background: var(--service-accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: 1px;
  text-decoration: none;
}
























/* ===========================
   Wrap & Heading
=========================== */
.service-issues-wrap{
  margin-top: 28px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 1px;
  position: relative;
}
.service-issues-head{
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--service-accent);
  padding: 12px 10px;
}
.service-issues-title{
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  width: 100%;
  margin: 0;
}

/* ===========================
   Card Common
=========================== */
.service-issue-card{
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
}
.service-issue-card a{
  display: block;
  flex: 1;
  text-decoration: none;
  color: inherit;
}
.service-issue-card .service-thumb{
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #f4f4f4;
  overflow: hidden;
}
.service-issue-card .service-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-issue-card .service-card-content{
  padding: 10px 12px 12px;
}
.service-issue-card .service-title{
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #111;
}
.service-issue-card .service-desc{
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ===========================
   Blue Card Footer
=========================== */
.siq-card-footer{
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--service-accent, #1d4ed8);
  padding: 10px 12px;
  cursor: pointer;
  border: none;
  width: 100%;
  font-family: inherit;
  gap: 8px;
  transition: background 0.25s;
}
.siq-card-footer:hover{
  background: #1e3a8a;
}
.siq-card-footer svg{
  width: 15px;
  height: 15px;
  fill: #fff;
  flex-shrink: 0;
  animation: callring2 2.5s ease-in-out infinite;
}
@keyframes callring2{
  0%,100%{ transform: rotate(0); }
  8%{ transform: rotate(-15deg); }
  16%{ transform: rotate(15deg); }
  24%{ transform: rotate(-10deg); }
  32%{ transform: rotate(10deg); }
  40%{ transform: rotate(0); }
}
.siq-card-footer span{
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}

/* ===========================
   DESKTOP (901px+) SLIDER
=========================== */
@media (min-width: 901px){

  /* Viewport */
  .service-issues{
    overflow: hidden;
    padding: 16px 52px;
  }

  /* Track */
  .service-issues-track{
    display: flex !important;
    gap: 16px;
    transition: transform 0.48s cubic-bezier(.4,0,.2,1);
    will-change: transform;
  }

  /* Each card = 1/3 width */
  .service-issues .service-issue-card{
    flex: 0 0 calc(33.333% - 11px);
    min-width: calc(33.333% - 11px);
  }

  /* Arrows */
  .siq-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--service-accent, #1d4ed8);
    border: 2px solid rgba(255,255,255,0.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: background 0.25s, transform 0.25s;
    padding: 0;
  }
  .siq-arrow:hover{
    background: #1e3a8a;
    transform: translateY(-50%) scale(1.1);
  }
  .siq-arrow svg{
    width: 20px;
    height: 20px;
    fill: #fff;
  }
  .siq-prev{ left: 6px; }
  .siq-next{ right: 6px; }

  /* Dots */
  .siq-dots{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    padding: 10px 0 14px;
  }
  .siq-dot{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
  }
  .siq-dot.active{
    background: var(--service-accent, #1d4ed8);
    transform: scale(1.4);
  }
}

/* ===========================
   MOBILE (max 900px) — UNTOUCHED
=========================== */
@media (max-width: 900px){

  .service-section{
    max-width: 100%;
    width: 100vw;
    margin: 28px 0;
    padding-left: 0;
    padding-right: 0;
  }
  .service-hero{
    grid-template-columns: 1fr;
    padding-left: 12px;
    padding-right: 12px;
  }
  .service-hero-img{ height: 180px; }

  .service-cards{
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 12px 8px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .service-card{
    min-width: 82%;
    flex: 0 0 82%;
    scroll-snap-align: center;
  }
  .service-cards::-webkit-scrollbar{ display: none; }

  /* Issues mobile */
  .service-issues-wrap{
    margin: 18px 0 0;
    border-radius: 0;
    overflow: hidden;
  }
  .service-issues-track{
    display: contents;
  }
  .service-issues{
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 12px;
    -webkit-overflow-scrolling: touch;
  }
  .service-issues .service-issue-card{
    min-width: 82%;
    flex: 0 0 82%;
    scroll-snap-align: center;
  }
  .service-issues::-webkit-scrollbar{ display: none; }

  /* Hide arrows & dots mobile */
  .siq-arrow,
  .siq-dots{ display: none !important; }
}

@media (max-width: 420px){
  .service-issues-title{ font-size: 16px; }
}





























    /* ===================== PROMO STRIP (AUTO ROTATE TEXT) ===================== */

.promo-strip {
    background-color: #083D77;   /* yellow bar */
    color: #fff;
    padding: 12px 15px;
    font-size: 18px;
}

.promo-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.promo-strip-label {
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.promo-strip-label i {
    font-size: 14px;
}

.promo-strip-text {
    font-weight: 600;
}

/* text ke aane par chhota sa fade effect */
.promo-show {
    animation: promoFade 0.4s ease;
}

@keyframes promoFade {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Mobile friendly ---------- */
@media (max-width: 768px) {
    .promo-strip {
        font-size: 14px;
        padding: 8px 10px;
    }

    .promo-strip-inner {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}









/* ================= BRAND MODAL EXTRA CSS ================= */

.brand-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 15px;
}
.brand-modal.active{ display:flex; }

.brand-modal-content{
  width: 100%;
  max-width: 720px;
  background: #fff;
  border-radius: 2px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: brandPop .25s ease;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden; /* ✅ NEVER horizontal scroll */
}

@keyframes brandPop{
  from{ transform: translateY(15px); opacity:0; }
  to{ transform: translateY(0); opacity:1; }
}

.brand-modal-header{
  display:flex;
  justify-content: space-between;
  align-items:center;
  margin-bottom: 15px;
}
.brand-modal-header h3{
  font-size: 20px;
  color:#083D77;
  margin:0;
}
.brand-modal-close{
  background: none;
  border: none;
  font-size: 22px;
  cursor:pointer;
  color:#333;
}

.brand-search{ position: relative; margin-bottom: 18px; }
.brand-search input{
  width:100%;
  padding: 12px 40px 12px 14px;
  border:1px solid #e6e6e6;
  border-radius: 12px;
  outline:none;
  font-size: 15px;
}
.brand-search i{
  position:absolute;
  right:12px;
  top:50%;
  transform: translateY(-50%);
  color:#083D77;
}

/* ✅ Desktop/Laptop grid: 7–8 cards depending on width */
.brand-grid{
  display:grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
}

/* ✅ Cards default */
.brand-card{
  border:1px solid #eee;
  background:#f8f9fa;
  border-radius: 2px;
  padding: 10px;
  text-align:center;
  cursor:pointer;
  transition: .2s ease;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  min-height: 80px;
  text-decoration:none;
}
.brand-card:hover{
  transform: translateY(-4px);
  border-color:#083D77;
  background:#fff;
}

.brand-card img{
  width: 100%;
  max-width: 80px;
  height: 40px;
  object-fit: contain;
}
.brand-card p{
  font-size: 13px;
  font-weight: 600;
  color:#333;
  margin:0;
  line-height: 1.2;
}

/* =====================================================
   ✅ MOBILE FIX: EXACT 4 CARDS PER ROW, NO SCROLL
===================================================== */
@media (max-width:768px){

  .brand-modal-content{
    padding: 15px;
    overflow-x: hidden; /* ✅ stop side scroll */
  }

  .brand-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr)); /* ✅ force 4 fit */
    gap: 8px; /* tighter gap so 4 fit easily */
  }

  .brand-card{
    padding: 8px;
    min-height: 70px;
    gap:6px;
  }

  .brand-card img{
    max-width: 60px;
    height: 32px;
  }

  .brand-card p{
    font-size: 12px;
  }
}














/* ===================== BRAND LOGO SLIDER ===================== */
    .brand-slider {
      width: 100vw;
      overflow-x: auto;              /* enable manual scroll */
      overflow-y: hidden;
      white-space: nowrap;
      scroll-behavior: smooth;
      background: #fff;
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee;
      padding: 10px 0;
      box-sizing: border-box;
      margin: 0;
      position: relative;
      scrollbar-width: none;         /* hide scrollbar for Firefox */
      -ms-overflow-style: none;      /* hide scrollbar for IE/Edge */
    }

    .brand-slider::-webkit-scrollbar {
      display: none;                 /* hide scrollbar for Chrome/Safari */
    }

    .brand-track {
      display: inline-flex;
      animation: scrollBrands 35s linear infinite;
    }

    .brand-item {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 16px;
    }

    .brand-item img {
      width: 95px;
      height: auto;
      object-fit: contain;
      opacity: 0.85;
      transition: all 0.3s ease;
    }

    .brand-item img:hover {
      opacity: 1;
      transform: scale(1.05);
    }

    @keyframes scrollBrands {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 1024px) {
      .brand-item img { width: 80px; }
    }

    @media (max-width: 768px) {
      .brand-item { padding: 0 12px; }
      .brand-item img { width: 60px; }
      .brand-track { animation: scrollBrands 22s linear infinite; }
    }

    @media (max-width: 480px) {
      .brand-item { padding: 0 10px; }
      .brand-item img { width: 50px; }
      .brand-track { animation: scrollBrands 22s linear infinite; }
    }

    /* 🧠 When user manually scrolls, pause auto animation */
    .brand-slider.active .brand-track {
      animation-play-state: paused;
    }






  .stove-content-wrapper{
    font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
    line-height:1.7;
    margin:25px auto;
    color:#444;
    background:#fff;
    padding-left:2%;
    padding-right:2%;
  }

  /* remove underline from all links (including phone number) */
  .stove-content-wrapper a,
  .stove-content-wrapper a:link,
  .stove-content-wrapper a:visited,
  .stove-content-wrapper a:hover,
  .stove-content-wrapper a:active{
    text-decoration:none !important;
    border-bottom:none !important;
    color:inherit;
    outline:none;
  }

  .stove-services-grid{
    display:grid;
    gap:25px;
    margin:25px 0;
    grid-template-columns:1fr;
  }

  .stove-service-card{
    padding:20px;
    border-left:5px solid #083D77;
    background:linear-gradient(135deg,#f8f9fa 0%,#e9ecef 100%);
    border-radius:8px;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
    transition:transform .3s ease;
    font-size:12px;
  }
  .stove-service-card:hover{transform:translateY(-2px)}

  .stove-main-heading{
    color:#1a202c;
    font-size:22px;
    font-weight:700;
    margin:35px 0 25px 0;
    border-bottom:3px solid #083D77;
    text-transform:uppercase;
    letter-spacing:1px;
  }

  .stove-content-para{
    text-align:justify;
    margin-bottom:25px;
    font-size:14px;
  }

  .stove-keyword-highlight{
    font-weight:600;
    color:#083D77;
    text-decoration:none;
  }

  .stove-content-section{
    margin-top:-31px;
    padding:20px 0;
  }

  /* Mobile adjustments */
  @media(max-width:768px){
    .stove-content-wrapper{
      padding-left:2%;
      padding-right:2%;
      margin:0;
      line-height:1.6;
    }

    .stove-content-section{
      font-size:12px;
    }

    .stove-main-heading{
      font-size:12px;
      padding-bottom:10px;
      margin:18px 0 12px 0;
      border-bottom-width:2px;
      letter-spacing:.6px;
    }

    .stove-service-card{
      padding:14px;
      font-size:11px;
      border-left-width:4px;
    }

    .stove-content-para{
      font-size:12px;
      margin-bottom:16px;
      line-height:1.6;
    }

    .stove-keyword-highlight{
      font-size:12px;
    }
  }












.why-us-section{background:#fff;padding:52px 0 0;border-top:1px solid #dee2e6}.why-us-container{display:grid;grid-template-columns:1.1fr 1fr;gap:30px;align-items:center;padding-bottom:45px}.why-us-content h2{font-size:clamp(22px,2.3vw,28px);color:#083D77;margin:12px 0;line-height:1.25}.why-us-content p{font-size:clamp(13px,1.2vw,15px);color:#6c757d;line-height:1.65;margin-bottom:14px}.why-us-badge{display:inline-flex;align-items:center;gap:6px;background:#f8f9fa;border:1px solid #dee2e6;color:#083D77;padding:5px 11px;border-radius:25px;font-weight:600;font-size:12.5px}.why-us-points{list-style:none;margin-top:10px;padding:0}.why-us-points li{display:flex;align-items:center;gap:8px;font-size:13.5px;color:#333;margin-bottom:7px}.why-us-points i{color:#083D77;font-size:14px}.why-us-actions{display:flex;gap:10px;margin-top:18px;flex-wrap:wrap}.why-btn{background:#083D77;color:#fff;text-decoration:none;padding:9px 18px;border-radius:30px;font-weight:700;text-transform:uppercase;font-size:12.5px;transition:.3s;box-shadow:0 6px 14px rgba(8,61,119,.18)}.why-btn:hover{background:#3367d6;transform:translateY(-2px)}.why-call{display:inline-flex;align-items:center;gap:7px;text-decoration:none;color:#083D77;font-weight:700;padding:9px 14px;border-radius:30px;border:1px solid #dee2e6;background:#f8f9fa;transition:.3s;font-size:13px}.why-call:hover{background:#083D77;color:#fff}.why-us-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:15px}.why-card{background:#f8f9fa;border:1px solid #dee2e6;border-radius:12px;padding:16px;transition:.3s;box-shadow:0 2px 8px rgba(0,0,0,.04)}.why-card:hover{transform:translateY(-5px);background:#fff;box-shadow:0 8px 18px rgba(66,133,244,.16);border-color:#083e7758}.why-icon{width:38px;height:38px;border-radius:10px;background:#083D77;color:#fff;display:grid;place-items:center;font-size:16px;margin-bottom:9px}.why-card h3{font-size:15.5px;color:#333;margin-bottom:5px}.why-card p{font-size:12.5px;color:#6c757d;line-height:1.55;margin:0}.why-stats{background:#083D77;border-top:1px solid #dee2e6;padding:22px 0}.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}.stat-box{background:#fff;border:1px solid #dee2e6;padding:14px;border-radius:10px;text-align:center;transition:.3s}.stat-box:hover{transform:translateY(-3px);box-shadow:0 6px 14px rgba(8,61,119,.1)}.stat-number,.stat-static{color:#083D77;font-size:clamp(17px,1.8vw,20px);margin-bottom:3px;font-weight:700;transition:.3s ease;display:inline-block}.stat-box p{color:#6c757d;font-size:12.5px;margin:0}@media(max-width:900px){.why-us-container{grid-template-columns:1fr;gap:22px}.why-us-cards{grid-template-columns:1fr 1fr}}@media(max-width:600px){.why-us-cards{grid-template-columns:1fr}.stats-grid{grid-template-columns:repeat(2,1fr)}.why-us-section{padding-top:45px}}
