
    .sgn-hero-section {
      background: #0a0f1e;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 80px 0 60px;
      position: relative;
      overflow: hidden;
      font-family: 'Sora', 'Segoe UI', sans-serif;
    }

    /* Decorative background grid */
    .sgn-hero-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    /* Radial glow top-left */
    .sgn-hero-section::after {
      content: '';
      position: absolute;
      top: -120px;
      left: -120px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
      pointer-events: none;
    }

    .sgn-hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    /* ── LEFT CONTENT ── */
    .sgn-hero-left {
      color: #ffffff;
    }

    .sgn-hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(37, 99, 235, 0.15);
      border: 1px solid rgba(37, 99, 235, 0.35);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #60a5fa;
      margin-bottom: 28px;
    }

    .sgn-hero-eyebrow span.sgn-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #3b82f6;
      display: inline-block;
      animation: sgn-pulse 2s ease-in-out infinite;
    }

    @keyframes sgn-pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.7); }
    }

    .sgn-hero-h1 {
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 800;
      line-height: 1.15;
      color: #ffffff;
      margin: 0 0 12px;
      letter-spacing: -0.02em;
    }

    .sgn-hero-h1 em {
      font-style: normal;
      background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .sgn-hero-lead {
      font-size: 16px;
      line-height: 1.75;
      color: #94a3b8;
      margin: 0 0 44px;
      max-width: 520px;
    }

    /* Stats row */
    .sgn-stats-row {
      display: flex;
      gap: 0;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.03);
      margin-bottom: 40px;
    }

    .sgn-stat-item {
      flex: 1;
      padding: 24px 20px;
      text-align: center;
      position: relative;
    }

    .sgn-stat-item + .sgn-stat-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 20%;
      height: 60%;
      width: 1px;
      background: rgba(255, 255, 255, 0.08);
    }

    .sgn-stat-number {
      font-size: 28px;
      font-weight: 800;
      color: #ffffff;
      line-height: 1;
      margin-bottom: 6px;
      letter-spacing: -0.03em;
    }

    .sgn-stat-number span {
      color: #3b82f6;
    }

    .sgn-stat-label {
      font-size: 11px;
      color: #64748b;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      line-height: 1.4;
    }

    /* Trust badges */
    .sgn-trust-badges {
      justify-content: center;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .sgn-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      padding: 8px 14px;
      font-size: 13px;
      color: #cbd5e1;
      font-weight: 500;
    }

    .sgn-badge svg {
      flex-shrink: 0;
      color: #3b82f6;
    }

    /* ── RIGHT FORM CARD ── */
    .sgn-hero-right {
      position: relative;
    }

    /* Glow behind card */
    .sgn-hero-right::before {
      content: '';
      position: absolute;
      top: 40px;
      right: -40px;
      bottom: -40px;
      left: 40px;
      background: radial-gradient(ellipse, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
      border-radius: 24px;
      pointer-events: none;
      z-index: 0;
    }

    .sgn-form-card {
      background: #ffffff;
      border-radius: 20px;
      padding: 40px 36px;
      position: relative;
      z-index: 1;
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
    }

    .sgn-form-card h2 {
      font-size: 22px;
      font-weight: 800;
      color: #0f172a;
      margin: 0 0 6px;
      letter-spacing: -0.02em;
    }

    .sgn-form-card > p {
      font-size: 16px;
      color: #000;
      margin: 0 0 24px;
      line-height: 1.5;
    }

    /* Form fields — scoped inside sgn-form-card */
    .sgn-form-card .custom-form input[type="text"],
    .sgn-form-card .custom-form input[type="email"],
    .sgn-form-card .custom-form input[type="tel"],
    .sgn-form-card .custom-form select,
    .sgn-form-card .custom-form textarea {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid #e2e8f0;
      border-radius: 10px;
      font-size: 14px;
      color: #0f172a;
      background: #f8fafc;
      margin-bottom: 14px;
      box-sizing: border-box;
      font-family: inherit;
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }

    .sgn-form-card .custom-form input:focus,
    .sgn-form-card .custom-form select:focus,
    .sgn-form-card .custom-form textarea:focus {
      border-color: #3b82f6;
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
      background: #ffffff;
    }

    /* .sgn-form-card .custom-form .phone-group {
      display: flex;
      gap: 10px;
      margin-bottom: 14px;
    } */

    .sgn-form-card .custom-form .phone-group select {
      flex: 0 0 130px;
      margin-bottom: 0;
    }

    .sgn-form-card .custom-form .phone-group input {
      flex: 1;
      margin-bottom: 0;
    }

    .sgn-form-card .custom-form textarea {
      resize: vertical;
      min-height: 90px;
    }

    .sgn-form-card .custom-form button[type="submit"],
    .sgn-form-card .custom-form .footerformbuttonhide,
    .sgn-form-card .custom-form .pleaseWaitBtn {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
      color: #ffffff;
      border: none;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      letter-spacing: 0.01em;
      transition: transform 0.15s, box-shadow 0.15s;
      margin-top: 4px;
      font-family: inherit;
    }

    .sgn-form-card .custom-form button[type="submit"]:hover,
    .sgn-form-card .custom-form .footerformbuttonhide:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    }

    .sgn-form-card .custom-form .pleaseWaitBtn {
      background: #94a3b8;
    }

    /* reCAPTCHA centering kept as-is */
    .sgn-form-card .custom-form #captha {
      margin-bottom: 14px;
    }

    .sgn-form-card .custom-form .footerformcaptcha {
      font-size: 12px;
      color: #ef4444;
      margin: -10px 0 10px;
    }

    /* Form footer */
    .sgn-form-card .form-footer {
      text-align: center;
      font-size: 12px;
      color: #94a3b8;
      margin-top: 16px;
      border-top: 1px solid #f1f5f9;
      padding-top: 14px;
    }

    /* Announcement bar (if used standalone) */
    .sgn-ticker-bar {
      background: #1e40af;
      color: #bfdbfe;
      font-size: 13px;
      text-align: center;
      padding: 10px 16px;
      letter-spacing: 0.02em;
      font-weight: 500;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .sgn-hero-inner {
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .sgn-hero-section {
        padding: 30px 0 40px;
      }

      .sgn-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .sgn-hero-right {
        order: -1;
      }

      .sgn-hero-right::before {
        display: none;
      }

      .sgn-form-card {
        padding: 28px 22px;
      }

      .sgn-stats-row {
        flex-wrap: wrap;
      }

      .sgn-stat-item {
        flex: 1 1 40%;
      }

      .sgn-stat-item + .sgn-stat-item::before {
        display: none;
      }
    }

    @media (max-width: 480px) {
      .sgn-hero-h1 {
        font-size: 28px;
      }

      .sgn-form-card .custom-form .phone-group {
        flex-direction: column;
      }

      .sgn-form-card .custom-form .phone-group select {
        flex: unset;
      }
    }
  
  

/* ===== QUICK CONTACT SECTION ===== */

  
    .sg-process-block{
      padding:30px 20px;
      background:#0a1226;
      background-image:radial-gradient(circle at 15% 20%, rgba(37,99,235,0.18) 0%, rgba(10,18,38,0) 45%),radial-gradient(circle at 85% 80%, rgba(37,99,235,0.14) 0%, rgba(10,18,38,0) 50%);
      color:#ffffff;
      box-sizing:border-box;
      overflow:hidden;
    }
    .sg-process-block *,.sg-process-block *::before,.sg-process-block *::after{box-sizing:border-box;}
    .sg-process-block .sg-wrap{max-width:1240px;margin:0 auto;}
    .sg-process-block .sg-head{text-align:center;margin:0 auto 56px;max-width:780px;}
    .sg-process-block .sg-eyebrow{
      display:inline-block;
      letter-spacing:3px;
      font-size:12px;
      font-weight:700;
      color:#60a5fa;
      text-transform:uppercase;
      padding:6px 14px;
      border:1px solid rgba(96,165,250,0.35);
      border-radius:999px;
      margin-bottom:18px;
    }
    .sg-process-block h2#sg-process-heading{
      font-size:40px;
      line-height:1.18;
      font-weight:700;
      margin:0 0 14px;
      color:#ffffff;
      letter-spacing:-0.5px;
    }
    .sg-process-block .sg-lead{
      font-size:16px;
      line-height:1.65;
      color:#c7d0e3;
      margin:0;
    }
    .sg-process-block .sg-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:26px;
      position:relative;
    }
    .sg-process-block .sg-grid::before{
      content:"";
      position:absolute;
      top:96px;
      left:8%;
      right:8%;
      height:2px;
      background:linear-gradient(90deg, rgba(37,99,235,0) 0%, rgba(96,165,250,0.55) 50%, rgba(37,99,235,0) 100%);
      z-index:0;
    }
    .sg-process-block .sg-card{
      position:relative;
      background:#ffffff;
      border-radius:18px;
      padding:34px 28px 30px;
      box-shadow:0 18px 40px rgba(0,0,0,0.22);
      transition:transform .3s ease, box-shadow .3s ease;
      z-index:1;
      display:flex;
      flex-direction:column;
    }
    .sg-process-block .sg-card:hover{
      transform:translateY(-6px);
      box-shadow:0 22px 48px rgba(37,99,235,0.28);
    }
    .sg-process-block .sg-step{
      position:absolute;
      top:-22px;
      left:50%;
      transform:translateX(-50%);
      width:54px;
      height:54px;
      border-radius:14px;
      background:#1d4ed8;
      background-image:linear-gradient(135deg,#2563eb 0%, #1e3a8a 100%);
      color:#ffffff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:18px;
      font-weight:700;
      box-shadow:0 10px 22px rgba(37,99,235,0.45);
      border:3px solid #0a1226;
    }
    .sg-process-block .sg-icon-wrap{
      width:64px;
      height:64px;
      border-radius:16px;
      background:#eff4ff;
      display:flex;
      align-items:center;
      justify-content:center;
      margin:22px auto 22px;
    }
    .sg-process-block .sg-icon-wrap svg{
      width:32px;
      height:32px;
      display:block;
    }
    .sg-process-block .sg-card h3{
      font-size:20px;
      line-height:1.35;
      font-weight:700;
      color:#0a1226;
      margin:0 0 14px;
      text-align:center;
    }
    .sg-process-block .sg-card p{
      font-size:15px;
      line-height:1.7;
      color:#475569;
      margin:0 0 22px;
      text-align:center;
      flex:1;
    }
    .sg-process-block .sg-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      align-self:center;
      background:#eff4ff;
      color:#1d4ed8;
      border:1px solid #c7d8ff;
      font-size:13.5px;
      font-weight:600;
      padding:9px 16px;
      border-radius:999px;
      margin-top:auto;
    }
    .sg-process-block .sg-badge svg{width:16px;height:16px;flex-shrink:0;}

    @media (max-width:992px){
      .sg-process-block{padding:64px 18px;}
      .sg-process-block h2#sg-process-heading{font-size:32px;}
      .sg-process-block .sg-grid{grid-template-columns:1fr;gap:42px;}
      .sg-process-block .sg-grid::before{display:none;}
    }
    @media (max-width:520px){
      .sg-process-block{padding:52px 14px;}
      .sg-process-block h2#sg-process-heading{font-size:26px;}
      .sg-process-block .sg-lead{font-size:15px;}
      .sg-process-block .sg-card{padding:30px 22px 26px;}
      .sg-process-block .sg-card h3{font-size:18px;}
      .sg-process-block .sg-card p{font-size:14.5px;}
    }
  
    
    .sg-why-block{
      padding:30px 20px;
      background:#0a1226;
      color:#0a1226;
      box-sizing:border-box;
    }
    .sg-why-block *,.sg-why-block *::before,.sg-why-block *::after{box-sizing:border-box;}
    .sg-why-block .sg-why-wrap{max-width:1240px;margin:0 auto;}
    .sg-why-block .sg-why-head{text-align:center;max-width:820px;margin:0 auto 56px;}
    .sg-why-block .sg-why-eyebrow{
      display:inline-block;
      letter-spacing:3px;
      font-size:12px;
      font-weight:700;
      color:#1d4ed8;
      text-transform:uppercase;
      padding:6px 14px;
      border:1px solid rgba(29,78,216,0.25);
      background:#eff4ff;
      border-radius:999px;
      margin-bottom:18px;
    }
    .sg-why-block h2#sg-why-heading{
      font-size:40px;
      line-height:1.18;
      font-weight:700;
      margin:0 0 14px;
      color:#fff;
      letter-spacing:-0.5px;
    }
    .sg-why-block .sg-why-lead{
      font-size:16px;
      line-height:1.65;
      color:#4b5b7a;
      margin:0;
    }
    .sg-why-block .sg-why-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:22px;
    }
    .sg-why-block .sg-why-card{
      position:relative;
      background:#ffffff;
      border:1px solid #e5ebf5;
      border-radius:18px;
      padding:34px 30px 30px;
      transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
      overflow:hidden;
    }
    .sg-why-block .sg-why-card::before{
      content:"";
      position:absolute;
      top:0;
      left:0;
      width:4px;
      height:0;
      background:linear-gradient(180deg,#2563eb 0%, #1e3a8a 100%);
      transition:height .35s ease;
    }
    .sg-why-block .sg-why-card:hover{
      transform:translateY(-5px);
      border-color:#c7d8ff;
      box-shadow:0 18px 38px rgba(29,78,216,0.14);
    }
    .sg-why-block .sg-why-card:hover::before{height:100%;}
    .sg-why-block .sg-why-row{
      display:flex;
      align-items:center;
      gap:16px;
      margin-bottom:18px;
    }
    .sg-why-block .sg-why-num{
      width:46px;
      height:46px;
      border-radius:12px;
      background:#eff4ff;
      color:#1d4ed8;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:16px;
      font-weight:700;
      flex-shrink:0;
    }
    .sg-why-block .sg-why-icon{
      width:46px;
      height:46px;
      border-radius:12px;
      background:#0a1226;
      display:flex;
      align-items:center;
      justify-content:center;
      flex-shrink:0;
      margin-left:auto;
    }
    .sg-why-block .sg-why-icon svg{width:24px;height:24px;display:block;}
    .sg-why-block .sg-why-card h3{
      font-size:20px;
      line-height:1.35;
      font-weight:700;
      color:#0a1226;
      margin:0 0 12px;
    }
    .sg-why-block .sg-why-card p{
      font-size:15px;
      line-height:1.7;
      color:#4b5b7a;
      margin:0;
    }
    .sg-why-block .sg-why-featured{
      grid-column:1/-1;
      background:#0a1226;
      background-image:radial-gradient(circle at 12% 50%, rgba(37,99,235,0.28) 0%, rgba(10,18,38,0) 55%),radial-gradient(circle at 88% 50%, rgba(96,165,250,0.18) 0%, rgba(10,18,38,0) 55%);
      border:1px solid #182242;
      padding:40px 38px;
      display:grid;
      grid-template-columns:96px 1fr;
      gap:28px;
      align-items:center;
    }
    .sg-why-block .sg-why-featured::before{display:none;}
    .sg-why-block .sg-why-featured:hover{transform:translateY(-5px);box-shadow:0 22px 50px rgba(0,0,0,0.35);}
    .sg-why-block .sg-why-featured-icon{
      width:96px;
      height:96px;
      border-radius:20px;
      background:#fff;
      background-image: #fff;
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 14px 30px rgba(37,99,235,0.4);
    }
    .sg-why-block .sg-why-featured-icon img{width:44px;height:44px;display:block;}
    .sg-why-block .sg-why-featured-num{
      display:inline-block;
      font-size:12px;
      font-weight:700;
      letter-spacing:2px;
      color:#60a5fa;
      text-transform:uppercase;
      margin-bottom:10px;
    }
    .sg-why-block .sg-why-featured h3{
      font-size:24px;
      line-height:1.3;
      font-weight:700;
      color:#ffffff;
      margin:0 0 12px;
    }
    .sg-why-block .sg-why-featured p{
      font-size:15.5px;
      line-height:1.7;
      color:#c7d0e3;
      margin:0;
      max-width:860px;
    }

    @media (max-width:900px){
      .sg-why-block{padding:64px 18px;}
      .sg-why-block h2#sg-why-heading{font-size:30px;}
      .sg-why-block .sg-why-grid{grid-template-columns:1fr;gap:18px;}
      .sg-why-block .sg-why-featured{
        grid-template-columns:1fr;
        text-align:center;
        padding:34px 26px;
        gap:20px;
      }
      .sg-why-block .sg-why-featured-icon{margin:0 auto;}
      .sg-why-block .sg-why-featured p{margin:0 auto;}
    }
    @media (max-width:520px){
      .sg-why-block{padding:52px 14px;}
      .sg-why-block h2#sg-why-heading{font-size:24px;}
      .sg-why-block .sg-why-lead{font-size:14.5px;}
      .sg-why-block .sg-why-card{padding:28px 22px 24px;}
      .sg-why-block .sg-why-card h3{font-size:18px;}
      .sg-why-block .sg-why-card p{font-size:14.5px;}
      .sg-why-block .sg-why-featured h3{font-size:20px;}
      .sg-why-block .sg-why-featured p{font-size:14.5px;}
      .sg-why-block .sg-why-featured-icon{width:78px;height:78px;}
      .sg-why-block .sg-why-featured-icon svg{width:36px;height:36px;}
    }
  
  
  /* ===== TESTIMONIAL SECTION FIX ===== */

#testimonials-section {
  background: #020817;
  padding: 30px 40px;
  overflow: hidden;
}

