    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    :root {
      --topbar-h: 40px;
      --header-h: 68px;
    }
 
    html, body {
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      font-family: 'Open Sans', sans-serif;
      min-height: 100vh;
      /* padding-top JS se dynamically set hoga */
    }
 
    /* ===== TOPBAR ===== */
    .topbar {
      background: #f5c800;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: var(--topbar-h);
      padding: 0;
      overflow: hidden;
      border-bottom: 2px solid #e0b800;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1001;
      transition: transform 0.3s ease;
    }
 
    /* Topbar hide hone ka class */
    .topbar.hide {
      transform: translateY(-100%);
    }
 
    /* ===== LEFT: ALERT MARQUEE ===== */
    .topbar-alert {
      display: flex;
      align-items: center;
      flex: 1;
      min-width: 0;
      overflow: hidden;
      padding: 0 0 0 12px;
    }
 
    .alert-label {
      font-weight: 800;
      font-size: 12px;
      color: #cc0000;
      white-space: nowrap;
      margin-right: 6px;
      flex-shrink: 0;
      text-transform: uppercase;
      letter-spacing: 0.3px;
    }
 
    .marquee-wrapper {
      overflow: hidden;
      flex: 1;
      min-width: 0;
    }
 
    .marquee-track {
      display: inline-block;
      white-space: nowrap;
      animation: marquee-scroll 22s linear infinite;
      font-size: 12px;
      font-weight: 600;
      color: #1a1a1a;
    }
 
    .marquee-track:hover { animation-play-state: paused; }
 
    @keyframes marquee-scroll {
      0%   { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }
 
    /* ===== DIVIDER ===== */
    .topbar-divider {
      width: 2px;
      height: 24px;
      background: rgba(0,0,0,0.2);
      flex-shrink: 0;
      margin: 0 8px;
    }
 
    /* ===== RIGHT: NAV LINKS ===== */
    .topbar-nav {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      padding-right: 10px;
    }
 
    .topbar-nav a {
      font-size: 12px;
      font-weight: 700;
      color: #1a1a1a;
      text-decoration: none;
      padding: 0 12px;
      white-space: nowrap;
      border-right: 1.5px solid rgba(0,0,0,0.2);
      line-height: var(--topbar-h);
      transition: color 0.2s;
    }
 
    .topbar-nav a:last-child { border-right: none; }
    .topbar-nav a:hover { color: #cc0000; }
 
    .topbar-nav .phone-link {
      display: flex;
      align-items: center;
      gap: 5px;
      font-weight: 800;
    }
 
    .topbar-nav .phone-link svg { flex-shrink: 0; }
    @media (max-width: 767px) {
  :root {
    --topbar-h: 64px;
  }

  .topbar {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    height: auto;
    min-height: 64px;
    padding: 0;
  }

  .topbar-alert {
    width: 100%;
    min-width: 0;
    padding: 6px 10px;
    border-bottom: 1px solid rgba(0,0,0,0.15);
  }

  .alert-label {
    font-size: 11px;
    margin-right: 6px;
  }

  .marquee-wrapper {
    width: 100%;
    overflow: hidden;
  }

  .marquee-track {
    font-size: 11px;
    animation: marquee-scroll 18s linear infinite;
  }

  .topbar-divider {
    display: none;
  }

  .topbar-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .topbar-nav a {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    line-height: 36px;
    padding: 0 14px;
    font-size: 11px;
    border-right: 1px solid rgba(0,0,0,0.2);
    white-space: nowrap;
  }

  .topbar-nav a:last-child {
    border-right: none;
  }

  .topbar-nav .phone-link {
    gap: 4px;
    font-size: 10px;
    font-weight: 800;
  }

  .topbar-nav .phone-link svg {
    width: 11px;
    height: 11px;
  }
}
 
    /* ===== HEADER ===== */
   .header {
  background: #000;
  width: 100%;
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: var(--header-h);
  max-width: 1440px;
  margin: 0 auto;
}

/* ===== LOGO ===== */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #ffffff;
}

.logo-subtitle {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.6px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  color: #f5c800;
  background: rgba(245,200,0,0.08);
}

/* ===== SOCIAL ICONS ===== */
.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.2);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.social-links a svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.social-links a:hover {
  background: #f5c800;
  border-color: #f5c800;
  transform: translateY(-1px);
}

.social-links a:hover svg path {
  fill: #000 !important;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 7px;
  cursor: pointer;
  padding: 8px;
  transition: background 0.2s;
}

.hamburger:hover {
  background: rgba(245,200,0,0.15);
  border-color: #f5c800;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  flex-direction: column;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  max-height: 0;
  padding: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
  display: none;
}

.mobile-menu.open {
  max-height: 400px;
  padding: 12px 0 16px;
}

.mobile-menu a {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 12px 24px;
  transition: color 0.2s, background 0.2s;
  border-left: 3px solid transparent;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: #f5c800;
  background: rgba(245,200,0,0.06);
  border-left-color: #f5c800;
}

.mobile-menu .mobile-social {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px 4px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 8px;
}

.mobile-menu .mobile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.mobile-menu .mobile-social a:hover {
  background: #f5c800;
  border-color: #f5c800;
}

.mobile-menu .mobile-social a:hover svg path {
  fill: #000 !important;
}

/* ===== TABLET ===== */
@media (min-width: 768px) and (max-width: 1023px) {
  :root { --topbar-h: 36px; --header-h: 62px; }

  .header-inner { padding: 0 24px; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .logo img { height: 48px; }
  .logo-title { font-size: 16px; }
  .logo-subtitle { font-size: 10px; letter-spacing: 2px; }
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {
  :root { --topbar-h: 62px; --header-h: 58px; }

  .header { top: 62px; }
  .header-inner { padding: 0 16px; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .logo {
    gap: 8px;
  }

  .logo img {
    height: 42px;
  }

  .logo-title {
    font-size: 13px;
    letter-spacing: 0.8px;
  }

  .logo-subtitle {
    font-size: 8px;
    letter-spacing: 1.8px;
    margin-top: 3px;
  }
}

/* ===== VERY SMALL ===== */
@media (max-width: 374px) {
  :root { --topbar-h: 66px; --header-h: 54px; }

  .header { top: 66px; }
  .header-inner { padding: 0 12px; }

  .logo img { height: 38px; }
  .logo-title { font-size: 12px; }
  .logo-subtitle { font-size: 7px; letter-spacing: 1.5px; }
}

/* ===== LAPTOP ===== */
@media (min-width: 1024px) and (max-width: 1279px) {
  .header-inner { padding: 0 32px; }
  .nav a { font-size: 13px; padding: 8px 11px; }

  .logo img { height: 54px; }
  .logo-title { font-size: 17px; }
  .logo-subtitle { font-size: 10px; }
}
    /* ===== HERO ===== */
   /* ===== ROOT VARIABLES ===== */
html, body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  margin:0;
  padding:0;
  box-sizing:border-box;
}

*, *::before, *::after{
  box-sizing:border-box;
}

:root{
  --orange:#f47c20;
  --orange-hover:#e06b10;
  --green:#1daa5e;
  --green-hover:#188f4f;
  --white:#ffffff;
  --star:#f5c518;
  --danger:#ff4d4f;
  --radius:10px;
  --form-bg:#0d0d0d;
}

/* =========================
   HERO
========================= */
.hero{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  width:100%;
  max-width:100%;
  min-height:340px;
  height:85vh;
  padding:48px 40px;
  overflow:hidden;
  background:linear-gradient(135deg,#000000 0%,#1a1a1a 50%,#333333 100%);
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size:40px 40px;
  pointer-events:none;
}

.hero::after{
  content:"";
  position:absolute;
  top:-100px;
  left:-100px;
  width:500px;
  height:500px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(29,170,94,0.15) 0%, transparent 70%);
  pointer-events:none;
}

/* =========================
   LEFT CONTENT
========================= */
.hero-left{
  position:relative;
  z-index:2;
  flex:1;
  min-width:0;
  width:100%;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
  padding:7px 16px;
  border:1px solid rgba(255,255,255,0.18);
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  color:var(--white);
  font-size:12px;
  font-weight:600;
  font-family:'Montserrat',sans-serif;
}

.hero-badge .badge-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--orange);
  flex-shrink:0;
}

