






: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;
  }
}






.about-us-section{
  padding: 60px 0;
  background:#f8f9fa;
  border-bottom:1px solid #dee2e6;
}

.about-us-section .about-inner{
  width:90%;
  margin:0 auto;
  display:block;
}

.about-layout{
  display:flex;
  gap:30px;
  align-items:center;
}

/* IMAGE */
.about-img{
  flex:1;
  min-height:256px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid #dee2e6;
  background:#fff;
  box-shadow:0 6px 16px rgba(0,0,0,0.08);
  position:relative; /* tag overlay ke liye */
}

.about-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* TAG NOW ON IMAGE TOP-LEFT */
.about-top-tag{
  position:absolute;
  top:12px;
  left:12px;
  background:#083D77;
  color:#fff;
  padding:8px 14px;
  border-radius:20px;
  font-size:10px;
  font-weight:700;
  letter-spacing:0.3px;
  box-shadow:0 6px 14px rgba(8,61,119,0.25);
  z-index:2;
  white-space:nowrap;
}

/* CONTENT */
.about-content{
  flex:1.2;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.about-content h2{
  font-size:26px;
  color:#083D77;
  line-height:1.2;
  margin:0;
}

.about-content p{
  font-size:13px;
  color:#333;
  line-height:1.55;
  margin:0;
}

/* CTA */
.about-cta{
  margin-top:10px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.about-btn{
  padding:11px 18px;
  border-radius:25px;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  text-decoration:none;
  transition:.25s ease;
  display:inline-flex;
  align-items:center;
  gap:7px;
}

.about-btn.primary{
  background:#083D77;
  color:#fff;
  border:2px solid #083D77;
}
.about-btn.primary:hover{
  background:#3367d6;
  border-color:#3367d6;
}

.about-btn.outline{
  background:#fff;
  color:#083D77;
  border:2px solid #083D77;
}
.about-btn.outline:hover{
  background:#083D77;
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:992px){
  .about-layout{
    flex-direction:column;
  }
  .about-img{
    width:100%;
    min-height:200px;
  }
  .about-content h2{
    font-size:21px;
  }
  .about-content p{
    font-size:11.5px;
  }
}

@media(max-width:600px){
  .about-img{
    min-height:176px;
  }
  .about-top-tag{
    font-size:9px;
    padding:7px 12px;
    top:10px;
    left:10px;
  }
  .about-content h2{
    font-size:17px;
  }
  .about-content p{
    font-size:10.5px;
    line-height:1.5;
  }
  .about-btn{
    font-size:10px;
  }
}




























/* ===========================
   Center Button
=========================== */
.btn-center{
  width:100%;
  display:flex;
  justify-content:center;
  margin: 10px 0 18px;
}

.chimney-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min(520px, 92vw);
  min-height: 20px;
  padding: 4px 14px;
  font-size: 14px;

  /* FINAL SWAP + COLOR FIX */
  border: 2px solid var(--white);
  border-radius: 1px;          /* as you said */
  background: #0057a7;         /* var(--blue) replaced */
  color: var(--white);

  font-weight: 800;
  letter-spacing: .3px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
  transform: translateZ(0);
  transition: transform .2s ease, box-shadow .35s ease, background .35s ease, color .35s ease;
  box-shadow:
    0 6px 16px rgba(8,61,119,.16),
    inset 0 0 0 1px rgba(8,61,119,.06);
}

.chimney-ico{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px; height:18px;
}
.ico-svg{ width:18px; height:18px; }

.chimney-btn::before{
  content:"";
  position:absolute;
  inset:-7px;
  border-radius: inherit;
  background:
    conic-gradient(from 0deg,
      transparent 0 20%,
      rgba(8,61,119,.30) 30%,
      transparent 50%,
      rgba(8,61,119,.30) 65%,
      transparent 100%);
  z-index:-2;
  filter: blur(9px);
  opacity:.9;
  animation: haloBreath 1.8s ease-in-out infinite, ringSlowSpin 5.5s linear infinite;
}

.chimney-btn::after{
  content:"";
  position:absolute;
  inset:2px;
  border-radius: inherit;

  /* pehle yaha gradient BG tha, ab transparent */
  background: transparent;

  z-index:-1;
}

.chimney-btn__text{
  position: relative;

  /* text me pehle wala BG gradient */
  background: linear-gradient(180deg, #ffffff 0%, #f1f6ff 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  animation: textWave 2.4s ease-in-out infinite;
}

.chimney-btn__sheen{
  position:absolute;
  top:-130%;
  left:-45%;
  width: 60%;
  height: 340%;
  background: linear-gradient(120deg,
      transparent 0%,
      rgba(8,61,119,.10) 42%,
      rgba(8,61,119,.22) 50%,
      rgba(8,61,119,.10) 58%,
      transparent 100%);
  transform: rotate(22deg);
  opacity: 0;
  z-index:0;
}

.auto-anim{
  animation: attractPulse 2.6s ease-in-out infinite;
}
.auto-anim .chimney-btn__sheen{
  opacity: 1;
  animation: sheenWave 2.2s ease-in-out infinite;
}
.auto-anim .chimney-ico{
  animation: icoWiggle 2.6s ease-in-out infinite;
}

/* hover */
.chimney-btn:hover{
  transform: translateY(-2px) scale(1.04);

  /* hover pe ulta */
  background: linear-gradient(180deg, #ffffff 0%, #f1f6ff 100%);
  color: #0057a7;             /* var(--blue) replaced */
  border: 2px solid #0057a7;  /* var(--blue) replaced */

  box-shadow:
    0 12px 30px rgba(8,61,119,.38),
    inset 0 0 0 1px rgba(255,255,255,.12);
}
.chimney-btn:hover .chimney-btn__sheen{
  animation: sheenBoost 1.05s ease forwards;
}

/* hover pe text solid blue */
.chimney-btn:hover .chimney-btn__text{
  background: none;
  color: #0057a7;            /* var(--blue) replaced */
  -webkit-background-clip: initial;
  background-clip: initial;
  animation: none; /* optional */
}

@media (max-width:600px){
  .chimney-btn{
    width: min(320px, 90vw);
    min-height: 18px;
    padding: 3px 12px;
    font-size: 13px;
    border-radius: 1px;  /* keep same on mobile too */
  }
  .chimney-ico, .ico-svg{ width:16px;height:16px; }
}

@keyframes haloBreath{
  0%,100%{ opacity:.45; filter: blur(7px); }
  50%{ opacity:1; filter: blur(12px); }
}
@keyframes ringSlowSpin{ to{ transform: rotate(360deg); } }
@keyframes textWave{
  0%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
  100%{ background-position: 0% 50%; }
}
@keyframes attractPulse{
  0%,100% { transform: translateY(0) scale(1); }
  35%     { transform: translateY(-2px) scale(1.05); }
  45%     { transform: translateY(-2px) scale(1.05) rotate(-1deg); }
  55%     { transform: translateY(-2px) scale(1.05) rotate(1deg); }
  65%     { transform: translateY(-1px) scale(1.02); }
}
@keyframes sheenWave{
  0%{ transform: translateX(-160%) rotate(22deg); opacity:0; }
  25%{ opacity:.9; }
  50%{ transform: translateX(30%) rotate(22deg); opacity:.35; }
  75%{ opacity:.9; }
  100%{ transform: translateX(260%) rotate(22deg); opacity:0; }
}
@keyframes sheenBoost{
  0%{ transform: translateX(-160%) rotate(22deg); opacity:0; }
  20%{ opacity:1; }
  100%{ transform: translateX(260%) rotate(22deg); opacity:0; }
}
@keyframes icoWiggle{
  0%,100%{ transform: translateY(0) rotate(0); }
  35%{ transform: translateY(-1px) rotate(-6deg); }
  55%{ transform: translateY(-1px) rotate(6deg); }
}

@media (prefers-reduced-motion: reduce){
  .auto-anim,
  .auto-anim .chimney-btn__sheen,
  .chimney-btn::before,
  .chimney-btn__text,
  .auto-anim .chimney-ico{
    animation: none !important;
  }
}



/* ✅ Service CTA Section */
.service-cta-section {
  padding: 60px 0;
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}

/* IMPORTANT: container ko yahin control karo, global .container ko nahi */
.service-cta-section .service-cta-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

/* Left Content */
.service-cta-content h2 {
  font-size: 36px;
  color: #083D77;
  margin-bottom: 12px;
}

.service-cta-content p {
  font-size: 17px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-cta-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 15px;
}

.cta-btn.primary {
  background-color: #083D77;
  color: #fff;
  border: 1px solid #083D77;
}
.cta-btn.primary:hover {
  background-color: #3367d6;
  border-color: #3367d6;
}

/* ✅ WhatsApp Button Green */
.cta-btn.outline {
  background-color: #25D366;
  color: #ffffff;
  border: 1px solid #25D366;
}
.cta-btn.outline:hover {
  background-color: #1ebe5d;
  border-color: #1ebe5d;
  color: #ffffff;
}

.service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  font-size: 14px;
  color: #333;
}

.service-badges span {
  background: #fff;
  border: 1px solid #dee2e6;
  padding: 6px 10px;
  border-radius: 20px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.service-badges i {
  color: #083D77;
}

/* Right Slider */
.service-slider {
  position: relative;
  background: #083D77;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  min-height: 240px;
}

.service-slides {
  position: relative;
  height: 100%;
}

.service-slide-card {
  position: absolute;
  inset: 0;
  padding: 22px;
  border-radius: 2px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  opacity: 0;
  transform: translateX(20px);
  transition: 0.6s ease;
  cursor: pointer;
}

.service-slide-card.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.slide-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #083D77;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #083D77;
  font-size: 24px;
  margin-bottom: 12px;
}

.service-slide-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #333;
}

.service-slide-card p {
  font-size: 15px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 10px;
}

.slide-link {
  text-decoration: none;
  font-weight: bold;
  color: #083D77;
}
.slide-link:hover {
  color: #3367d6;
}

/* Dots */
.service-slider-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
}

.service-slider-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.service-slider-dots .dot.active {
  background: #ffffff;
}

/* ✅ Tablet + Mobile SAME layout */
@media (max-width: 1024px) {
  .service-cta-section .service-cta-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-cta-content h2 {
    font-size: 28px;
  }

  .service-slider {
    min-height: 220px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ✅ Mobile Fix (text chhota + spacing tight) */
@media (max-width: 600px) {
  .service-cta-section {
    padding: 35px 0;
  }

  .service-cta-content h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .service-cta-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .service-badges {
    font-size: 12.5px;
    gap: 8px 10px;
  }

  .service-badges span {
    padding: 5px 8px;
  }

  .service-slider {
    padding: 10px;
    min-height: 200px;
  }

  .service-slide-card {
    padding: 16px;
  }

  .slide-icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
    margin-bottom: 10px;
  }

  .service-slide-card h3 {
    font-size: 17px;
  }

  .service-slide-card p {
    font-size: 13.5px;
    margin-bottom: 8px;
  }

  .slide-link {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .service-cta-container {
    width: 98% !important;
    margin: 0 auto;
  }
}




/* About US */

