:root {
    --bg: #051438;
    --navy: #061b43;
    --ink: #07122f;
    --cyan: #27d6ff;
    --white: #f4f7fb;
    --line: rgba(113, 180, 226, .32)
}

* {
    box-sizing: border-box
}

html {
    background: var(--bg)
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif
}

main {
    min-height: 100vh;
    background: radial-gradient(circle at 50% -20%, rgba(29, 106, 181, .22), transparent 36rem), linear-gradient(rgba(39, 214, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(39, 214, 255, .025) 1px, transparent 1px), var(--bg);
    background-size: auto, 44px 44px, 44px 44px, auto
}

.solutions {
    width: 90%;
    margin: auto;
    padding: clamp(48px, 7vw, 100px) 0
}

.section-heading {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 18px;
    margin-bottom: clamp(24px, 3vw, 42px)
}

.heading-line {
    width: 48px;
    height: 3px;
    background: var(--cyan);
    box-shadow: 0 0 20px rgba(39, 214, 255, .7)
}

.eyebrow {
    margin: 0 0 7px;
    color: #70cde6;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em
}

h1 {
    margin: 0;
    max-width: 1400px;
    font-size: clamp(27px, 3vw, 48px);
    line-height: 1;
    letter-spacing: -.035em;
    text-transform: uppercase
}

h1 span {
    color: var(--cyan)
}

.heading-note {
    margin: 0;
    padding-left: 24px;
    border-left: 1px solid var(--line);
    color: #91a4c4;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: .08em;
    text-align: right;
    text-transform: uppercase
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px
}

.solution-card {
    --mx: 50%;
    --my: 50%;
    --delay: 0ms;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: clamp(230px, 19vw, 315px);
    border: 1px solid var(--line);
    border-radius: 27px;
    background: var(--navy);
    overflow: hidden;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 650ms ease var(--delay), transform 650ms cubic-bezier(.2, .75, .25, 1) var(--delay), border-color 300ms, box-shadow 300ms;
    isolation: isolate
}

.solution-card:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    background: radial-gradient(300px circle at var(--mx) var(--my), rgba(39, 214, 255, .11), transparent 50%);
    opacity: 0;
    transition: opacity .3s
}

.solution-card.visible {
    opacity: 1;
    transform: none
}

.solution-card:hover,
.solution-card:focus-visible {
    z-index: 2;
    border-color: rgba(39, 214, 255, .8);
    box-shadow: 0 20px 60px rgba(0, 5, 25, .42), 0 0 0 1px rgba(39, 214, 255, .14);
    outline: 0
}

.solution-card:hover:after,
.solution-card:focus-visible:after {
    opacity: 1
}

.image-right .image-panel {
    order: 2
}

.image-panel {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #061530
}

.image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.75) contrast(1.08) brightness(.82);
    transform: scale(1.035);
    transition: transform 850ms cubic-bezier(.2, .75, .25, 1), filter .5s
}

.solution-card:hover img,
.solution-card:focus-visible img {
    transform: scale(1.11);
    filter: saturate(1.05) contrast(1.1) brightness(.95)
}

.image-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 17, 50, .2), rgba(7, 35, 78, .1)), linear-gradient(0deg, rgba(0, 14, 40, .65), transparent 45%);
    mix-blend-mode: multiply
}

.image-index {
    position: absolute;
    left: 18px;
    bottom: 16px;
    color: rgba(255, 255, 255, .72);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em
}

.scan-line {
    position: absolute;
    inset: -30% 0 auto;
    height: 28%;
    background: linear-gradient(transparent, rgba(39, 214, 255, .12), transparent);
    transform: translateY(-100%)
}

.solution-card:hover .scan-line {
    animation: scan 2.3s ease-in-out infinite
}

.content-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: clamp(22px, 2.2vw, 22px);
    color: #fff
}