.hero-left h1{
  margin:0 0 14px;
  color:var(--white);
  font-family:'Montserrat',sans-serif;
  font-size:clamp(22px,3.5vw,40px);
  font-weight:800;
  line-height:1.2;
}

.hero-left h1 .highlight{
  color:var(--orange);
}

.hero-left p{
  max-width:900px;
  margin:0 0 28px;
  color:rgba(255,255,255,0.84);
  font-size:clamp(13px,1.5vw,16px);
  line-height:1.6;
}

/* =========================
   CTA BUTTON
========================= */
.cta-buttons{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  justify-content:flex-start;
  gap:12px;
  width:100%;
  margin:0 0 22px;
  padding:0;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 22px;
  border:none;
  border-radius:var(--radius);
  font-family:'Montserrat',sans-serif;
  font-weight:700;
  font-size:clamp(12px,1.2vw,14px);
  line-height:1;
  text-decoration:none;
  white-space:nowrap;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-orange{
  background:var(--orange);
  color:var(--white);
  box-shadow:0 4px 18px rgba(244,124,32,.45);
}

.btn-orange:hover{
  background:var(--orange-hover);
  box-shadow:0 6px 24px rgba(244,124,32,.55);
}

.btn-green{
  background:var(--green);
  color:var(--white);
  box-shadow:0 4px 18px rgba(29,170,94,.40);
}

.btn-green:hover{
  background:var(--green-hover);
}

.btn-outline{
  background:transparent;
  color:var(--white);
  border:2px solid rgba(255,255,255,.6);
}

.btn-outline:hover{
  background:rgba(255,255,255,.1);
  border-color:var(--white);
}

/* =========================
   STATS
========================= */
.stats-row{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  width:100%;
  margin-bottom:22px;
}

.stat-item .stat-num{
  color:var(--orange);
  font-family:'Montserrat',sans-serif;
  font-size:clamp(22px,3vw,36px);
  font-weight:800;
  line-height:1;
}

.stat-item .stat-label{
  margin-top:3px;
  color:rgba(255,255,255,.68);
  font-size:12px;
}

/* =========================
   TRUST / BRANDS
========================= */
.trust-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
  width:100%;
  margin-bottom:22px;
}

.stars{
  display:flex;
  gap:2px;
}

.stars span{
  color:var(--star);
  font-size:18px;
}

.rating-text{
  color:var(--white);
  font-family:'Montserrat',sans-serif;
  font-size:13px;
  font-weight:700;
}

.divider-dot{
  width:5px;
  height:5px;
  border-radius:50%;
  background:rgba(255,255,255,.4);
}

.trust-text{
  color:rgba(255,255,255,.82);
  font-size:13px;
}

.brands{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  width:100%;
}

.brand-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 12px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:var(--white);
  font-size:12px;
  font-weight:600;
  backdrop-filter:blur(6px);
}

.brand-badge .dot{
  width:8px;
  height:8px;
  border-radius:50%;
  flex-shrink:0;
}

/* =========================
   STATIC FORM
========================= */
.hero-form-wrapper{
  position:relative;
  z-index:2;
  flex-shrink:0;
  width:300px;
}

.form-card{
  width:100%;
  padding:24px 20px 20px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;
  background:#0d0d0d;
  box-shadow:0 12px 48px rgba(0,0,0,.7), 0 0 0 1px rgba(244,124,32,.15);
}

.form-card-title{
  margin-bottom:4px;
  color:var(--white);
  text-align:center;
  font-family:'Montserrat',sans-serif;
  font-size:clamp(14px,1.5vw,17px);
  font-weight:800;
  line-height:1.3;
}

.form-card-sub{
  margin-bottom:14px;
  color:rgba(255,255,255,.75);
  text-align:center;
  font-size:12px;
  line-height:1.4;
}

.form-card-sub strong{
  color:var(--white);
  font-weight:700;
}

.form-group{
  margin-bottom:11px;
}

.form-row{
  display:flex;
  gap:8px;
  margin-bottom:11px;
}

.form-row .form-group{
  flex:1;
  margin-bottom:0;
}

