
  .home_hero_section {
    padding: 60px 0 40px;
    background: #060c1a;
    overflow: hidden;
    position: relative;
  }

  .home_hero_section .mlh-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .home_hero_section .mlh-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #00cfff;
    background: rgba(0,207,255,0.08);
    border: 1px solid rgba(0,207,255,0.2);
    border-radius: 50px;
    padding: 4px 14px;
    margin-bottom: 18px;
  }

  .home_hero_section h1 {
    font-size: 4.3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #e8f4ff;
  }

  .home_hero_section h1 .gradient-title {
    background: linear-gradient(90deg, #00d4ff 0%, #4f6fff 50%, #00ffb2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: mlh-shimmer 4s linear infinite;
  }

  @keyframes mlh-shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
  }

  .home_hero_section .subhead {
    color: rgba(200,220,240,0.72);
    font-size: 0.94rem;
    line-height: 1.75;
    margin-bottom: 30px;
  }

  .home_hero_section .btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    background: linear-gradient(135deg, #00c8ff 0%, #4f6fff 100%);
    color: #fff;
    border: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 4px 28px rgba(0,180,255,0.35);
  }

  .home_hero_section .btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,180,255,0.4);
    color: #fff;
    text-decoration: none;
  }

  /* RIGHT — Pipeline */
  .home_hero_section .mlh-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .home_hero_section .mlh-pipeline-title {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0,207,255,0.4);
    margin-bottom: 4px;
  }

  .home_hero_section .mlh-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(0,180,255,0.12);
    background: rgba(255,255,255,0.02);
    position: relative;
    overflow: hidden;
  }

  .home_hero_section .mlh-step::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    border-radius: 3px 0 0 3px;
  }

  .home_hero_section .mlh-step.s1::before { background: #00d4ff; }
  .home_hero_section .mlh-step.s2::before { background: #4f6fff; }
  .home_hero_section .mlh-step.s3::before { background: #00ffb2; }
  .home_hero_section .mlh-step.s4::before { background: #a78bfa; }
  .home_hero_section .mlh-step.s5::before { background: #00cfff; }

  .home_hero_section .mlh-step-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
  }

  .home_hero_section .mlh-step.s1 .mlh-step-icon { background: rgba(0,212,255,0.1); color: #00d4ff; border: 1px solid rgba(0,212,255,0.2); }
  .home_hero_section .mlh-step.s2 .mlh-step-icon { background: rgba(79,111,255,0.1); color: #4f6fff; border: 1px solid rgba(79,111,255,0.2); }
  .home_hero_section .mlh-step.s3 .mlh-step-icon { background: rgba(0,255,178,0.1); color: #00ffb2; border: 1px solid rgba(0,255,178,0.2); }
  .home_hero_section .mlh-step.s4 .mlh-step-icon { background: rgba(167,139,250,0.1); color: #a78bfa; border: 1px solid rgba(167,139,250,0.2); }
  .home_hero_section .mlh-step.s5 .mlh-step-icon { background: rgba(0,207,255,0.1); color: #00cfff; border: 1px solid rgba(0,207,255,0.2); }

  .home_hero_section .mlh-step-body { flex: 1; min-width: 0; }

  .home_hero_section .mlh-step-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #e8f4ff;
    margin-bottom: 2px;
  }

  .home_hero_section .mlh-step-desc {
    font-size: 0.7rem;
    color: rgba(160,200,230,0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .home_hero_section .mlh-step-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 50px;
    flex-shrink: 0;
  }

  .home_hero_section .mlh-step-status.done    { color: #00ffb2; background: rgba(0,255,178,0.1); border: 1px solid rgba(0,255,178,0.2); }
  .home_hero_section .mlh-step-status.active  { color: #00d4ff; background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.2); }
  .home_hero_section .mlh-step-status.pending { color: rgba(160,200,230,0.35); background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); }

  .home_hero_section .mlh-dot-pulse {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: mlh-pulse 1.2s ease-in-out infinite;
  }

  .home_hero_section .mlh-dot-solid {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
  }

  @keyframes mlh-pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.4; transform:scale(.7); }
  }

  .home_hero_section .mlh-connector {
    display: flex;
    align-items: center;
    padding-left: 28px;
    gap: 3px;
  }

  .home_hero_section .mlh-connector span {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: rgba(0,180,255,0.2);
  }

  .home_hero_section .mlh-metrics {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    margin-top: 6px;
  }

  .home_hero_section .mlh-metric {
    background: rgba(0,212,255,0.04);
    border: 1px solid rgba(0,212,255,0.1);
    border-radius: 8px;
    padding: 10px 12px;
    text-align: center;
  }

  .home_hero_section .mlh-metric-val {
    font-size: 1.1rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 3px;
  }

  .home_hero_section .mlh-metric-val.c1 { color: #00d4ff; }
  .home_hero_section .mlh-metric-val.c2 { color: #00ffb2; }
  .home_hero_section .mlh-metric-val.c3 { color: #a78bfa; }

  .home_hero_section .mlh-metric-lbl {
    font-size: 0.6rem;
    color: rgba(0,212,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  @media (max-width: 991px) {
    .home_hero_section .mlh-grid {
      grid-template-columns: 1fr;
    }
    .home_hero_section .mlh-right {
      margin-top: 28px;
    }
  }

  @media (max-width: 767px) {
    .home_hero_section {
      padding-top: 80px;
    }
    .home_hero_section .btn-primary-hero {
      width: 100%;
      justify-content: center;
    }
  }
  /* TABLET & below — grid stack ho jaye */
@media (max-width: 991.98px) {
    .home_hero_section .mlh-grid {
        display: block !important;
        grid-template-columns: 1fr !important;
    }
    .home_hero_section .hero-inner {
        margin-bottom: 35px;
        text-align: center;
    }
    .home_hero_section .hero-inner .cta-row {
        justify-content: center;
        display: flex;
    }
    .home_hero_section .mlh-right {
        max-width: 560px;
        margin: 0 auto;
    }
}

/* PHONE — 30px padding + compact sizing */
@media (max-width: 767.98px) {
    .home_hero_section {
        padding-top: 30px !important;
        padding-bottom: 0 !important;
    }

    .home_hero_section h1,
    .home_hero_section .gradient-title {
        font-size: clamp(22px, 6vw, 28px) !important;
        line-height: 1.25 !important;
    }

    .home_hero_section .subhead {
        font-size: 13.5px !important;
        line-height: 1.6 !important;
        margin-bottom: 18px !important;
    }

    .home_hero_section .btn-primary-hero {
        padding: 10px 18px !important;
        font-size: 13.5px !important;
        gap: 8px;
    }
    .home_hero_section .btn-primary-hero img {
        width: 22px !important;
        height: auto !important;
    }

    .home_hero_section .mlh-pipeline-title {
        font-size: 13px !important;
        margin-bottom: 12px !important;
    }

    .home_hero_section .mlh-step {
        padding: 12px 14px !important;
        gap: 10px !important;
        flex-wrap: wrap;
    }

    .home_hero_section .mlh-step-icon {
        font-size: 16px !important;
        width: 32px !important;
        height: 32px !important;
    }

    .home_hero_section .mlh-step-body { flex: 1 1 auto; min-width: 0; }

    .home_hero_section .mlh-step-name {
        font-size: 13.5px !important;
        line-height: 1.3 !important;
    }
    .home_hero_section .mlh-step-desc {
        font-size: 11.5px !important;
        line-height: 1.4 !important;
    }

    .home_hero_section .mlh-step-status {
        font-size: 10.5px !important;
        padding: 4px 8px !important;
        white-space: nowrap;
    }

    .home_hero_section .mlh-connector {
        height: 14px !important;
        margin: 4px 0 !important;
    }
    .home_hero_section .mlh-connector span { height: 4px !important; }

    .home_hero_section .mlh-metrics {
        display: flex;
        flex-wrap: wrap;
        gap: 10px !important;
        margin-top: 16px !important;
    }
    .home_hero_section .mlh-metric {
        flex: 1 1 calc(33.33% - 10px);
        min-width: 0;
        padding: 10px 6px !important;
        text-align: center;
    }
    .home_hero_section .mlh-metric-val {
        font-size: 17px !important;
        display: block;
    }
    .home_hero_section .mlh-metric-lbl {
        font-size: 10.5px !important;
        display: block;
        margin-top: 2px;
    }
}

/* Extra small phones */
@media (max-width: 380px) {
    .home_hero_section .mlh-step-status {
        flex-basis: 100%;
        text-align: left;
    }
    .home_hero_section .mlh-metric-val { font-size: 16px !important; }
}

/* SECTION-2 */

  .ml-root {
    background: #060c1a;
    padding: 50px 0;
    overflow: visible;
  }

  .ml-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
  }

  .ml-header-left { flex: 1; }

  .ml-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #00cfff;
    background: rgba(0,207,255,0.08);
    border: 1px solid rgba(0,207,255,0.18);
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 14px;
  }

  .ml-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00cfff;
  }

  .ml-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #e8f4ff;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .ml-header p {
    font-size: 14px;
    color: rgba(180,210,235,0.55);
    line-height: 1.7;
    max-width: 400px;
    margin: 0;
  }

  .ml-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #00cfff;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .ml-cta-btn:hover {
    opacity: 0.85;
    color: #fff;
    text-decoration: none;
  }

  .ml-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .ml-card-wrap {
    position: relative;
  }

  .ml-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,180,255,0.1);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
    user-select: none;
  }

  .ml-card:hover {
    border-color: rgba(0,207,255,0.4);
    background: rgba(0,207,255,0.06);
  }

  .ml-card.active {
    border-color: #00cfff;
    background: rgba(0,207,255,0.1);
  }

  .ml-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .ml-card-num {
    font-size: 10px;
    font-weight: 800;
    color: rgba(0,207,255,0.5);
    letter-spacing: 0.08em;
  }

  .ml-card-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(170deg);
    opacity: 0.6;
  }

  .ml-card h3 {
    font-size: 12px;
    font-weight: 700;
    color: #e8f4ff;
    line-height: 1.35;
    margin: 0;
  }

  .ml-card-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: #00cfff;
    background: rgba(0,207,255,0.1);
    border-radius: 4px;
    padding: 2px 7px;
    align-self: flex-start;
  }

  .ml-popup {
    display: none;
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    width: 290px;
    background: #0d1f3a;
    border: 1px solid rgba(0,207,255,0.35);
    border-radius: 14px;
    padding: 18px;
    z-index: 999;
  }

  .ml-popup.show {
    display: block;
  }

  .ml-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(0,207,255,0.35);
  }

  .ml-popup::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: #0d1f3a;
    z-index: 1;
    margin-top: -1px;
  }

  .ml-popup-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  .ml-popup-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(170deg);
    opacity: 0.7;
    flex-shrink: 0;
  }

  .ml-popup-num {
    font-size: 10px;
    font-weight: 800;
    color: #00cfff;
    letter-spacing: 0.1em;
    margin-bottom: 3px;
  }

  .ml-popup-title {
    font-size: 13px;
    font-weight: 800;
    color: #e8f4ff;
    line-height: 1.25;
  }

  .ml-popup-title a {
    color: #e8f4ff;
    text-decoration: none;
    transition: color 0.2s;
  }

  .ml-popup-title a:hover {
    color: #00cfff;
  }

  .ml-popup-body {
    font-size: 12px;
    color: rgba(160,200,230,0.6);
    line-height: 1.75;
    margin: 0;
  }

  .ml-popup-body a {
    color: #00cfff;
  }

  .ml-hint {
    text-align: center;
    font-size: 11px;
    color: rgba(180,210,235,0.2);
    margin-top: 18px;
    letter-spacing: 0.05em;
  }

  @media (max-width: 991px) {
    .ml-header {
      flex-direction: column;
      padding: 10px 0!important;
    }
    .ml-root{
      padding: 30px 0;
    }
    .ml-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 576px) {
    .ml-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .ml-header h2 {
      font-size: 22px;
    }
    .ml-popup {
      width: 220px;
    }
  }
  /* HEADER CENTER ALIGN */
.ml-header{
  display: flex;
  justify-content: center;
  text-align: center;
}

.ml-header-left{
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ml-pill{
  justify-content: center;
}

.ml-header-left h2{
  text-align: center;
}

.ml-header-left p{
  text-align: center;
}

 
  .ccs-root {
    background: #060c1a;
    padding: 0 0 30px 0;
  }
  /* HEADER CENTER ALIGN */
.ccs-head{
  max-width: 950px;
  margin: 0 auto 50px;
  text-align: center;
}

.ccs-head h2{
  text-align: center;
}

.ccs-head p{
  text-align: center;
}

  .ccs-head {
    margin-bottom: 40px;
    max-width: 820px;
  }

  .ccs-head h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e8f4ff;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .ccs-head p {
    font-size: 0.92rem;
    color: rgba(180,210,235,0.55);
    line-height: 1.8;
    margin: 0;
  }

  .ccs-head p a {
    color: #00cfff;
    text-decoration: none;
  }

  .ccs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(0,180,255,0.07);
    border-radius: 16px;
    overflow: hidden;
  }

  .ccs-item {
    background: #060c1a;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background 0.25s;
    position: relative;
  }

  .ccs-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0,207,255,0);
    transition: border-color 0.25s;
    pointer-events: none;
  }

  .ccs-item:hover {
    background: #0b1a30;
  }

  .ccs-item:hover::after {
    border-color: rgba(0,207,255,0.2);
  }

  .ccs-item-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .ccs-img-wrap {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(0,207,255,0.07);
    border: 1px solid rgba(0,207,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ccs-img-wrap img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(170deg);
    opacity: 0.7;
  }

  .ccs-index {
    font-size: 10px;
    font-weight: 800;
    color: rgba(0,207,255,0.35);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
  }

  .ccs-item h3 {
    font-size: 0.88rem;
    font-weight: 800;
    color: #e8f4ff;
    line-height: 1.3;
    margin: 0;
  }

  .ccs-item p {
    font-size: 0.8rem;
    color: rgba(160,200,230,0.5);
    line-height: 1.8;
    margin: 0;
  }

  .ccs-line {
    height: 1px;
    background: rgba(0,180,255,0.08);
    margin-top: auto;
  }

  @media (max-width: 991px) {
    .ccs-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 576px) {
    .ccs-grid { grid-template-columns: 1fr; }
    .css-root{padding: 0!important;}
  }

 
  .mlh-root {
    background: #060c1a;
    padding:  0;
    overflow: hidden;
    position: relative;
  }

  .mlh-bg-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .mlh-bg-lines span {
    position: absolute;
    display: block;
    background: rgba(0,207,255,0.04);
  }

  .mlh-bg-lines span:nth-child(1) { width: 1px; height: 100%; left: 33%; }
  .mlh-bg-lines span:nth-child(2) { width: 1px; height: 100%; left: 66%; }
  .mlh-bg-lines span:nth-child(3) { width: 100%; height: 1px; top: 50%; }

  .mlh-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .mlh-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .mlh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .mlh-dot-line {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .mlh-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00cfff;
  }

  .mlh-dash {
    width: 28px;
    height: 1px;
    background: rgba(0,207,255,0.4);
  }

  .mlh-eyebrow-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0,207,255,0.7);
  }

  .mlh-left h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #e8f4ff;
    line-height: 1.2;
    margin: 0;
  }

  .mlh-left h2 em {
    font-style: normal;
    color: #00cfff;
  }

  .mlh-left p {
    font-size: 0.92rem;
    color: rgba(180,210,235,0.55);
    line-height: 1.8;
    margin: 0;
  }

  

  .mlh-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #060c1a;
    background: #00cfff;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .mlh-btn:hover {
    opacity: 0.88;
    color: #060c1a;
    text-decoration: none;
  }

  .mlh-btn-arrow {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(6,12,26,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
  }

  .mlh-right {
    position: relative;
    padding-bottom: 20px;
  }

  .mlh-img-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,207,255,0.12);
    position: relative;
  }

  .mlh-img-frame img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) saturate(0.9);
  }

  .mlh-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,207,255,0.08) 0%, transparent 60%);
  }

  .mlh-badge {
    position: absolute;
    bottom: 0;
    left: -20px;
    background: #0d1f3a;
    border: 1px solid rgba(0,207,255,0.25);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .mlh-badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(0,207,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .mlh-badge-text {
    font-size: 12px;
    font-weight: 700;
    color: #e8f4ff;
    line-height: 1.3;
  }

  .mlh-badge-sub {
    font-size: 10px;
    color: rgba(180,210,235,0.4);
  }

  @media (max-width: 991px) {
    .mlh-row {
      grid-template-columns: 1fr;
    }
    .mlh-right {
      display: none;
    }
  }

 
  .mli-root {
    background: #060c1a;
    padding: 60px 0;
  }

/* HEADER CENTER ALIGN */
.mli-head{
  max-width: 950px;
  margin: 0 auto 50px;
  text-align: center;
}

.mli-head h2{
  text-align: center;
}

.mli-head p{
  text-align: center;
}

  .mli-head {
    max-width: 760px;
    margin-bottom: 40px;
  }

  .mli-head h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #e8f4ff;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .mli-head p {
    font-size: 0.92rem;
    color: rgba(180,210,235,0.5);
    line-height: 1.8;
    margin: 0;
  }

  .mli-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    border: 1px solid rgba(0,180,255,0.1);
    border-radius: 14px;
    overflow: hidden;
    min-height: 440px;
  }

  .mli-tabs {
    background: rgba(255,255,255,0.02);
    border-right: 1px solid rgba(0,180,255,0.1);
    display: flex;
    flex-direction: column;
  }

  .mli-tab {
    padding: 18px 18px;
    cursor: pointer;
    border-bottom: 1px solid rgba(0,180,255,0.07);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: background 0.2s;
    position: relative;
  }

  .mli-tab:last-child { border-bottom: none; }

  .mli-tab:hover { background: rgba(0,207,255,0.04); }

  .mli-tab.active {
    background: rgba(0,207,255,0.07);
  }

  .mli-tab.active::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #00cfff;
  }

  .mli-tab-num {
    font-size: 9px;
    font-weight: 800;
    color: rgba(0,207,255,0.35);
    letter-spacing: 0.1em;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .mli-tab-label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(200,225,240,0.55);
    line-height: 1.3;
    transition: color 0.2s;
  }

  .mli-tab.active .mli-tab-label { color: #e8f4ff; }

  .mli-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .mli-panel.active { display: grid; }

  .mli-panel-left {
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mli-panel-left h3 {
    font-size: 1rem;
    font-weight: 900;
    color: #e8f4ff;
    line-height: 1.3;
    margin: 0;
  }

  .mli-panel-left > p {
    font-size: 0.82rem;
    color: rgba(160,200,230,0.55);
    line-height: 1.8;
    margin: 0;
  }

  .mli-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(0,207,255,0.04);
    border: 1px solid rgba(0,207,255,0.1);
    border-radius: 10px;
  }

  .mli-meta-row { display: flex; flex-direction: column; gap: 3px; }

  .mli-meta-key {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0,207,255,0.5);
  }

  .mli-meta-val {
    font-size: 12px;
    color: rgba(180,210,235,0.7);
    font-weight: 500;
  }

  .mli-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 9px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #060c1a;
    background: #00cfff;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    transition: opacity 0.2s;
    margin-top: auto;
  }

  .mli-btn:hover { opacity: 0.85; }

  .mli-panel-right {
    position: relative;
    overflow: hidden;
  }

  .mli-panel-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.75) saturate(0.85);
  }

  .mli-img-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #060c1a 0%, transparent 45%);
  }

  @media (max-width: 991px) {
    .mli-layout {
      grid-template-columns: 180px 1fr;
    }
  }

  @media (max-width: 767px) {
    .mli-layout {
      grid-template-columns: 1fr;
    }

    .mli-tabs {
      flex-direction: row;
      overflow-x: auto;
      border-right: none;
      border-bottom: 1px solid rgba(0,180,255,0.1);
      scrollbar-width: none;
    }

    .mli-tabs::-webkit-scrollbar { display: none; }

    .mli-tab {
      flex-shrink: 0;
      border-bottom: none;
      border-right: 1px solid rgba(0,180,255,0.07);
    }

    .mli-tab.active::before {
      right: 0; left: 0; top: auto; bottom: 0;
      width: auto; height: 2px;
    }

    .mli-panel { grid-template-columns: 1fr; }

    .mli-panel-right { height: 200px; }

    .mli-img-fade {
      background: linear-gradient(to bottom, #060c1a 0%, transparent 50%);
    }
  }


    .ml-flow-sec {
  position: relative;
 padding-bottom: 30px;
  background: #050b16;
  overflow: hidden;
}

.ml-flow-container {
  max-width: 1180px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.ml-flow-head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 60px;
}

.ml-flow-head h2 {
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 800;
}

.ml-flow-head .ml-flow-sub {
  color: #12b7ff;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1.5;
  margin-bottom: 18px;
  display: block;
  font-weight: 700;
}

.ml-flow-head p {
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  font-size: 0.98rem;
  margin: 0;
}

.ml-flow-grid {
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
}

.ml-flow-card {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  align-items: center;
}

/* LEFT SIDE */
.ml-flow-left {
  position: relative;
  display: flex;
  justify-content: center;
}

/* TIMELINE */
.ml-flow-left::after {
  content: "";
  position: absolute;
  top: 72px;
  bottom: -30px;
  width: 2px;
  background:
    linear-gradient(
      to bottom,
      rgba(18,183,255,0.55),
      rgba(18,183,255,0.05)
    );
}

.ml-flow-card:last-child .ml-flow-left::after {
  display: none;
}

/* STEP */
.ml-flow-step {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(17,34,56,0.95),
      rgba(7,13,24,1)
    );
  border: 1px solid rgba(18,183,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 30px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 12px 30px rgba(0,0,0,0.35);

  animation: mlPulse 4s infinite ease-in-out;
}

.ml-flow-step span {
  font-size: 0.95rem;
  color: #12b7ff;
  font-weight: 800;
  letter-spacing: 1px;
}

/* MAIN CARD */
.ml-flow-content {
  position: relative;
  background:
    linear-gradient(
      180deg,
      rgba(10,18,32,0.96),
      rgba(6,11,22,1)
    );

  border-radius: 24px;
  border: 1px solid rgba(18,183,255,0.08);
  padding: 28px 30px;
  overflow: hidden;
  transition: 0.4s ease;
}

.ml-flow-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      130deg,
      rgba(18,183,255,0.08),
      transparent 45%
    );

  opacity: 0;
  transition: 0.4s ease;
}