.light .content-panel {
    color: var(--ink);
    background: linear-gradient(145deg, #fff, #eef3f8)
}

.dark .content-panel {
    background: linear-gradient(145deg, #071b43, #051536)
}

.content-panel:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: width .55s cubic-bezier(.2, .75, .25, 1)
}

.solution-card:hover .content-panel:before,
.solution-card:focus-visible .content-panel:before {
    width: 100%
}

.card-topline,
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.number {
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.05em
}

.tag {
    padding: 2px;
    width: 100%;
    font-size: clamp(12px, 1.45vw, 18px);
    line-height: 1.08;
    letter-spacing: -.02em;
    text-align: end;
    text-transform: uppercase;
}

.tag h2 {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.card-topline {
    gap: 10px;
}

.card-topline .number {
    flex-shrink: 0;
}

.card-copy {
    margin: auto 0
}

.card-copy h2 {
    margin: 22px 0 9px;
    font-size: clamp(16px, 1.45vw, 24px);
    line-height: 1.08;
    letter-spacing: -.02em
}

.card-copy p {
    margin: 0;
    max-width: 34ch;
    color: #a8b8d1;
    font-size: clamp(12px, .95vw, 15px);
    line-height: 1.45
}

.light .card-copy p {
    color: #53617b
}

.card-footer {
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid currentColor;
    gap: 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .32;
    transition: opacity .25s
}

.card-footer span {
    min-width: 0;
}

.card-footer .arrow {
    text-align: right;
    letter-spacing: .08em;
    overflow-wrap: anywhere;
}

.solution-card:hover .card-footer {
    opacity: .85
}

.arrow {

    font-size: 18px;
    transition: transform .25s
}

.solution-card:hover .arrow {
    transform: translate(3px, -3px)
}

@keyframes scan {
    0% {
        transform: translateY(-100%)
    }

    60%,
    100% {
        transform: translateY(500%)
    }
}

@media(max-width:980px) {
    .solutions-grid {
        grid-template-columns: 1fr
    }

    .solution-card {
        min-height: 280px
    }

    .items-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px 8px;
    }

    .heading-note {
        display: none
    }

    .section-heading {
        grid-template-columns: 36px 1fr
    }

    .heading-line {
        width: 36px
    }
}

@media(max-width:620px) {
    .solutions {
        width: min(100% - 24px, 1500px);
        padding: 38px 0
    }

    .solution-card {
        grid-template-columns: 1fr;
        min-height: 0
    }

    .image-panel,
    .image-right .image-panel {
        order: 0;
        min-height: 180px
    }

    .content-panel {
        min-height: 0;
        padding: 16px
    }

    .card-topline {
        align-items: flex-start;
    }

    .number {
        font-size: 28px
    }

    .tag {
        max-width: 78%;
        padding: 0;
        font-size: 13px;
        line-height: 1.15;
    }

    .card-copy {
        margin: 14px 0
    }

    .items-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px 6px;
    }

    .item {
        gap: 6px;
        min-width: 0;
    }

    .icon-wrap {
        width: 44px;
        height: 44px;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .icon-wrap img {
        width: 24px;
        height: 24px;
    }

    .item-label {
        font-size: 9.5px;
        line-height: 1.2;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .card-footer {
        margin-top: 14px;
        padding-top: 10px;
        font-size: 8px;
        letter-spacing: .08em;
        flex-wrap: wrap;
        row-gap: 4px;
    }

    .card-footer .arrow {
        font-size: 12px;
        letter-spacing: .04em;
    }

    .section-heading {
        grid-template-columns: 28px 1fr;
        gap: 12px
    }

    .heading-line {
        width: 28px
    }

    .eyebrow {
        font-size: 8px;
        letter-spacing: .12em
    }

    h1 {
        font-size: clamp(22px, 7vw, 32px);
        line-height: 1.05
    }
}

@media(max-width:380px) {
    .items-grid {
        gap: 10px 4px;
    }

    .icon-wrap {
        width: 40px;
        height: 40px;
    }

    .icon-wrap img {
        width: 22px;
        height: 22px;
    }

    .item-label {
        font-size: 9px;
    }

    .tag {
        font-size: 12px;
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *:before,
    *:after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }

    .solution-card {
        opacity: 1;
        transform: none
    }
}

.solution-icons img {
    width: 32px;
    height: 32px;
    display: inline-block;
}




.tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Universal tag style — works on both light and dark backgrounds */
.tag-btn {
    display: inline-flex;
    align-items: center;
    padding: 3px 6px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(148, 163, 184, 0.12);
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.tag-btn:hover {
    background: rgba(148, 163, 184, 0.22);
    border-color: rgba(148, 163, 184, 0.8);
}

.tag-btn.active {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

:root {
    --gold: #b8891a;
    --gold-deep: #8f680f;
    --gold-soft: #f4e6c7;
    --gold-soft-2: #10244e;
    --ink: #1c1a15;
    --ink-soft: #918f8b;

}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    min-width: 0;
}

.icon-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--gold-soft);
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px 6px;
}

.icon-wrap img {
    width: 28px;
    height: 28px;
    display: block;
}

.item-label {
    width: 100%;
    font-size: 10.5px;
    line-height: 1.25;
    color: var(--ink-soft);
    font-weight: 600;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
}

.dark .item-label {
    color: #91a4c4;
}


.qrn-team {
    --qrn-bg-0: #060a16;
    --qrn-line: #1c2747;
    --qrn-blue-1: #2f6bff;
    --qrn-blue-2: #5aa4ff;
    --qrn-glow: rgba(58, 120, 255, .45);
    --qrn-text-0: #f3f6fc;
    --qrn-text-1: #aeb9d4;
    --qrn-text-2: #6d7a9c;
    width: 90%;
    margin: auto;
    padding: clamp(48px, 7vw, 100px) 0;
    color: var(--qrn-text-0);
    font-family: 'Inter', system-ui, sans-serif;
    box-sizing: border-box;
}

.qrn-team * {
    box-sizing: border-box;
}

/* ---------- Header ---------- */
.qrn-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: .42em;
    font-size: 13px;
    color: var(--qrn-blue-2);
    margin: 0 0 22px;
}

.qrn-eyebrow::before,
.qrn-eyebrow::after {
    content: "";
    width: 46px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--qrn-blue-1));
}

.qrn-eyebrow::after {
    background: linear-gradient(90deg, var(--qrn-blue-1), transparent);
}

.qrn-heading {
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(38px, 5.6vw, 64px);
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 40px rgba(90, 164, 255, .25);
    margin: 0 0 22px;
}

.qrn-lead {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
    color: var(--qrn-text-1);
    font-size: 16px;
    line-height: 1.7;
}

/* ---------- Carousel ---------- */
.qrn-carousel {
    max-width: 1560px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}

.qrn-nav-btn {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--qrn-line);
    background: rgba(255, 255, 255, .02);
    color: var(--qrn-text-1);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s ease, color .2s ease, background .2s ease, transform .15s ease;
    z-index: 5;
}

.qrn-nav-btn:hover {
    border-color: var(--qrn-blue-1);
    color: #fff;
    background: rgba(47, 107, 255, .12);
}

.qrn-nav-btn:active {
    transform: scale(.92);
}

.qrn-nav-prev {
    margin-right: 14px;
}

.qrn-nav-next {
    margin-left: 14px;
}

.qrn-viewport {
    flex: 1 1 auto;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.qrn-track {
    display: flex;
    gap: 28px;
    will-change: transform;
}

.qrn-member {
    flex: 0 0 auto;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 8px;
}

.qrn-avatar-ring {
    position: relative;
    width: 174px;
    height: 174px;
    margin-bottom: 26px;
}

.qrn-avatar-ring svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: qrn-spin 14s linear infinite;
}