.form-label{
  display:block;
  margin-bottom:5px;
  color:rgba(255,255,255,.75);
  font-family:'Montserrat',sans-serif;
  font-size:11px;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:11px 14px;
  border:1.5px solid rgba(255,255,255,.15);
  border-radius:6px;
  outline:none;
  background:rgba(0,0,0,.35);
  color:rgba(255,255,255,.85);
  font-family:'Open Sans',sans-serif;
  font-size:13px;
  appearance:none;
  -webkit-appearance:none;
  transition:border-color .2s ease, box-shadow .2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
  color:rgba(255,255,255,.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:var(--orange);
  box-shadow:0 0 0 3px rgba(244,124,32,.12);
}

.form-group textarea{
  height:68px;
  resize:none;
  line-height:1.5;
}

.select-wrap{
  position:relative;
}

.select-wrap::after{
  content:"▾";
  position:absolute;
  top:50%;
  right:12px;
  transform:translateY(-50%);
  color:rgba(255,255,255,.5);
  font-size:14px;
  pointer-events:none;
}

.form-group select{
  color:rgba(255,255,255,.45);
  cursor:pointer;
}

.form-group select option{
  color:#333;
  background:#fff;
}

.input-icon-wrap{
  position:relative;
}

.input-icon-wrap .field-icon{
  position:absolute;
  top:50%;
  left:11px;
  transform:translateY(-50%);
  font-size:13px;
  opacity:.5;
}

.input-icon-wrap input,
.input-icon-wrap select{
  padding-left:32px;
}

.btn-submit{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
  margin-top:4px;
  padding:13px;
  border:none;
  border-radius:6px;
  background:var(--orange);
  color:var(--white);
  box-shadow:0 4px 18px rgba(244,124,32,.5);
  font-family:'Montserrat',sans-serif;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:background .2s ease, transform .15s ease, box-shadow .2s ease;
}

.btn-submit:hover{
  background:var(--orange-hover);
  transform:translateY(-2px);
  box-shadow:0 6px 24px rgba(244,124,32,.6);
}

/* =========================
   FORM ERROR
========================= */
.form-error-msg{
  display:none;
  margin-top:10px;
  padding:10px 12px;
  border:1px solid rgba(255,77,79,.35);
  border-radius:8px;
  background:rgba(255,77,79,.12);
  color:#ffb3b5;
  font-size:12px;
  line-height:1.4;
}

.field-error{
  border-color:var(--danger) !important;
  box-shadow:0 0 0 3px rgba(255,77,79,.12) !important;
}

/* =========================
   POPUP
========================= */
.popup-overlay{
  position:fixed;
  inset:0;
  z-index:9998;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  background:rgba(0,0,0,.68);
  backdrop-filter:blur(4px);
  opacity:0;
  pointer-events:none;
  transition:opacity .35s ease;
}

.popup-overlay.active{
  opacity:1;
  pointer-events:all;
}

.popup-box{
  position:relative;
  z-index:9999;
  width:100%;
  max-width:340px;
  max-height:min(88vh,680px);
  overflow-y:auto;
  padding:18px 16px 16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  background:#0d0d0d;
  box-shadow:0 20px 60px rgba(0,0,0,.85), 0 0 0 1px rgba(244,124,32,.15);
  transform:scale(.88) translateY(20px);
  transition:transform .35s cubic-bezier(.34,1.56,.64,1);
}

.popup-overlay.active .popup-box{
  transform:scale(1) translateY(0);
}

.popup-box::-webkit-scrollbar{
  width:4px;
}

.popup-box::-webkit-scrollbar-track{
  background:transparent;
}

.popup-box::-webkit-scrollbar-thumb{
  background:rgba(244,124,32,.4);
  border-radius:4px;
}

.popup-close{
  position:absolute;
  top:10px;
  right:10px;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  color:var(--white);
  font-size:16px;
  cursor:pointer;
  transition:background .2s ease;
}

.popup-close:hover{
  background:rgba(255,255,255,.25);
}

.popup-timer{
  height:3px;
  margin-bottom:14px;
  overflow:hidden;
  border-radius:2px;
  background:rgba(255,255,255,.15);
}

.popup-timer-bar{
  width:100%;
  height:100%;
  border-radius:2px;
  background:var(--orange);
  transition:width linear;
}

.success-msg{
  display:none;
  padding:20px 0;
  text-align:center;
}

.success-msg .check{
  margin-bottom:12px;
  font-size:48px;
}

.success-msg h4{
  margin-bottom:8px;
  color:var(--white);
  font-family:'Montserrat',sans-serif;
  font-size:16px;
  font-weight:700;
}

.success-msg p{
  color:rgba(255,255,255,.7);
  font-size:13px;
}

/* =========================
   FLOAT BUTTON
========================= */
.float-btn{
  position:fixed;
  right:28px;
  bottom:28px;
  z-index:9000;
  display:none;
  align-items:center;
  gap:8px;
  padding:14px 22px;
  border:none;
  border-radius:50px;
  background:var(--orange) !important;        /* ✅ RED OVERRIDE FIX */
  background-color:var(--orange) !important;  /* ✅ EXTRA SAFETY */
  color:var(--white);
  box-shadow:0 6px 28px rgba(244,124,32,.6);
  font-family:'Montserrat',sans-serif;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  transition:transform .2s ease;
  animation:float-pulse 2.5s infinite;
}

.float-btn:hover{
  transform:scale(1.05);
  background:var(--orange-hover) !important;
  background-color:var(--orange-hover) !important;
}

@keyframes float-pulse{
  0%,100%{ box-shadow:0 6px 28px rgba(244,124,32,.6); }
  50%{ box-shadow:0 6px 40px rgba(244,124,32,.9); }
}

/* =========================
   ERROR SHAKE
========================= */
.shake-error{
  animation:shakeError .35s ease;
}

@keyframes shakeError{
  0%,100%{ transform:translateX(0); }
  20%{ transform:translateX(-6px); }
  40%{ transform:translateX(6px); }
  60%{ transform:translateX(-4px); }
  80%{ transform:translateX(4px); }
}

/* =========================
   MOBILE
========================= */
@media (min-width:275px) and (max-width:767px){
  .hero{
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    gap:22px;
    height:auto;
    min-height:unset;
    padding:28px 16px;
    margin-top:0 !important;   /* ✅ FIX 1: header ke saath gap hataya */
  }

  .hero-left{
    width:100%;
    max-width:100%;
  }

  .hero-left h1{
    font-size:clamp(24px,8vw,34px);
    line-height:1.2;
  }

  .hero-left p{
    margin-bottom:22px;
    font-size:14px;
  }

  .hero-form-wrapper{
    display:none;
  }

  .cta-buttons{
    display:flex;
    justify-content:flex-start !important;
    align-items:flex-start !important;
    width:100%;
    margin:0 0 18px 0;
    padding:0 !important;
    padding-left:0 !important;
    margin-left:0 !important;
  }

  .cta-buttons .btn,
  .cta-buttons .btn-orange{
    position:static !important;
    left:auto !important;
    right:auto !important;
    transform:none !important;
    margin:0 !important;
    margin-left:0 !important;
    margin-right:auto !important;
    align-self:flex-start !important;
    justify-content:center;
  }

  .hero-left .cta-buttons .btn,
  .hero-left .cta-buttons .btn-orange{
    position:static !important;
    left:auto !important;
    right:auto !important;
    transform:none !important;
    margin:0 !important;
    margin-left:0 !important;
    margin-right:auto !important;
    align-self:flex-start !important;
  }

  .btn{
    padding:11px 18px;
    font-size:12px;
  }

  .stats-row{
    gap:16px;
    margin-bottom:18px;
  }

  .stat-item .stat-num{
    font-size:clamp(22px,8vw,34px);
  }

  .trust-row{
    gap:10px;
  }

  .brands{
    gap:8px;
  }

  .brand-badge{
    padding:5px 10px;
    font-size:11px;
  }

  .popup-overlay{
    padding:12px;
  }

  .popup-box{
    width:min(100%,330px);
    max-width:330px;
    max-height:85vh;
    margin:0 auto;
    padding:16px 14px 14px;
    border-radius:16px;
  }

  .popup-overlay{
    padding:8px !important;
    align-items:flex-start !important;   /* ✅ upar se shuru ho */
    overflow-y:auto !important;          /* ✅ overlay bhi scroll kare */
  }

  .popup-box{
    width:min(100%,340px) !important;
    max-width:340px !important;
    max-height:none !important;          /* ✅ height limit hatao */
    height:auto !important;
    margin:8px auto !important;
    padding:14px 14px 18px !important;   /* ✅ bottom padding zyada */
    border-radius:16px !important;
    overflow-y:visible !important;       /* ✅ box scroll nahi, overlay scroll karega */
  }

  .popup-box .form-card-title{
    padding-right:30px;
    font-size:14px;
    margin-bottom:4px;
  }

  .popup-box .form-card-sub{
    margin-bottom:10px;
    font-size:11px;
  }

  /* ✅ FIX 3: label aur input ke beech gap */
  .popup-box .form-label{
    display:block !important;
    margin-bottom:5px !important;   /* negative tha, ab positive */
    font-size:10px;
  }

  .popup-box .form-group{
    margin-bottom:10px;             /* thoda zyada breathing room */
  }

  .popup-box .form-row{
    flex-direction:column;
    gap:10px;
    margin-bottom:10px;
  }

  .popup-box input,
  .popup-box select,
  .popup-box textarea{
    padding:10px 12px 10px 30px;
    font-size:12px;
  }

  .popup-box textarea{
    height:56px;
  }

  .popup-box .field-icon{
    left:10px;
    font-size:11px;
  }

  .popup-box .btn-submit{
    padding:11px;
    font-size:13px;
  }

  .popup-close{
    top:8px;
    right:8px;
    width:28px;
    height:28px;
  }

  .float-btn{
    display:none !important;        /* ✅ mobile pe float btn hide */
  }
}

/* =========================
   VERY SMALL MOBILE
========================= */
@media (min-width:275px) and (max-width:374px){
  .hero{
    padding:24px 12px;
  }

  .hero-left h1{
    font-size:22px;
  }

  .cta-buttons{
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    padding-left:0 !important;
    margin-left:0 !important;
  }

  .cta-buttons .btn,
  .cta-buttons .btn-orange{
    width:auto;
    max-width:100%;
    justify-content:center;
    margin-left:0 !important;
  }

  .popup-box{
    width:min(100%,300px);
    max-width:300px;
    padding:14px 12px 12px;
  }

  .popup-box .form-card-title{
    font-size:13px;
  }
}

/* =========================
   TABLET
========================= */
@media (min-width:768px) and (max-width:1023px){
  .hero{
    gap:24px;
    height:auto;
    min-height:420px;
    padding:40px 28px;
  }

  .hero-form-wrapper{
    width:270px;
  }

  .form-card{
    padding:20px 16px 18px;
  }

  .hero-left h1{
    font-size:clamp(20px,3vw,32px);
  }

  .popup-box{
    max-width:350px;
  }

  .hero-left .cta-buttons .btn,
  .hero-left .cta-buttons .btn-orange{
    position:relative !important;
    left:1px !important;
    margin:0 !important;
    margin-right:auto !important;
    align-self:flex-start !important;
  }
}

/* =========================
   SMALL LAPTOP
========================= */
@media (min-width:1024px) and (max-width:2000px){
  .hero{
    gap:20px;
    height:85vh;
    padding:56px 32px;
  }

  .hero-form-wrapper{
    width:310px;
    flex-shrink:0;
  }

  .hero-left h1{
    font-size:26px;
  }

  .hero-left .cta-buttons .btn,
  .hero-left .cta-buttons .btn-orange{
    position:relative !important;
    left:15px !important;
    margin:0 !important;
    margin-right:auto !important;
    align-self:flex-start !important;
  }
}

/* =========================
   DESKTOP
========================= */
@media (min-width:1280px) and (max-width:1599px){
  .hero{
    gap:40px;
    padding:60px 80px;
  }

  .hero-left h1{
    font-size:clamp(32px, 4.5vw, 58px);
  }

  .hero-form-wrapper{
    width:330px;
    flex-shrink:0;
  }

  .hero-left .cta-buttons .btn,
  .hero-left .cta-buttons .btn-orange{
    position:relative !important;
    left:-5px !important;
    margin:0 !important;
    margin-right:auto !important;
    align-self:flex-start !important;
  }
}

/* =========================
   LARGE DESKTOP
========================= */
@media (min-width:1600px){
  .hero{
    gap:42px;
    padding:60px 90px;
  }

  .hero-left .cta-buttons .btn,
  .hero-left .cta-buttons .btn-orange{
    position:relative !important;
    left:-70px !important;
    margin:0 !important;
    margin-right:auto !important;
    align-self:flex-start !important;
  }
}
    /* section 1 css */
      .section-1 {
      padding: 70px 48px 80px;
      background: #f8f8f8;
    }
 
    /* ── HEADING BLOCK ── */
    .services-heading {
      font-size: clamp(32px, 4.5vw, 58px);
      font-weight: 900;
      line-height: 1.1;
      color: #111111;
      text-align: center;
      margin-bottom: 18px;
      letter-spacing: -0.5px;
    }
 
    .services-heading .gold { color: #f5a623; }
 
    .services-subtext {
      font-size: 15px;
      color: #666;
      max-width: 560px;
      line-height: 1.75;
      text-align: center;
      margin: 0 auto 52px;
    }
 
    /* ── GRID ── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
 
    /* ── CARD ── */
    .service-card {
      background: #ffffff;
      border: 1.5px solid #e8c84a;
      border-radius: 18px;
      padding: 30px 26px 26px;
      display: flex;
      flex-direction: column;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }
 
    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 36px rgba(245,166,35,0.15);
      border-color: #f5a623;
    }
 
    /* ── ICON BOX ── */
    .card-icon {
      width: 64px;
      height: 64px;
      border-radius: 14px;
      background: #fef9ec;
      border: 1.5px solid #f0d97a;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin-bottom: 22px;
      flex-shrink: 0;
    }
 
    /* ── TITLE ── */
    .card-title {
      font-size: 18px;
      font-weight: 700;
      color: #111111;
      margin-bottom: 12px;
      line-height: 1.35;
    }
 
    /* ── TEXT ── */
    .card-text {
      font-size: 14px;
      color: #666666;
      line-height: 1.75;
      flex: 1;
      margin-bottom: 24px;
    }
 
    /* ── PRICE BADGE ── */
    .card-badge {
      display: inline-block;
      background: #ffffff;
      border: 1.5px solid #e8c84a;
      color: #b8860b;
      font-size: 13px;
      font-weight: 600;
      padding: 7px 18px;
      border-radius: 8px;
      width: fit-content;
      transition: background 0.2s, border-color 0.2s;
    }
 
    .service-card:hover .card-badge {
      background: #fff9e6;
      border-color: #f5a623;
    }
 
    /* ═══════════════════════════════
       RESPONSIVE
    ═══════════════════════════════ */
 
    /* Tablet: 768px – 1023px → 2 columns */
    @media (min-width: 768px) and (max-width: 1023px) {
      .section-1 { padding: 56px 32px 64px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
      .services-heading { font-size: clamp(28px, 5vw, 44px); }
    }
 
    /* Mobile: ≤ 767px → 1 column */
    @media (max-width: 767px) {
      .section-1 { padding: 44px 18px 52px; }
      .services-heading { font-size: clamp(26px, 8vw, 38px); }
      .services-subtext { font-size: 14px; margin-bottom: 32px; }
      .services-grid { grid-template-columns: 1fr; gap: 16px; }
      .service-card { padding: 24px 20px 22px; }
      .card-icon { width: 54px; height: 54px; font-size: 24px; margin-bottom: 16px; }
      .card-title { font-size: 16px; }
      .card-text { font-size: 13px; margin-bottom: 18px; }
    }
 
    /* Large: 1440px+ */
    @media (min-width: 1440px) {
      .section-1 { padding: 80px 80px 96px; }
      .services-grid { gap: 26px; }
      .card-title { font-size: 20px; }
    }
 
    /* 2K / 4K */
    @media (min-width: 2000px) {
      .section-1 { padding: 96px 120px 112px; }
      .services-heading { font-size: 72px; }
      .services-subtext { font-size: 18px; }
      .services-grid { gap: 30px; }
      .service-card { padding: 40px 34px 32px; }
      .card-icon { width: 76px; height: 76px; font-size: 34px; }
      .card-title { font-size: 24px; }
      .card-text { font-size: 16px; }
      .card-badge { font-size: 15px; padding: 9px 22px; }
    }
    /* Tech section css */

       .tech-section { padding: 8px 60px 20px; background: #f8f9fa; overflow: hidden; }
 
    .tech-main-heading { text-align: center; font-size: clamp(32px, 4.5vw, 58px); font-weight: 800; color: #111; margin-bottom: 4px; }
    .tech-main-heading span { color: #f5a623; }
    .tech-main-sub { text-align: center; color: #777; font-size: 12px; margin-bottom: 18px; }
 
    .tech-category { margin-bottom: 16px; }
    .tech-category:last-child { margin-bottom: 0; }
 
    .category-label {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: #f5a623;
      margin-bottom: 10px; padding-bottom: 6px;
      border-bottom: 2px solid rgba(245,166,35,0.25); width: 100%;
    }
    .category-label::after { content: ""; flex: 1; height: 1px; background: rgba(245,166,35,0.15); }
 
    .tech-grid { display: flex; flex-wrap: wrap; gap: 10px; }
 
    .tech-card {
      display: flex; flex-direction: column; align-items: center;
      justify-content: center; gap: 10px;
      width: 84px; padding: 10px 10px 9px;
      background: #fff; border-radius: 14px;
      border: 1.5px solid #eee;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
      cursor: default;
    }
    .tech-card:hover { transform: translateY(-6px); box-shadow: 0 10px 28px rgba(245,166,35,0.18); border-color: #f5a623; }
 
    .tech-card img { width: 34px; height: 34px; object-fit: contain; transition: transform 0.25s; }
    .tech-card:hover img { transform: scale(1.1); }
 
    .tech-name { font-size: 10px; font-weight: 700; color: #333; text-align: center; }
 
    /* Mobile */
    @media (min-width: 275px) and (max-width: 767px) {
      .tech-section { padding: 40px 16px; }
      .tech-main-heading { font-size: 22px; }
      .tech-main-sub { font-size: 13px; margin-bottom: 32px; }
      .category-label { font-size: 11px; }
      .tech-card { width: 82px; padding: 16px 10px 12px; gap: 8px; }
      .tech-card img { width: 38px; height: 38px; }
      .tech-name { font-size: 10px; }
      .tech-grid { gap: 12px; }
    }
    @media (min-width: 275px) and (max-width: 374px) {
      .tech-card { width: 72px; padding: 14px 8px 10px; }
      .tech-card img { width: 32px; height: 32px; }
      .tech-name { font-size: 9px; }
      .tech-grid { gap: 10px; }
    }
    /* Tablet */
    @media (min-width: 768px) and (max-width: 1023px) {
      .tech-section { padding: 20px 32px; }
      .tech-main-heading { font-size: 26px; }
      .tech-card { width: 100px; }
    }
    /* Laptop */
    @media (min-width: 1024px) and (max-width: 1279px) {
      .tech-section { padding: 50px 60px; }
    }

    /* work section */
.work-section{
  padding:60px 0;
  background:#fff;
  overflow:hidden;
}

.work-heading{
  text-align:center;
  font-family:'Playfair Display', serif;
  font-size:clamp(32px, 4.5vw, 58px);
  font-weight:900;
  color:#111;
  margin-bottom:8px;
  letter-spacing:-0.5px;
}

.work-heading span{
  color:#f5a623;
}

.work-sub{
  text-align:center;
  color:#888;
  font-size:clamp(13px,1.5vw,16px);
  margin-bottom:40px;
  padding:0 14px;
}

.carousel-wrapper{
  position:relative;
  width:min(100%, 1800px);
  margin:0 auto;
  padding:0 110px;
  box-sizing:border-box;
}

.carousel-viewport{
  width:100%;
  max-width:100%;
  overflow:hidden;
  position:relative;
}

.carousel-viewport::before,
.carousel-viewport::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:90px;
  z-index:5;
  pointer-events:none;
}

.carousel-viewport::before{
  left:0;
  background:linear-gradient(to right, #fff 18%, transparent 100%);
}

.carousel-viewport::after{
  right:0;
  background:linear-gradient(to left, #fff 18%, transparent 100%);
}

.carousel-track{
  display:flex;
  align-items:center;
  gap:22px;
  padding:30px 0 30px;
  transition:transform 0.55s cubic-bezier(0.38,0.05,0.18,1);
  will-change:transform;
}

.work-card{
  flex:0 0 auto;
  background:#fff;
  border:1px solid #e9e9e9;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
  transform:scale(0.82);
  opacity:0.42;
  filter:blur(1.2px);
  transition:
    transform 0.55s cubic-bezier(0.38,0.05,0.18,1),
    opacity 0.55s ease,
    filter 0.55s ease,
    box-shadow 0.55s ease;
  position:relative;
  cursor:pointer;
}

.work-card.is-active{
  transform:scale(1);
  opacity:1;
  filter:none;
  z-index:3;
  box-shadow:0 18px 44px rgba(0,0,0,0.14);
  cursor:default;
}

.work-card.is-adj{
  transform:scale(0.88);
  opacity:0.60;
  filter:blur(0.45px);
  z-index:2;
}

.work-img-wrap{
  width:100%;
  position:relative;
  overflow:hidden;
  background:#ddd;
}

.work-img-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.work-card.is-active .work-img-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, transparent 58%, rgba(0,0,0,0.18) 100%);
  pointer-events:none;
}

.work-body{
  padding:14px 16px 16px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.work-title{
  font-size:clamp(12px,1vw,15px);
  font-weight:700;
  color:#111;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:240px;
  margin-bottom:3px;
}

.work-stars{
  color:#f5a623;
  font-size:11px;
  letter-spacing:1px;
}

.work-tag{
  flex-shrink:0;
  font-size:10px;
  font-weight:700;
  color:#fff;
  background:#1a56db;
  padding:5px 12px;
  border-radius:999px;
  white-space:nowrap;
}

.c-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:58px;
  height:58px;
  border-radius:50%;
  border:1.5px solid #d9d9d9;
  background:#fff;
  box-shadow:0 4px 14px rgba(0,0,0,0.10);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  line-height:1;
  color:#222;
  cursor:pointer;
  z-index:50;
  transition:all 0.25s ease;
  padding:0;
}

.c-arrow:hover{
  background:#f8f8f8;
  border-color:#cfcfcf;
}

.c-arrow-left{
  left:24px;
}

.c-arrow-right{
  right:24px;
}

.carousel-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:16px;
  flex-wrap:wrap;
  padding:0 12px;
}

.dot{
  width:8px;
  height:8px;
  border:none;
  border-radius:50%;
  background:#ddd;
  cursor:pointer;
  transition:all 0.3s ease;
  padding:0;
}

.dot.active{
  width:24px;
  border-radius:999px;
  background:#f5a623;
}

.carousel-counter{
  text-align:center;
  margin-top:10px;
  font-size:12px;
  color:#bbb;
  font-weight:500;
}

.carousel-counter b{
  color:#f5a623;
  font-weight:700;
}

/* large desktop */
@media (min-width:1600px){
  .carousel-wrapper{
    padding:0 125px;
  }

  .carousel-viewport::before,
  .carousel-viewport::after{
    width:105px;
  }

  .c-arrow-left{
    left:34px;
  }

  .c-arrow-right{
    right:34px;
  }
}

/* laptop */
@media (min-width:1024px) and (max-width:1599px){
  .carousel-wrapper{
    padding:0 110px;
  }

  .carousel-viewport::before,
  .carousel-viewport::after{
    width:90px;
  }

  .c-arrow{
    width:56px;
    height:56px;
    font-size:28px;
  }

  .c-arrow-left{
    left:22px;
  }

  .c-arrow-right{
    right:22px;
  }
}

/* tablet */
@media (min-width:768px) and (max-width:1023px){
  .carousel-wrapper{
    padding:0 70px;
  }

  .carousel-viewport::before,
  .carousel-viewport::after{
    width:52px;
  }

  .carousel-track{
    gap:18px;
    padding:24px 0;
  }

  .work-card{
    border-radius:18px;
  }

  .c-arrow{
    width:48px;
    height:48px;
    font-size:24px;
  }

  .c-arrow-left{
    left:10px;
  }

  .c-arrow-right{
    right:10px;
  }
}

/* mobile */
@media (max-width:767px){
  .work-section{
    padding:40px 0;
  }

  .work-sub{
    margin-bottom:24px;
    padding:0 14px;
  }

  .carousel-wrapper{
    width:100%;
    max-width:100%;
    padding:0 10px;
    box-sizing:border-box;
  }

  .carousel-viewport::before,
  .carousel-viewport::after{
    display:none;
  }

  .carousel-track{
    gap:0 !important;
    padding:12px 0 18px;
  }

  .work-card{
    transform:scale(1) !important;
    opacity:1 !important;
    filter:none !important;
    border-radius:16px;
    box-shadow:0 10px 26px rgba(0,0,0,0.10);
  }

  .work-card.is-adj{
    transform:scale(1) !important;
    opacity:1 !important;
    filter:none !important;
  }

  .work-card.is-active{
    transform:scale(1) !important;
    opacity:1 !important;
    filter:none !important;
  }

  .work-body{
    padding:12px 12px 14px;
    gap:8px;
  }

  .work-title{
    font-size:12px;
    max-width:130px;
  }

  .work-stars{
    font-size:10px;
  }

  .work-tag{
    font-size:8px;
    padding:4px 9px;
  }

  .c-arrow{
    width:38px;
    height:38px;
    font-size:20px;
    top:40%;
    transform:translateY(-50%);
    z-index:100;
  }

  .c-arrow-left{
    left:12px;
  }

  .c-arrow-right{
    right:12px;
  }

  .carousel-dots{
    margin-top:10px;
    gap:6px;
  }

  .dot{
    width:7px;
    height:7px;
  }

  .dot.active{
    width:20px;
  }
}

@media (max-width:480px){
  .carousel-wrapper{
    padding:0 10px;
  }

  .work-title{
    max-width:105px;
  }

  .work-tag{
    font-size:7px;
    padding:4px 7px;
  }

  .c-arrow{
    width:34px;
    height:34px;
    font-size:18px;
  }

  .c-arrow-left{
    left:10px;
  }

  .c-arrow-right{
    right:10px;
  }
}

@media (max-width:360px){
  .carousel-wrapper{
    padding:0 8px;
  }

  .work-title{
    max-width:86px;
  }

  .work-body{
    padding:10px;
  }

  .work-tag{
    font-size:6.8px;
    padding:4px 6px;
  }

  .c-arrow-left{
    left:8px;
  }

  .c-arrow-right{
    right:8px;
  }
}
    /* Testimonial Section */
   
  .testimonials-section {
      padding: 5px 0 72px;
      background: #ffffff;
      overflow: visible;
      position: relative;
      margin-top: 0 !important;
    }
 
    .testimonials-section::before,
    .testimonials-section::after {
      display: none;
    }
 
    /* ── Section heading ── */
    .section-head {
      text-align: center;
      margin-bottom: 48px;
      position: relative;
      z-index: 1;
      padding: 0 80px;
      max-width: 1340px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 48px;
    }
    .section-head .eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: #f5a623;
      background: rgba(245,166,35,.10);
      border: 1px solid rgba(245,166,35,.35);
      border-radius: 50px;
      padding: 5px 18px;
      margin-bottom: 18px;
    }

    /* ── H2: always one line on all screens ── */
    .section-head h2 {
      font-size: clamp(32px, 4.5vw, 58px);
      font-weight: 800;
      color: #0f1e3d;
      line-height: 1.15;
      margin-bottom: 12px;
      white-space: nowrap;
    }

    .section-head h2 span { color: #f5a623; }
    .heading-break { color: #0f1e3d !important; }

    .section-head p {
      font-size: clamp(13px, 1.5vw, 15px);
      color: #6b7fa8;
    }
 
    /* ── Carousel outer ── */
    .carousel-outer {
      position: relative;
      z-index: 1;
      max-width: 1340px;
      margin: 0 auto;
      padding: 0 68px;
    }
 
    .carousel-track-wrap {
      overflow: hidden;
      border-radius: 8px;
    }
 
    .carousel-track {
      display: flex;
      gap: 24px;
      transition: transform .55s cubic-bezier(.45,.05,.15,1);
      will-change: transform;
    }
 
    /* ── Card ── */
    .testimonial-card {
      background: #ffffff;
      border-radius: 18px;
      padding: 34px 28px 28px;
      box-shadow: 0 8px 32px rgba(26,79,160,.12);
      border: 1.5px solid rgba(26,79,160,.07);
      position: relative;
      overflow: hidden;
      transition: transform .3s ease, box-shadow .3s ease;
      flex-shrink: 0;
    }
    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 44px rgba(26,79,160,.18);
      border: 1.5px solid #f5a623;
    }
 
    .card-accent {
      display: none;
    }
 
    /* stars */
    .t-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 20px;
    }
    .t-stars span { font-size: 19px; line-height: 1; color: #f5a623; }
 
    .card-quote {
      font-size: 14.5px;
      line-height: 1.7;
      color: #3d5280;
      font-style: italic;
      margin-bottom: 28px;
    }
 
    .card-divider {
      display: none;
    }
 
    .card-author {
      display: flex;
      align-items: center;
      gap: 13px;
      border-top: 1px solid rgba(26,79,160,.08);
      padding-top: 20px;
    }
 
    .avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 700;
      color: #ffffff;
      letter-spacing: .04em;
      background: #f5a623 !important;
      border: 3px solid #fbbf24;
      box-shadow: 0 3px 10px rgba(0,0,0,.12);
      transition: transform .3s ease;
    }
    .testimonial-card:hover .avatar { transform: scale(1.08); }
 
    .author-info .a-name {
      font-size: 14.5px;
      font-weight: 700;
      color: #0f1e3d;
      line-height: 1.2;
    }
    .author-info .a-role {
      font-size: 12px;
      color: #6b7fa8;
      margin-top: 2px;
    }
    .author-info .a-company {
      display: none;
    }
 
    /* ── Arrows ── */
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 2px solid #f5a623;
      cursor: pointer;
      display: flex !important;
      align-items: center;
      justify-content: center;
      z-index: 20;
      background: #ffffff;
      box-shadow: 0 4px 16px rgba(245,166,35,.30);
      transition: background .22s, box-shadow .22s, transform .22s;
      outline: none;
      padding: 0;
    }
 
    .carousel-btn svg {
      width: 20px;
      height: 20px;
      stroke: #f5a623;
      fill: none;
      stroke-width: 2.5px;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: stroke .2s;
      display: block;
    }
 
    .carousel-btn:hover {
      background: #f5a623;
      border-color: #f5a623;
      box-shadow: 0 6px 22px rgba(245,166,35,.45);
      transform: translateY(-50%) scale(1.1);
    }
    .carousel-btn:hover svg { stroke: #ffffff; }
 
    .carousel-btn:disabled {
      opacity: .3;
      pointer-events: none;
      cursor: default;
    }
 
    .carousel-btn.prev { left: 6px; }
    .carousel-btn.next { right: 6px; }
 
    /* ── Dots ── */
    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 32px;
    }
    .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(26,79,160,.2);
      cursor: pointer;
      transition: background .3s, width .3s, border-radius .3s;
      border: none;
      padding: 0;
    }
    .dot.active {
      width: 26px;
      border-radius: 4px;
      background: linear-gradient(90deg, #1a4fa0, #f5a623);
    }
 
    /* ── Responsive ── */
    @media (min-width: 1024px) and (max-width: 1441px) {
      .carousel-outer { padding: 0 64px; }
    }
    @media (min-width: 768px) and (max-width: 1023px) {
      .testimonials-section { padding: 48px 0 56px; }
      .carousel-outer { padding: 0 54px; }
      .carousel-track { gap: 18px; }
      .testimonial-card { padding: 26px 22px 22px; }
      .carousel-btn { width: 40px; height: 40px; }
      .carousel-btn svg { width: 18px; height: 18px; }
      .carousel-btn.prev { left: 4px; }
      .carousel-btn.next { right: 4px; }
      .section-head { padding: 0 54px; }
    }
    @media (min-width: 275px) and (max-width: 767px) {
      .testimonials-section { padding: 40px 0 52px; }
      .carousel-outer { padding: 0 44px; }
      .carousel-track { gap: 14px; }
      .testimonial-card { padding: 22px 18px 20px; }
      .card-quote { font-size: 13.5px; min-height: auto; }
      .carousel-btn { width: 36px; height: 36px; }
      .carousel-btn svg { width: 16px; height: 16px; }
      .carousel-btn.prev { left: 2px; }
      .carousel-btn.next { right: 2px; }
      .section-head { padding: 0 20px; }
      .section-head h2 {
        font-size: 20px;
        white-space: normal;
      }
    }
    @media (min-width: 275px) and (max-width: 359px) {
      .carousel-outer { padding: 0 36px; }
      .testimonial-card { padding: 18px 14px 16px; }
      .section-head { padding: 0 10px; }
    }
/* our recent client */
.cl-section{
  background:#000;
  padding:60px 40px;
}
.cl-inner{
  max-width:1380px;
  margin:0 auto;
  display:grid;
  grid-template-columns:310px 1fr;
  align-items:stretch;
}
 
/* ═══════════════════════
   LEFT PANEL
═══════════════════════ */
.cl-left{
  padding:44px 44px 44px 0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border-right:1px solid rgba(255,255,255,.1);
}
.cl-eyebrow{
  font-size:clamp(32px, 4.5vw, 58px);font-weight:600;
  color:#f5a623;letter-spacing:.06em;
  margin-bottom:10px;
}
.cl-line{
  width:40px;height:2.5px;
  background:#f5a623;border-radius:2px;
  margin-bottom:26px;
}
.cl-heading{
  font-family:'Playfair Display',serif;
  font-size:15px;
  font-weight:800;color:#ffffff;
  line-height:1.28;margin-bottom:32px;
}
.cl-btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:11px 22px;
  border:1.5px solid rgba(255,255,255,.4);
  border-radius:50px;
  color:#fff;font-size:13.5px;font-weight:500;
  text-decoration:none;
  background:transparent;
  transition:all .25s;width:fit-content;
}
.cl-btn:hover{background:#f5a623;border-color:#f5a623;color:#000;}
.cl-btn svg{
  width:15px;height:15px;stroke:currentColor;
  stroke-width:2;fill:none;transition:transform .25s;
}
.cl-btn:hover svg{transform:translateX(4px);}
 
/* ═══════════════════════
   RIGHT — 4×3 GRID
   12 logos total
═══════════════════════ */
.cl-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-template-rows:repeat(3,1fr);
}
 
.cl-cell{
  border-left:1px solid rgba(255,255,255,.1);
  border-bottom:1px solid rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:center;
  padding:26px 18px;
  min-height:105px;
  transition:background .25s;
  overflow:hidden;
}
.cl-cell:hover{background:rgba(255,255,255,.05);}
 
/* remove bottom border: last row */
.cl-cell:nth-child(n+10){border-bottom:none;}
 
/* ── Logo image ──
   Default: white (filter invert)
   Hover: original colors
   Aap sirf src="..." badlo apni image se
*/
.cl-cell img{
  max-width:160px;
  max-height:80px;
  width:auto;
  height:auto;
  object-fit:contain;
  display:block;
}
 
/* Clickable link */
.cl-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
}
.cl-logo-link:hover img {
  transform: scale(1.08);
  opacity: 1;
  transition: transform .25s, opacity .25s;
}
 
/* ═══════════════════════
   RESPONSIVE
═══════════════════════ */
 
/* Laptop: min-width 1024px and max-width 1441px */
@media (min-width:1024px) and (max-width:1441px){
  .cl-section{padding:56px 32px;}
  .cl-inner{grid-template-columns:290px 1fr;}
  .cl-cell img{max-width:100px;max-height:44px;}
}
 
/* Tablet: min-width 768px and max-width 1023px */
@media (min-width:768px) and (max-width:1023px){
  .cl-section{padding:48px 24px;}
  .cl-inner{grid-template-columns:1fr;}
  .cl-left{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.1);
    padding:0 0 32px 0;
  }
  .cl-grid{grid-template-columns:repeat(4,1fr);}
  .cl-cell:nth-child(-n+4){border-top:1px solid rgba(255,255,255,.1);}
  .cl-cell:nth-child(n+10){border-bottom:none;}
  .cl-cell{min-height:88px;padding:20px 12px;}
  .cl-cell img{max-width:90px;max-height:40px;}
}
 
/* Mobile: min-width 275px and max-width 767px */
@media (min-width:275px) and (max-width:767px){
  .cl-section{padding:40px 14px;}
  .cl-inner{grid-template-columns:1fr;}
  .cl-left{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.1);
    padding:0 0 28px 0;
    align-items:center;text-align:center;
  }
  .cl-line{margin:0 auto 22px;}
  .cl-grid{grid-template-columns:repeat(3,1fr);}
  .cl-cell:nth-child(-n+3){border-top:1px solid rgba(255,255,255,.1);}
  .cl-cell:nth-child(n+10){border-bottom:none;}
  .cl-cell{min-height:78px;padding:16px 10px;}
  .cl-cell img{max-width:80px;max-height:36px;}
}