.ml-flow-content:hover::before {
  opacity: 1;
}

.ml-flow-content:hover {
  transform: translateY(-5px);
  border-color: rgba(18,183,255,0.24);
}

/* TOP */
.ml-flow-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

/* ICON */
.ml-flow-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 16px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);

  display: flex;
  align-items: center;
  justify-content: center;
}

.ml-flow-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* TITLE */
.ml-flow-title {
  flex: 1;
}

.ml-flow-title h3 {
  color: #fff;
  font-size: 1.28rem;
  line-height: 1.35;
  margin-bottom: 4px;
  font-weight: 700;
}

.ml-flow-title p {
  margin: 0;
  color: rgba(18,183,255,0.72);
  font-size: 0.84rem;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

/* DESCRIPTION */
.ml-flow-content > p {
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  font-size: 0.95rem;
  margin: 10px 0 0;
}

/* GLOW */
.ml-flow-glow {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(18,183,255,0.08);
  filter: blur(20px);
  top: -40px;
  right: -40px;
}

/* ANIMATION */
@keyframes mlPulse {

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

  50% {
    transform: scale(1.05);
    opacity: 1;
  }

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

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

  .ml-flow-card {
    grid-template-columns: 75px 1fr;
    gap: 18px;
  }

  .ml-flow-content {
    padding: 24px;
  }

  .ml-flow-title h3 {
    font-size: 1.15rem;
  }

  .ml-flow-content > p {
    font-size: 0.92rem;
  }
}

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

  .ml-flow-sec {
    padding: 0;
  }

  .ml-flow-head {
    margin-bottom: 45px;
  }

  .ml-flow-grid {
    gap: 20px;
  }

  .ml-flow-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ml-flow-left {
    justify-content: flex-start;
  }

  .ml-flow-left::after {
    display: none;
  }

  .ml-flow-step {
    position: relative;
    top: 0;
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .ml-flow-step span {
    font-size: 0.82rem;
  }

  .ml-flow-content {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .ml-flow-top {
    gap: 14px;
    margin-bottom: 14px;
  }

  .ml-flow-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
  }

  .ml-flow-icon img {
    width: 24px;
    height: 24px;
  }

  .ml-flow-title h3 {
    font-size: 1.05rem;
  }

  .ml-flow-title p {
    font-size: 0.78rem;
  }

  .ml-flow-content > p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .ml-flow-glow {
    width: 80px;
    height: 80px;
  }
}


  .ai_industires_section {
    background: #0a0a0f;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
  }
  .ai_industires_section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,90,255,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .ai_industires_section .ais_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .ai_industires_head {
    text-align: center;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(30px);
    animation: ais_fadeUp 0.8s ease forwards;
  }
  .ai_industires_head h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    line-height: 1.25;
  }
  .ai_industires_head h2 span {
    background: linear-gradient(90deg, #1a6dff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .ai_industires_head p {
    color: #8a9ab5;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto 12px;
  }
  .ais_grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
    float: none !important;
  }
  .ais_item {
    opacity: 0;
    transform: translateY(24px);
    animation: ais_fadeUp 0.5s ease forwards;
    width: 100% !important;
    padding: 0 !important;
    float: none !important;
  }
  .ais_item:nth-child(1)  { animation-delay: 0.05s; }
  .ais_item:nth-child(2)  { animation-delay: 0.10s; }
  .ais_item:nth-child(3)  { animation-delay: 0.15s; }
  .ais_item:nth-child(4)  { animation-delay: 0.20s; }
  .ais_item:nth-child(5)  { animation-delay: 0.25s; }
  .ais_item:nth-child(6)  { animation-delay: 0.30s; }
  .ais_item:nth-child(7)  { animation-delay: 0.35s; }
  .ais_item:nth-child(8)  { animation-delay: 0.40s; }
  .ais_item:nth-child(9)  { animation-delay: 0.45s; }
  .ais_item:nth-child(10) { animation-delay: 0.50s; }
  .ais_item:nth-child(11) { animation-delay: 0.55s; }
  .ais_item:nth-child(12) { animation-delay: 0.60s; }
  .ais_item:nth-child(13) { animation-delay: 0.65s; }
  .ais_item:nth-child(14) { animation-delay: 0.70s; }
  .ais_item:nth-child(15) { animation-delay: 0.75s; }
  .ais_item:nth-child(16) { animation-delay: 0.80s; }
  .ais_item:nth-child(17) { animation-delay: 0.85s; }
  .ais_item:nth-child(18) { animation-delay: 0.90s; }
  .ais_item:nth-child(19) { animation-delay: 0.95s; }
  .ais_item:nth-child(20) { animation-delay: 1.00s; }
  .ais_item:nth-child(21) { animation-delay: 1.05s; }
  .ais_item:nth-child(22) { animation-delay: 1.10s; }
  .ais_item:nth-child(23) { animation-delay: 1.15s; }
  .ais_item:nth-child(24) { animation-delay: 1.20s; }
  .ais_item:nth-child(25) { animation-delay: 1.25s; }
  .ais_item:nth-child(26) { animation-delay: 1.30s; }
  .ais_item:nth-child(27) { animation-delay: 1.35s; }
  .ais_item:nth-child(28) { animation-delay: 1.40s; }
  .ais_item a {
    text-decoration: none;
    display: block;
    height: 100%;
  }
  .ai_industires_box {
    background: #111827 !important;
    border: 1px solid #1e2a3a !important;
    border-radius: 12px !important;
    padding: 22px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 110px;
    height: 100%;
    box-sizing: border-box;
  }
  .ai_industires_box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,109,255,0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
  }
  .ai_industires_box:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: #1a6dff !important;
    box-shadow: 0 8px 32px rgba(26,109,255,0.18), 0 0 0 1px rgba(26,109,255,0.12) !important;
    background: #131e30 !important;
  }
  .ai_industires_box:hover::after {
    opacity: 1;
  }
  .ai_industires_box img {
    width: 44px !important;
    height: 44px !important;
    object-fit: contain !important;
    border-radius: 8px !important;
    padding: 6px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
    display: block !important;
    filter: none !important;
    max-width: unset !important;
  }
  .ai_industires_box:hover img {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 4px 16px rgba(26,109,255,0.22) !important;
  }
  .ai_industires_box p {
    color: #c8d8f0 !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    text-align: center !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
  }
  .ai_industires_box:hover p {
    color: #fff !important;
  }
  .ai_industires_box::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1a6dff;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
  }
  .ai_industires_box:hover::before {
    opacity: 1;
    transform: scale(1);
  }
  @keyframes ais_fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @media (max-width: 992px) {
    .ais_grid {
      grid-template-columns: repeat(3, 1fr) !important;
    }
  }
  @media (max-width: 768px) {
    .ais_grid {
      grid-template-columns: repeat(2, 1fr) !important;
    }
    .ai_industires_head h2 {
      font-size: 1.4rem;
    }
  }
  @media (max-width: 480px) {
    .ais_grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 10px !important;
    }
    .ai_industires_box {
      padding: 16px 10px !important;
      min-height: 90px;
    }
  }


  .ai_related_sec {
    background: #0a0a0f;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
  }
  .ai_related_sec::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(0,90,255,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .ars_wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .ai_related_sec_head {
    text-align: center;
    margin-bottom: 56px;
    opacity: 0;
    transform: translateY(28px);
    animation: ars_up 0.8s ease forwards;
  }
  .ai_related_sec_head h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    line-height: 1.25;
  }
  .ai_related_sec_head p {
    color: #8a9ab5;
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 780px;
    margin: 0 auto;
  }

  /* ── DECK WRAPPER ── */
  .ars_deck_wrap {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  /* One row = 4 cards in a horizontal deck/fan */
  .ars_deck {
    position: relative;
    width: 100%;
    height: 280px;
    opacity: 0;
    transform: translateY(32px);
    animation: ars_up 0.7s ease forwards;
  }
  .ars_deck:nth-child(1) { animation-delay: 0.1s; }
  .ars_deck:nth-child(2) { animation-delay: 0.25s; }
  .ars_deck:nth-child(3) { animation-delay: 0.40s; }
  .ars_deck:nth-child(4) { animation-delay: 0.55s; }

  /* Each card in the deck */
  .ars_c {
    position: absolute;
    width: calc(25% - 12px);
    height: 260px;
    border-radius: 16px;
    border: 1px solid #1e2a3a;
    background: #111827;
    padding: 24px 20px;
    box-sizing: border-box;
    transition: transform 0.45s cubic-bezier(0.34,1.3,0.64,1),
                box-shadow 0.4s ease,
                border-color 0.4s ease,
                background 0.4s ease,
                z-index 0s;
    overflow: hidden;
    cursor: default;
  }

  /* Default positions — slightly stacked/offset so it looks like a deck */
  .ars_c:nth-child(1) {
    left: 0%;
    z-index: 4;
    transform: translateX(0px) translateY(0px) rotate(0deg);
    background: #111827;
    border-color: #1e3060;
  }
  .ars_c:nth-child(2) {
    left: calc(25% + 4px);
    z-index: 3;
    transform: translateX(0px) translateY(6px) rotate(0.6deg);
    background: #10192e;
    border-color: #1a2a50;
  }
  .ars_c:nth-child(3) {
    left: calc(50% + 8px);
    z-index: 2;
    transform: translateX(0px) translateY(12px) rotate(1.2deg);
    background: #0f1828;
    border-color: #172240;
  }
  .ars_c:nth-child(4) {
    left: calc(75% + 12px);
    z-index: 1;
    transform: translateX(0px) translateY(18px) rotate(1.8deg);
    background: #0e1620;
    border-color: #141e35;
  }

  /* Hover on DECK — all cards straighten, lift, fan slightly */
  .ars_deck:hover .ars_c:nth-child(1) {
    transform: translateX(-6px) translateY(-10px) rotate(-1deg);
    border-color: #1a6dff;
    box-shadow: 0 16px 40px rgba(26,109,255,0.22);
    background: #0f1d35;
    z-index: 4;
  }
  .ars_deck:hover .ars_c:nth-child(2) {
    transform: translateX(-2px) translateY(-6px) rotate(-0.3deg);
    border-color: #1a4dcc;
    box-shadow: 0 10px 28px rgba(26,109,255,0.14);
    background: #101c32;
    z-index: 3;
  }
  .ars_deck:hover .ars_c:nth-child(3) {
    transform: translateX(2px) translateY(-4px) rotate(0.3deg);
    border-color: #1a3aaa;
    box-shadow: 0 8px 22px rgba(26,109,255,0.10);
    background: #0f1a2e;
    z-index: 2;
  }
  .ars_deck:hover .ars_c:nth-child(4) {
    transform: translateX(6px) translateY(-2px) rotate(1deg);
    border-color: #1a2a80;
    box-shadow: 0 6px 18px rgba(26,109,255,0.08);
    background: #0e1828;
    z-index: 1;
  }

  /* Hover on individual card */
  .ars_c:hover {
    transform: translateY(-16px) rotate(0deg) !important;
    border-color: #1a6dff !important;
    box-shadow: 0 20px 50px rgba(26,109,255,0.28) !important;
    background: #0d1c38 !important;
    z-index: 10 !important;
  }

  /* Blue glow overlay on hover */
  .ars_c::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,109,255,0.09) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 16px;
    pointer-events: none;
  }
  .ars_c:hover::after { opacity: 1; }

  /* Blue top accent line */
  .ars_c::before {
    content: '';
    position: absolute;
    top: 0; left: 20px; right: 20px;
    height: 2px;
    background: linear-gradient(90deg, #1a6dff, transparent);
    border-radius: 0 0 2px 2px;
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  .ars_c:hover::before { opacity: 1; }

  /* Card content */
  .ars_tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a6dff;
    background: rgba(26,109,255,0.1);
    border: 1px solid rgba(26,109,255,0.18);
    border-radius: 20px;
    padding: 3px 10px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
  }

  .ai_related_sec_box h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ccdaff;
    margin: 0 0 12px;
    line-height: 1.35;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  .ars_c:hover .ai_related_sec_box h3 { color: #fff; }

  .ai_related_sec_box p {
    font-size: 0.74rem;
    color: #4e6480;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  .ars_c:hover .ai_related_sec_box p { color: #7a9ab8; }

  /* bottom card number */
  .ars_num {
    position: absolute;
    bottom: 16px;
    right: 18px;
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(26,109,255,0.07);
    line-height: 1;
    z-index: 0;
    transition: color 0.3s;
  }
  .ars_c:hover .ars_num { color: rgba(26,109,255,0.12); }

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

  @media (max-width: 900px) {
    .ars_deck { height: auto; display: flex; flex-direction: column; gap: 16px; }
    .ars_c {
      position: relative !important;
      width: 100% !important;
      left: auto !important;
      transform: none !important;
      height: auto !important;
    }
    .ars_deck:hover .ars_c { transform: none !important; }
    .ars_c:hover { transform: translateY(-4px) !important; }
  }
  @media (max-width: 600px) {
    .ars_deck { gap: 12px; }
    .ai_related_sec_box h3 { font-size: 0.82rem; }
  }


  .ai-kpi-band_sec {
    position: relative;
    background: #03060f;
    background-image:
        radial-gradient(ellipse at top, rgba(0, 102, 255, 0.18), transparent 60%),
        radial-gradient(ellipse at bottom, rgba(0, 153, 255, 0.10), transparent 60%);
    padding: 90px 0;
    overflow: hidden;
}

.ai-kpi-band_sec::before,
.ai-kpi-band_sec::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.ai-kpi-band_sec::before {
    width: 500px;
    height: 500px;
    background: rgba(0, 100, 255, 0.28);
    top: -200px;
    left: -150px;
    animation: aiKpiOrb1 12s ease-in-out infinite;
}

.ai-kpi-band_sec::after {
    width: 400px;
    height: 400px;
    background: rgba(0, 191, 255, 0.20);
    bottom: -150px;
    right: -100px;
    animation: aiKpiOrb2 14s ease-in-out infinite;
}

.ai-kpi-band_sec .container {
    position: relative;
    z-index: 1;
}

/* TITLE - bulletproof centering, no transform animation */
.ai-kpi-band_sec .ai-kpi-title {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    margin: 0 0 55px 0 !important;
    padding: 0 !important;
    float: none !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    color: #ffffff;
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.2;
    opacity: 0;
    animation: aiKpiFadeIn 0.9s ease 0.1s forwards;
}

.ai-kpi-band_sec .ai-kpi-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    margin: 16px auto 0 !important;
    background: linear-gradient(90deg, transparent, #1e90ff 30%, #00bfff 70%, transparent);
    border-radius: 4px;
}

/* ROW */
.ai-kpi-band_sec .ai-kpi-row {
    position: relative;
    row-gap: 30px;
}

/* KPI item - no card bg, minimal */
.ai-kpi-band_sec .ai-kpi-card {
    position: relative;
    padding: 30px 10px 20px;
    background: transparent;
    border: none;
    transition: transform 0.4s ease;
    opacity: 0;
    animation: aiKpiSlideUp 0.8s ease forwards;
}

/* top glowing accent bar */
.ai-kpi-band_sec .ai-kpi-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #0066ff, #00bfff);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(0, 153, 255, 0.6);
    transition: width 0.45s ease, box-shadow 0.45s ease;
}

.ai-kpi-band_sec .ai-kpi-card:hover {
    transform: translateY(-7px);
}

.ai-kpi-band_sec .ai-kpi-card:hover::before {
    width: 65px;
    box-shadow: 0 0 22px rgba(0, 191, 255, 0.95);
}

/* stagger entrance */
.ai-kpi-band_sec .col-lg-2:nth-child(1) .ai-kpi-card { animation-delay: 0.15s; }
.ai-kpi-band_sec .col-lg-2:nth-child(2) .ai-kpi-card { animation-delay: 0.25s; }
.ai-kpi-band_sec .col-lg-2:nth-child(3) .ai-kpi-card { animation-delay: 0.35s; }
.ai-kpi-band_sec .col-lg-2:nth-child(4) .ai-kpi-card { animation-delay: 0.45s; }
.ai-kpi-band_sec .col-lg-2:nth-child(5) .ai-kpi-card { animation-delay: 0.55s; }
.ai-kpi-band_sec .col-lg-2:nth-child(6) .ai-kpi-card { animation-delay: 0.65s; }

/* VALUE */
.ai-kpi-band_sec .ai-kpi-value {
    font-size: clamp(34px, 3.6vw, 48px);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(180deg, #ffffff 0%, #4da3ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 40px rgba(0, 153, 255, 0.35);
    transition: transform 0.45s ease;
}

.ai-kpi-band_sec .ai-kpi-card:hover .ai-kpi-value {
    transform: scale(1.07);
}

/* LABEL */
.ai-kpi-band_sec .ai-kpi-label {
    color: #a8b8cc;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.3px;
    transition: color 0.45s ease;
}

.ai-kpi-band_sec .ai-kpi-card:hover .ai-kpi-label {
    color: #ffffff;
}

/* vertical divider between columns (desktop) */
@media (min-width: 992px) {
    .ai-kpi-band_sec .col-lg-2:not(:last-child) .ai-kpi-card::after {
        content: "";
        position: absolute;
        top: 25%;
        right: 0;
        height: 50%;
        width: 1px;
        background: linear-gradient(180deg, transparent, rgba(0, 153, 255, 0.35), transparent);
    }
}

/* CTA - outlined neon fill */
.ai-kpi-band_sec .ai-kpi-cta-wrap {
    text-align: center;
    margin-top: 45px;
    opacity: 0;
    animation: aiKpiFadeIn 0.8s ease 1s forwards;
}

.ai-kpi-band_sec .ai-kpi-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 34px;
    border: 2px solid #0099ff;
    background: transparent;
    color: #4da3ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.4px;
    border-radius: 50px;
    overflow: hidden;
    transition: color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    z-index: 1;
}

.ai-kpi-band_sec .ai-kpi-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0066ff 0%, #00bfff 100%);
    transition: left 0.45s ease;
    z-index: -1;
}

.ai-kpi-band_sec .ai-kpi-cta:hover {
    color: #ffffff;
    border-color: #00bfff;
    box-shadow: 0 0 30px rgba(0, 153, 255, 0.5);
}

.ai-kpi-band_sec .ai-kpi-cta:hover::before {
    left: 0;
}

.ai-kpi-band_sec .ai-kpi-cta-arrow {
    display: inline-flex;
    transition: transform 0.4s ease;
}

.ai-kpi-band_sec .ai-kpi-cta:hover .ai-kpi-cta-arrow {
    transform: translateX(5px);
}

/* ANIMATIONS */
@keyframes aiKpiFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes aiKpiSlideUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes aiKpiOrb1 {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(60px, 40px); }
}