.qrn-avatar-ring svg circle {
    fill: none;
    stroke: var(--qrn-blue-2);
    stroke-width: 2;
    stroke-linecap: round;
    filter: drop-shadow(0 0 6px var(--qrn-glow));
}

@keyframes qrn-spin {
    to {
        transform: rotate(360deg);
    }
}

.qrn-avatar-photo {
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    overflow: hidden;
    background: #dfe3ea;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .06), 0 18px 40px rgba(0, 0, 0, .45);
}

.qrn-avatar-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(.92) contrast(1.02);
}

.qrn-member-name {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.qrn-member-role {
    font-size: 13.5px;
    color: var(--qrn-text-1);
    line-height: 1.5;
    min-height: 38px;
}

.qrn-member-rule {
    width: 34px;
    height: 2px;
    margin-top: 14px;
    background: linear-gradient(90deg, var(--qrn-blue-1), var(--qrn-blue-2));
    border-radius: 2px;
}

/* ---------- Dots ---------- */
.qrn-dots {
    max-width: 1560px;
    margin: 46px auto 0;
    display: flex;
    justify-content: center;
    gap: 9px;
}

.qrn-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--qrn-text-2);
    opacity: .5;
    cursor: pointer;
    transition: all .25s ease;
}

.qrn-dot.is-active {
    background: var(--qrn-blue-2);
    opacity: 1;
    box-shadow: 0 0 8px var(--qrn-glow);
    transform: scale(1.35);
}

@media (max-width:640px) {
    .qrn-team {
        padding: 50px 18px;
    }

    .qrn-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .qrn-member {
        width: 170px;
    }

    .qrn-avatar-ring {
        width: 140px;
        height: 140px;
    }
}

@media (prefers-reduced-motion:reduce) {
    .qrn-avatar-ring svg {
        animation: none;
    }
}