/* why choose us section css */
.wcu-section {
  background: #ffffff;
  padding: 80px 60px;
  width: 100%;
}
 
.wcu-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
 
/* ═══════════════════════════════════════
   LEFT COLUMN
═══════════════════════════════════════ */
.wcu-left {}
 
.wcu-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #f5c800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}
 
.wcu-heading {
  font-size: 38px;
  font-weight: 900;
  
  color: #0d0d0d;
  line-height: 1.05;
  margin-bottom: 20px;
}
 
.wcu-heading span { color: #f5a623; }
 
.wcu-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
 
/* Checklist */
.wcu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
 
.wcu-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
 
.wcu-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #f5c800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.wcu-check svg { width: 12px; height: 12px; fill: #0d0d0d; }
 
.wcu-list-content {}
.wcu-list-title {
  font-size: 14px;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 1.3;
}
.wcu-list-sub {
  font-size: 12.5px;
  color: #777;
  line-height: 1.5;
  margin-top: 2px;
}
 
/* ═══════════════════════════════════════
   RIGHT COLUMN
═══════════════════════════════════════ */
.wcu-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
/* Stats card */
.wcu-stats-card {
  background: #0d1f3c;
  border-radius: 18px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
 
.wcu-stat {
  text-align: center;
  padding: 8px 12px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.wcu-stat:last-child { border-right: none; }
 
.wcu-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: #f5c800;
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
}
.wcu-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  line-height: 1.3;
}
 
/* Results card */
.wcu-results-card {
  background: #0d1f3c;
  border-radius: 18px;
  padding: 28px 32px;
}
 
.wcu-results-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 22px;
}
 