@keyframes aiKpiOrb2 {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(-50px, -30px); }
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
    .ai-kpi-band_sec { padding: 60px 0; }
    .ai-kpi-band_sec .ai-kpi-title { margin-bottom: 40px !important; }
}

@media (max-width: 575.98px) {
    .ai-kpi-band_sec { padding: 50px 0; }
    .ai-kpi-band_sec .ai-kpi-title { margin-bottom: 30px !important; }
    .ai-kpi-band_sec .ai-kpi-card { padding: 26px 8px 16px; }
    .ai-kpi-band_sec .ai-kpi-value { font-size: 36px; }
    .ai-kpi-band_sec .ai-kpi-cta { padding: 12px 28px; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    .ai-kpi-band_sec *,
    .ai-kpi-band_sec *::before,
    .ai-kpi-band_sec *::after {
        animation: none !important;
        transition: none !important;
    }
    .ai-kpi-band_sec .ai-kpi-card,
    .ai-kpi-band_sec .ai-kpi-title,
    .ai-kpi-band_sec .ai-kpi-cta-wrap { opacity: 1; }
}


  .ai-leader {
    position: relative;
    background: #03060f;
    background-image:
        radial-gradient(circle at 85% 30%, rgba(0, 120, 255, 0.18), transparent 50%),
        radial-gradient(circle at 15% 80%, rgba(0, 153, 255, 0.10), transparent 55%);
   
    overflow: hidden;
}

.ai-leader::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 130, 255, 0.22), transparent 70%);
    transform: translateY(-50%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: aiLeaderPulse 7s ease-in-out infinite;
}