.cnheroqv-wrap {
    width: 100%;
    position: relative;
    z-index: 5;
    padding: 10px 0 20px;
    box-sizing: border-box;
  }
  
  .cnheroqv-inner {
    display: flex;
    align-items: flex-end;
    gap: 34px;
    flex-wrap: wrap;
  }
  
  /* =========================
     Scroll button
  ========================= */
  .cnheroqv-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 132px;
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    background: transparent;
    border: none;
    animation: hero-bounce 1.8s ease-in-out infinite;
  }
  
  .cnheroqv-scroll__label {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition: 0.25s ease;
  }
  
  .cnheroqv-scroll__circle {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      radial-gradient(circle at center, rgba(44,130,255,0.20) 0%, rgba(44,130,255,0.08) 38%, rgba(44,130,255,0.02) 60%, rgba(44,130,255,0) 75%);
    border: 2px solid rgba(55, 180, 255, 0.95);
    box-shadow:
      0 0 0 8px rgba(0, 136, 255, 0.10),
      0 0 18px rgba(0, 153, 255, 0.55),
      0 0 38px rgba(0, 153, 255, 0.25),
      inset 0 0 20px rgba(0, 153, 255, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  
  .cnheroqv-scroll__circle::before,
  .cnheroqv-scroll__circle::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    inset: 10px;
    border: 1px solid rgba(86, 200, 255, 0.45);
  }
  
  .cnheroqv-scroll__circle::after {
    inset: -10px;
    border: 1px solid rgba(86, 200, 255, 0.18);
  }
  
  .cnheroqv-scroll__icon {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 10px rgba(72, 201, 255, 0.65));
  }
  
  .cnheroqv-scroll:hover .cnheroqv-scroll__circle {
    transform: translateY(4px) scale(1.04);
    box-shadow:
      0 0 0 10px rgba(0, 136, 255, 0.14),
      0 0 25px rgba(0, 153, 255, 0.7),
      0 0 50px rgba(0, 153, 255, 0.32),
      inset 0 0 24px rgba(0, 153, 255, 0.18);
  }
  
  .cnheroqv-scroll:hover .cnheroqv-scroll__label {
    color: #ffffff;
  }
  
  /* =========================
     Navigation block
  ========================= */
  .cnheroqv-navblock {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .cnheroqv-navblock__title {
    color: rgba(255,255,255,0.92);
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    padding-left: 12px;
  }
  
  .cnheroqv-navlist {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    flex-wrap: nowrap;
    flex-direction: column;
    align-content: center;
    justify-content: space-between;
  }
  
  /* =========================
     Pills
  ========================= */
  .cnheroqv-pill {
    --pill-main: #ff5d5d;
    --pill-main-rgb: 255, 93, 93;
    --pill-text: #ffffff;
  
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 78px;
    padding: 0 28px 0 0;
    border-radius: 999px;
    text-decoration: none;
    color: var(--pill-text);
    overflow: visible;
    background:
      linear-gradient(90deg,
        rgba(var(--pill-main-rgb), 0.34) 0%,
        rgba(var(--pill-main-rgb), 0.22) 38%,
        rgba(var(--pill-main-rgb), 0.12) 100%);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow:
      0 0 0 1px rgba(var(--pill-main-rgb), 0.25) inset,
      0 0 18px rgba(var(--pill-main-rgb), 0.18),
      0 0 34px rgba(var(--pill-main-rgb), 0.10);
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      background 0.25s ease;
      width: 100%;
  }
  
  .cnheroqv-pill::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background:
      linear-gradient(180deg,
        rgba(255,255,255,0.12) 0%,
        rgba(255,255,255,0.02) 28%,
        rgba(255,255,255,0.00) 100%);
    pointer-events: none;
  }
  
  .cnheroqv-pill__iconwrap {
    width: 92px;
    min-width: 92px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .cnheroqv-pill__iconwrap::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    width: 74px;
    height: 74px;
    transform: translateY(-50%);
    border-radius: 50%;
    background:
      radial-gradient(circle at center,
        rgba(var(--pill-main-rgb), 0.35) 0%,
        rgba(var(--pill-main-rgb), 0.20) 45%,
        rgba(var(--pill-main-rgb), 0.06) 75%,
        rgba(var(--pill-main-rgb), 0.00) 100%);
    box-shadow: 0 0 18px rgba(var(--pill-main-rgb), 0.35);
  }
  
  .cnheroqv-pill__iconcircle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      radial-gradient(circle at 35% 30%,
        rgba(255,255,255,0.14) 0%,
        rgba(255,255,255,0.04) 25%,
        rgba(255,255,255,0.00) 60%),
      rgba(8, 12, 35, 0.72);
    border: 3px solid rgba(255,255,255,0.92);
    box-shadow:
      0 0 0 3px rgba(var(--pill-main-rgb), 0.18),
      0 0 14px rgba(var(--pill-main-rgb), 0.55),
      inset 0 0 18px rgba(var(--pill-main-rgb), 0.14);
  }
  
  .cnheroqv-pill__icon {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.98;
  }
  
  .cnheroqv-pill__text {
    display: flex;
    align-items: center;
    padding-right: 8px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.2px;
    white-space: nowrap;
  }
  
  /* Color modifiers */
  .cnheroqv-pill--red {
    --pill-main: #ff5c67;
    --pill-main-rgb: 255, 92, 103;
  }
  
  .cnheroqv-pill--violet {
    --pill-main: #9a6bff;
    --pill-main-rgb: 154, 107, 255;
  }
  
  .cnheroqv-pill--green {
    --pill-main: #4de2c1;
    --pill-main-rgb: 77, 226, 193;
  }
  
  /* Hover */
  .cnheroqv-pill:hover {
    transform: translateY(-3px);
    background:
      linear-gradient(90deg,
        rgba(var(--pill-main-rgb), 0.45) 0%,
        rgba(var(--pill-main-rgb), 0.28) 42%,
        rgba(var(--pill-main-rgb), 0.14) 100%);
    box-shadow:
      0 0 0 1px rgba(var(--pill-main-rgb), 0.38) inset,
      0 0 22px rgba(var(--pill-main-rgb), 0.28),
      0 0 42px rgba(var(--pill-main-rgb), 0.18);
  }
  
  .cnheroqv-pill:hover .cnheroqv-pill__iconcircle {
    box-shadow:
      0 0 0 3px rgba(var(--pill-main-rgb), 0.22),
      0 0 18px rgba(var(--pill-main-rgb), 0.72),
      inset 0 0 20px rgba(var(--pill-main-rgb), 0.16);
  }
  
  /* =========================
     Responsive
  ========================= */
  @media (max-width: 1200px) {
    .cnheroqv-inner {
      gap: 24px;
    }
  
    .cnheroqv-navlist {
      gap: 14px;
    }
  
    .cnheroqv-pill__text {
      font-size: 15px;
    }
  }
  
  @media (max-width: 991px) {
    .cnheroqv-inner {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .cnheroqv-scroll {
      align-items: flex-start;
    }
  
    .cnheroqv-navlist {
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
    }
  
    .cnheroqv-pill {
      width: 100%;
      max-width: 420px;
    }
  
    .cnheroqv-pill__text {
      white-space: normal;
    }
  }
  
  @media (max-width: 576px) {
    .cnheroqv-scroll__circle {
      width: 92px;
      height: 92px;
    }
  
    .cnheroqv-pill {
      min-height: 72px;
      padding-right: 22px;
    }
  
    .cnheroqv-pill__iconwrap {
      width: 84px;
      min-width: 84px;
      height: 72px;
    }
  
    .cnheroqv-pill__iconcircle {
      width: 60px;
      height: 60px;
    }
  
    .cnheroqv-pill__icon {
      width: 26px;
      height: 26px;
    }
  
    .cnheroqv-pill__text {
      font-size: 14px;
    }
  }






  .cnnav3-wrap {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }
  
  /* ===== Button base ===== */
  .cnnav3-btn {
    --cnnav3-main: #ff6b73;
    --cnnav3-main-rgb: 255, 107, 115;
    --cnnav3-main-dark: #8c2d35;
  
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 78px;
    padding: 0 26px 0 86px;
    border-radius: 999px;
    text-decoration: none;
    overflow: visible;
  
    color: #ffffff;
    background:
      linear-gradient(180deg,
        rgba(255,255,255,0.10) 0%,
        rgba(255,255,255,0.03) 20%,
        rgba(255,255,255,0.00) 100%),
      linear-gradient(90deg,
        rgba(var(--cnnav3-main-rgb), 0.58) 0%,
        rgba(var(--cnnav3-main-rgb), 0.42) 42%,
        rgba(var(--cnnav3-main-rgb), 0.22) 100%);
  
    border: 1px solid rgba(255,255,255,0.18);
  
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.18),
      inset 0 -8px 20px rgba(0,0,0,0.12),
      0 0 0 1px rgba(var(--cnnav3-main-rgb), 0.18),
      0 0 18px rgba(var(--cnnav3-main-rgb), 0.26),
      0 0 34px rgba(var(--cnnav3-main-rgb), 0.12);
  
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      filter 0.25s ease;
  }
  
  .cnnav3-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background:
      linear-gradient(180deg,
        rgba(255,255,255,0.16) 0%,
        rgba(255,255,255,0.05) 18%,
        rgba(255,255,255,0.00) 55%);
    pointer-events: none;
  }
  
  .cnnav3-btn::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    pointer-events: none;
  }
  
  /* ===== Left icon area ===== */
  .cnnav3-btn__iconbox {
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
  
  .cnnav3-btn__iconbox::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background:
      radial-gradient(circle at center,
        rgba(var(--cnnav3-main-rgb), 0.55) 0%,
        rgba(var(--cnnav3-main-rgb), 0.28) 45%,
        rgba(var(--cnnav3-main-rgb), 0.12) 72%,
        rgba(var(--cnnav3-main-rgb), 0.00) 100%);
    box-shadow:
      0 0 16px rgba(var(--cnnav3-main-rgb), 0.35),
      0 0 28px rgba(var(--cnnav3-main-rgb), 0.16);
  }
  
  .cnnav3-btn__iconring {
    position: relative;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  
    background:
      radial-gradient(circle at 30% 25%,
        rgba(255,255,255,0.16) 0%,
        rgba(255,255,255,0.05) 22%,
        rgba(255,255,255,0.00) 55%),
      rgba(17, 19, 38, 0.62);
  
    border: 4px solid rgba(255,255,255,0.90);
  
    box-shadow:
      0 0 0 3px rgba(var(--cnnav3-main-rgb), 0.22),
      0 0 12px rgba(var(--cnnav3-main-rgb), 0.65),
      inset 0 0 18px rgba(var(--cnnav3-main-rgb), 0.16);
  }
  
  .cnnav3-btn__iconring::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(var(--cnnav3-main-rgb), 0.38);
    opacity: 0.9;
  }
  
  .cnnav3-btn__icon {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.20));
  }
  
  /* ===== Text ===== */
  .cnnav3-btn__text {
    position: relative;
    z-index: 2;
    display: inline-block;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255,255,255,0.08);
    white-space: nowrap;
  }

  .cnnav3-btn__label--short {
    display: none;
  }
  
  /* ===== Color variants ===== */
  .cnnav3-btn--red {
    --cnnav3-main: #ff6b73;
    --cnnav3-main-rgb: 255, 107, 115;
    --cnnav3-main-dark: #8a343a;
  }
  
  .cnnav3-btn--violet {
    --cnnav3-main: #a772ff;
    --cnnav3-main-rgb: 167, 114, 255;
    --cnnav3-main-dark: #5c39a8;
  }
  
  .cnnav3-btn--teal {
    --cnnav3-main: #67e0d1;
    --cnnav3-main-rgb: 103, 224, 209;
    --cnnav3-main-dark: #2f877c;
  }
  
  /* ===== Hover ===== */
  .cnnav3-btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.08);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.20),
      inset 0 -8px 20px rgba(0,0,0,0.12),
      0 0 0 1px rgba(var(--cnnav3-main-rgb), 0.24),
      0 0 24px rgba(var(--cnnav3-main-rgb), 0.34),
      0 0 42px rgba(var(--cnnav3-main-rgb), 0.16);
  }
  
  .cnnav3-btn:hover .cnnav3-btn__iconring {
    box-shadow:
      0 0 0 3px rgba(var(--cnnav3-main-rgb), 0.28),
      0 0 18px rgba(var(--cnnav3-main-rgb), 0.72),
      inset 0 0 22px rgba(var(--cnnav3-main-rgb), 0.18);
  }
  
  /* ===== Responsive ===== */
  @media (max-width: 1100px) {
    .cnnav3-wrap:not(.two-box-flex__right) {
      gap: 22px;
    }

    .cnnav3-btn {
      height: 74px;
      padding-left: 82px;
    }

    .cnnav3-btn__text {
      font-size: 15px;
    }
  }

  @media (max-width: 900px) {
    .cnnav3-wrap:not(.two-box-flex__right) {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  @media (max-width: 768px) {
    .cnnav3-btn {
      height: 64px;
      padding: 0 18px 0 70px;
    }

    .cnnav3-btn__iconbox {
      width: 80px;
      height: 80px;
      left: -10px;
    }

    .cnnav3-btn__iconring {
      width: 60px;
      height: 60px;
    }

    .cnnav3-btn__icon {
      width: 26px;
      height: 26px;
    }

    .cnnav3-btn__text {
      font-size: 13px;
    }
  }

  .two-box-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    width: 100%;
    min-width: 0;
  }

  .two-box-flex__left {
    flex: 1 1 0;
    min-width: 0;
    max-width: 750px;
  }

  .two-box-flex__right {
    flex: 0 1 320px;
    min-width: 0;
    width: 100%;
    max-width: 320px;
  }

  .two-box-flex__right.cnnav3-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-left: 14px;
    box-sizing: border-box;
  }

  .two-box-flex .cnnav3-btn {
    width: 100%;
    max-width: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  /* Hero mobile layout */
  @media (max-width: 991px) {
    .two-box-flex {
      flex-direction: column;
      align-items: stretch;
      gap: 20px;
    }

    .two-box-flex__left,
    .two-box-flex__right {
      flex: none;
      width: 100%;
      max-width: none;
    }

    .two-box-flex__right.cnnav3-wrap {
      gap: 10px;
      padding-left: 0;
    }
  }

  @media (max-width: 768px) {
    .two-box-flex {
      gap: 16px;
    }

    .two-box-flex__right.cnnav3-wrap {
      gap: 8px;
    }

    .two-box-flex .cnnav3-btn {
      height: 56px;
      padding: 0 16px 0 58px;
    }

    .two-box-flex .cnnav3-btn__iconbox {
      left: 8px;
      width: 44px;
      height: 44px;
    }

    .two-box-flex .cnnav3-btn__iconbox::before {
      inset: 4px;
    }

    .two-box-flex .cnnav3-btn__iconring {
      width: 40px;
      height: 40px;
      border-width: 2.5px;
    }

    .two-box-flex .cnnav3-btn__iconring::before {
      inset: -5px;
      border-width: 1.5px;
    }

    .two-box-flex .cnnav3-btn__icon {
      width: 22px;
      height: 22px;
    }

    .two-box-flex .cnnav3-btn__text {
      font-size: 13px;
      line-height: 1.15;
      letter-spacing: 0;
      overflow-wrap: anywhere;
    }

    .cnheroqv-scroll {
      bottom: max(12px, env(safe-area-inset-bottom, 12px));
      min-width: 0;
    }

    .cnheroqv-scroll__circle {
      width: 68px;
      height: 68px;
      box-shadow:
        0 0 0 5px rgba(0, 136, 255, 0.10),
        0 0 14px rgba(0, 153, 255, 0.45),
        0 0 28px rgba(0, 153, 255, 0.18),
        inset 0 0 16px rgba(0, 153, 255, 0.10);
    }

    .cnheroqv-scroll__circle::before {
      inset: 7px;
    }

    .cnheroqv-scroll__circle::after {
      inset: -7px;
    }

    .cnheroqv-scroll__icon {
      width: 26px;
      height: 26px;
    }
  }

  @media (max-width: 480px) {
    .two-box-flex {
      gap: 14px;
    }

    .two-box-flex__right.cnnav3-wrap {
      gap: 8px;
    }

    .two-box-flex .cnnav3-btn {
      height: 50px;
      padding: 0 12px 0 52px;
    }

    .two-box-flex .cnnav3-btn__iconbox {
      left: 6px;
      width: 40px;
      height: 40px;
    }

    .two-box-flex .cnnav3-btn__iconring {
      width: 36px;
      height: 36px;
      border-width: 2px;
    }

    .two-box-flex .cnnav3-btn__icon {
      width: 20px;
      height: 20px;
    }

    .two-box-flex .cnnav3-btn__text {
      font-size: 12px;
    }

    .cnnav3-btn__label--long {
      display: none;
    }

    .cnnav3-btn__label--short {
      display: inline;
    }

    .cnheroqv-scroll__circle {
      width: 56px;
      height: 56px;
    }

    .cnheroqv-scroll__icon {
      width: 22px;
      height: 22px;
    }
  }

  @media (max-width: 360px) {
    .two-box-flex .cnnav3-btn {
      height: 46px;
      padding-left: 48px;
    }

    .two-box-flex .cnnav3-btn__text {
      font-size: 11px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .cnheroqv-scroll {
      animation: none;
    }
  }






  /* ==========================================================
   CITYNET / SITUATION CENTER BENEFITS
   Unique prefix: ctn-benefits-
   ========================================================== */

.ctn-benefits-section {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;

    padding: 18px 32px 40px;

    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(0, 92, 255, 0.20) 0%,
            rgba(0, 41, 110, 0.09) 25%,
            transparent 55%
        ),
        linear-gradient(
            180deg,
            #020b20 0%,
            #03112d 55%,
            #020b20 100%
        );
}


/* ---------- background tech grid ---------- */

.ctn-benefits-bg-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.42;

    background-image:
        linear-gradient(
            rgba(36, 116, 255, 0.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(36, 116, 255, 0.07) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    transform:
        perspective(500px)
        rotateX(61deg)
        scale(1.5);

    transform-origin: bottom center;
}


/* additional glow */

.ctn-benefits-section::before {
    content: "";
    position: absolute;

    width: 900px;
    height: 350px;

    left: 50%;
    bottom: -260px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: rgba(0, 90, 255, 0.22);

    filter: blur(90px);

    pointer-events: none;
}


/* ---------- container ---------- */

.ctn-benefits-container {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px 26px;

    max-width: 1500px;

    margin: 0 auto;
}


/* ---------- card ---------- */

.ctn-benefits-card {
    position: relative;

    min-height: 235px;

    padding: 28px 48px 26px 30px;

    box-sizing: border-box;

    overflow: hidden;

    border: 1px solid rgba(34, 133, 255, 0.78);

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(9, 36, 79, 0.79) 0%,
            rgba(3, 19, 49, 0.88) 55%,
            rgba(3, 15, 39, 0.93) 100%
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 0 18px rgba(0, 97, 255, 0.05);

    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}


/* decorative inner gradient */

.ctn-benefits-card::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 86% 100%,
            rgba(0, 94, 255, 0.10),
            transparent 38%
        );
}