.wcu-bar-row {
  margin-bottom: 16px;
}
.wcu-bar-row:last-child { margin-bottom: 0; }
 
.wcu-bar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}
.wcu-bar-name {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.wcu-bar-val {
  font-size: 12px;
  font-weight: 700;
  color: #f5c800;
}
 
.wcu-bar-track {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.wcu-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #f5c800, #ffde59);
  transition: width 1s ease;
}
 
/* ═══════════════════════════════════════
   LAPTOP  1024px – 1440px
═══════════════════════════════════════ */
@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .wcu-section { padding: 70px 48px; }
  .wcu-heading { font-size: clamp(32px, 4.5vw, 58px); }
  .wcu-inner { gap: 48px; }
}
 
/* ═══════════════════════════════════════
   TABLET  768px – 1023px
═══════════════════════════════════════ */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .wcu-section { padding: 60px 36px; }
  .wcu-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .wcu-heading { font-size: 28px; }
  .wcu-desc { max-width: 100%; font-size: 13px; }
  .wcu-stats-card { padding: 20px 16px; }
  .wcu-stat-num { font-size: 26px; }
  .wcu-stat-label { font-size: 10px; }
  .wcu-list-title { font-size: 13px; }
  .wcu-list-sub { font-size: 11.5px; }
}
 
