    
    /* ===== ADD THIS CSS ===== */
    
    


/* Override bc-visual-card to have equal padding */


.tv-pulse-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.tv-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 137, 255, 0.25);
  animation: tvRingOut 2.5s ease-out infinite;
  pointer-events: none;
}

.tv-ring-2 { animation-delay: 0.8s; }
.tv-ring-3 { animation-delay: 1.6s; }

@keyframes tvRingOut {
  0%   { width: 104px; height: 104px; opacity: 0.8; }
  100% { width: 200px; height: 200px; opacity: 0; }
}

.tv-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  position: relative;
  z-index: 1;
}

.tv-icon-box {
  width: 90px;
  height: 90px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0089ff 0%, #005ec7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0, 137, 255, 0.35);
  animation: tvIconFloat 4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes tvIconFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.tv-tech-name {
  font-family: Poppins, sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -2px;
  line-height: 1;
}.service-highlight-list {
      display: grid;
      grid-template-columns: 1fr ;
      gap: 18px 24px;
    }

    .service-highlight-list li {
      position: relative;
      padding-left: 28px;
      font-size: 18px;
      line-height: 1.7;
      color: #000;
      font-weight: 500;
    }
    .service-highlight-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 11px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--secondary-color);
    }

    .ofs-steps {
      margin-top: 150px;
      position: relative;
      z-index: 2;
    }

    .ofs-steps-row {
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
      align-items: start;
      gap: 0;
    }

    /* Each step column */
    .ofs-step-col {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 18px;
    }

    /* Icon box */
    .ofs-step-icon {
      width: 80px;
      height: 80px;
      border-radius: 20px;
      background: #ffffff;
      border: 1px solid rgba(0, 137, 255, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 0 0 6px rgba(0, 137, 255, 0.04);
      transition: all 0.3s ease;
      flex-shrink: 0;
    }

    .ofs-step-col:hover .ofs-step-icon {
      border-color: rgba(0, 137, 255, 0.35);
      box-shadow:
        0 8px 24px rgba(0, 137, 255, 0.15),
        0 0 0 6px rgba(0, 137, 255, 0.06);
      transform: translateY(-3px);
    }

    .ofs-step-icon svg {
      transition: transform 0.3s ease;
      color: #0089ff;
    }

    .ofs-step-col:hover .ofs-step-icon svg {
      transform: scale(1.1);
    }

    /* Text */
    .ofs-step-title {
      font-family: Poppins, sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: #0f172a;
      margin: 0 0 8px;
      line-height: 1.3;
    }

    .ofs-step-desc {
      font-size: 14px;
      color: #64748b;
      line-height: 1.7;
      margin: 0;
      max-width: 200px;
    }

    /* Connector line */
    .ofs-step-connector {
      display: flex;
      align-items: flex-start;
      padding-top: 38px;
      padding-left: 12px;
      padding-right: 12px;
    }

    .ofs-step-line {
      width: 60px;
      height: 1.5px;
      background: rgba(0, 137, 255, 0.2);
      border-radius: 2px;
      position: relative;
      overflow: hidden;
    }

    .ofs-step-line::after {
      content: '';
      position: absolute;
      top: 50%;
      left: -10px;
      width: 10px;
      height: 10px;
      background: #0089ff;
      border-radius: 50%;
      transform: translateY(-50%);
    }



    .ofs-step-line::before {
      content: '';
      position: absolute;
      top: 50%;
      right: -4px;
      width: 0;
      height: 0;
      border-top: 4px solid transparent;
      border-bottom: 4px solid transparent;
      border-left: 6px solid rgba(0, 137, 255, 0.3);
      transform: translateY(-50%);
    }

    /* Responsive */
    @media (max-width: 991px) {
      .ofs-steps-row {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }

      .ofs-step-connector {
        display: none;
      }
    }

    @media (max-width: 575px) {
      .ofs-steps-row {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .ofs-step-icon {
        width: 68px;
        height: 68px;
        border-radius: 16px;
      }
    }

    .off-body p {
      font-size: 17px;
      line-height: 1.85;
      color: #475569;
      margin-bottom: 16px;
      text-align: justify;
      text-justify: inter-word;
    }

    .ofs-body p {
      font-size: 17px;
      line-height: 2;
      color: #000;
      margin-bottom: 14px;
      text-align: justify;
      text-justify: inter-word;
    }

    .ofs-section {
      font-family: Poppins, sans-serif;
      padding: 100px 0;
      background: #fff;
      position: relative;
      overflow: hidden;
    }

    .ofs-grid-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0, 137, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 137, 255, 0.035) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }

    .ofs-blob {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }

    .ofs-blob-1 {
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(0, 137, 255, 0.07) 0%, transparent 70%);
    }

    .ofs-blob-2 {
      bottom: -80px;
      left: -80px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(0, 137, 255, 0.05) 0%, transparent 70%);
    }

    /* Header */
    .ofs-header {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      z-index: 2;
    }

    .ofs-tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(0, 137, 255, 0.08);
      border: 1px solid rgba(0, 137, 255, 0.2);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: 11px;
      font-weight: 700;
      color: #0089ff;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .ofs-tag-dot {
      width: 7px;
      height: 7px;
      background: #0089ff;
      border-radius: 50%;
      animation: ofsDotPulse 2s ease-in-out infinite;
    }

    @keyframes ofsDotPulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.3;
        transform: scale(1.5);
      }
    }

    .ofs-title {
      font-size: clamp(28px, 3.5vw, 42px);
      font-weight: 800;
      color: #171717;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }

    .ofs-title em {
      font-style: normal;
      color: #0089ff;
      position: relative;
      display: inline-block;
    }

    .ofs-title em::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, #0089ff, rgba(0, 137, 255, 0.1));
      border-radius: 2px;
      animation: ofsTitleLine 0.8s ease 0.4s both;
      transform-origin: left;
      transform: scaleX(0);
    }

    @keyframes ofsTitleLine {
      to {
        transform: scaleX(1);
      }
    }

    .ofs-subtitle {
      font-size: 15px;
      color: #999;
      font-weight: 500;
    }

    /* Two-column layout */
    .ofs-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    /* ── LEFT COLUMN ── */
    .ofs-left {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    /* Dark image card */
    .ofs-main-card {
      background: #0a0e1a;
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      padding: 28px;
      border: 1px solid rgba(0, 137, 255, 0.15);
    }

    .ofs-main-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 20% 50%, rgba(0, 137, 255, 0.18) 0%, transparent 65%);
      pointer-events: none;
    }

    .ofs-img-inner {
      position: relative;
      z-index: 1;
      border-radius: 14px;
      overflow: hidden;
    }

    .ofs-img-inner img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      display: block;
      border-radius: 14px;
      transition: transform 0.5s ease;
    }

    .ofs-img-inner:hover img {
      transform: scale(1.04);
    }

    /* Image overlay text */
    .ofs-img-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px 18px;
      background: linear-gradient(to top, rgba(10, 14, 26, 0.95) 0%, transparent 100%);
      z-index: 2;
      border-radius: 0 0 14px 14px;
    }

    .ofs-img-overlay-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 2px;
      line-height: 1.3;
    }

    .ofs-img-overlay-sub {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.45);
    }

    /* Stats grid inside dark card */
    .ofs-stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 16px;
      position: relative;
      z-index: 1;
    }

    .ofs-stat-item {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 12px;
      padding: 14px 16px;
      transition: border-color 0.3s;
    }

    .ofs-stat-item:hover {
      border-color: rgba(0, 137, 255, 0.3);
    }

    .ofs-stat-num {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 2px;
    }

    .ofs-stat-num span {
      color: #0089ff;
    }

    .ofs-stat-lbl {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.35);
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }

    /* ── RIGHT COLUMN ── */
    .ofs-right {
      display: flex;
      flex-direction: column;
      gap: 0;
      padding-top: 8px;
    }

    .ofs-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
    }

    .ofs-label-line {
      width: 28px;
      height: 2px;
      background: #0089ff;
      border-radius: 2px;
    }

    .ofs-label-text {
      font-size: 11px;
      font-weight: 700;
      color: #0089ff;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .ofs-label-text1 {
      font-size: 15px;
      font-weight: 700;
      color: #0089ff;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .ofs-heading {
      font-size: clamp(24px, 2.8vw, 26px);
      color: #0f172a;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    .ofs-heading .ofs-blue {
      color: #0089ff;
    }



    .ofs-body p:last-child {
      margin-bottom: 0;
    }

    .ofs-body p strong {
      color: #0f172a;
      font-weight: 600;
    }

    /* Feature cards grid */
    .ofs-features {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 10px;
      margin-top: 28px;
    }

    .ofs-feat {
      background: #f8faff;
      border: 1px solid rgba(0, 137, 255, 0.1);
      border-radius: 12px;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.25s ease;
      cursor: default;
    }

    .ofs-feat:hover {
      border-color: rgba(0, 137, 255, 0.3);
      background: rgba(0, 137, 255, 0.04);
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(0, 137, 255, 0.08);
    }

    .ofs-feat-icon {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      background: rgba(0, 137, 255, 0.1);
      border: 1px solid rgba(0, 137, 255, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: #0089ff;
    }

    .ofs-feat-text strong {
      display: block;
      font-size: 12px;
      font-weight: 700;
      color: #0f172a;
      line-height: 1.3;
    }

    .ofs-feat-text span {
      font-size: 11px;
      color: #94a3b8;
    }

    /* CTA Button */
    .ofs-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #0089ff;
      color: #fff;
      font-family: Poppins, sans-serif;
      font-weight: 700;
      font-size: 15px;
      padding: 14px 30px;
      border-radius: 10px;
      text-decoration: none;
      margin-top: 32px;
      width: fit-content;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .ofs-cta-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: #005ec7;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .ofs-cta-btn:hover::before {
      transform: translateX(0);
    }

    .ofs-cta-btn span,
    .ofs-cta-btn svg {
      position: relative;
      z-index: 1;
    }

    .ofs-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(0, 137, 255, 0.35);
      color: #fff;
    }

    .ofs-cta-btn svg {
      transition: transform 0.3s ease;
    }

    .ofs-cta-btn:hover svg {
      transform: translateX(4px);
    }

    /* Responsive */
    @media (max-width: 991px) {
      .ofs-section {
        padding: 60px 0;
      }

      .ofs-row {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .ofs-img-inner img {
        height: 240px;
      }
    }

    @media (max-width: 575px) {
      .ofs-features {
        grid-template-columns: 1fr;
      }

      .ofs-stat-grid {
        grid-template-columns: 1fr 1fr;
      }

      .ofs-cta-btn {
        width: 100%;
        justify-content: center;
      }
    }

    .creative-tell-project {
      padding: 100px 0;
      /* background: #0a0e1a;  */
      position: relative;
      overflow: hidden;
      font-family: 'Poppins', sans-serif;
    }

    /* Background Decorations */
    .cta-bg-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 400px;
      pointer-events: none;
    }

    .cta-grid-pattern {
      position: absolute;
      inset: 0;
      /* background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); */
      background-size: 40px 40px;
    }

    /* Glass Card */
    .cta-glass-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 40px;
      padding: 60px;
      position: relative;
      z-index: 2;
      box-shadow:
        0 0 0 1px rgba(0, 137, 255, 0.07),
        0 8px 24px rgba(0, 137, 255, 0.10),
        0 12px 40px rgba(0, 137, 255, 0.12),
        0 2px 6px rgba(0, 0, 0, 0.04);
    }

    .cta-mini-tag {
      display: inline-block;
      color: #0089ff;
      font-weight: 700;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 15px;
    }

    .cta-title {
      color: #000;
      font-size: clamp(30px, 4vw, 48px);
      font-weight: 800;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .cta-title span {
      color: #0089ff;
      background: #0089ff;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .cta-desc {
      color: #000;
      font-size: 18px;
      line-height: 1.7;
      /* max-width: 600px; */
      margin-bottom: 30px;
    }

    /* Feature Badges */
    .cta-features {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .cta-features span {
      background: rgba(255, 255, 255, 0.05);
      color: #000;
      padding: 2px 16px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(0, 137, 255, 0.18);
    }

    .cta-features i {
      color: #0089ff;
    }

    /* Button Styles */
    .cta-main-btn {
      background: #0089ff;
      color: #fff;
      padding: 18px 35px;
      border-radius: 50px;
      font-size: 18px;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      /* box-shadow: 0 15px 30px rgba(0, 137, 255, 0.3); */
    }

    .cta-main-btn:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 20px 40px rgba(0, 137, 255, 0.5);
      color: #000;
    }

    .cta-main-btn svg {
      transition: transform 0.3s ease;
    }

    .cta-main-btn:hover svg {
      transform: translateX(5px);
    }

    .cta-sub-text {
      color: #000;
      font-size: 13px;
      margin-top: 15px;
      font-weight: 500;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .cta-glass-card {
        padding: 40px;
        text-align: center;
      }

      .cta-desc {
        margin: 0 auto 30px;
      }

      .cta-features {
        justify-content: center;
      }

      .cta-action-wrap {
        margin-top: 40px;
      }
    }

    .off-section {
      padding: 100px 0;
      /* background: #f8fbff; */

      position: relative;
      overflow: hidden;
    }

    .off-section::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(0, 137, 255, 0.05) 0%, transparent 65%);
      border-radius: 50%;
      pointer-events: none;
    }

    /* Section label */
    .off-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }

    .off-label-line {
      width: 32px;
      height: 2px;
      background: #0089ff;
      border-radius: 2px;
    }

    .off-label-text {
      font-size: 12px;
      font-weight: 700;
      color: #0089ff;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    /* Heading */
    .off-heading {
      font-family: Poppins, sans-serif;
      font-size: clamp(28px, 3.5vw, 46px);
      font-weight: 800;
      line-height: 1.12;
      color: #0f172a;
      margin-bottom: 24px;
      letter-spacing: -0.02em;
    }

    .off-heading .off-blue {
      color: #0089ff;
    }



    .off-body p:last-of-type {
      margin-bottom: 0;
    }

    .off-body p strong {
      color: #0f172a;
      font-weight: 600;
    }

    /* Feature chips row */
    .off-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(6px, 0.8vw, 10px);
  margin-top: 32px;
  width: 100%;
}

    .off-chip {
  display: inline-flex;
  align-items: center;
  gap: clamp(5px, 0.6vw, 7px);

  background: #fff;
  border: 1px solid rgba(0, 137, 255, 0.18);
  border-radius: clamp(6px, 0.7vw, 8px);

  padding:
    clamp(7px, 0.7vw, 9px)
    clamp(9px, 1vw, 16px);

  font-size: clamp(10px, 0.85vw, 13px);

  font-weight: 600;
  color: #334155;

  box-shadow: 0 2px 8px rgba(0, 137, 255, 0.07);
  transition: all 0.22s ease;
  cursor: default;

  white-space: nowrap;
  flex-shrink: 1;
}

    .off-chip:hover {
      border-color: #0089ff;
      color: #0089ff;
      background: rgba(0, 137, 255, 0.04);
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(0, 137, 255, 0.12);
    }

    .off-chip-icon {
       width: clamp(18px, 1.5vw, 22px);
  height: clamp(18px, 1.5vw, 22px);
  min-width: clamp(18px, 1.5vw, 22px);
      background: linear-gradient(135deg, #0089ff, #38bdf8);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* IMAGE side */
    .off-img-wrap {
      position: relative;
      padding: 16px 16px 16px 16px;
    }

    /* Decorative corner accent */
    .off-img-wrap::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 140px;
      height: 140px;
      border-top: 3px solid rgba(0, 137, 255, 0.2);
      border-left: 3px solid rgba(0, 137, 255, 0.2);
      border-radius: 4px 0 0 0;
      pointer-events: none;
    }

    .off-img-wrap::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 100px;
      height: 100px;
      border-bottom: 3px solid rgba(0, 137, 255, 0.12);
      border-right: 3px solid rgba(0, 137, 255, 0.12);
      border-radius: 0 0 4px 0;
      pointer-events: none;
    }

    .off-img-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow:
        0 0 0 1px rgba(0, 137, 255, 0.07),
        0 8px 24px rgba(0, 137, 255, 0.10),
        0 24px 64px rgba(0, 137, 255, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .off-img-card img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      object-position: center;
      display: block;
      border-radius: 20px;
      transition: transform 0.5s ease;
    }

    .off-img-card:hover img {
      transform: scale(1.03);
    }

    /* Floating stat card */
    .off-stat-card {
      position: absolute;
      bottom: -16px;
      left: -16px;
      background: #fff;
      border-radius: 14px;
      padding: 16px 22px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
      border: 1px solid rgba(0, 137, 255, 0.1);
      display: flex;
      align-items: center;
      gap: 14px;
      z-index: 10;
      animation: floatStat 5s ease-in-out infinite;
    }

    @keyframes floatStat {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-8px);
      }
    }

    .off-stat-icon {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, #0089ff, #38bdf8);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .off-stat-num {
      font-family: Poppins, sans-serif;
      font-size: 22px;
      font-weight: 800;
      color: #0089ff;
      line-height: 1;
      margin-bottom: 2px;
    }

    .off-stat-label {
      font-size: 12px;
      font-weight: 500;
      color: #94a3b8;
      white-space: nowrap;
    }

    /* Responsive */
    @media (max-width: 1199px) {
      .off-section {
        padding: 60px 0;
      }

      .off-img-wrap {
        padding: 16px 0 40px 0;
        margin-bottom: 16px;
      }

      .off-stat-card {
        bottom: -8px;
        left: 16px;
      }

      .off-img-card img {
        height: 340px;
      }

      .off-heading {
        font-size: clamp(26px, 4vw, 38px);
      }

      .off-body p {
        font-size: 16px;
      }
    }

    @media (max-width: 575px) {
      .off-chips {
        gap: 8px;
      }

      .off-stat-card {
        padding: 12px 16px;
      }

      .off-stat-num {
        font-size: 18px;
      }
    }

    .ew-faq-section {
      background: #fff;
      padding: 100px 0;
      position: relative;
      overflow: hidden;
      font-family: Poppins, sans-serif;
    }

    .ew-faq-section::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 420px;
      height: 420px;
      background: radial-gradient(circle, rgba(0, 137, 255, 0.07) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .ew-faq-section::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(0, 137, 255, 0.05) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .ew-faq-grid-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0, 137, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 137, 255, 0.03) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }

    .ew-faq-inner {
      max-width: 860px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 2;
    }

    /* Header */
    .ew-faq-header {
      text-align: center;
      margin-bottom: 52px;
    }

    .ew-faq-tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(0, 137, 255, 0.08);
      border: 1px solid rgba(0, 137, 255, 0.2);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: 11px;
      font-weight: 700;
      color: #0089ff;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .ew-faq-tag-dot {
      width: 7px;
      height: 7px;
      background: #0089ff;
      border-radius: 50%;
      animation: ewFaqPulse 2s ease-in-out infinite;
    }

    @keyframes ewFaqPulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.3;
        transform: scale(1.5);
      }
    }

    .ew-faq-title {
      font-size: clamp(24px, 3vw, 38px);
      font-weight: 800;
      color: #171717;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }

    .ew-faq-title em {
      font-style: normal;
      color: #0089ff;
      position: relative;
      display: inline-block;
    }

    .ew-faq-title em::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, #0089ff, rgba(0, 137, 255, 0.1));
      border-radius: 2px;
      animation: ewFaqLine 0.8s ease 0.5s both;
      transform-origin: left;
      transform: scaleX(0);
    }

    @keyframes ewFaqLine {
      to {
        transform: scaleX(1);
      }
    }

    .ew-faq-subtitle {
      font-size: 14px;
      color: #999;
      font-weight: 500;
    }

    /* Accordion List */
    .ew-faq-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .ew-faq-item {
      border: 1px solid rgba(0, 137, 255, 0.12);
      border-radius: 16px;
      overflow: hidden;
      background: #fff;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .ew-faq-item.open {
      border-color: rgba(0, 137, 255, 0.35);
      box-shadow: 0 4px 24px rgba(0, 137, 255, 0.1);
    }

    /* Accordion Header Row */
    .ew-faq-hrow {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 20px 24px;
      cursor: pointer;
      user-select: none;
    }

    /* Icon Box */
    .ew-faq-ico {
      width: 42px;
      height: 42px;
      border-radius: 11px;
      background: rgba(0, 137, 255, 0.08);
      border: 1px solid rgba(0, 137, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: #0089ff;
      transition: background 0.3s ease, border-color 0.3s ease;
    }

    .ew-faq-item.open .ew-faq-ico {
      background: #0089ff;
      border-color: #0089ff;
      color: #fff;
    }

    /* Question Text */
    .ew-faq-q {
      font-size: 17px;
      font-weight: 700;
      color: #171717;
      flex: 1;
      line-height: 1.4;
      margin: 0;
    }

    /* Toggle +/x button */
    /* .ew-faq-toggle {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 1.5px solid rgba(0, 137, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: #0089ff;
        transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
      } */

    /* .ew-faq-item.open .ew-faq-toggle {
        background: #0089ff;
        border-color: #0089ff;
        color: #fff;
        transform: rotate(45deg);
      } */

    /* Accordion Body */
    .ew-faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }

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

    .ew-faq-body-inner {
      padding: 0 24px 22px 80px;
      font-size: 16px;
      line-height: 1.85;
      color: #666;
    }

    /* Responsive */
    @media (max-width: 575px) {
      .ew-faq-section {
        padding: 60px 0;
      }

      .ew-faq-body-inner {
        padding: 0 16px 20px 16px;
      }

      .ew-faq-hrow {
        padding: 16px;
        gap: 10px;
      }

      .ew-faq-q {
        font-size: 14px;
      }
    }

    .ew-bc-section {
      background: #fff;
      padding: 0px 0;
      position: relative;
      overflow: hidden;
      font-family: Poppins, sans-serif;
    }

    .ew-bc-section::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(0, 137, 255, 0.07) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .ew-bc-section::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(0, 137, 255, 0.05) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .ew-bc-grid-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0, 137, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 137, 255, 0.035) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }

    .ew-bc-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 2;
    }

    /* Header */
    .ew-bc-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .ew-bc-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0, 137, 255, 0.08);
      border: 1px solid rgba(0, 137, 255, 0.2);
      border-radius: 50px;
      padding: 7px 18px;
      font-size: 12px;
      font-weight: 700;
      color: #0089ff;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .ew-bc-tag-dot {
      width: 7px;
      height: 7px;
      background: #0089ff;
      border-radius: 50%;
      animation: ewPulse 2s ease-in-out infinite;
    }

    @keyframes ewPulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.4;
        transform: scale(1.4);
      }
    }

    .ew-bc-title {
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 800;
      color: #171717;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }

    .ew-bc-title em {
      font-style: normal;
      color: #0089ff;
      position: relative;
      display: inline-block;
    }

    .ew-bc-title em::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #0089ff, rgba(0, 137, 255, 0.15));
      border-radius: 2px;
      animation: ewLineGrow 0.8s ease 0.5s both;
      transform-origin: left;
      transform: scaleX(0);
    }

    @keyframes ewLineGrow {
      to {
        transform: scaleX(1);
      }
    }

    .ew-bc-subtitle {
      font-size: 15px;
      color: #999;
      font-weight: 500;
    }

    /* Main Row */
    .ew-bc-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      border-radius: 24px;
      overflow: hidden;
      box-shadow:
        0 0 0 1px rgba(0, 137, 255, 0.08),
        0 8px 32px rgba(0, 137, 255, 0.12),
        0 32px 80px rgba(0, 0, 0, 0.06);
    }

    /* LEFT: Dark Visual */
    .ew-bc-img-col {
      position: relative;
      background: #0a0e1a;
      min-height: 480px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 48px 36px;
    }

    .ew-bc-img-col::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 30% 50%, rgba(0, 137, 255, 0.2) 0%, transparent 65%);
      pointer-events: none;
    }

    .ew-bc-visual-wrap {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
      width: 100%;
    }

    /* Animated chain */
    .ew-bc-chain {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ew-bc-node {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: rgba(0, 137, 255, 0.12);
      border: 1.5px solid rgba(0, 137, 255, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0089ff;
      animation: ewNodeGlow 3s ease-in-out infinite;
    }

    .ew-bc-node:nth-child(3) {
      animation-delay: 0.6s;
    }

    .ew-bc-node:nth-child(5) {
      animation-delay: 1.2s;
    }

    .ew-bc-node:nth-child(7) {
      animation-delay: 1.8s;
    }

    @keyframes ewNodeGlow {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(0, 137, 255, 0);
      }

      50% {
        box-shadow: 0 0 16px 4px rgba(0, 137, 255, 0.35);
      }
    }

    .ew-bc-link {
      width: 30px;
      height: 2px;
      background: linear-gradient(90deg, rgba(0, 137, 255, 0.5), rgba(0, 137, 255, 0.15));
      position: relative;
      overflow: hidden;
    }

    .ew-bc-link::after {
      content: '';
      position: absolute;
      top: 50%;
      left: -8px;
      width: 8px;
      height: 8px;
      background: #0089ff;
      border-radius: 50%;
      transform: translateY(-50%);
      animation: ewTravel 2s linear infinite;
    }

    .ew-bc-link:nth-child(4)::after {
      animation-delay: 0.6s;
    }

    .ew-bc-link:nth-child(6)::after {
      animation-delay: 1.2s;
    }

    @keyframes ewTravel {
      from {
        left: -8px;
        opacity: 1;
      }

      to {
        left: 100%;
        opacity: 0;
      }
    }

    .ew-bc-chain-label {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.14em;
      color: rgba(255, 255, 255, 0.3);
      text-transform: uppercase;
    }

    /* Mini cards grid */
    .ew-bc-mini-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      width: 100%;
    }

    .ew-bc-mini-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 14px;
      padding: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: border-color 0.3s;
    }

    .ew-bc-mini-card:hover {
      border-color: rgba(0, 137, 255, 0.3);
    }

    .ew-bc-mini-icon {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      background: rgba(0, 137, 255, 0.14);
      border: 1px solid rgba(0, 137, 255, 0.22);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: #0089ff;
    }

    .ew-bc-mini-text strong {
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      line-height: 1.3;
    }

    .ew-bc-mini-text span {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.35);
    }

    /* RIGHT: Text */
    .ew-bc-text-col {
      background: #fff;
      padding: 56px 52px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
    }

    .ew-bc-text-col::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(180deg, #0089ff 0%, rgba(0, 137, 255, 0.08) 100%);
    }

    .ew-bc-text-col p {
      font-size: 17px;
      line-height: 1.9;
      color: #000;
      margin-bottom: 20px;
    }

    .ew-bc-text-col p:last-of-type {
      margin-bottom: 0;
    }

    .ew-bc-text-col strong {
      color: #171717;
      font-weight: 700;
    }

    /* Pills */
    .ew-bc-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 36px;
    }

    .ew-bc-pill {
      background: rgba(0, 137, 255, 0.07);
      border: 1px solid rgba(0, 137, 255, 0.15);
      border-radius: 50px;
      padding: 1px 16px;
      font-size: 13px;
      font-weight: 700;
      color: #0089ff;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: all 0.25s;
      cursor: default;
    }

    .ew-bc-pill:hover {
      background: #0089ff;
      color: #fff;
      transform: translateY(-1px);
    }

    .ew-bc-pill:hover svg {
      stroke: #fff;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .off-chips {
    flex-wrap: wrap;
  }
      .ew-bc-row {
        grid-template-columns: 1fr;
      }

      .ew-bc-img-col {
        min-height: 320px;
        padding: 40px 24px;
      }

      .ew-bc-text-col {
        padding: 40px 30px;
      }
    }

    @media (max-width: 575px) {
      .ew-bc-section {
        padding: 60px 0;
      }

      .ew-bc-title {
        font-size: 26px;
      }
    }

    /* ===== HERO SECTION ONLY - CREATIVE REDESIGN ===== */

    .bc-hero-new {
      position: relative;
      background: #fff;
      overflow: hidden;
      padding: 100px 0 80px;
      /* min-height: 100vh; */
      display: flex;
      align-items: center;
    }

    /* Animated background blobs */
    .bc-hero-new::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(0, 137, 255, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      animation: blobFloat 8s ease-in-out infinite;
      pointer-events: none;
    }

    .bc-hero-new::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(0, 137, 255, 0.05) 0%, transparent 70%);
      border-radius: 50%;
      animation: blobFloat 10s ease-in-out infinite reverse;
      pointer-events: none;
    }

    @keyframes blobFloat {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      33% {
        transform: translate(30px, -20px) scale(1.05);
      }

      66% {
        transform: translate(-20px, 15px) scale(0.97);
      }
    }

    /* Grid overlay */
    .bc-hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0, 137, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 137, 255, 0.04) 1px, transparent 1px);
      background-size: 50px 50px;
      pointer-events: none;
    }

    .bc-hero-new .container {
      position: relative;
      z-index: 2;
    }

    /* LEFT CONTENT */
    .bc-hero-left {
      padding-right: 40px;
    }

    .bc-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0, 137, 255, 0.08);
      border: 1px solid rgba(0, 137, 255, 0.2);
      border-radius: 50px;
      padding: 8px 18px;
      font-size: 13px;
      font-weight: 600;
      color: #0089ff;
      margin-bottom: 28px;
      letter-spacing: 0.05em;
      animation: fadeSlideUp 0.6s ease both;
    }

    .bc-hero-badge::before {
      content: '';
      width: 8px;
      height: 8px;
      background: #0089ff;
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(1.3);
      }
    }

    .bc-hero-title {
      font-family: Poppins, sans-serif;
      font-size: clamp(36px, 4.5vw, 62px);
      font-weight: 800;
      line-height: 1.1;
      color: #171717;
      margin-bottom: 10px;
      letter-spacing: -0.02em;
      animation: fadeSlideUp 0.7s ease 0.1s both;
    }

    .bc-hero-title span {
      color: #0089ff;
      position: relative;
      display: inline-block;
    }

    .bc-hero-title span::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #0089ff, rgba(0, 137, 255, 0.2));
      border-radius: 2px;
      animation: lineGrow 0.8s ease 0.8s both;
      transform-origin: left;
      transform: scaleX(0);
    }

    @keyframes lineGrow {
      to {
        transform: scaleX(1);
      }
    }

    .bc-hero-desc {
      font-size: 18px;
      line-height: 1.8;
      color: #555;
      margin-bottom: 40px;
      animation: fadeSlideUp 0.7s ease 0.2s both;
    }

    .bc-hero-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      animation: fadeSlideUp 0.7s ease 0.3s both;
    }

    .bc-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #0089ff;
      color: #fff;
      font-family: Poppins, sans-serif;
      font-weight: 600;
      font-size: 16px;
      padding: 14px 32px;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .bc-btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: #171717;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .bc-btn-primary:hover::before {
      transform: translateX(0);
    }

    .bc-btn-primary span {
      position: relative;
      z-index: 1;
    }

    .bc-btn-primary svg {
      position: relative;
      z-index: 1;
      transition: transform 0.3s ease;
    }

    .bc-btn-primary:hover svg {
      transform: translateX(4px);
    }

    .bc-btn-primary:hover {
      color: #fff;
      box-shadow: 0 8px 30px rgba(0, 137, 255, 0.35);
      transform: translateY(-2px);
    }

    /* STATS ROW */
    /* .bc-hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid #eee;
      animation: fadeSlideUp 0.7s ease 0.4s both;
    } */

    .bc-stat-item {
      text-align: left;
    }

    .bc-stat-num {
      font-family: Poppins, sans-serif;
      font-size: 32px;
      font-weight: 800;
      color: #0089ff;
      line-height: 1;
      margin-bottom: 4px;
    }

    .bc-stat-label {
      font-size: 13px;
      color: #888;
      font-weight: 500;
    }

    /* RIGHT VISUAL */
    .bc-hero-visual {
      position: relative;
      animation: fadeSlideUp 0.8s ease 0.2s both;
    }

    .bc-visual-card {
        padding: 80px 40px !important;

      position: relative;
      background: #ffffff;
      border-radius: 40px;
      padding: 30px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
      margin: 40px auto;
      box-shadow:
        0 0 0 1px rgba(0, 137, 255, 0.07),
        0 8px 24px rgba(0, 137, 255, 0.10),
        0 32px 80px rgba(0, 137, 255, 0.16),
        0 2px 6px rgba(0, 0, 0, 0.04);
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .bc-visual-card::after {
      content: '';
      position: absolute;
      top: 30px;
      left: 30px;
      right: 30px;
      bottom: 30px;
      border: 2px solid #0089ff;
      border-radius: 30px;
      pointer-events: none;
      z-index: 2;
    }

    .bc-img-wrap {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
    }

    .bc-card-img {
      height: auto;
      object-fit: contain;
      display: block;
    }

    /* Top-left floating badge */
    .bc-img-badge-top {
      position: absolute;
      top: -14px;
      left: 28px;
      background: #fff;
      border: 1px solid #e8f0fe;
      border-radius: 50px;
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 600;
      color: #171717;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.09);
      z-index: 10;
      white-space: nowrap;
    }

    /* Bottom-right floating badge */
    .bc-img-badge-bottom {
      position: absolute;
      bottom: -14px;
      right: 28px;
      background: #fff;
      border: 1px solid #e8f0fe;
      border-radius: 50px;
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 600;
      color: #171717;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.09);
      z-index: 10;
      white-space: nowrap;
      animation: cardFloat1 15s ease-in-out infinite;

    }

    .bc-badge-dot {
      width: 8px;
      height: 8px;
      background: #22c55e;
      border-radius: 50%;
      flex-shrink: 0;
      animation: pulse 2s ease-in-out infinite;
    }

    /* Floating mini cards */
    .bc-float-card {
      position: absolute;
      background: #fff;
      border: 1px solid #e8f0fe;
      border-radius: 12px;
      padding: 12px 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
      z-index: 10;
    }

    .bc-float-card-1 {
      top: -20px;
      right: -30px;
      animation: cardFloat1 5s ease-in-out infinite;
    }

    .bc-float-card-2 {
      bottom: -20px;
      left: -30px;
      animation: cardFloat2 6s ease-in-out infinite;
    }

    @keyframes cardFloat1 {

      0%,
      100% {
        transform: translateY(0px) rotate(0deg);
      }

      50% {
        transform: translateY(-10px) rotate(1deg);
      }
    }

    @keyframes cardFloat2 {

      0%,
      100% {
        transform: translateY(0px) rotate(0deg);
      }

      50% {
        transform: translateY(8px) rotate(-1deg);
      }
    }

    .bc-float-icon {
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, #0089ff, #00c6ff);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 14px;
      flex-shrink: 0;
    }

    .bc-float-text strong {
      display: block;
      font-size: 13px;
      font-weight: 700;
      color: #171717;
    }

    .bc-float-text span {
      font-size: 11px;
      color: #888;
    }

    @keyframes fadeSlideUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ===== EXISTING SECTIONS - KEEP AS IS, JUST REMOVE OLD HERO ===== */

    /* Keep existing encodework-section-padding2 FAQ */
    /* Keep existing expertise-wrapper sections */
    /* Keep existing tell-your-project */

    @media (max-width: 991px) {
      .bc-hero-new {
        padding: 120px 0 60px;
        min-height: auto;
      }

      .bc-hero-left {
        padding-right: 0;
        margin-bottom: 48px;
      }

      .bc-float-card-1,
      .bc-float-card-2 {
        display: none;
      }

      .bc-hero-stats {
        gap: 20px;
      }

      .bc-stat-num {
        font-size: 26px;
      }
    }

    @media (max-width: 575px) {
      .bc-hero-stats {
        flex-wrap: wrap;
        gap: 16px;
      }

      .bc-hero-actions {
        flex-direction: column;
        align-items: flex-start;
      }
    }





    .pro-img-box {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .pro-img-box img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      display: block;
      height: 100%;
    }

    @media (min-width: 1200px) {

      .flex-row-reverse-xl {
        flex-direction: row-reverse;
      }
    }

    @media (max-width: 1199px) {
      .pro-img-box {
        max-width: 500px;
        margin: 0 auto 30px auto;
        padding-bottom: 30px;
      }

      .pro-img-box img {
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      }


    }
    /* =========================
   HERO RIGHT SIDE FIX
========================= */

@media (max-width: 1200px) {

  .bc-visual-card {
    padding: 60px 28px !important;
  }

  .tv-logo-wrap {
    gap: 16px;
  }

  .tv-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .tv-icon-box svg {
    width: 38px;
    height: 38px;
  }

  .tv-tech-name {
    font-size: clamp(28px, 3vw, 38px);
    letter-spacing: -1px;
  }

  .tv-ring {
    transform: scale(0.85);
  }

  .bc-img-badge-top,
  .bc-img-badge-bottom {
    font-size: 11px;
    padding: 7px 12px;
  }
}


/* BETWEEN 1000px TO 1100px */
@media (max-width: 1100px) {

  .bc-hero-visual {
    padding-left: 10px;
  }

  .bc-visual-card {
    padding: 50px 20px !important;
    border-radius: 28px;
  }

  .tv-logo-wrap {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .tv-tech-name {
    font-size: 32px;
    line-height: 1.1;
  }

  .tv-icon-box {
    width: 68px;
    height: 68px;
  }

  .tv-ring {
    transform: scale(0.75);
  }
}


/* TABLET */
@media (max-width: 991px) {

  .bc-hero-visual {
    margin-top: 20px;
  }

  .bc-visual-card {
    padding: 60px 24px !important;
  }

  .tv-tech-name {
    font-size: 34px;
  }

  .bc-img-badge-top {
    left: 16px;
    top: -10px;
  }

  .bc-img-badge-bottom {
    right: 16px;
    bottom: -10px;
  }
}


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

  .bc-visual-card {
    padding: 45px 18px !important;
    border-radius: 22px;
  }

  .bc-visual-card::after {
    top: 18px;
    left: 18px;
    right: 18px;
    bottom: 18px;
    border-radius: 18px;
  }

  .tv-tech-name {
    font-size: 26px;
  }

  .tv-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .tv-icon-box svg {
    width: 28px;
    height: 28px;
  }

  .bc-img-badge-top,
  .bc-img-badge-bottom {
    font-size: 10px;
    padding: 6px 10px;
  }

  .tv-ring {
    display: none;
  }
}