/* top glow on border */

.ctn-benefits-card::after {
    content: "";

    position: absolute;

    top: -2px;
    left: 18%;

    width: 40%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(43, 152, 255, 0.25),
            #a3e2ff,
            rgba(43, 152, 255, 0.25),
            transparent
        );

    filter: blur(1px);

    opacity: 0.9;
}


.ctn-benefits-card:hover {
    transform: translateY(-4px);

    border-color: rgba(62, 161, 255, 0.95);

    box-shadow:
        0 10px 40px rgba(0, 78, 200, 0.18),
        inset 0 0 35px rgba(0, 97, 255, 0.06);
}


/* ---------- top section ---------- */

.ctn-benefits-top {
    position: relative;

    display: flex;

    align-items: center;

    gap: 27px;

    z-index: 2;
}


/* ---------- icon ---------- */

.ctn-benefits-icon-wrap {
    position: relative;

    flex: 0 0 100px;

    width: 100px;
    height: 100px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(49, 140, 255, 0.58);

    color: #168bff;

    background:
        radial-gradient(
            circle at center,
            rgba(3, 29, 71, 0.94) 0%,
            rgba(3, 20, 49, 0.95) 64%,
            rgba(3, 14, 35, 0.96) 100%
        );

    box-shadow:
        inset 0 0 18px rgba(0, 116, 255, 0.14),
        0 0 15px rgba(0, 101, 255, 0.07);
}