/* ═══════════════════════════════════════
   MOBILE  275px – 767px
═══════════════════════════════════════ */
@media screen and (min-width: 275px) and (max-width: 767px) {
  .wcu-section { padding: 48px 18px; }
  .wcu-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wcu-heading { font-size: 26px; }
  .wcu-desc { font-size: 14px; }
 
  /* Stats: stack 3 in a row but smaller */
  .wcu-stats-card {
    padding: 20px 16px;
    border-radius: 14px;
    grid-template-columns: repeat(3, 1fr);
  }
  .wcu-stat { padding: 4px 8px; }
  .wcu-stat-num { font-size: 26px; }
  .wcu-stat-label { font-size: 10px; }
 
  .wcu-results-card {
    padding: 22px 18px;
    border-radius: 14px;
  }
  .wcu-bar-name { font-size: 12px; }
  .wcu-bar-val { font-size: 11.5px; }
}
 
/* Very small phones */
@media screen and (max-width: 360px) {
  .wcu-section { padding: 40px 14px; }
  .wcu-heading { font-size: 26px; }
  .wcu-stat-num { font-size: 22px; }
  .wcu-stat-label { font-size: 9px; }
}
/* Counting animation base */
.wcu-stat-num { transition: none; }

/* cta section */
.cta-section {
  position: relative;
  background: #ffffff;
  border: 2.5px solid #f5a623;
  border-radius: 20px;
  padding: 60px 32px 56px;
  text-align: center;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto 60px;
}