.ai-leader .container { position: relative; z-index: 1; }

/* RIGHT - Content */
.ai-leader__content {
    padding: 20px 15px 20px 35px;
}

.ai-leader__title {
    color: #ffffff;
    font-size: clamp(26px, 2.8vw, 40px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.3px;
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(20px);
    animation: aiLeaderFadeUp 0.8s ease 0.1s forwards;
}

.ai-leader__title::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    margin-top: 18px;
    background: linear-gradient(90deg, #0066ff, #00bfff);
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(0, 153, 255, 0.6);
}

.ai-leader__sub {
    color: #a8b8cc;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: aiLeaderFadeUp 0.8s ease 0.3s forwards;
}

/* LEFT - Cards */
.ai-feature-card {
    position: relative;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 119, 255, 0.07) 100%);
    border: 1px solid rgba(0, 153, 255, 0.20);
    border-radius: 14px;
    padding: 24px 22px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(25px);
    animation: aiLeaderFadeUp 0.7s ease forwards;
}

.ai-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066ff, #00bfff);
    transition: width 0.5s ease;
}

.ai-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 191, 255, 0.55);
    box-shadow: 0 12px 30px rgba(0, 119, 255, 0.22);
}

.ai-feature-card:hover::before { width: 100%; }

.ai-leader__cards-wrap .row > div:nth-child(1) .ai-feature-card { animation-delay: 0.15s; }
.ai-leader__cards-wrap .row > div:nth-child(2) .ai-feature-card { animation-delay: 0.25s; }
.ai-leader__cards-wrap .row > div:nth-child(3) .ai-feature-card { animation-delay: 0.35s; }
.ai-leader__cards-wrap .row > div:nth-child(4) .ai-feature-card { animation-delay: 0.45s; }
.ai-leader__cards-wrap .row > div:nth-child(5) .ai-feature-card { animation-delay: 0.55s; }
.ai-leader__cards-wrap .row > div:nth-child(6) .ai-feature-card { animation-delay: 0.65s; }