.ctn-benefits-icon-wrap::before {
    content: "";

    position: absolute;

    inset: 7px;

    border-radius: 50%;

    border: 1px solid rgba(42, 130, 255, 0.20);
}


.ctn-benefits-icon {
    position: relative;

    z-index: 2;

    width: 55px;
    height: 55px;

    filter:
        drop-shadow(0 0 5px rgba(0, 124, 255, 0.65));
}


/* ---------- heading ---------- */

.ctn-benefits-heading {
    position: relative;

    flex: 1;

    min-width: 0;
}


.ctn-benefits-heading h3 {
    position: relative;

    z-index: 2;

    margin: 0 0 12px;

    color: #f5f7fb;

    font-family:
        "Inter",
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 25px;

    line-height: 1.28;

    font-weight: 500;

    letter-spacing: -0.4px;

    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.06);
}


/* ---------- glowing separator ---------- */

.ctn-benefits-line {
    position: relative;

    width: 100%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(0, 126, 255, 0.25),
            rgba(31, 143, 255, 0.8)
        );
}


.ctn-benefits-line::after {
    content: "";

    position: absolute;

    right: -2px;

    top: 50%;

    width: 4px;
    height: 4px;

    transform: translateY(-50%);

    border-radius: 50%;

    background: #7edbff;

    box-shadow:
        0 0 4px #33aaff,
        0 0 9px #0e85ff,
        0 0 16px rgba(0, 132, 255, 0.75);
}