/* subtle dot grid */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  border-radius: 18px;
}

/* center glow */
.cta-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(245,166,35,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 900px; /* pehle 700px tha */
  margin: 0 auto;
}

/* ── BADGE ── */
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid #d4a017;
  color: #b8860b;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f5a623;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(245,166,35,0.7);
}

/* ── HEADING ── */
.cta-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.15;
  color: #111111;
  margin-bottom: 8px;
  white-space: normal;      /* nowrap hata diya */
  word-break: break-word;
}

.cta-heading .gold {
  color: #f5a623;
}

/* ── SUBTEXT ── */
.cta-subtext {
  font-size: 14px;
  color: #888888;
  margin: 14px auto 32px;
  max-width: 480px;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5a623;
  color: #111111;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: #e0940f;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111111;
  color: #ffffff;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 8px;
  border: 1.5px solid #333333;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
}

/* ── LOCATION ── */
.cta-location {
  font-size: 13px;
  color: #999999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

/* Tablet: 768px – 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .cta-section {
    padding: 50px 28px 46px;
  }

  .cta-heading {
    font-size: clamp(28px, 4.5vw, 48px);
  }
}

/* Laptop fix */
@media (min-width: 1024px) and (max-width: 1366px) {
  .cta-heading {
    font-size: clamp(38px, 4.2vw, 60px);
  }
}

/* Mobile: ≤ 767px */
@media (max-width: 767px) {
  .cta-section {
    padding: 40px 20px 36px;
    border-radius: 14px;
  }

  .cta-heading {
    font-size: 20px;
    white-space: normal;
  }

  .cta-subtext {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }

  .cta-badge {
    font-size: 12px;
    padding: 6px 14px;
  }
}

/* Large: 1440px+ */
@media (min-width: 1440px) {
  .cta-section {
    padding: 72px 40px 68px;
  }

  .cta-heading {
    font-size: clamp(44px, 4vw, 72px);
  }
}

/* 2K / 4K */
@media (min-width: 2000px) {
  .cta-section {
    max-width: 1400px;
    padding: 88px 60px 80px;
  }

  .cta-heading {
    font-size: 64px;
  }

  .cta-subtext {
    font-size: 17px;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 16px;
    padding: 14px 30px;
  }
}
    /* Footer */
    .footer-main {
  background: #111;
  width: 100%;
  padding: 40px 20px;
}

/* ── Headings ── */
.col-title {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 16px;
  position: relative;
}
.col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 2.5px;
  background: #f5c800;
  border-radius: 2px;
}