.ai-feature-card__title {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 12px;
}

.ai-feature-card__desc {
    color: #9eb0c5;
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Animations */
@keyframes aiLeaderFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes aiLeaderPulse {
    0%, 100% { opacity: 0.55; transform: translateY(-50%) scale(1); }
    50%      { opacity: 1;    transform: translateY(-50%) scale(1.1); }
}

/* Responsive */
@media (max-width: 991.98px) {
    .ai-leader { padding: 60px 0; }
    .ai-leader__content {
        padding: 0 15px 0;
        text-align: center;
    }
    .ai-leader__title::after { margin-left: auto; margin-right: auto; }
}

@media (max-width: 575.98px) {
    .ai-leader { padding: 50px 0; }
    .ai-feature-card { padding: 20px 18px; }
    .ai-feature-card__title { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    .ai-leader *,
    .ai-leader *::before { animation: none !important; transition: none !important; }
    .ai-leader__title,
    .ai-leader__sub,
    .ai-feature-card { opacity: 1; transform: none; }
}


  .sg-faq-sec {
    position: relative !important;
    background: #03060f !important;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(0, 120, 255, 0.18), transparent 50%),
        radial-gradient(circle at 15% 85%, rgba(0, 153, 255, 0.12), transparent 55%) !important;
    padding: 90px 0 !important;
    overflow: hidden !important;
}

.sg-faq-sec::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 130, 255, 0.20), transparent 70%);
    transform: translateX(-50%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: sgFaqOrb 8s ease-in-out infinite;
}