/* ---------- description ---------- */

.ctn-benefits-text {
    position: relative;

    z-index: 2;

    margin:

        18px 0 0 23px;

    color: rgba(215, 220, 231, 0.74);

    font-family:
        "Inter",
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 18px;

    line-height: 1.55;

    font-weight: 400;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1200px) {

    .ctn-benefits-container {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 760px) {

    .ctn-benefits-section {
        padding:
            20px 16px 30px;
    }

    .ctn-benefits-container {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .ctn-benefits-card {
        min-height: auto;

        padding:
            24px 22px;
    }

    .ctn-benefits-top {
        gap: 18px;
    }

    .ctn-benefits-icon-wrap {
        flex-basis: 78px;

        width: 78px;
        height: 78px;
    }

    .ctn-benefits-icon {
        width: 43px;
        height: 43px;
    }

    .ctn-benefits-heading h3 {
        font-size: 21px;
    }

    .ctn-benefits-text {
        margin:
            18px 0 0 0;

        font-size: 16px;
    }

}


@media (max-width: 420px) {

    .ctn-benefits-card {
        border-radius: 12px;

        padding:
            20px 17px;
    }

    .ctn-benefits-icon-wrap {
        flex-basis: 66px;

        width: 66px;
        height: 66px;
    }

    .ctn-benefits-icon {
        width: 37px;
        height: 37px;
    }

    .ctn-benefits-top {
        gap: 14px;
    }

    .ctn-benefits-heading h3 {
        font-size: 19px;
    }

    .ctn-benefits-text {
        font-size: 15px;

        line-height: 1.5;
    }

}











/* =========================================================
   CITYNET - WHERE SOLUTIONS ARE USED
   Unique prefix: ctn-apply-
   ========================================================= */

   .ctn-apply-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;

    padding: 54px 30px 75px;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(9, 63, 133, 0.12),
            transparent 55%
        ),
        linear-gradient(
            180deg,
            #020d22 0%,
            #03132e 55%,
            #020c20 100%
        );

    font-family:
        "Inter",
        "Segoe UI",
        Arial,
        sans-serif;
}


/* ambient glow */

.ctn-apply-section::before {
    content: "";
    position: absolute;

    width: 800px;
    height: 500px;

    top: 130px;
    left: 50%;

    transform: translateX(-50%);

    background: rgba(0, 90, 255, 0.06);

    filter: blur(100px);

    pointer-events: none;
}


/* Main container */

.ctn-apply-container {
    position: relative;
    z-index: 2;

    max-width: 1900px;

    margin: 0 auto;
}


/* =========================================================
   BRAND
   ========================================================= */

.ctn-apply-brand {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 28px;

    color: #168cff;
}


.ctn-apply-brand-icon {
    width: 28px;
    height: 28px;

    filter:
        drop-shadow(0 0 5px rgba(0, 128, 255, 0.5));
}


.ctn-apply-brand span {
    color: #f7f9ff;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 5px;
}


/* =========================================================
   TITLE
   ========================================================= */

.ctn-apply-title {
    margin: 0;

    color: #f4f6fa;

    font-size: clamp(35px, 4vw, 58px);

    font-weight: 650;

    line-height: 1.1;

    letter-spacing: -1.5px;

    text-shadow:
        0 0 15px rgba(255,255,255,0.05);
}


.ctn-apply-title-line {
    display: flex;
    align-items: center;

    gap: 5px;

    width: 205px;

    margin-top: 18px;
}


.ctn-apply-title-line span {
    display: block;

    width: 130px;
    height: 3px;

    transform: skewX(-35deg);

    background:
        linear-gradient(
            90deg,
            #1ca2ff,
            #1466d5
        );

    box-shadow:
        0 0 8px rgba(0, 127, 255, 0.45);
}


.ctn-apply-title-line i {
    display: block;

    width: 11px;
    height: 3px;

    transform: skewX(-35deg);

    background: #0d4a98;
}


.ctn-apply-subtitle {
    margin: 15px 0 52px;

    color: rgba(214, 222, 236, 0.72);

    font-size: 18px;

    line-height: 1.55;
}


/* =========================================================
   GRID
   ========================================================= */

.ctn-apply-grid {
    display: grid;

    grid-template-columns:
        repeat(7, minmax(0, 1fr));

    gap: 16px;
}