.footer-sub { margin-top: 22px; }

.sub-title {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 10px;
  position: relative;
}
.sub-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 2px;
  background: #f5c800;
  border-radius: 2px;
}
.sub-title.no-line { padding-bottom: 0; margin-bottom: 0; }
.sub-title.no-line::after { display: none; }

/* ── Links ── */
.link-list { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.link-list li a { text-decoration: none; font-size: 13px; color: #999; font-weight: 500; line-height: 1.5; }
.link-list li a:hover { color: #f5c800; }

/* ── Social ── */
.social-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 8px 0 20px; }
.s-btn {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex-shrink: 0;
  background: #1a1a1a; border: 1.5px solid #333;
  border-radius: 10px; color: #ccc; text-decoration: none;
}
.s-btn:hover { background: #f5c800; border-color: #f5c800; color: #000; }
.s-btn svg { width: 18px; height: 18px; fill: currentColor; }

/* ── Contact ── */
.contact-item {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 14px;
}
.c-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: #1a1a1a; border: 1.5px solid #333;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.c-icon svg { width: 16px; height: 16px; fill: #f5c800; }
.contact-item span { font-size: 13px; color: #aaa; line-height: 1.5; word-break: break-word; }

/* ── Column separator ── */
.footer-col {
  text-align: center;
  padding: 26px 0;
  border-bottom: 1px solid #1e1e1e;
}
.footer-col:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* ==============================================
   MOBILE  <= 539px
============================================== */
/* ✅ FIX: body background dark — call bar ke niche white gap nahi dikhega */
@media screen and (max-width: 539px) {
  html, body { background: #111 !important; }
  .footer-main {
    padding: 32px 18px 0 !important;
    margin: 0 !important;
  }
  .footer-grid {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
  }
  .footer-col:last-child {
    padding: 26px 0 0 0 !important;
    margin: 0 !important;
    border-bottom: none !important;
  }
}

/* <= 360px */
@media screen and (max-width: 360px) {
  .footer-main { padding: 28px 14px 80px !important; }
  .footer-col:last-child { padding-top: 20px !important; }
  .col-title { font-size: 11px; }
  .link-list li a { font-size: 12.5px; }
  .s-btn { width: 40px; height: 40px; }
  .contact-item span { font-size: 12px; }
}

/* ==============================================
   TABLET  540px - 1024px  ->  2 COLUMNS
============================================== */
@media screen and (min-width: 540px) and (max-width: 1024px) {
  .footer-main { padding: 48px 36px 48px; }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }
  .footer-col {
    border-bottom: none;
    padding: 0;
    text-align: left;
  }
  .col-title::after { left: 0; transform: none; }
  .sub-title::after { left: 0; transform: none; }
  .link-list { align-items: flex-start; }
  .social-row { justify-content: flex-start; }
  .contact-item { justify-content: flex-start; }
}

/* ==============================================
   DESKTOP  > 1024px  ->  4 COLUMNS
============================================== */
@media screen and (min-width: 1025px) {
  .footer-main { padding: 60px 60px 56px; }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 32px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .footer-col {
    border-bottom: none;
    padding: 0;
    text-align: left;
  }
  .col-title { font-size: 13px; }
  .col-title::after { left: 0; transform: none; }
  .sub-title::after { left: 0; transform: none; }
  .link-list { align-items: flex-start; }
  .social-row { justify-content: flex-start; }
  .s-btn { width: 38px; height: 38px; }
  .contact-item { justify-content: flex-start; }
}

@media screen and (min-width: 1280px) {
  .footer-main { padding: 60px 80px 60px; }
}