.sg-faq-sec .container { position: relative; z-index: 1; }

/* TITLE */
.sg-faq-sec__title {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    color: #ffffff !important;
    font-size: clamp(26px, 3vw, 40px) !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px;
    margin: 0 0 28px 0 !important;
    opacity: 0;
    animation: sgFaqFadeIn 0.8s ease 0.1s forwards;
}

.sg-faq-sec__title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    margin: 16px auto 0;
    background: linear-gradient(90deg, transparent, #1e90ff, #00bfff, transparent);
    border-radius: 4px;
}

/* TOP CTA BOX */
.sg-faq-sec__cta {
    max-width: 480px;
    margin: 0 auto 50px !important;
    text-align: center;
    padding: 28px 24px !important;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 119, 255, 0.10) 100%) !important;
    border: 1px solid rgba(0, 153, 255, 0.25) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(20px);
    animation: sgFaqFadeUp 0.8s ease 0.25s forwards;
}

.sg-faq-sec__cta img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 14px;
    filter: drop-shadow(0 0 12px rgba(0, 153, 255, 0.5));
}

.sg-faq-sec__cta p {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin-bottom: 18px !important;
}

.sg-faq-sec__cta button {
    display: inline-flex !important;
    align-items: center;
    padding: 11px 26px !important;
    border: none !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, #0066ff 0%, #00bfff 100%) !important;
    color: #ffffff !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 119, 255, 0.4);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sg-faq-sec__cta button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 153, 255, 0.55);
}