/* ===== HEADER ===== */

.ts-header {
  text-align: center;
  margin-bottom: 65px;
}

.ts-eyebrow {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 40px;
  border: 1px solid rgba(59,130,246,.25);
  background: rgba(59,130,246,.08);
  color: #3b82f6;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ts-header h2 {
  color: #fff;
  font-size: clamp(2rem,4vw,4rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

.ts-header h2 span {
  color: #3b82f6;
}

/* ===== GRID ===== */

.ts-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  align-items: stretch;
}

/* ===== CARD ===== */

.ts-card {
  background: #081426;
  border: 1px solid #17304f;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: .35s ease;
  min-height: 100%;
}

.ts-card:hover {
  transform: translateY(-6px);
  border-color: #2563eb;
  box-shadow: 0 15px 40px rgba(37,99,235,.18);
}

/* ===== QUOTE ICON ===== */

.ts-quote-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.ts-quote-icon svg {
  width: 22px;
  height: 22px;
  fill: #3b82f6;
}

/* ===== STARS ===== */

.ts-stars {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}

.ts-star {
  width: 15px;
  height: 15px;
  fill: #3b82f6;
  flex-shrink: 0;
}

/* ===== TEXT ===== */

.ts-card h3 {
  color: #fff;
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 400;
  margin-bottom: 26px;
  flex-grow: 1;
}

/* ===== DIVIDER ===== */

.ts-card-divider {
  height: 1px;
  background: #17304f;
  margin-bottom: 22px;
}

/* ===== AUTHOR ===== */

.ts-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ts-avatar img{
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg,#2563eb,#1d4ed8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}



.ts-name {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.ts-role {
  color: #8ba3c7;
  font-size: 14px;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

  .ts-grid{
    grid-template-columns: repeat(2,1fr);
  }

}

@media(max-width:767px){

  #testimonials-section{
    padding: 60px 18px;
  }

  .ts-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ts-card{
    padding: 24px;
  }

  .ts-header{
    margin-bottom: 45px;
  }

}


  /* FAQ SECTION FIXED CSS */
#faq-section {
  width: 100%;
  background: #000;
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

#faq-section *,
#faq-section *::before,
#faq-section *::after {
  box-sizing: border-box;
}

#faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(41,121,255,0.12), transparent 60%);
  pointer-events: none;
}