/* =========================================================
   CARD
   ========================================================= */

.ctn-apply-card {
    position: relative;

    isolation: isolate;

    height: 500px;

    overflow: hidden;

    border-radius: 13px;

    border:
        1px solid rgba(47, 139, 255, 0.65);

    box-sizing: border-box;

    background-position: center;
    background-repeat: no-repeat;

    /* JPG fully covers card */
    background-size: cover;

    box-shadow:
        inset 0 0 25px rgba(0, 60, 145, 0.07),
        0 10px 30px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}


/* dark overlay over JPG */

.ctn-apply-card::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        linear-gradient(
            180deg,
            rgba(1, 11, 28, 0.15) 0%,
            rgba(1, 10, 25, 0.03) 34%,
            rgba(1, 9, 24, 0.20) 58%,
            rgba(1, 9, 24, 0.82) 100%
        );

    transition:
        background 0.3s ease;
}


/* blue light at top */

.ctn-apply-card::after {
    content: "";

    position: absolute;

    top: -1px;
    left: 32%;

    width: 36%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #7ad7ff,
            transparent
        );

    box-shadow:
        0 0 8px #0b87ff,
        0 0 14px rgba(0, 126, 255, 0.7);
}


/* =========================================================
   ICON
   ========================================================= */

.ctn-apply-icon-box {
    position: absolute;

    top: 22px;
    left: 20px;

    z-index: 3;

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #b5d8ff;

    border:
        1px solid rgba(67, 149, 255, 0.72);

    background:
        linear-gradient(
            145deg,
            rgba(9, 35, 75, 0.90),
            rgba(4, 20, 48, 0.82)
        );

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    box-shadow:
        inset 0 0 15px rgba(0, 116, 255, 0.09),
        0 0 14px rgba(0, 79, 180, 0.10);
}


.ctn-apply-icon-box svg {
    width: 42px;
    height: 42px;

    filter:
        drop-shadow(
            0 0 4px rgba(0, 126, 255, 0.45)
        );
}


/* =========================================================
   TEXT / TRANSPARENT BOTTOM AREA
   ========================================================= */

.ctn-apply-card-bottom {
    position: absolute;

    z-index: 4;

    left: 0;
    right: 0;
    bottom: 0;

    min-height: 130px;

    display: flex;
    align-items: flex-end;

    box-sizing: border-box;

    padding:
        30px 20px 24px;

    /*
       Semi-transparent background.
       The image remains visible underneath.
    */

    background:
        linear-gradient(
            180deg,
            rgba(1, 12, 30, 0.15) 0%,
            rgba(1, 12, 30, 0.68) 36%,
            rgba(1, 12, 30, 0.91) 100%
        );

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}


/* small glowing bottom line */

.ctn-apply-card-bottom::after {
    content: "";

    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 13px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(0, 123, 255, 0.3),
            rgba(0, 123, 255, 0.9)
        );
}


.ctn-apply-card-bottom::before {
    content: "";

    position: absolute;

    right: 19px;
    bottom: 12px;

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: #4bd2ff;

    box-shadow:
        0 0 5px #119aff,
        0 0 10px #007cff;
}


.ctn-apply-card-bottom h3 {
    position: relative;

    margin: 0 0 11px;

    color: #ffffff;

    font-size: 19px;

    line-height: 1.35;

    font-weight: 500;

    letter-spacing: -0.2px;

    text-shadow:
        0 2px 5px rgba(0,0,0,0.65);
}


/* =========================================================
   HOVER
   ========================================================= */

.ctn-apply-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(68, 165, 255, 0.95);

    box-shadow:
        0 17px 40px rgba(0, 0, 0, 0.34),
        0 0 25px rgba(0, 104, 255, 0.12);
}


.ctn-apply-card:hover::before {
    background:
        linear-gradient(
            180deg,
            rgba(1, 11, 28, 0.04) 0%,
            rgba(1, 10, 25, 0.00) 45%,
            rgba(1, 9, 24, 0.12) 62%,
            rgba(1, 9, 24, 0.76) 100%
        );
}


/* =========================================================
   RESPONSIVE - LAPTOP
   ========================================================= */

@media (max-width: 1450px) {

    .ctn-apply-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

    .ctn-apply-card {
        height: 450px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .ctn-apply-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/* =========================================================
   SMALL TABLET
   ========================================================= */

@media (max-width: 760px) {

    .ctn-apply-section {
        padding:
            40px 18px 55px;
    }

    .ctn-apply-subtitle {
        margin-bottom: 35px;

        font-size: 16px;
    }

    .ctn-apply-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 13px;
    }

    .ctn-apply-card {
        height: 400px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 520px) {

    .ctn-apply-grid {
        grid-template-columns: 1fr;
    }

    .ctn-apply-card {
        height: 430px;
    }

    .ctn-apply-title {
        font-size: 35px;
    }

}

.aqilli-card {
    display: flex;
    align-items: top;
    gap: 10px;
    padding: 4px;
    border-radius: 8px;
    max-width: 600px;
    font-family: 'Arial', sans-serif;
}

.aqilli-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.aqilli-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.aqilli-number {
    font-size: 64px;
    font-weight: bold;
    color: #d4af37;
    line-height: 1;
}

.aqilli-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 1px;
}

.aqilli-text {
    font-size: 13px;
    color: #b0b0b0;
    line-height: 1.6;
    text-align: left;
}

.aqilli-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: top;
    flex-shrink: 0;
}

.aqilli-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .aqilli-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px;
        max-width: 100%;
    }

    .aqilli-header {
        justify-content: center;
    }

    .aqilli-text {
        text-align: center;
    }

    .aqilli-number {
        font-size: 48px;
    }

    .aqilli-title {
        font-size: 20px;
    }
}