/* FAQ ROW */
.sg-faq-row { position: relative; }

/* If last item is odd (alone in its row), center it on desktop */
@media (min-width: 768px) {
    .sg-faq-row > [class*="col-"]:last-child:nth-child(odd) {
        margin-left: auto;
        margin-right: auto;
    }
}

/* FAQ ITEM */
.sg-faq-item {
    position: relative;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 119, 255, 0.06) 100%) !important;
    border: 1px solid rgba(0, 153, 255, 0.18) !important;
    border-radius: 12px !important;
    overflow: hidden;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: sgFaqFadeUp 0.6s ease forwards;
}

.sg-faq-row > div:nth-child(1)  .sg-faq-item { animation-delay: 0.10s; }
.sg-faq-row > div:nth-child(2)  .sg-faq-item { animation-delay: 0.15s; }
.sg-faq-row > div:nth-child(3)  .sg-faq-item { animation-delay: 0.20s; }
.sg-faq-row > div:nth-child(4)  .sg-faq-item { animation-delay: 0.25s; }
.sg-faq-row > div:nth-child(5)  .sg-faq-item { animation-delay: 0.30s; }
.sg-faq-row > div:nth-child(6)  .sg-faq-item { animation-delay: 0.35s; }
.sg-faq-row > div:nth-child(7)  .sg-faq-item { animation-delay: 0.40s; }
.sg-faq-row > div:nth-child(8)  .sg-faq-item { animation-delay: 0.45s; }
.sg-faq-row > div:nth-child(9)  .sg-faq-item { animation-delay: 0.50s; }
.sg-faq-row > div:nth-child(10) .sg-faq-item { animation-delay: 0.55s; }
.sg-faq-row > div:nth-child(11) .sg-faq-item { animation-delay: 0.60s; }
.sg-faq-row > div:nth-child(12) .sg-faq-item { animation-delay: 0.65s; }

.sg-faq-item:hover {
    border-color: rgba(0, 191, 255, 0.45) !important;
    box-shadow: 0 8px 22px rgba(0, 119, 255, 0.15);
}

.sg-faq-item.is-open {
    border-color: rgba(0, 191, 255, 0.7) !important;
    box-shadow: 0 10px 28px rgba(0, 119, 255, 0.28);
}

/* QUESTION (h3) - reset */
.sg-faq-question {
    margin: 0 !important;
    padding: 0 !important;
}

/* TOGGLE BUTTON */
.sg-faq-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    text-align: left;
    background: transparent !important;
    border: none !important;
    padding: 18px 20px !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.sg-faq-toggle:focus { outline: none; }

.sg-faq-toggle > span:first-child { flex: 1; }

/* PLUS / MINUS ICON */
.sg-faq-icon {
    position: relative;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 153, 255, 0.15);
    border: 1px solid rgba(0, 191, 255, 0.4);
    transition: background 0.3s ease, transform 0.3s ease;
}

.sg-faq-icon::before,
.sg-faq-icon::after {
    content: "";
    position: absolute;
    background: #00bfff;
    border-radius: 1px;
    transition: transform 0.35s ease, background 0.35s ease;
}

.sg-faq-icon::before {
    top: 50%; left: 25%;
    width: 50%; height: 2px;
    transform: translateY(-50%);
}

.sg-faq-icon::after {
    left: 50%; top: 25%;
    width: 2px; height: 50%;
    transform: translateX(-50%);
}

.sg-faq-item.is-open .sg-faq-icon {
    background: rgba(0, 153, 255, 0.35);
    transform: rotate(180deg);
}

.sg-faq-item.is-open .sg-faq-icon::after {
    transform: translateX(-50%) scaleY(0);
}

/* ANSWER */
.sg-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.35s ease;
}

.sg-faq-item.is-open .sg-faq-answer {
    max-height: 600px;
}

.sg-faq-answer p {
    color: #a8b8cc !important;
    font-size: 13.5px !important;
    line-height: 1.65 !important;
    margin: 0 !important;
    padding: 0 20px 18px !important;
    border-top: 1px solid rgba(0, 153, 255, 0.12);
    padding-top: 14px !important;
}
.sg-faq-row {
  position: relative;
    align-items: flex-start !important;
}

/* ANIMATIONS */
@keyframes sgFaqFadeIn {
    to { opacity: 1; }
}

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

@keyframes sgFaqOrb {
    0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(1); }
    50%      { opacity: 1;    transform: translateX(-50%) scale(1.08); }
}

/* RESPONSIVE */
@media (max-width: 767.98px) {
    .sg-faq-sec { padding: 60px 0 !important; }
    .sg-faq-sec__cta { padding: 24px 20px !important; margin-bottom: 35px !important; }
    .sg-faq-sec__cta img { width: 48px; height: 48px; }
    .sg-faq-sec__cta p { font-size: 15px !important; }
    .sg-faq-toggle { padding: 16px 16px !important; font-size: 14.5px !important; }
    .sg-faq-answer p { padding-left: 16px !important; padding-right: 16px !important; }
}

@media (max-width: 575.98px) {
    .sg-faq-sec { padding: 50px 0 !important; }
    .sg-faq-sec__cta p { font-size: 14.5px !important; }
}