/* HEADER */
.faq-header {
  text-align: center;
  margin-bottom: 40px; /* gap fixed */
  position: relative;
  z-index: 2;
}

.faq-header h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0;
}

.faq-header h2 span {
  color: #3f8cff;
}

/* FAQ WRAPPER CENTER */
.faq-grid {
  max-width: 1100px;
  margin: 0 auto; /* center */
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
}

/* FAQ CARD */
.faq-item {
  width: 100%;
  background: rgba(10, 22, 45, 0.95);
  border: 1px solid rgba(52, 120, 255, 0.35);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.35s ease;
}

.faq-item:hover {
  border-color: #3f8cff;
  box-shadow: 0 10px 30px rgba(41,121,255,0.12);
}

.faq-item.open {
  border-color: #3f8cff;
}

/* BUTTON */
.faq-trigger {
  width: 100%;
  border: none;
  background: transparent;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  cursor: pointer;
  text-align: left;
}

/* NUMBER */
.faq-num {
  color: #246cff;
  font-size: 1rem;
  font-weight: 700;
  min-width: 28px;
  padding-top: 2px;
}

/* TITLE */
.faq-trigger h3 {
  flex: 1;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

/* ICON */
.faq-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: #246cff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* BODY */
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-body {
  max-height: 300px;
}

/* ANSWER */
.faq-answer {
  padding: 0 30px 24px 70px; /* padding fixed */
  color: #c7d3e2;
  font-size: 1rem;
  line-height: 1.9;
  text-align: left; /* left align fixed */
}

/* MOBILE */
@media (max-width: 768px) {

  #faq-section {
    padding: 55px 15px;
  }

  .faq-header {
    margin-bottom: 30px;
  }

  .faq-trigger {
    padding: 18px;
    gap: 14px;
  }

  .faq-trigger h3 {
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 18px 22px 50px;
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .faq-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }
}


                .quick-contact-section {
                    background: #020817;
                    padding: 30px 0;
                    position: relative;
                    overflow: hidden;
                }

                .quick-contact-section::before {
                    content: "";
                    position: absolute;
                    inset: 0;
                    background:
                        radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), transparent 30%),
                        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.10), transparent 35%);
                    pointer-events: none;
                }

                .quick-contact-section .container {
                    position: relative;
                    z-index: 2;
                }

                /* =========================
   HEADING
========================= */

                .qc-heading {
                    max-width: 920px;
                    margin: 0 auto 55px;
                }

                .qc-heading h2 {
                    color: #ffffff;
                    font-size: 3.5rem;
                    font-weight: 700;
                    line-height: 1.08;
                    margin-bottom: 18px;
                }

                .qc-heading h2 span {
                    color: #3b82f6;
                }

                .qc-heading p {
                    color: #9fb3d1;
                    font-size: 1.08rem;
                    line-height: 1.9;
                    max-width: 820px;
                    margin: 0 auto;
                }

                /* =========================
   CARDS
========================= */

                .qc-info-card {
                    background: linear-gradient(180deg, #0b1831 0%, #102548 100%);
                    border: 1px solid rgba(96, 165, 250, 0.18);
                    border-radius: 22px;
                    padding: 28px;
                    height: 100%;
                    transition: all .35s ease;
                    position: relative;
                    overflow: hidden;
                }

                .qc-info-card:hover {
                    transform: translateY(-8px);
                    border-color: rgba(96, 165, 250, 0.4);
                    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
                }

                .qc-info-card::before {
                    content: "";
                    position: absolute;
                    top: -80px;
                    right: -80px;
                    width: 160px;
                    height: 160px;
                    background: rgba(59, 130, 246, 0.08);
                    border-radius: 50%;
                }

                /* =========================
   CARD TOP
========================= */

                .qc-card-top {
                    display: flex;
                    align-items: center;
                    gap: 16px;
                    margin-bottom: 28px;
                }

                .qc-card-top h3 {
                    color: #ffffff;
                    font-size: 1.45rem;
                    font-weight: 700;
                    margin-bottom: 4px;
                }

                .qc-card-top span {
                    color: #8ea6cb;
                    font-size: 0.95rem;
                }

                /* =========================
   ICON
========================= */

                .qc-card-icon {
                    width: 68px;
                    height: 68px;
                    border-radius: 18px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex-shrink: 0;
                }

                .qc-card-icon i {
                    font-size: 26px;
                }

                .qc-card-icon.blue {
                    background: rgba(59, 130, 246, 0.15);
                    color: #60a5fa;
                }

                .qc-card-icon.purple {
                    background: rgba(168, 85, 247, 0.15);
                    color: #c084fc;
                }

                .qc-card-icon.green {
                    background: rgba(34, 197, 94, 0.15);
                    color: #4ade80;
                }

                /* =========================
   CONTACT ITEMS
========================= */

                .qc-contact-list {
                    display: flex;
                    flex-direction: column;
                    gap: 14px;
                }

                .qc-contact-item {
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    padding: 14px 16px;
                    background: rgba(255, 255, 255, 0.04);
                    border: 1px solid rgba(255, 255, 255, 0.05);
                    border-radius: 14px;
                    color: #ffffff !important;
                    text-decoration: none !important;
                    transition: all .3s ease;
                }

                .qc-contact-item:hover {
                    background: rgba(59, 130, 246, 0.12);
                    border-color: rgba(96, 165, 250, 0.25);
                    transform: translateX(4px);
                }

                .qc-contact-item i {
                    color: #60a5fa;
                    font-size: 16px;
                    min-width: 18px;
                }
                .qc-contact-item img{
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

                .qc-contact-item span {
                    font-size: 1rem;
                    font-weight: 500;
                    line-height: 1.5;
                }

                .flag {
                    font-size: 28px;
                    line-height: 1;
                }
                .flag img{
                    width: 25px;
                    height: auto;
                }

  

                @media(max-width:991px) {

                    .quick-contact-section {
                        padding: 70px 0;
                    }

                    .qc-heading h2 {
                        font-size: 3rem;
                    }

                }

                @media(max-width:767px) {

                    .quick-contact-section {
                        padding: 55px 0;
                    }

                    .qc-heading {
                        margin-bottom: 40px;
                    }

                    .qc-heading h2 {
                        font-size: 2.35rem;
                    }

                    .qc-heading p {
                        font-size: 1rem;
                        line-height: 1.8;
                    }

                    .qc-info-card {
                        padding: 22px;
                    }

                    .qc-card-top {
                        margin-bottom: 22px;
                    }

                    .qc-card-icon {
                        width: 60px;
                        height: 60px;
                    }

                    .qc-card-top h3 {
                        font-size: 1.25rem;
                    }

                    .qc-contact-item {
                        padding: 13px 14px;
                    }

                    .qc-contact-item span {
                        font-size: .95rem;
                    }

                }
          

                /* Responsive padding */
                @media (max-width: 767px) {
    .quick-contact-section {
        padding: 30px 0;
    }
}
@media (max-width: 520px) {
    .sg-process-block {
        padding: 30px 20px;
    }
}
@media (max-width: 768px) {
    #faq-section {
        padding: 30px 20px;
    }
}



.case_box{
    min-height: 460px;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    padding: 40px;
}

.case-content-col{
    display: flex;
}

.case-content-inner{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.case-study-text{
    color: #fff;
    line-height: 1.9;
    font-size: 1.03rem;
    margin-bottom: 14px;
}

.more-text{
    display: none;
}

.case-study-text.expanded .more-text{
    display: inline;
}

.read-more-btn{
    background: transparent;
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 0;
    margin-bottom: 18px;
    cursor: pointer;
    transition: .3s ease;
    align-self: flex-start;
}

.read-more-btn:hover{
    opacity: .8;
    transform: translateX(4px);
}

.viewCaseStudies{
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.img-wrapper{
    text-align: center;
}

.img-wrapper img{
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media(max-width:991px){

    .case_box{
        min-height: auto;
        padding: 32px 24px;
    }

}

@media(max-width:767px){

    .case_box{
        padding: 28px 20px;
    }

    .case-study-text{
        font-size: .96rem;
        line-height: 1.8;
    }

}
.casestudies_sec{
  padding-top: 30px!important;
}