@media (prefers-reduced-motion: reduce) {
    .sg-faq-sec *,
    .sg-faq-sec *::before,
    .sg-faq-sec *::after {
        animation: none !important;
        transition: none !important;
    }
    .sg-faq-sec__title,
    .sg-faq-sec__cta,
    .sg-faq-item { opacity: 1 !important; transform: none !important; }
}
/* SECTION-9 */
  .technology_sec {
    background: #0a0a0f;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
  }
  .technology_sec::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(0,90,255,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .technology_sec .ts_wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .technology_desp {
    text-align: center;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(24px);
    animation: ts_up 0.8s ease forwards;
  }
  .technology_desp h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.4px;
    margin-bottom: 16px;
    line-height: 1.25;
  }
  .technology_desp p {
    color: #8a9ab5;
    font-size: 0.93rem;
    line-height: 1.75;
    max-width: 800px;
    margin: 0 auto 10px;
  }

  /* ── TABS ── */
  .technology_tab {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 56px;
    opacity: 0;
    animation: ts_up 0.7s ease 0.2s forwards;
  }
  .technology_tablinks {
    background: #fff;
    border: 1px solid #1e2a3a;
    border-radius: 8px;
    padding: 10px 18px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
    font-size: 0.78rem;
    font-weight: 600;
    color: #6b7fa0;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }
  .technology_tablinks:hover {
    border-color: #1a4dcc;
    color: #a0c0ff;
    background: #0f1828;
  }
  .technology_tablinks.active {
    background: #1a6dff;
    border-color: #1a6dff;
    color: #fff;
    box-shadow: 0 4px 20px rgba(26,109,255,0.3);
  }
  .technology_tablinks .mobile-text { display: none; }
  .technology_tablinks .desktop-text { display: block; }

  /* ── FAN CARD AREA ── */
  .technologyRighttab {
    position: relative;
    min-height: 420px;
  }
  .technology_tabcontent {
    display: none;
  }
  .technology_tabcontent.ts_active {
    display: block;
    animation: ts_fadein 0.5s ease;
  }
 .home_hero_section .hero-rotatable {
          width: 100%;
          display: block;
          border-radius: 16px;
          object-fit: cover;
        }
  /* ── FAN LAYOUT ── */
  .ts_fan_area {
    position: relative;
    width: 100%;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Each fanned card */
  .ts_fan_card {
    position: absolute;
    width: 260px;
    background: #111827;
    border: 1px solid #1e2a3a;
    border-radius: 18px;
    padding: 20px 18px 16px;
    transition: transform 0.5s cubic-bezier(0.34,1.3,0.64,1),
                box-shadow 0.4s ease,
                border-color 0.4s ease,
                z-index 0.1s;
    cursor: default;
    box-sizing: border-box;
  }
  .ts_fan_card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,109,255,0.07) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.35s;
    border-radius: 18px;
    pointer-events: none;
  }
  .ts_fan_card:hover {
    z-index: 20 !important;
    border-color: #1a6dff !important;
    box-shadow: 0 20px 50px rgba(26,109,255,0.28) !important;
  }
  .ts_fan_card:hover::after { opacity: 1; }

  /* Card header */
  .ts_card_label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a6dff;
    margin-bottom: 14px;
    display: block;
  }

  /* Icons grid inside card */
  .ts_icons_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .hitech_box {
    width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px 4px;
    border-radius: 10px;
    background: #0d1520;
    border: 1px solid #1a2540;
    transition: background 0.3s, border-color 0.3s;
  }
  .ts_fan_card:hover .hitech_box {
    background: #0e1830;
    border-color: #1e3060;
  }
  .hitech_box img {
    width: 70px !important;
    height: auto !important;
    object-fit: contain !important;
    background: #fff !important;
    border-radius: 6px !important;
    padding: 4px !important;
    display: block !important;
    filter: none !important;
  }
  .hitech_box p {
    font-size: 0.58rem !important;
    color: #7a9ab8 !important;
    text-align: center !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
  }
  .ts_fan_card:hover .hitech_box p { color: #aac4e0 !important; }

  /* ── FAN POSITIONS (5 cards fanned) ── */
  /* card 1 — far left */
  .ts_fan_card:nth-child(1) {
    transform: rotate(-18deg) translateX(-340px) translateY(30px);
    z-index: 1;
    background: #0d1420;
    border-color: #141e30;
    opacity: 0.75;
  }
  /* card 2 */
  .ts_fan_card:nth-child(2) {
    transform: rotate(-9deg) translateX(-170px) translateY(10px);
    z-index: 2;
    background: #0f1828;
    border-color: #192440;
    opacity: 0.85;
  }
  /* card 3 — center/front */
  .ts_fan_card:nth-child(3) {
    transform: rotate(0deg) translateX(0px) translateY(0px);
    z-index: 5;
    background: #111827;
    border-color: #1e3060;
    opacity: 1;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  }
  /* card 4 */
  .ts_fan_card:nth-child(4) {
    transform: rotate(9deg) translateX(170px) translateY(10px);
    z-index: 2;
    background: #0f1828;
    border-color: #192440;
    opacity: 0.85;
  }
  /* card 5 — far right */
  .ts_fan_card:nth-child(5) {
    transform: rotate(18deg) translateX(340px) translateY(30px);
    z-index: 1;
    background: #0d1420;
    border-color: #141e30;
    opacity: 0.75;
  }

  /* Hover on whole area — fan spreads more */
  .ts_fan_area:hover .ts_fan_card:nth-child(1) {
    transform: rotate(-22deg) translateX(-370px) translateY(40px);
    opacity: 0.9;
  }
  .ts_fan_area:hover .ts_fan_card:nth-child(2) {
    transform: rotate(-11deg) translateX(-190px) translateY(15px);
    opacity: 0.95;
  }
  .ts_fan_area:hover .ts_fan_card:nth-child(3) {
    transform: rotate(0deg) translateX(0px) translateY(-8px);
    opacity: 1;
    box-shadow: 0 20px 60px rgba(26,109,255,0.2);
    border-color: #1a4dcc;
  }
  .ts_fan_area:hover .ts_fan_card:nth-child(4) {
    transform: rotate(11deg) translateX(190px) translateY(15px);
    opacity: 0.95;
  }
  .ts_fan_area:hover .ts_fan_card:nth-child(5) {
    transform: rotate(22deg) translateX(370px) translateY(40px);
    opacity: 0.9;
  }

  /* individual card hover overrides */
  .ts_fan_card:nth-child(1):hover { transform: rotate(-18deg) translateX(-340px) translateY(10px) !important; opacity: 1 !important; }
  .ts_fan_card:nth-child(2):hover { transform: rotate(-9deg) translateX(-170px) translateY(-10px) !important; opacity: 1 !important; }
  .ts_fan_card:nth-child(3):hover { transform: rotate(0deg) translateX(0px) translateY(-18px) !important; opacity: 1 !important; }
  .ts_fan_card:nth-child(4):hover { transform: rotate(9deg) translateX(170px) translateY(-10px) !important; opacity: 1 !important; }
  .ts_fan_card:nth-child(5):hover { transform: rotate(18deg) translateX(340px) translateY(10px) !important; opacity: 1 !important; }

  /* card count dots */
  .ts_dot_row {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 340px;
  }
  .ts_dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #1e2a3a;
  }
  .ts_dot.on { background: #1a6dff; }

  @keyframes ts_up {
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes ts_fadein {
    from { opacity: 0; transform: scale(0.97) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
  }

  @media (max-width: 900px) {
    .ts_fan_area {
      flex-direction: column;
      align-items: center;
      min-height: auto;
      gap: 16px;
    }
    .ts_fan_card {
      position: relative !important;
      transform: none !important;
      opacity: 1 !important;
      width: 100%;
      max-width: 480px;
    }
    .ts_fan_area:hover .ts_fan_card { transform: none !important; }
    .ts_fan_card:hover { transform: translateY(-4px) !important; }
    .ts_dot_row { display: none; }
    .ts_icons_grid { grid-template-columns: repeat(4, 1fr); }
  }
  @media (max-width: 560px) {
    .technology_tablinks .desktop-text { display: none; }
    .technology_tablinks .mobile-text { display: flex; align-items: center; justify-content: center; }
    .technology_tab { gap: 8px; }
    .technology_tablinks { padding: 8px; border-radius: 10px; }
    .ts_icons_grid { grid-template-columns: repeat(3, 1fr); }
  }
