:root {
    --navy: #0661af;
    --navy-2: #0D2C4C;
    --blue: #0F63B0;
    --blue-2: #1584D6;
    --cyan: #1FD1E8;
    --ice: #F2F8FC;
    --paper: #FFFFFF;
    --slate: #48586A;
    --slate-light: #8496A6;
    --line: #E2EBF2;
    --grad: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
    --h1: 35px;
    --h2: 30px;
    --h3: 21px;
    --h4: 17px;
    --radius-seal: 6px;
    --shadow: 0 14px 34px -18px rgba(7, 28, 51, 0.35);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    color: #000;
    background: var(--paper);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Manrope', 'Segoe UI', Arial, sans-serif;
    color: #000;
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: var(--h1);
}

h2 {
    font-size: var(--h2);
}

h3 {
    font-size: var(--h3);
}

h4 {
    font-size: var(--h4);
}

p {
    color: #000;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 50px 0;
}

.section.tight {
    padding: 64px 0;
}

.section.ice {
    background: var(--ice);
}

.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}

.section-head {
    max-width: 640px;
    margin-bottom: 44px;
}

.section-head p {
    margin-top: 14px;
    font-size: 16px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 3px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.btn-primary {
    background: var(--navy);
    color: #fff;
}

.btn-primary:hover {
    background: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -8px rgba(15, 99, 176, 0.55);
}

.btn-outline {
    border-color: var(--line);
    color: var(--navy);
    background: #fff;
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px);
}

.btn-ghost {
    color: var(--navy);
    border-bottom: 2px solid var(--cyan);
    border-radius: 0;
    padding: 6px 2px;
}

.btn-ghost:hover {
    color: var(--blue);
}

/* ===== corner-cut "seal" shape used as signature structural device ===== */
.seal-card {
    --cut: 22px;
    background: #fff;
    border: 1px solid var(--line);
    clip-path: polygon(0 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, var(--cut) 100%, 0 calc(100% - var(--cut)));
    position: relative;
}

/* ============ TOP BAR ============ */
.topbar {
    background: var(--navy);
    color: #fff;
    font-size: 13px;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 38px;
}

.topbar-left {
    display: flex;
    gap: 22px;
    align-items: center;
}

.topbar-left a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-left a:hover {
    color: #fff;
}

.topbar-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.topbar-right a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .2s ease;
}

.topbar-right a:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    color: var(--navy);
}

.topbar-right .divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
}

/* ============ HEADER / NAV ============ */
header.site-header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
}

.brand img {
    height: 65px;
}

nav.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 84px;
}

.nav-list>li {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-list>li>a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    height: 100%;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #000;
    border-bottom: 3px solid transparent;
    transition: color .2s ease, border-color .2s ease;
    white-space: nowrap;
}

.nav-list>li:hover>a,
.nav-list>li.open>a {
    color: var(--blue);
    border-bottom-color: var(--cyan);
}

.chev {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform .2s ease;
}

.nav-list>li:hover .chev,
.nav-list>li.open .chev {
    transform: rotate(225deg);
    margin-top: 3px;
}

/* dropdown level 1 */
.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 300px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--cyan);
    box-shadow: var(--shadow);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 50;
}

.nav-list>li:hover>.dropdown-panel,
.nav-list>li.open>.dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.drop-item {
    position: relative;
}

.drop-item>.drow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 14px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #000;
    border-radius: 2px;
    cursor: default;
}

.drop-item .drow .arrow {
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--slate-light);
    border-top: 2px solid var(--slate-light);
    transform: rotate(45deg);
}

.drop-item:hover>.drow {
    background: var(--ice);
    color: var(--blue);
}

.drop-item:hover>.drow .arrow {
    border-color: var(--blue);
}

.sub-panel {
    position: absolute;
    top: -11px;
    left: 100%;
    min-width: 270px;
    background: #fff;
    border: 1px solid var(--line);
    border-left: 3px solid var(--cyan);
    box-shadow: var(--shadow);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.drop-item:hover>.sub-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sub-panel li a {
    display: block;
    padding: 10px 14px;
    font-size: 13.6px;
    color: var(--slate);
    border-radius: 2px;
    font-weight: 500;
}

.sub-panel li a:hover {
    background: var(--ice);
    color: var(--blue);
}

.nav-external {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-external svg {
    width: 12px;
    height: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 26px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    height: 2.5px;
    width: 100%;
    background: var(--navy);
    border-radius: 2px;
    transition: .25s;
}

/* Main Video Wrapper */
.video-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

/* Common Video Styling */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Desktop Video */
.desktop-video {
    display: block;
}

/* Mobile / Tablet Video */
.mobile-video {
    display: none;
}


/* =========================================
   TABLET + MOBILE : 768px AND BELOW
   ========================================= */

@media (max-width: 768px) {

    .desktop-video {
        display: none;
    }

    .mobile-video {
        display: block;
    }

}

/* ============ HERO SLIDER ============ */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.hero-slide {
    display: none;
    position: relative;
    min-height: 560px;
    align-items: center;
    background: radial-gradient(1100px 500px at 85% 15%, rgba(31, 209, 232, 0.16), transparent 60%), linear-gradient(120deg, var(--navy) 55%, var(--navy-2) 100%);
}

.hero-slide.active {
    display: flex;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-copy .eyebrow {
    color: var(--cyan);
}

.hero-copy h1 {
    color: #fff;
    max-width: 520px;
    font-size: 38px;
}

.hero-copy p {
    color: #B9C9D8;
    max-width: 480px;
    margin: 18px 0 30px;
    font-size: 16.5px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-actions .btn-primary {
    background: var(--grad);
    color: var(--navy);
    font-weight: 800;
}

.hero-actions .btn-primary:hover {
    filter: brightness(1.08);
    box-shadow: 0 12px 26px -8px rgba(31, 209, 232, 0.5);
}

.hero-actions .btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.hero-actions .btn-outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.hero-art {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facet-orbit {
    position: absolute;
    inset: 0;
    animation: spin 46s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.hero-dots {
    display: flex;
    gap: 9px;
    margin-top: 34px;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: .25s;
}

.hero-dot.active {
    background: var(--cyan);
    width: 26px;
    border-radius: 5px;
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: .2s;
}

.hero-nav-btn:hover {
    background: var(--cyan);
    color: var(--navy);
    border-color: var(--cyan);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

/* ============ WELCOME / INTRO ============ */
.intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
    align-items: center;
}

.intro-figure {
    aspect-ratio: 1/1;
    border-radius: var(--radius-seal);
    overflow: hidden;
    background: linear-gradient(155deg, var(--ice), #fff);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.intro-figure .ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed rgba(15, 99, 176, 0.25);
}

.intro-figure .ring.r1 {
    width: 78%;
    height: 78%;
    animation: spin 60s linear infinite;
}

.intro-figure .ring.r2 {
    width: 56%;
    height: 56%;
    animation: spin 40s linear infinite reverse;
}

/* ============ STATS ============ */
.stats-bar {
    background: var(--navy);
    padding: 52px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-num {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 34px;
    color: #fff;
}

.stat-num span {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: #fff;
}

.stat-label {
    color: #fff;
    font-size: 13.5px;
    margin-top: 6px;
    letter-spacing: 0.02em;
}

/* ============ SOLUTIONS ============ */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.solution-card {
    padding: 34px 30px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.sol-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px 4px 14px 4px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.sol-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
}

.solution-card h3 {
    margin-bottom: 10px;
}

.solution-card p {
    font-size: 14.8px;
}

.solution-card .btn-ghost {
    margin-top: 18px;
    display: inline-block;
    font-size: 13.6px;
    font-weight: 700;
}

/* ============ PRODUCT RANGE ============ */
.range-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.range-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 26px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: border-color .2s ease, transform .2s ease;
}

.range-card:hover {
    border-color: var(--cyan);
    transform: translateY(-4px);
}

.range-num {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: var(--blue);
    width: 34px;
    height: 34px;
    flex: none;
    border: 1.5px solid var(--line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.range-card h4 {
    margin-bottom: 6px;
}

.range-card p {
    font-size: 13.8px;
    margin: 0;
}

/* ============ INFRASTRUCTURE BANNER ============ */
.infra {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 55%, #0A3A63 100%);
    padding: 70px 56px;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.infra:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(60deg, rgba(31, 209, 232, 0.14) 25%, transparent 25.5%, transparent 75%, rgba(31, 209, 232, 0.14) 75.5%),
        linear-gradient(-60deg, rgba(31, 209, 232, 0.1) 25%, transparent 25.5%, transparent 75%, rgba(31, 209, 232, 0.1) 75.5%);
    background-size: 64px 110px;
    opacity: .5;
}

.infra-copy,
.infra-visual {
    position: relative;
    z-index: 1;
}

.infra h2 {
    color: #fff;
}

.infra p {
    color: #B9C9D8;
    margin: 16px 0 26px;
}

.infra-visual {
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============ INDUSTRIES ============ */
.industry-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

.industry-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 200px;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    flex: 1;
    scrollbar-width: none;
}

.industry-track::-webkit-scrollbar {
    display: none;
}

.industry-card {
    scroll-snap-align: start;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 26px 18px;
    text-align: center;
    background: #fff;
    transition: .2s;
}

.industry-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow);
}

.industry-card .ic {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--ice);
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-card .ic svg {
    width: 24px;
    height: 24px;
    stroke: var(--blue);
}

.industry-card h4 {
    font-size: 14.5px;
}

.scroll-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: none;
    transition: .2s;
}

.scroll-btn:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.scroll-btn svg {
    width: 14px;
    height: 14px;
}

/* ============ CERTIFICATIONS ============ */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cert-card {
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 24px 16px;
    text-align: center;
    background: #fff;
}

.cert-badge {
    width: 56px;
    height: 64px;
    margin: 0 auto 14px;
    position: relative;
    background: var(--ice);
    clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 0 80%, 0 20%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-badge svg {
    width: 24px;
    height: 24px;
    stroke: var(--blue);
}

.cert-card h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.cert-card span {
    font-size: 12.5px;
    color: var(--slate-light);
}

@keyframes ping {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* ============ TESTIMONIAL ============ */
.testi {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.testi .quote-mark {
    width: 46px;
    height: 46px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 26px;
    font-weight: 800;
}

.testi p.quote {
    font-size: 19px;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.6;
}

.testi .who {
    margin-top: 22px;
    font-weight: 700;
    color: var(--navy);
    font-size: 14.5px;
}

.testi .who span {
    display: block;
    font-weight: 500;
    color: var(--slate-light);
    font-size: 13px;
    margin-top: 2px;
}

/* ============ BRAND STORY ============ */
.story {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.story-copy {
    padding: 56px;
    background: #fff;
}

.story-visual {
    background: linear-gradient(150deg, var(--navy), var(--navy-2));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 320px;
}

.play-btn {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s;
}

.play-btn:hover {
    background: var(--cyan);
    border-color: var(--cyan);
}

.play-btn svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    margin-left: 3px;
}

.play-btn:hover svg {
    fill: var(--navy);
}

/* ============ CONTACT ============ */
.contact-wrap {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
}

.contact-info-card {
    background: var(--navy);
    color: #fff;
    border-radius: 6px;
    padding: 40px 34px;
}

.contact-info-card h3 {
    color: #fff;
    margin-bottom: 18px;
}

.contact-info-card .row {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.contact-info-card .row .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.contact-info-card .row .icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--cyan);
}

.contact-info-card .row p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 7px;
}

.field input,
.field textarea {
    width: 100%;
    border: 1.5px solid var(--line);
    border-radius: 3px;
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--navy);
    transition: border-color .2s ease;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.field textarea {
    resize: vertical;
    min-height: 110px;
}

/* ============ FOOTER ============ */
footer.site-footer {
    background: var(--navy);
    color: #fff;
}

.footer-top {
    padding: 64px 0 40px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 30px;
}

.footer-brand p {
    color: #fff;
    font-size: 14px;
    margin: 16px 0 20px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
}

.footer-social a:hover {
    background: var(--cyan);
    border-color: var(--cyan);
}

.footer-social svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
}

.footer-col h4 {
    color: #fff;
    font-size: 14.5px;
    margin-bottom: 18px;
}

.footer-col ul li {
    margin-bottom: 11px;
}

.footer-col ul li a {
    color: #fff;
    font-size: 13.8px;
    transition: .2s;
}

.footer-col ul li a:hover {
    color: var(--cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #fff;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-art {
        height: 280px;
        order: -1;
    }

    .intro {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .range-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reach {
        grid-template-columns: 1fr;
    }

    .story {
        grid-template-columns: 1fr;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .infra {
        grid-template-columns: 1fr;
        padding: 46px 30px;
    }
}

@media (max-width: 860px) {
    .topbar-left span.only-desk {
        display: none;
    }

    nav.main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 300px;
        max-width: 82vw;
        background: #fff;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        transition: transform .3s ease;
        overflow-y: auto;
        padding: 90px 0 40px;
        z-index: 600;
    }

    nav.main-nav.open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        height: auto;
        gap: 0;
    }

    .nav-list>li {
        height: auto;
        display: block;
    }

    .nav-list>li>a {
        height: auto;
        padding: 15px 26px;
        border-bottom: 1px solid var(--line);
        justify-content: space-between;
    }

    .nav-list>li:hover>a {
        border-bottom-color: var(--line);
    }

    .dropdown-panel {
        position: static;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height .25s ease;
    }

    .nav-list>li.open>.dropdown-panel {
        max-height: 1400px;
        padding: 6px 14px 10px;
    }

    .sub-panel {
        position: static;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--cyan);
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 0 0 12px;
        transition: max-height .25s ease;
    }

    .drop-item.open>.sub-panel {
        max-height: 600px;
        padding: 4px 0 8px 12px;
    }

    .hamburger {
        display: flex;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(7, 28, 51, 0.5);
        z-index: 550;
    }

    /* .nav-overlay.show{display:block;} */
}

@media (max-width: 640px) {
    :root {
        --h1: 28px;
        --h2: 24px;
    }

    .mobile-display {
        display: none;
    }

    .section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .reach-stats {
        grid-template-columns: repeat(1, 1fr);
    }

    .solutions-grid,
    .range-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-copy h1 {
        font-size: 26px;
    }
}

/* =========================================
   INFOSEAL - OUR SOLUTIONS
========================================= */

.is-solutions-section {
    position: relative;
    padding: 50px 0 50px;
    background: #f3f3f3;
    overflow: hidden;
}


/* Subtle background detail */

.is-solutions-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(220, 30, 45, 0.05);
    border-radius: 50%;
    top: -220px;
    right: -150px;
    pointer-events: none;
}


/* =========================================
   HEADING
========================================= */

.is-solutions-heading {
    max-width: 780px;
    margin: 0 auto 52px;
    text-align: center;
}

.is-solutions-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: #0661af;
}

.is-solutions-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: #0661af;
}

.is-solutions-heading h2 {
    margin: 0;
    font-size: 35px;
    line-height: 1.1;
    font-weight: 700;
    color: #111827;
}

.is-solutions-heading h2 span {
    color: #0661af;
}

.is-solutions-heading p {
    max-width: 680px;
    margin: 18px auto 0;
    font-size: 16px;
    line-height: 1.75;
    color: #667085;
}


/* =========================================
   GRID
========================================= */

.is-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* =========================================
   CARD
========================================= */

.is-solution-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e9ebef;
    border-radius: 4px;
    overflow: hidden;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.is-solution-card:hover {
    transform: translateY(-8px);
    border-color: #dedfe3;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
}


/* =========================================
   IMAGE
========================================= */

.is-solution-image {
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
}

.is-solution-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 55%,
            rgba(0, 0, 0, 0.10));
    pointer-events: none;
}

.is-solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s ease;
}

.is-solution-card:hover .is-solution-image img {
    transform: scale(1.06);
}


/* =========================================
   NUMBER
========================================= */

.is-solution-number {
    position: absolute;
    z-index: 2;
    right: 17px;
    bottom: 16px;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.94);
    color: #111827;

    font-size: 13px;
    font-weight: 700;

    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}


/* =========================================
   CONTENT
========================================= */

.is-solution-content {
    padding: 27px 15px 29px;
}

.is-solution-tag {
    display: block;
    margin-bottom: 9px;

    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.4px;

    color: #0661af;
}

.is-solution-content h3 {
    margin: 0;
    color: #111827;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
}

.is-solution-content p {
    margin: 13px 0 22px;

    color: #697386;
    font-size: 14px;
    line-height: 1.7;

    min-height: 72px;
}


/* =========================================
   LINK
========================================= */

.is-solution-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    position: relative;

    color: #111827;
    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: color 0.3s ease;
}

.is-solution-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background: #0661af;
    transition: width 0.3s ease;
}

.is-solution-link span {
    color: #0661af;
    font-size: 18px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.is-solution-link:hover {
    color: #0661af;
}

.is-solution-link:hover::after {
    width: calc(100% - 24px);
}

.is-solution-link:hover span {
    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .is-solutions-section {
        padding: 75px 0 85px;
    }

    .is-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .is-solutions-section {
        padding: 65px 0 70px;
    }

    .is-solutions-heading {
        margin-bottom: 35px;
    }

    .is-solutions-heading h2 {
        font-size: 34px;
    }

    .is-solutions-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .is-solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .is-solution-content {
        padding: 24px 23px 26px;
    }

    .is-solution-content h3 {
        font-size: 21px;
    }

    .is-solution-content p {
        min-height: auto;
    }

}

/* =========================================
   INFOSEAL PRODUCTS SECTION
========================================= */

.is-products-section {
    position: relative;
    padding: 60px 0 55px;
    background: #ffffff;
    overflow: hidden;
}


/* Subtle decorative element */

.is-products-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(220, 31, 45, 0.045);
    border-radius: 50%;
    top: -300px;
    left: -250px;
    pointer-events: none;
}


/* =========================================
   HEADER
========================================= */

.is-products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 45px;
}


.is-products-heading {
    max-width: 760px;
}


.is-products-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 12px;

    color: #0661af;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
}


.is-products-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: #0661af;
}


.is-products-heading h2 {
    margin: 0;

    color: #111827;

    font-size: 35px;
    line-height: 1.1;
    font-weight: 700;
}


.is-products-heading h2 span {
    color: #0661af;
}


.is-products-heading p {
    max-width: 700px;

    margin: 17px 0 0;

    color: #697386;

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================
   ARROWS
========================================= */

.is-products-navigation {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}


.is-products-arrow {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #dfe2e7;
    border-radius: 50%;

    background: #ffffff;
    color: #172033;

    cursor: pointer;

    font-size: 20px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.is-products-arrow:hover {
    background: #0661af;
    border-color: #0661af;
    color: #ffffff;
    transform: translateY(-2px);
}


.is-products-arrow span {
    line-height: 1;
}


/* =========================================
   SLIDER
========================================= */

.is-products-slider {
    width: 100%;
    overflow: hidden;
}


.is-products-track {
    display: flex;

    margin: 0 -10px;

    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}


.is-product-card {
    flex: 0 0 25%;
    padding: 0 10px;
}


/* =========================================
   CARD INNER
========================================= */

.is-product-card {
    transition: transform 0.35s ease;
}


.is-product-card:hover {
    transform: translateY(-7px);
}


/* =========================================
   IMAGE
========================================= */

.is-product-image {
    position: relative;

    overflow: hidden;

    background: #f2f3f5;

    border-radius: 3px;
}


.is-product-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.is-product-card:hover .is-product-image img {
    transform: scale(1.06);
}


/* Image overlay */

.is-product-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(to bottom,
            transparent 55%,
            rgba(0, 0, 0, 0.12));

    pointer-events: none;
}


/* =========================================
   NUMBER
========================================= */

.is-product-number {
    position: absolute;

    right: 15px;
    bottom: 15px;

    z-index: 2;

    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);

    color: #111827;

    font-size: 12px;
    font-weight: 700;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.13);
}


/* =========================================
   CONTENT
========================================= */

.is-product-content {
    padding: 23px 5px 8px;
}


.is-product-category {
    display: block;

    margin-bottom: 8px;

    color: #0661af;

    font-size: 9px;
    line-height: 1;

    font-weight: 700;
    letter-spacing: 1.5px;
}


.is-product-content h3 {
    margin: 0;

    color: #151a23;

    font-size: 21px;
    line-height: 1.3;

    font-weight: 700;
}


.is-product-content p {
    margin: 11px 0 18px;

    color: #737b89;

    font-size: 13px;
    line-height: 1.7;

    max-width: 300px;
}


/* =========================================
   PRODUCT LINK
========================================= */

.is-product-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    position: relative;

    color: #171c26;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition: color 0.3s ease;
}


.is-product-link span {
    color: #0661af;

    font-size: 17px;

    transition: transform 0.3s ease;
}


.is-product-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0;
    height: 1px;

    background: #0661af;

    transition: width 0.3s ease;
}


.is-product-link:hover {
    color: #0661af;
}


.is-product-link:hover span {
    transform: translateX(5px);
}


.is-product-link:hover::after {
    width: calc(100% - 25px);
}


/* =========================================
   BOTTOM PROGRESS
========================================= */

.is-products-bottom {
    display: flex;
    align-items: center;
    gap: 25px;

    margin-top: 43px;
}


.is-products-progress {
    position: relative;

    width: 100%;
    height: 2px;

    background: #e8eaed;

    overflow: hidden;
}


.is-products-progress-bar {
    position: absolute;

    left: 0;
    top: 0;

    height: 100%;

    width: 16.66%;

    background: #0661af;

    transition: width 0.5s ease;
}


.is-products-count {
    display: flex;
    align-items: center;
    gap: 6px;

    flex-shrink: 0;

    color: #9aa1ac;

    font-size: 12px;
}


.is-products-count strong {
    color: #111827;
    font-size: 13px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .is-product-card {
        flex: 0 0 33.333%;
    }

}


/* =========================================
   TABLET SMALL
========================================= */

@media (max-width: 850px) {

    .is-products-section {
        padding: 50px 0 50px;
    }

    .is-products-header {
        align-items: flex-start;
    }

    .is-products-heading p {
        max-width: 600px;
    }

    .is-product-card {
        flex: 0 0 50%;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .is-products-section {
        padding: 65px 0 70px;
    }

    .is-products-header {
        display: block;
        margin-bottom: 30px;
    }

    .is-products-heading h2 {
        font-size: 34px;
    }

    .is-products-heading p {
        font-size: 14px;
    }

    .is-products-navigation {
        margin-top: 25px;
    }

    .is-products-arrow {
        width: 45px;
        height: 45px;
    }

    .is-product-card {
        flex: 0 0 100%;
    }

    .is-product-content {
        padding-top: 20px;
    }

    .is-product-content h3 {
        font-size: 22px;
    }

    .is-products-bottom {
        margin-top: 30px;
    }

}

/* =========================================================
 MAIN SECTION
========================================================= */

.is-industry-section {
    position: relative;
    padding: 60px 0 50px;
    background: #ffffff;
    overflow: hidden;
}


/* Subtle premium background */

.is-industry-section::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    top: -330px;
    right: -260px;

    border: 1px solid rgba(220, 32, 45, 0.06);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
 HEADER
========================================================= */

.is-industry-header {
    text-align: center;

    max-width: 1000px;

    margin: 0 auto 42px;
}


.is-industry-header h2 {
    margin: 0;

    color: #111111;

    font-size: 35px;

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -1.2px;
}


.is-industry-header h2 span {
    color: #0661af;
}


.is-industry-header p {
    max-width: 900px;

    margin: 18px auto 0;

    color: #555b65;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
 SLIDER WRAPPER
========================================================= */

.is-industry-slider-wrap {
    position: relative;

    display: flex;

    align-items: center;

    gap: 20px;
}


.is-industry-slider {
    width: 100%;

    overflow: hidden;
}


.is-industry-track {
    display: flex;

    margin: 0 -9px;

    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
 CARD
========================================================= */

.is-industry-card {
    position: relative;

    flex: 0 0 25%;

    padding: 0 9px;

    box-sizing: border-box;
}


.is-industry-card-image {
    position: relative;

    height: 270px;

    background: #f7f7f7;

    border: 1px solid #e3e4e6;

    overflow: hidden;

    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}


.is-industry-card:hover .is-industry-card-image {
    border-color: #d9dade;

    box-shadow:
        0 14px 35px rgba(20, 25, 35, 0.10);

    transform: translateY(-4px);
}


.is-industry-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.65s ease;
}


.is-industry-card:hover .is-industry-card-image img {
    transform: scale(1.045);
}


/* =========================================================
 CARD NUMBER
========================================================= */

.is-industry-number {
    position: absolute;

    top: 14px;
    left: 14px;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(20, 20, 20, 0.08);

    color: #20242b;

    font-size: 11px;

    font-weight: 700;

    border-radius: 50%;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.08);

    z-index: 2;
}


/* =========================================================
 CARD CONTENT
========================================================= */

.is-industry-card-content {
    padding: 21px 5px 8px;

    text-align: center;
}


.is-industry-category {
    display: block;

    margin-bottom: 8px;

    color: #0661af;

    font-size: 9px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 1.4px;
}


.is-industry-card-content h3 {
    margin: 0 auto;

    color: #181b21;

    font-size: 18px;

    line-height: 1.35;

    font-weight: 700;
}


.is-industry-card-content p {
    max-width: 275px;

    margin: 10px auto 0;

    color: #70757d;

    font-size: 12px;

    line-height: 1.65;
}


/* =========================================================
 ARROWS
========================================================= */

.is-industry-arrow {
    width: 44px;
    height: 44px;

    min-width: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #dedfe2;

    background: #ffffff;

    color: #33373e;

    border-radius: 50%;

    cursor: pointer;

    font-size: 19px;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.07);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.is-industry-arrow:hover {
    background: #0661af;

    border-color: #0661af;

    color: #ffffff;

    transform: scale(1.06);
}


.is-industry-arrow span {
    line-height: 1;
}


/* =========================================================
 BOTTOM PROGRESS
========================================================= */

.is-industry-bottom {
    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 38px;
}


.is-industry-progress {
    position: relative;

    width: 100%;

    height: 2px;

    background: #e6e7e9;

    overflow: hidden;
}


.is-industry-progress-bar {
    position: absolute;

    left: 0;
    top: 0;

    width: 25%;

    height: 100%;

    background: #0661af;

    transition: width 0.5s ease;
}


.is-industry-counter {
    display: flex;

    align-items: center;

    gap: 6px;

    flex-shrink: 0;

    color: #a0a4aa;

    font-size: 12px;
}


.is-industry-counter strong {
    color: #181b21;

    font-size: 13px;
}


/* =========================================================
 TABLET
========================================================= */

@media (max-width: 1100px) {

    .is-industry-card {
        flex: 0 0 33.333333%;
    }

}


/* =========================================================
 SMALL TABLET
========================================================= */

@media (max-width: 850px) {

    .is-industry-section {
        padding: 70px 0 75px;
    }


    .is-industry-card {
        flex: 0 0 50%;
    }


    .is-industry-card-image {
        height: 250px;
    }


    .is-industry-slider-wrap {
        gap: 10px;
    }


    .is-industry-arrow {
        width: 40px;
        height: 40px;

        min-width: 40px;
    }

}


/* =========================================================
 MOBILE
========================================================= */

@media (max-width: 600px) {

    .is-industry-section {
        padding: 60px 0 65px;
    }


    .is-industry-header {
        margin-bottom: 30px;
    }


    .is-industry-header h2 {
        font-size: 34px;

        letter-spacing: -0.6px;
    }


    .is-industry-header p {
        font-size: 14px;

        line-height: 1.7;
    }


    .is-industry-card {
        flex: 0 0 100%;
    }


    .is-industry-card-image {
        height: 260px;
    }


    .is-industry-card-content h3 {
        font-size: 20px;
    }


    .is-industry-arrow {
        position: absolute;

        top: 105px;

        z-index: 5;

        width: 40px;
        height: 40px;

        min-width: 40px;
    }


    .is-industry-prev {
        left: 10px;
    }


    .is-industry-next {
        right: 10px;
    }


    .is-industry-bottom {
        margin-top: 28px;
    }

}

/* Main Section */
.infoseal-tech-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    padding: 50px 0px;
}


/* Content Container */
.infoseal-tech-container {
    position: relative;
    z-index: 2;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 58px;
}


/* Heading Area */
.infoseal-tech-heading {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px 32px;
}


.infoseal-tech-heading h2 {
    margin: 0 0 15px;
    color: #050505;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.7px;
}


.infoseal-tech-heading h2 span {
    color: #0878c9;
}


.infoseal-tech-heading p {
    max-width: 1120px;
    margin: 0 auto;
    color: #111111;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
}


/* Carousel */
.infoseal-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #edf3f6;
}


.infoseal-slides {
    position: relative;
    width: 100%;
    height: 495px;
}


/* Individual Slide */
.infoseal-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(25px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        visibility 0.7s ease;
}


.infoseal-slide-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}


/* Slide Image */
.infoseal-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}


/* Caption */
.infoseal-slide-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 5;
    min-height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 60px;
    background: rgba(255, 255, 255, 0.92);
    color: #333333;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
}


/* Arrows */
.infoseal-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 45px;
    height: 70px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transform: translateY(-50%);
    transition: all 0.25s ease;
}


.infoseal-carousel-arrow span {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 42px;
    font-weight: 200;
    line-height: 1;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.35);
}


.infoseal-carousel-prev {
    left: 48px;
}


.infoseal-carousel-next {
    right: 48px;
}


.infoseal-carousel-arrow:hover {
    color: #ffffff;
    transform: translateY(-50%) scale(1.12);
}


/* Bottom Dots */
.infoseal-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 52px;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transform: translateX(-50%);
}


.infoseal-dot {
    width: 22px;
    height: 2px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: all 0.3s ease;
}


.infoseal-dot-active {
    width: 36px;
    background: #ffffff;
}


.infoseal-dot:hover {
    background: #ffffff;
}


/* Decorative Curved Lines */
.infoseal-tech-lines {
    position: absolute;
    z-index: 1;
    width: 430px;
    height: 800px;
    pointer-events: none;
    opacity: 0.55;
}


.infoseal-tech-lines::before,
.infoseal-tech-lines::after {
    content: "";
    position: absolute;
    inset: -100px;
    background:
        repeating-radial-gradient(ellipse at center,
            transparent 0,
            transparent 17px,
            rgba(42, 137, 207, 0.30) 18px,
            transparent 19px);
    transform: rotate(-20deg);
}


.infoseal-tech-lines-left {
    left: -270px;
    top: -310px;
    transform: rotate(8deg);
}


.infoseal-tech-lines-right {
    right: -270px;
    top: -310px;
    transform: rotate(-8deg);
}


/* ================= TABLET ================= */
@media (max-width: 991px) {

    .infoseal-tech-container {
        padding: 0 30px;
    }

    .infoseal-tech-heading h2 {
        font-size: 32px;
    }

    .infoseal-tech-heading p {
        font-size: 12px;
    }

    .infoseal-slides {
        height: 430px;
    }

    .infoseal-carousel-prev {
        left: 15px;
    }

    .infoseal-carousel-next {
        right: 15px;
    }

}


/* ================= MOBILE ================= */
@media (max-width: 767px) {

    .infoseal-tech-container {
        padding: 0 15px;
    }

    .infoseal-tech-heading {
        padding: 0 8px 22px;
    }

    .infoseal-tech-heading h2 {
        font-size: 27px;
        line-height: 1.2;
        letter-spacing: -0.4px;
    }

    .infoseal-tech-heading p {
        font-size: 11px;
        line-height: 1.55;
    }

    .infoseal-slides {
        height: 310px;
    }

    .infoseal-carousel-arrow {
        width: 35px;
        height: 55px;
    }

    .infoseal-carousel-arrow span {
        font-size: 34px;
    }

    .infoseal-carousel-prev {
        left: 4px;
    }

    .infoseal-carousel-next {
        right: 4px;
    }

    .infoseal-slide-caption {
        min-height: 43px;
        padding: 8px 35px;
        font-size: 11px;
    }

    .infoseal-carousel-dots {
        bottom: 44px;
        gap: 4px;
    }

    .infoseal-dot {
        width: 15px;
    }

    .infoseal-dot-active {
        width: 27px;
    }

    .infoseal-tech-lines {
        opacity: 0.3;
    }

}


/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

    .infoseal-tech-heading h2 {
        font-size: 23px;
    }

    .infoseal-tech-heading p {
        font-size: 10px;
    }

    .infoseal-slides {
        height: 250px;
    }

    .infoseal-slide-caption {
        font-size: 10px;
    }

}

/* =========================================================
   INFOSEAL PREMIUM FOOTER
========================================================= */

.infoseal-ftx-footer {
    position: relative;
    overflow: hidden;
    background: #061a31;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    padding: 80px 0 0;
}


/* Background Glow */

.infoseal-ftx-glow {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.12;
}

.infoseal-ftx-glow-one {
    top: -250px;
    right: -120px;
    background: #087fc9;
}

.infoseal-ftx-glow-two {
    bottom: 150px;
    left: -300px;
    background: #0b4f8a;
}


/* Main Container */

.infoseal-ftx-footer .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.infoseal-ftx-main {
    display: grid;
    grid-template-columns: 1.45fr 0.75fr 1.1fr 1.1fr;
    gap: 50px;
    padding-bottom: 65px;
}


/* Brand */

.infoseal-ftx-brand {
    max-width: 380px;
}


/* Logo Card */

.infoseal-ftx-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    min-height: 105px;
    padding: 12px 18px;
    margin-bottom: 25px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}


.infoseal-ftx-logo-box img {
    display: block;
    width: 100%;
    max-width: 245px;
    height: auto;
}


/* Brand Description */

.infoseal-ftx-brand-text {
    margin: 0 0 26px;
    color: #b8c8d8;
    font-size: 14px;
    line-height: 1.8;
}


/* Brand Button */

.infoseal-ftx-brand-btn {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 13px 20px;
    border: 1px solid rgba(73, 166, 225, 0.5);
    border-radius: 4px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}


.infoseal-ftx-brand-btn span {
    color: #28a9ee;
    font-size: 17px;
}


.infoseal-ftx-brand-btn:hover {
    background: #087fc9;
    border-color: #087fc9;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.infoseal-ftx-column h3 {
    margin: 4px 0 13px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
}


.infoseal-ftx-heading-line {
    width: 35px;
    height: 2px;
    margin-bottom: 20px;
    background: #0796dc;
}


.infoseal-ftx-column ul {
    padding: 0;
    margin: 0;
    list-style: none;
}


.infoseal-ftx-column li {
    margin-bottom: 11px;
}


.infoseal-ftx-column li a {
    position: relative;
    display: inline-block;
    color: #aebfd0;
    font-size: 13px;
    line-height: 1.45;
    text-decoration: none;
    transition: all 0.25s ease;
}


.infoseal-ftx-column li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: #16a8eb;
    transition: width 0.25s ease;
}


.infoseal-ftx-column li a:hover {
    color: #ffffff;
    transform: translateX(3px);
}


.infoseal-ftx-column li a:hover::before {
    width: 100%;
}


/* =========================================================
   TECHNOLOGY STRIP
========================================================= */

.infoseal-ftx-middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 34px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


.infoseal-ftx-middle-title {
    max-width: 400px;
}


.infoseal-ftx-small-label {
    display: block;
    margin-bottom: 9px;
    color: #159cdb;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}


.infoseal-ftx-middle-title h3 {
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 500;
}


.infoseal-ftx-middle-title h3 span {
    color: #24a8e9;
}


.infoseal-ftx-tech-list {
    display: flex;
    align-items: center;
    gap: 8px;
}


.infoseal-ftx-tech-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 175px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 4px;
    color: #d3dfea;
    font-size: 11px;
    text-decoration: none;
    transition: all 0.3s ease;
}


.infoseal-ftx-tech-list a:hover {
    background: rgba(8, 127, 201, 0.13);
    border-color: rgba(29, 157, 219, 0.5);
    color: #ffffff;
}


.infoseal-ftx-tech-number {
    color: #168fc9;
    font-size: 10px;
    font-weight: 700;
}


.infoseal-ftx-arrow {
    margin-left: auto;
    color: #168fc9;
    font-size: 15px;
}


/* =========================================================
   INDUSTRIES
========================================================= */

.infoseal-ftx-industries {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 42px 0;
}


.infoseal-ftx-industry-title {
    max-width: 340px;
}


.infoseal-ftx-industry-title>span {
    display: block;
    margin-bottom: 8px;
    color: #159cdb;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
}


.infoseal-ftx-industry-title h3 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
}


.infoseal-ftx-industry-title strong {
    color: #20a4e5;
    font-weight: 600;
}


.infoseal-ftx-industry-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    max-width: 650px;
}


.infoseal-ftx-industry-items a {
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: #afc1d2;
    font-size: 11px;
    text-decoration: none;
    transition: all 0.25s ease;
}


.infoseal-ftx-industry-items a:hover {
    border-color: #168fc9;
    background: #087fc9;
    color: #ffffff;
}


/* =========================================================
   CONTACT CTA
========================================================= */

.infoseal-ftx-contact {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 34px 35px;
    margin-bottom: 40px;
    overflow: hidden;
    border: 1px solid rgba(43, 158, 216, 0.28);
    border-radius: 8px;
    background: linear-gradient(105deg,
            rgba(8, 127, 201, 0.14),
            rgba(255, 255, 255, 0.025));
}


.infoseal-ftx-contact::after {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(38, 163, 220, 0.18);
    border-radius: 50%;
}


.infoseal-ftx-contact-content {
    position: relative;
    z-index: 2;
}


.infoseal-ftx-contact-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.3;
    font-weight: 500;
}


.infoseal-ftx-contact-content h2 span {
    color: #20a5e6;
}


.infoseal-ftx-contact-actions {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 18px;
}


.infoseal-ftx-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
}


.infoseal-ftx-contact-item small {
    display: block;
    margin-bottom: 2px;
    color: #7890a5;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.infoseal-ftx-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    border: 1px solid rgba(27, 155, 216, 0.4);
    border-radius: 50%;
    color: #1ca5e8;
    font-size: 13px;
}


.infoseal-ftx-enquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 19px;
    border-radius: 4px;
    background: #087fc9;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}


.infoseal-ftx-enquiry-btn span {
    font-size: 16px;
}


.infoseal-ftx-enquiry-btn:hover {
    background: #0997df;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================================
   BOTTOM BAR
========================================================= */

.infoseal-ftx-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 25px;
    min-height: 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}


.infoseal-ftx-copyright {
    color: #fff;
    font-size: 14px;
}


.infoseal-ftx-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}


.infoseal-ftx-bottom-links a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.25s ease;
}


.infoseal-ftx-bottom-links a:hover {
    color: #1da4e5;
}


.infoseal-ftx-bottom-links span {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #496175;
}


.infoseal-ftx-social {
    display: flex;
    justify-content: flex-end;
    gap: 7px;
}


.infoseal-ftx-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}


.infoseal-ftx-social a:hover {
    border-color: #159cdb;
    background: #087fc9;
    color: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .infoseal-ftx-main {
        grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
        gap: 30px;
    }

    .infoseal-ftx-tech-list a {
        min-width: 145px;
    }

    .infoseal-ftx-contact {
        flex-direction: column;
        align-items: flex-start;
    }

    .infoseal-ftx-contact-actions {
        width: 100%;
        justify-content: space-between;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 991px) {

    .infoseal-ftx-footer {
        padding-top: 60px;
    }

    .infoseal-ftx-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 35px;
    }

    .infoseal-ftx-brand {
        max-width: 100%;
    }

    .infoseal-ftx-middle {
        flex-direction: column;
        align-items: flex-start;
    }

    .infoseal-ftx-tech-list {
        width: 100%;
        flex-wrap: wrap;
    }

    .infoseal-ftx-tech-list a {
        flex: 1 1 200px;
    }

    .infoseal-ftx-industries {
        flex-direction: column;
        align-items: flex-start;
    }

    .infoseal-ftx-industry-items {
        justify-content: flex-start;
        max-width: 100%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .infoseal-ftx-footer {
        padding-top: 50px;
    }

    .infoseal-ftx-main {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-bottom: 45px;
    }

    .infoseal-ftx-logo-box {
        width: 240px;
        min-height: 90px;
    }

    .infoseal-ftx-logo-box img {
        max-width: 210px;
    }

    .infoseal-ftx-brand-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .infoseal-ftx-column h3 {
        font-size: 15px;
    }

    .infoseal-ftx-column li a {
        font-size: 12px;
    }

    .infoseal-ftx-middle {
        padding: 30px 0;
    }

    .infoseal-ftx-middle-title h3 {
        font-size: 20px;
    }

    .infoseal-ftx-tech-list {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .infoseal-ftx-tech-list a {
        width: 100%;
        box-sizing: border-box;
    }

    .infoseal-ftx-industries {
        padding: 35px 0;
    }

    .infoseal-ftx-industry-items {
        gap: 7px;
    }

    .infoseal-ftx-industry-items a {
        font-size: 10px;
        padding: 9px 12px;
    }

    .infoseal-ftx-contact {
        padding: 27px 20px;
        margin-bottom: 30px;
    }

    .infoseal-ftx-contact-content h2 {
        font-size: 22px;
    }

    .infoseal-ftx-contact-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .infoseal-ftx-enquiry-btn {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    .infoseal-ftx-bottom {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 22px 0;
        text-align: center;
    }

    .infoseal-ftx-bottom-links {
        justify-content: center;
    }

    .infoseal-ftx-social {
        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .infoseal-ftx-footer {
        padding-top: 40px;
    }

    .infoseal-ftx-logo-box {
        width: 210px;
        min-height: 80px;
    }

    .infoseal-ftx-logo-box img {
        max-width: 185px;
    }

    .infoseal-ftx-contact-content h2 {
        font-size: 20px;
    }

    .infoseal-ftx-industry-items a {
        font-size: 9px;
    }

}

/* =========================================================
   INFOSEAL PREMIUM SERVICE SLIDER
========================================================= */

.is-service-hero {

    position: relative;

    width: 100%;

    height: min(530px, 78vh);

    min-height: 530px;

    overflow: hidden;

    background: #081522;

}


/* =========================================================
   SLIDER
========================================================= */

.is-service-slider {

    position: relative;

    width: 100%;

    height: 100%;

}


/* =========================================================
   INDIVIDUAL SLIDE
========================================================= */

.is-service-slide {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.85s ease,
        visibility 0.85s ease;

}


.is-service-slide-active {

    opacity: 1;

    visibility: visible;

    z-index: 2;

}


/* =========================================================
   IMAGE
========================================================= */

.is-service-slide-image {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    overflow: hidden;

}


.is-service-slide-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: 100% 100%;

    object-position: center;

    transform: scale(1.04);

    transition:
        transform 7s cubic-bezier(0.2, 0.65, 0.3, 1);

}


.is-service-slide-active .is-service-slide-image img {

    transform: scale(1);

}


/* =========================================================
   PREMIUM OVERLAY
========================================================= */

.is-service-slide-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(90deg,
            rgba(5, 17, 28, 0.91) 0%,
            rgba(5, 17, 28, 0.76) 28%,
            rgba(5, 17, 28, 0.38) 56%,
            rgba(5, 17, 28, 0.12) 100%);

}


/* Bottom fade */

.is-service-slide-overlay::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 35%;

    background:
        linear-gradient(0deg,
            rgba(4, 13, 22, 0.55),
            transparent);

}


/* =========================================================
   CONTENT CONTAINER
========================================================= */

.is-service-slide-container {

    position: relative;

    z-index: 3;

    height: 100%;

    display: flex;

    align-items: center;

}


.is-service-slide-content {

    width: 100%;

    max-width: 550px;

    padding-bottom: 45px;

}


/* =========================================================
   EYEBROW
========================================================= */

.is-service-slide-eyebrow {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: #ffffff;

    font-size: 10px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 2.6px;

    text-transform: uppercase;

}


.is-service-slide-eyebrow::before {

    content: "";

    width: 34px;

    height: 2px;

    background: #df202d;

}


/* =========================================================
   HEADING
========================================================= */

.is-service-slide-content h1 {

    max-width: 720px;

    margin: 0;

    color: #ffffff;

    font-size: 40px;

    line-height: 1.03;

    font-weight: 700;

    letter-spacing: -2.5px;

}


.is-service-slide-content h1 span {

    color: #5d96ce;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.is-service-slide-content p {

    max-width: 610px;

    margin: 25px 0 32px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================================
   CTA AREA
========================================================= */

.is-service-slide-actions {

    display: flex;

    align-items: center;

    gap: 14px;

}


/* =========================================================
   MAIN CTA
========================================================= */

.is-service-main-cta {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 14px;

    min-height: 51px;

    padding: 0 7px 0 22px;

    background: #ffffff;

    border: 1px solid #ffffff;

    color: #121a22;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.7px;

    overflow: hidden;

    transition:
        color 0.35s ease,
        border-color 0.35s ease;

}


.is-service-main-cta::before {

    content: "";

    position: absolute;

    inset: 0;

    width: 0;

    background: #1766ae;

    transition: width 0.4s ease;

}


.is-service-main-cta span {

    position: relative;

    z-index: 2;

}


.is-service-main-cta-arrow {

    position: relative;

    z-index: 2;

    width: 37px;

    height: 37px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #1766ae;

    color: #ffffff;

    font-size: 17px;

    transition:
        transform 0.35s ease,
        background 0.35s ease;

}


.is-service-main-cta:hover {

    color: #ffffff;

}


.is-service-main-cta:hover::before {

    width: 100%;

}


.is-service-main-cta:hover .is-service-main-cta-arrow {

    transform: translateX(2px);

    background: rgba(255, 255, 255, 0.15);

}


/* =========================================================
   SECONDARY CTA
========================================================= */

.is-service-secondary-cta {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 51px;

    padding: 0 22px;

    border: 1px solid rgba(255, 255, 255, 0.34);

    color: #ffffff;

    background: rgba(255, 255, 255, 0.04);

    backdrop-filter: blur(5px);

    text-decoration: none;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.6px;

    transition:
        background 0.35s ease,
        border-color 0.35s ease;

}


.is-service-secondary-cta:hover {

    color: #ffffff;

    background: rgba(255, 255, 255, 0.10);

    border-color: rgba(255, 255, 255, 0.65);

}


/* =========================================================
   BOTTOM CONTROLS
========================================================= */

.is-service-slider-controls {

    position: absolute;

    z-index: 5;

    left: 50%;

    bottom: 45px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.is-service-control-left {

    display: flex;

    align-items: center;

    gap: 25px;

}


/* =========================================================
   COUNTER
========================================================= */

.is-service-counter {

    display: flex;

    align-items: baseline;

    gap: 5px;

    min-width: 65px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 11px;

}


.is-service-counter strong {

    color: #ffffff;

    font-size: 17px;

    font-weight: 600;

}


/* =========================================================
   PROGRESS
========================================================= */

.is-service-progress {

    position: relative;

    width: 150px;

    height: 1px;

    background: rgba(255, 255, 255, 0.25);

    overflow: hidden;

}


.is-service-progress-fill {

    position: absolute;

    left: 0;

    top: 0;

    width: 33.333%;

    height: 100%;

    background: #ffffff;

    transition:
        width 0.45s ease;

}


/* =========================================================
   NAVIGATION
========================================================= */

.is-service-navigation {

    display: flex;

    align-items: center;

    gap: 8px;

}


.is-service-nav-btn {

    width: 49px;

    height: 49px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.30);

    border-radius: 50%;

    background: rgba(7, 18, 29, 0.35);

    color: #ffffff;

    backdrop-filter: blur(7px);

    cursor: pointer;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;

}


.is-service-nav-btn span {

    font-size: 18px;

    line-height: 1;

}


.is-service-nav-btn:hover {

    background: #1766ae;

    border-color: #1766ae;

    transform: translateY(-2px);

}


/* =========================================================
   DOTS
========================================================= */

.is-service-dots {

    position: absolute;

    z-index: 6;

    right: 42px;

    top: 50%;

    transform: translateY(-50%);

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.is-service-dot {

    position: relative;

    width: 7px;

    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.38);

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;

}


.is-service-dot-active {

    background: #ffffff;

    transform: scale(1.45);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .is-service-hero {

        height: 550px;

        min-height: 555px;

    }


    .is-service-slide-content {

        max-width: 550px;

    }


    .is-service-slide-content h1 {

        font-size: clamp(43px, 7vw, 65px);

    }


    .is-service-slide-content p {

        max-width: 540px;

    }


    .is-service-dots {

        right: 22px;

    }


    .is-service-progress {

        width: 110px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .is-service-hero {

        height: 550px;

    }


    .is-service-slide-image img {

        object-position: center;

    }


    .is-service-slide-overlay {

        background:

            linear-gradient(90deg,
                rgba(5, 17, 28, 0.88) 0%,
                rgba(5, 17, 28, 0.65) 65%,
                rgba(5, 17, 28, 0.30) 100%);

    }


    .is-service-slide-container {

        align-items: flex-start;

        padding-top: 145px;

    }


    .is-service-slide-content {

        padding: 0 10px 110px;

    }


    .is-service-slide-eyebrow {

        margin-bottom: 16px;

        font-size: 9px;

        letter-spacing: 2px;

    }


    .is-service-slide-content h1 {

        font-size: 43px;

        line-height: 1.08;

        letter-spacing: -1.5px;

    }


    .is-service-slide-content p {

        margin: 20px 0 26px;

        font-size: 13px;

        line-height: 1.7;

    }


    .is-service-slide-actions {

        flex-wrap: wrap;

    }


    .is-service-main-cta,
    .is-service-secondary-cta {

        min-height: 47px;

    }


    .is-service-slider-controls {

        bottom: 27px;

    }


    .is-service-control-left {

        gap: 14px;

    }


    .is-service-progress {

        width: 75px;

    }


    .is-service-nav-btn {

        width: 43px;

        height: 43px;

    }


    .is-service-dots {

        right: 14px;

        top: 50%;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .is-service-hero {

        height: 550px;

        min-height: 550px;

    }


    .is-service-slide-container {

        padding-top: 60px;

    }


    .is-service-slide-content h1 {

        font-size: 37px;

    }


    .is-service-slide-content p {

        font-size: 12.5px;

    }


    .is-service-secondary-cta {

        padding: 0 16px;

    }


    .is-service-slider-controls {

        bottom: 22px;

    }


    .is-service-dots {

        display: none;

    }

}


/* =========================================================
   INFOSEAL - OUR SOLUTIONS
========================================================= */

.is-solutions-section {

    position: relative;

    padding: 50px 0 40px;

    background: #efefef;

    overflow: hidden;

}


/* =========================================================
   SECTION HEADER
========================================================= */

.is-solutions-header {

    position: relative;

    z-index: 2;

    max-width: 760px;

    margin: 0 auto 58px;

    text-align: center;

}


.is-solutions-eyebrow {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 13px;

    color: #1766ae;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.is-solutions-eyebrow::before {

    content: "";

    width: 25px;

    height: 2px;

    background: #df202d;

}


.is-solutions-header h2 {

    margin: 0;

    color: #15191f;

    font-size: 35px;

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1.5px;

}


.is-solutions-header h2 span {

    color: #1766ae;

}


.is-solutions-header p {

    max-width: 650px;

    margin: 18px auto 0;

    color: #68727e;

    font-size: 14px;

    line-height: 1.75;

}


/* =========================================================
   SOLUTION ROW
========================================================= */

.is-solution-row {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 365px;

    margin-bottom: 25px;

    background: #ffffff;

    border: 1px solid #e2e6ea;

    overflow: hidden;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;

}


.is-solution-row:last-child {

    margin-bottom: 0;

}


.is-solution-row:hover {

    transform: translateY(-4px);

    border-color: #d7dce1;

    box-shadow:
        0 18px 45px rgba(18, 32, 48, 0.09);

}


/* =========================================================
   REVERSE ROW
========================================================= */

.is-solution-row-reverse .is-solution-visual {

    order: 2;

}


.is-solution-row-reverse .is-solution-info {

    order: 1;

}


/* =========================================================
   IMAGE
========================================================= */

.is-solution-visual {

    position: relative;

    min-height: 365px;

    overflow: hidden;

    background: #e9edf1;

}


.is-solution-visual img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);

}


.is-solution-row:hover .is-solution-visual img {

    transform: scale(1.035);

}


/* =========================================================
   IMAGE DARK GRADIENT
========================================================= */

.is-solution-visual::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(7, 19, 31, 0.02) 35%,
            rgba(7, 19, 31, 0.22) 100%);

    pointer-events: none;

}


/* =========================================================
   NUMBER BADGE
========================================================= */

.is-solution-index {

    position: absolute;

    right: 22px;

    bottom: 22px;

    z-index: 3;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 52px;

    height: 52px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.96);

    color: #151b22;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.5px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.15);

}


/* =========================================================
   CONTENT AREA
========================================================= */

.is-solution-info {

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 55px 35px;

    background: #ffffff;

}


/* Small vertical accent */

.is-solution-info::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    width: 3px;

    height: 55px;

    background: #1766ae;

    transform: translateY(-50%);

}


/* =========================================================
   CATEGORY
========================================================= */

.is-solution-label {

    display: inline-block;

    margin-bottom: 13px;

    color: #1766ae;

    font-size: 9px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 2px;

}


/* =========================================================
   TITLE
========================================================= */

.is-solution-info h3 {

    max-width: 500px;

    margin: 0;

    color: #171b21;

    font-size: 30px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -0.6px;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.is-solution-info p {

    max-width: 520px;

    margin: 17px 0 27px;

    color: #000;

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================================
   PREMIUM CTA
========================================================= */

.is-solution-btn {

    position: relative;

    display: inline-flex;

    align-items: center;

    align-self: flex-start;

    gap: 14px;

    min-height: 45px;

    padding: 0 6px 0 19px;

    border: 1px solid #d6dce2;

    border-radius: 3px;

    background: #ffffff;

    color: #171b21;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 0.6px;

    overflow: hidden;

    transition:
        color 0.35s ease,
        border-color 0.35s ease;

}


.is-solution-btn::before {

    content: "";

    position: absolute;

    inset: 0;

    width: 0;

    background: #1766ae;

    transition: width 0.4s ease;

}


.is-solution-btn>span {

    position: relative;

    z-index: 2;

}


.is-solution-btn-arrow {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 33px;

    height: 33px;

    background: #1766ae;

    color: #ffffff;

    font-size: 16px;

    transition:
        transform 0.35s ease,
        background 0.35s ease;

}


.is-solution-btn:hover {

    color: #ffffff;

    border-color: #1766ae;

}


.is-solution-btn:hover::before {

    width: 100%;

}


.is-solution-btn:hover .is-solution-btn-arrow {

    transform: translateX(2px);

    background: rgba(255, 255, 255, 0.18);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .is-solutions-section {

        padding: 45px 0 40px;

    }


    .is-solutions-header {

        margin-bottom: 42px;

    }


    .is-solution-row {

        min-height: 330px;

    }


    .is-solution-visual {

        min-height: 330px;

    }


    .is-solution-info {

        padding: 42px 40px;

    }


    .is-solution-info h3 {

        font-size: 27px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .is-solutions-section {

        padding: 60px 0 70px;

    }


    .is-solutions-header {

        margin-bottom: 32px;

        padding: 0 8px;

    }


    .is-solutions-header h2 {

        font-size: 32px;

        letter-spacing: -1px;

    }


    .is-solutions-header p {

        margin-top: 15px;

        font-size: 13px;

        line-height: 1.7;

    }


    /* -----------------------------------------
       ONE COLUMN
    ----------------------------------------- */

    .is-solution-row {

        display: flex;

        flex-direction: column;

        min-height: auto;

        margin-bottom: 20px;

    }


    /* Reset reverse order */

    .is-solution-row-reverse .is-solution-visual {

        order: 1;

    }


    .is-solution-row-reverse .is-solution-info {

        order: 2;

    }


    /* -----------------------------------------
       IMAGE
    ----------------------------------------- */

    .is-solution-visual {

        width: 100%;

        height: 260px;

        min-height: 260px;

    }


    .is-solution-index {

        right: 16px;

        bottom: 16px;

        width: 46px;

        height: 46px;

    }


    /* -----------------------------------------
       CONTENT
    ----------------------------------------- */

    .is-solution-info {

        min-height: 265px;

        padding: 31px 25px 32px;

    }


    .is-solution-info::before {

        top: 31px;

        left: 0;

        width: 3px;

        height: 42px;

        transform: none;

    }


    .is-solution-info h3 {

        font-size: 24px;

        line-height: 1.25;

    }


    .is-solution-info p {

        margin: 13px 0 22px;

        font-size: 13px;

        line-height: 1.7;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .is-solutions-section {

        padding: 52px 0 60px;

    }


    .is-solutions-header h2 {

        font-size: 33px;

    }


    .is-solutions-eyebrow {

        font-size: 9px;

        letter-spacing: 1.6px;

    }


    .is-solution-visual {

        height: 230px;

        min-height: 230px;

    }


    .is-solution-info {

        min-height: 250px;

        padding: 28px 22px 30px;

    }


    .is-solution-info h3 {

        font-size: 22px;

    }


    .is-solution-btn {

        min-height: 43px;

    }

}

/* =========================================================
 INFOSEAL — PREMIUM ABOUT BREADCRUMB
========================================================= */

.is-about-breadcrumb {

    position: relative;

    width: 100%;

    /* intentionally compact */
    padding: 30px 0 32px;

    overflow: hidden;

    background:
        linear-gradient(110deg,
            #061522 0%,
            #0a2032 48%,
            #071724 100%);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

}


/* =========================================================
 SUBTLE BACKGROUND DETAIL
========================================================= */

.is-about-breadcrumb::before {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -190px;
    right: 5%;

    border-radius: 50%;

    background: rgba(35, 105, 168, 0.12);

    filter: blur(35px);

    pointer-events: none;

}


.is-about-breadcrumb::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 150px;
    height: 2px;

    background:
        linear-gradient(90deg,
            #df202d,
            #1766ae,
            transparent);

}


/* =========================================================
 INNER
========================================================= */

.is-about-breadcrumb-inner {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* =========================================================
 LEFT CONTENT
========================================================= */

.is-about-breadcrumb-content {

    display: flex;

    align-items: center;

    gap: 17px;

}


/* =========================================================
 SMALL LABEL
========================================================= */

.is-about-breadcrumb-label {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: rgba(255, 255, 255, 0.52);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;

}


.is-about-breadcrumb-label::before {

    content: "";

    width: 24px;

    height: 1px;

    background: #df202d;

}


/* =========================================================
 PAGE TITLE
========================================================= */

.is-about-breadcrumb-content h1 {

    position: relative;

    margin: 0;

    padding-left: 17px;

    color: #ffffff;

    font-size: 28px;

    line-height: 1.1;

    font-weight: 600;

    letter-spacing: -0.8px;

}


/* vertical separator */

.is-about-breadcrumb-content h1::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    width: 1px;

    height: 27px;

    transform: translateY(-50%);

    background: rgba(255, 255, 255, 0.20);

}


/* =========================================================
 BREADCRUMB NAVIGATION
========================================================= */

.is-about-breadcrumb-nav {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 11px;

    white-space: nowrap;

    font-size: 11px;

    letter-spacing: 0.3px;

}


/* Home */

.is-about-breadcrumb-nav a {

    color: rgba(255, 255, 255, 0.58);

    text-decoration: none;

    transition:
        color 0.3s ease;

}


.is-about-breadcrumb-nav a:hover {

    color: #ffffff;

}


/* Slash */

.is-about-breadcrumb-divider {

    color: rgba(255, 255, 255, 0.25);

}


/* Current */

.is-about-breadcrumb-current {

    color: #ffffff;

    font-weight: 600;

}


/* =========================================================
 TABLET
========================================================= */

@media (max-width: 991px) {

    .is-about-breadcrumb {

        padding: 27px 0 29px;

    }


    .is-about-breadcrumb-content h1 {

        font-size: 30px;

    }

}


/* =========================================================
 MOBILE
========================================================= */

@media (max-width: 767px) {

    .is-about-breadcrumb {

        padding: 23px 0 25px;

    }


    .is-about-breadcrumb-inner {

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;

    }


    .is-about-breadcrumb-content {

        gap: 13px;

    }


    .is-about-breadcrumb-label {

        font-size: 8px;

        letter-spacing: 2px;

    }


    .is-about-breadcrumb-label::before {

        width: 18px;

    }


    .is-about-breadcrumb-content h1 {

        font-size: 27px;

        padding-left: 13px;

    }


    .is-about-breadcrumb-content h1::before {

        height: 23px;

    }


    .is-about-breadcrumb-nav {

        justify-content: flex-start;

        font-size: 10px;

        padding-left: 31px;

    }

}


/* =========================================================
 SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .is-about-breadcrumb {

        padding: 21px 0 23px;

    }


    .is-about-breadcrumb-content h1 {

        font-size: 25px;

    }

}


.float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 60px;
    right: 15px;
    /* color: #FFF; */
    background-color: none !important;
    text-align: center;
    font-size: 30px;
    z-index: 999;
}

.float1 {
    bottom: 130px;
}

/* ================= PRELOADER ================= */

#site-preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Preloader Hide State */
#site-preloader.preloader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Logo Wrapper */
.preloader-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

/* Logo */
.preloader-logo {
    height: 120px;
    display: block;
    object-fit: contain;

    /* Smooth Zoom Animation */
    animation: logoZoom 1.6s ease-in-out infinite;
    transform-origin: center center;

    will-change: transform;
}


/* ================= LOGO ZOOM ================= */

@keyframes logoZoom {

    0% {
        transform: scale(0.78);
        opacity: 0.75;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }

    100% {
        transform: scale(0.78);
        opacity: 0.75;
    }

}


/* ================= MOBILE ================= */

@media (max-width: 767px) {

    .preloader-logo-wrap {
        height: 150px;
    }

    .preloader-logo {
        width: 125px;
    }

}

@keyframes logoZoom {

    0% {
        transform: scale(0.75);
        opacity: 0.65;
    }

    45% {
        transform: scale(1);
        opacity: 1;
    }

    60% {
        transform: scale(1.08);
        opacity: 1;
    }

    100% {
        transform: scale(0.75);
        opacity: 0.65;
    }

}

/* ==========================================
 INFOSEAL ABOUT US
 PRIMARY COLOR: #0661af
 TEXT COLOR: #000000
 NO BOOTSTRAP
========================================== */

.infoseal-about-section {
    width: 100%;
    padding: 50px 0px;
    background: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}

.infoseal-about-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.92fr);
    align-items: center;
    gap: 10px;
}


/* ==========================================
   LEFT CONTENT
  ========================================== */

.infoseal-about-content {
    position: relative;
    z-index: 2;
}

.infoseal-about-label {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 20px;

    color: #0661af;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.infoseal-about-label span {
    width: 38px;
    height: 2px;
    background: #0661af;
    display: inline-block;
}


.infoseal-about-content h2 {
    margin: 0;

    color: #000000;

    font-size: 35px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1.8px;
}

.infoseal-about-content h2 strong {
    color: #0661af;
    font-weight: 700;
}


.infoseal-about-divider {
    width: 68px;
    height: 4px;

    margin: 28px 0 30px;

    background: #0661af;
    border-radius: 20px;
}


.infoseal-about-content p {
    margin: 0 0 21px;

    max-width: 670px;

    color: #000000;

    font-size: 16px;
    line-height: 1.85;
    font-weight: 400;
}

.infoseal-about-content p:last-child {
    margin-bottom: 0;
}


/* ==========================================
   RIGHT IMAGE AREA
  ========================================== */

.infoseal-about-image-area {
    position: relative;

    min-height: 580px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* IMAGE */

.infoseal-image-frame {
    position: relative;
    z-index: 3;

    width: 86%;
    height: 500px;

    overflow: hidden;

    background: #f1f6fb;

    border-radius: 16px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.13);
}

.infoseal-image-frame::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(6, 97, 175, 0.12),
            transparent 45%);

    pointer-events: none;
}


.infoseal-image-frame img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.infoseal-image-frame:hover img {
    transform: scale(1.04);
}


/* ==========================================
   BLUE CIRCLE
  ========================================== */

.infoseal-blue-shape {
    position: absolute;

    width: 260px;
    height: 260px;

    top: 20px;
    right: 0;

    background: #0661af;

    opacity: 0.10;

    border-radius: 50%;

    z-index: 1;
}


/* ==========================================
   DOT / GRID PATTERN
  ========================================== */

.infoseal-image-pattern {
    position: absolute;

    width: 170px;
    height: 170px;

    bottom: 15px;
    left: 0;

    z-index: 1;

    background-image:
        radial-gradient(#0661af 1.2px,
            transparent 1.2px);

    background-size: 14px 14px;

    opacity: 0.30;
}


/* ==========================================
   FLOATING CARD
  ========================================== */

.infoseal-security-card {
    position: absolute;

    left: 0;
    bottom: 42px;

    z-index: 5;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 16px 22px 16px 16px;

    background: #ffffff;

    border-left: 4px solid #0661af;

    border-radius: 8px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.14);

    transition: transform 0.3s ease;
}

.infoseal-security-card:hover {
    transform: translateY(-5px);
}


.infoseal-security-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef6fc;

    color: #0661af;

    border-radius: 6px;

    flex-shrink: 0;
}

.infoseal-security-icon svg {
    width: 23px;
    height: 23px;
}


.infoseal-security-card strong {
    display: block;

    margin-bottom: 4px;

    color: #000000;

    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
}

.infoseal-security-card span {
    display: block;

    color: #666666;

    font-size: 11px;
    line-height: 1.3;
}


/* ==========================================
   TABLET
  ========================================== */

@media (max-width: 1050px) {

    .infoseal-about-section {
        padding: 50px 25px;
    }

    .infoseal-about-container {
        gap: 50px;
    }

    .infoseal-about-content h2 {
        font-size: 30px;
    }

    .infoseal-about-content p {
        font-size: 15px;
    }

    .infoseal-about-image-area {
        min-height: 500px;
    }

    .infoseal-image-frame {
        height: 440px;
    }

}


/* ==========================================
   MOBILE / TABLET
  ========================================== */

@media (max-width: 800px) {

    .infoseal-about-section {
        padding: 50px 0px;
    }

    .infoseal-about-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .infoseal-about-content {
        max-width: 720px;
        margin: 0 auto;
    }

    .infoseal-about-content h2 {
        font-size: 30px;
    }

    .infoseal-about-image-area {
        width: 100%;
        min-height: 480px;
        max-width: 680px;
        margin: 0 auto;
    }

    .infoseal-image-frame {
        width: 88%;
        height: 450px;
    }

}


/* ==========================================
   SMALL MOBILE
  ========================================== */

@media (max-width: 500px) {

    .infoseal-about-section {
        padding: 50px 0px;
    }

    .infoseal-about-container {
        gap: 10px;
    }

    .infoseal-about-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .infoseal-about-label span {
        width: 28px;
    }

    .infoseal-about-content h2 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .infoseal-about-divider {
        margin: 22px 0 24px;
    }

    .infoseal-about-content p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 18px;
    }

    .infoseal-about-image-area {
        min-height: 390px;
    }

    .infoseal-image-frame {
        width: 90%;
        height: 360px;
        border-radius: 12px;
    }

    .infoseal-blue-shape {
        width: 170px;
        height: 170px;
        top: 5px;
    }

    .infoseal-image-pattern {
        width: 120px;
        height: 120px;
    }

    .infoseal-security-card {
        left: 0;
        bottom: 15px;
        padding: 12px 16px 12px 12px;
    }

    .infoseal-security-icon {
        width: 38px;
        height: 38px;
    }

    .infoseal-security-icon svg {
        width: 19px;
        height: 19px;
    }

    .infoseal-security-card strong {
        font-size: 12px;
    }

    .infoseal-security-card span {
        font-size: 9px;
    }

}

/* =========================================
 INFOSEAL VISION & MISSION
 PRIMARY : #0661af
 TEXT    : #000000
 NO BOOTSTRAP
========================================= */

.infoseal-vm-section {
    position: relative;

    width: 100%;
    padding: 50px 0px;

    background: #f8fafc;

    overflow: hidden;
    box-sizing: border-box;
}

.infoseal-vm-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1240px;

    margin: 0 auto;
}


/* =========================================
 HEADING
========================================= */

.infoseal-vm-heading {
    max-width: 700px;
    margin-bottom: 30px;
}

.infoseal-vm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;

    color: #0661af;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.infoseal-vm-eyebrow::before {
    content: "";

    width: 38px;
    height: 2px;

    background: #0661af;
}


.infoseal-vm-heading h2 {
    margin: 0;

    color: #000000;

    font-size: 30px;
    line-height: 1.08;

    font-weight: 700;
    letter-spacing: -2px;
}

.infoseal-vm-heading h2 span {
    color: #0661af;
}


/* =========================================
 COMMON VISION / MISSION BLOCK
========================================= */

.infoseal-vm-block {
    position: relative;

    display: grid;

    grid-template-columns: 90px 220px minmax(0, 1fr);

    align-items: start;

    padding: 35px 20px;

    background: #ffffff;

    border: 1px solid #e5ebf1;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.infoseal-vm-block:hover {
    transform: translateY(-5px);

    border-color: rgba(6, 97, 175, 0.35);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.08);
}


/* =========================================
 NUMBER
========================================= */

.infoseal-vm-number {
    color: #0661af;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;

    padding-top: 8px;
}


/* =========================================
 TITLE
========================================= */

.infoseal-vm-title {
    position: relative;

    padding-left: 28px;

    border-left: 1px solid #d8e2eb;
}

.infoseal-vm-title span {
    display: block;

    margin-bottom: 3px;

    color: #777777;

    font-size: 14px;
    font-weight: 500;

    letter-spacing: 1px;
}

.infoseal-vm-title strong {
    display: block;

    color: #000000;

    font-size: 36px;
    line-height: 1.15;

    font-weight: 700;
}


/* =========================================
 CONTENT
========================================= */

.infoseal-vm-content {
    padding-left: 50px;
}


.infoseal-vm-quote {
    position: relative;

    padding-left: 38px;
}

.quote-mark {
    position: absolute;
    left: 0;

    color: #0661af;

    font-family: Georgia, serif;

    font-size: 48px;
    line-height: 1;

    font-weight: 700;
}


.infoseal-vm-quote p {
    margin: 0;

    color: #000000;

    font-size: 22px;
    line-height: 1.55;

    font-weight: 600;
}


.infoseal-vm-description {

    margin: 25px 0 0 38px;

    color: #000;

    font-size: 15px;
    line-height: 1.85;

    font-weight: 400;
}


/* =========================================
 MISSION
========================================= */

.mission-block {
    margin-top: 20px;

    background: #0661af;

    border-color: #0661af;
}

.mission-block:hover {
    border-color: #0661af;
}

.mission-block .infoseal-vm-number {
    color: #ffffff;
    opacity: 0.75;
}

.mission-block .infoseal-vm-title {
    border-left-color: rgba(255, 255, 255, 0.30);
}

.mission-block .infoseal-vm-title span {
    color: rgba(255, 255, 255, 0.70);
}

.mission-block .infoseal-vm-title strong {
    color: #ffffff;
}

.mission-block .infoseal-vm-quote p {
    color: #ffffff;
}

.mission-block .quote-mark {
    color: #ffffff;
}


/* =========================================
 DECORATIVE BACKGROUND
========================================= */

.infoseal-vm-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -220px;
    top: -180px;

    border: 1px solid rgba(6, 97, 175, 0.12);

    border-radius: 50%;
}

.infoseal-vm-section::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    left: -160px;
    bottom: -150px;

    border: 1px solid rgba(6, 97, 175, 0.10);

    border-radius: 50%;
}


/* =========================================
 BOTTOM LINE
========================================= */

.infoseal-vm-bottom-line {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 20px;

    margin-top: 60px;
}

.infoseal-vm-bottom-line span {
    width: 55px;
    height: 1px;

    background: #0661af;

    opacity: 0.45;
}

.infoseal-vm-bottom-line p {
    margin: 0;

    color: #0661af;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================================
 TABLET
========================================= */

@media (max-width: 950px) {

    .infoseal-vm-section {
        padding: 50px 0px;
    }

    .infoseal-vm-heading {
        margin-bottom: 25px;
    }

    .infoseal-vm-block {
        grid-template-columns: 65px 180px minmax(0, 1fr);

        padding: 20px 10px;
    }

    .infoseal-vm-content {
        padding-left: 30px;
    }

    .infoseal-vm-quote p {
        font-size: 19px;
    }

}


/* =========================================
 MOBILE
========================================= */

@media (max-width: 700px) {

    .infoseal-vm-section {
        padding: 50px 0px;
    }

    .infoseal-vm-heading {
        margin-bottom: 20px;
    }

    .infoseal-vm-heading h2 {
        font-size: 30px;
    }


    .infoseal-vm-block {
        display: block;

        padding: 35px 25px;

        min-height: auto;
    }


    .infoseal-vm-number {
        margin-bottom: 22px;
    }


    .infoseal-vm-title {
        padding-left: 20px;

        margin-bottom: 30px;
    }

    .infoseal-vm-title strong {
        font-size: 32px;
    }


    .infoseal-vm-content {
        padding-left: 0;
    }


    .infoseal-vm-quote {
        padding-left: 32px;
    }

    .infoseal-vm-quote p {
        font-size: 18px;
        line-height: 1.6;
    }


    .infoseal-vm-description {
        margin-left: 32px;

        font-size: 14px;
        line-height: 1.8;
    }


    .mission-block {
        margin-top: 15px;
    }


    .infoseal-vm-bottom-line {
        margin-top: 45px;
        gap: 12px;
    }

    .infoseal-vm-bottom-line span {
        width: 30px;
    }

    .infoseal-vm-bottom-line p {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

}


/* =========================================
 SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .infoseal-vm-heading h2 {
        font-size: 28px;
    }

    .infoseal-vm-block {
        padding: 30px 20px;
    }

    .infoseal-vm-quote p {
        font-size: 16px;
    }

    .infoseal-vm-description {
        margin-left: 32px;
        font-size: 13px;
    }

}

/* =========================================
 INFOSEAL - FOUR PRIORITIES
 PRIMARY COLOR : #0661af
 TEXT COLOR    : #000000
 NO BOOTSTRAP
========================================= */

.infoseal-priority-section {
    position: relative;

    width: 100%;

    padding: 50px 0px;

    background: #ffffff;

    overflow: hidden;

    box-sizing: border-box;
}


.infoseal-priority-container {
    width: 100%;
    max-width: 1240px;

    margin: 0 auto;

    position: relative;
    z-index: 2;
}


/* =========================================
 HEADING
========================================= */

.infoseal-priority-heading {
    max-width: 720px;

    margin-bottom: 55px;
}


.infoseal-priority-label {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;

    color: #0661af;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.7px;
    text-transform: uppercase;
}


.infoseal-priority-label span {
    display: inline-block;

    width: 38px;
    height: 2px;

    background: #0661af;
}


.infoseal-priority-heading h2 {
    margin: 0;

    color: #000000;

    font-size: 30px;

    line-height: 1.1;

    font-weight: 700;
}


.infoseal-priority-heading h2 span {
    color: #0661af;
}


/* =========================================
 GRID
========================================= */

.infoseal-priority-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


/* =========================================
 CARD
========================================= */

.infoseal-priority-card {
    position: relative;
    padding: 30px 27px 27px;

    background: #f8fafc;

    border: 1px solid #e4eaf0;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.infoseal-priority-card::before {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    top: -75px;
    right: -65px;

    border-radius: 50%;

    border: 1px solid rgba(6, 97, 175, 0.15);

    transition: transform 0.4s ease;
}


.infoseal-priority-card:hover {
    transform: translateY(-8px);

    background: #ffffff;

    border-color: rgba(6, 97, 175, 0.35);

    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.09);
}


.infoseal-priority-card:hover::before {
    transform: scale(1.5);
}


/* =========================================
 TOP
========================================= */

.infoseal-priority-top {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 45px;
}


.infoseal-priority-number {
    color: #0661af;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================
 ICON
========================================= */

.infoseal-priority-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #0661af;

    border: 1px solid #dce8f2;

    border-radius: 10px;

    box-shadow:
        0 8px 20px rgba(6, 97, 175, 0.07);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.infoseal-priority-icon svg {
    width: 27px;
    height: 27px;
}


.infoseal-priority-card:hover .infoseal-priority-icon {
    background: #0661af;
    color: #ffffff;

    transform: rotate(-4deg);
}


/* =========================================
 TITLE
========================================= */

.infoseal-priority-card h3 {
    position: relative;

    margin: 0 0 15px;

    color: #000000;

    font-size: 22px;
    line-height: 1.25;

    font-weight: 700;
}


/* =========================================
 DESCRIPTION
========================================= */

.infoseal-priority-card p {
    position: relative;

    margin: 0;

    color: #555555;

    font-size: 14px;
    line-height: 1.8;

    font-weight: 400;
}


/* =========================================
 BOTTOM ACCENT
========================================= */

.infoseal-priority-line {
    position: absolute;

    left: 27px;
    bottom: 0;

    width: 0;
    height: 3px;

    background: #0661af;

    transition: width 0.4s ease;
}


.infoseal-priority-card:hover .infoseal-priority-line {
    width: calc(100% - 54px);
}


/* =========================================
 BACKGROUND DECORATION
========================================= */

.infoseal-priority-section::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -270px;
    bottom: -270px;

    border: 1px solid rgba(6, 97, 175, 0.08);

    border-radius: 50%;
}


.infoseal-priority-section::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    left: -175px;
    top: -150px;

    border: 1px solid rgba(6, 97, 175, 0.07);

    border-radius: 50%;
}


/* =========================================
 TABLET
========================================= */

@media (max-width: 1050px) {

    .infoseal-priority-section {
        padding: 85px 25px;
    }

    .infoseal-priority-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .infoseal-priority-card {
        min-height: 310px;
    }

}


/* =========================================
 MOBILE
========================================= */

@media (max-width: 600px) {

    .infoseal-priority-section {
        padding: 70px 16px;
    }

    .infoseal-priority-heading {
        margin-bottom: 38px;
    }

    .infoseal-priority-heading h2 {
        font-size: 30px;
    }

    .infoseal-priority-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .infoseal-priority-card {
        min-height: auto;

        padding: 27px 24px 32px;
    }

    .infoseal-priority-top {
        margin-bottom: 32px;
    }

    .infoseal-priority-card h3 {
        font-size: 21px;
    }

    .infoseal-priority-card p {
        font-size: 14px;
    }

    .infoseal-priority-line {
        left: 24px;
    }

    .infoseal-priority-card:hover .infoseal-priority-line {
        width: calc(100% - 48px);
    }

}


/* =========================================================
   AUTHENTICITY HOLOGRAM INNER PAGE
   ========================================================= */

.authenticity-page {
    width: 100%;
    overflow: hidden;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    color: #14263d;
    background: #ffffff;
}

.authenticity-page *,
.authenticity-page *::before,
.authenticity-page *::after {
    box-sizing: border-box;
}

.auth-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   COMMON TYPOGRAPHY
   ========================================================= */

.auth-section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #0661af;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.auth-section-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.auth-section-heading h2 {
    margin: 0 0 12px;
    color: #102945;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
}

.auth-section-heading p {
    margin: 0 auto;
    max-width: 680px;
    color: #000;
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   HERO
   ========================================================= */

.auth-hero {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 78% 45%,
            rgba(6, 97, 175, 0.10),
            transparent 36%),
        linear-gradient(135deg,
            #f5faff 0%,
            #ffffff 56%,
            #edf6fd 100%);
}

.auth-hero::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    right: -180px;
    top: -240px;
    border: 1px solid rgba(6, 97, 175, 0.10);
    border-radius: 50%;
}

.auth-hero::after {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    right: -100px;
    top: -170px;
    border: 1px solid rgba(6, 97, 175, 0.08);
    border-radius: 50%;
}

.auth-hero-grid {
    position: relative;
    z-index: 2;
    min-height: 590px;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 55px;
}

.auth-hero-content {
    position: relative;
    z-index: 4;
}

.auth-hero-content h1 {
    margin: 0 0 20px;
    color: #102945;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.03;
    font-weight: 400;
    letter-spacing: -2px;
}

.auth-hero-content h1 strong {
    color: #0661af;
    font-weight: 800;
}

.auth-hero-description {
    max-width: 535px;
    margin: 0 0 28px;
    color: #586a7e;
    font-size: 17px;
    line-height: 1.7;
}

.auth-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.auth-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid rgba(6, 97, 175, 0.13);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.8);
    color: #24405d;
    font-size: 14px;
    font-weight: 600;
}

.auth-hero-points i {
    color: #0661af;
}

.auth-primary-btn,
.auth-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 4px;
    background: #0661af;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.auth-primary-btn:hover,
.auth-cta-btn:hover {
    background: #044d8c;
    transform: translateY(-2px);
}

.auth-hero-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-hero-image-wrap {
    position: relative;
    width: min(600px, 100%);
    height: 430px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 28px 70px rgba(15, 47, 78, 0.18);
}

.auth-hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(6, 97, 175, 0.06),
            transparent 50%);
    pointer-events: none;
}

.auth-hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-floating-card {
    position: absolute;
    z-index: 5;
    left: -25px;
    bottom: 58px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    padding: 14px 16px;
    border: 1px solid rgba(6, 97, 175, 0.10);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 35px rgba(12, 42, 70, 0.15);
}

.floating-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #e9f4fc;
    color: #0661af;
}

.auth-floating-card strong {
    display: block;
    margin-bottom: 3px;
    color: #132b45;
    font-size: 14px;
}

.auth-floating-card small {
    color: #738195;
    font-size: 12px;
}


/* =========================================================
   INTRO
   ========================================================= */

.auth-intro {
    padding: 70px 0;
    background: #ffffff;
}

.auth-intro-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 20px;
}

.auth-intro-image {
    position: relative;
}

.auth-intro-image img {
    display: block;
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    border-radius: 4px;
}

.auth-image-badge {
    position: absolute;
    right: -25px;
    bottom: -25px;
    width: 210px;
    padding: 18px 20px;
    border-left: 3px solid #0661af;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(17, 45, 70, 0.13);
}

.auth-image-badge strong {
    display: block;
    margin-bottom: 5px;
    color: #0661af;
    font-size: 25px;
}

.auth-image-badge span {
    color: #41566d;
    font-size: 13px;
    line-height: 1.4;
}

.auth-intro-content h2 {
    margin: 0 0 18px;
    color: #102945;
    font-size: 30px;
    line-height: 1.18;
}

.auth-intro-content h2 span {
    color: #0661af;
}

.auth-intro-content>p {
    margin: 0 0 14px;
    color: #000;
    font-size: 16px;
    line-height: 1.8;
}

.auth-feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 32px;
    border-top: 1px solid #e5edf4;
}

.auth-feature {
    padding: 24px 18px 0 0;
}

.auth-feature+.auth-feature {
    padding-left: 18px;
    border-left: 1px solid #e5edf4;
}

.auth-feature-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 50%;
    background: #eef7fd;
    color: #0661af;
}

.auth-feature h3 {
    margin: 0 0 7px;
    color: #000;
    font-size: 15px;
}

.auth-feature p {
    margin: 0;
    color: #000;
    font-size: 14px;
    line-height: 1.55;
}


/* =========================================================
   SOLUTIONS
   ========================================================= */

.auth-solutions {
    padding: 50px 0;
    background: #f5f9fc;
}

.auth-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.auth-solution-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e9f1;
    border-radius: 5px;
    background: #ffffff;
    transition: all 0.35s ease;
}

.auth-solution-card:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 97, 175, 0.25);
    box-shadow: 0 18px 38px rgba(17, 50, 79, 0.11);
}

.solution-image {
    position: relative; 
    overflow: hidden;
    background: #edf3f7;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.auth-solution-card:hover .solution-image img {
    transform: scale(1.05);
}

.solution-number {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(6, 97, 175, 0.95);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.solution-content {
    min-height: 195px;
    padding: 19px 19px 21px;
}

.solution-category {
    display: block;
    margin-bottom: 7px;
    color: #0661af;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.solution-content h3 {
    margin: 0 0 10px;
    color: #17314d;
    font-size: 18px;
    line-height: 1.25;
}

.solution-content p {
    margin: 0;
    color: #000;
    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   TECHNOLOGY
   ========================================================= */

.auth-technology {
    padding: 50px 0;
    background: #ffffff;
}

.auth-technology-box {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    border: 1px solid #e2eaf1;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(20, 51, 80, 0.08);
}

.technology-image {
    position: relative; 
    overflow: hidden;
}

.technology-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.technology-image-caption {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 18px 20px;
    background: rgba(8, 39, 69, 0.88);
    color: #ffffff;
}

.technology-image-caption span {
    display: block;
    margin-bottom: 5px;
    color: #8bc8f6;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.technology-image-caption strong {
    font-size: 17px;
}

.technology-content {
    padding: 55px 50px;
}

.technology-content h2 {
    margin: 0 0 17px;
    color: #102945;
    font-size: 34px;
    line-height: 1.2;
}

.technology-content h2 span {
    display: block;
    color: #0661af;
}

.technology-content>p {
    margin: 0 0 23px;
    color: #000;
    font-size: 15px;
    line-height: 1.75;
}

.technology-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.technology-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-size: 14px;
}

.technology-list i {
    color: #0661af;
}

.technology-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e4ebf1;
}

.technology-tags span {
    padding: 7px 11px;
    border: 1px solid #cfe2f0;
    border-radius: 30px;
    color: #0661af;
    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   PROCESS
   ========================================================= */

.auth-process {
    padding: 50px 0;
    background: #f5f9fc;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.process-card {
    position: relative;
    min-height: 275px;
    padding: 25px 20px;
    border: 1px solid #dfE8ef;
    border-radius: 5px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.process-card:hover {
    border-color: rgba(6, 97, 175, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(20, 50, 80, 0.08);
}

.process-number {
    position: absolute;
    top: 18px;
    right: 18px;
    color: #d9e8f3;
    font-size: 30px;
    font-weight: 800;
}

.process-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 50%;
    background: #eaf5fc;
    color: #0661af;
    font-size: 19px;
}

.process-card h3 {
    max-width: 180px;
    margin: 0 0 10px;
    color: #000;
    font-size: 15px;
    line-height: 1.4;
}

.process-card p {
    margin: 0;
    color: #000;
    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   APPLICATIONS
   ========================================================= */

.auth-applications {
    padding: 50px 0;
    background: #ffffff;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.application-card {
    display: grid;
    grid-template-columns: 40% 60%; 
    overflow: hidden;
    border: 1px solid #e0e8ef;
    background: #ffffff;
    transition: all 0.3s ease;
}

.application-card:hover {
    border-color: rgba(6, 97, 175, 0.25);
    box-shadow: 0 16px 35px rgba(16, 47, 76, 0.09);
}

.application-card img {
    width: 100%;
    height: 100%; 
    object-fit: cover;
}

.application-content {
    position: relative;
    padding: 25px 25px 22px;
}

.application-content>span {
    display: block;
    margin-bottom: 8px;
    color: #0661af;
    font-size: 11px;
    font-weight: 800;
}

.application-content h3 {
    margin: 0 0 9px;
    color: #000;
    font-size: 17px;
}

.application-content p {
    max-width: 300px;
    margin: 0;
    color: #000;
    font-size: 14px;
    line-height: 1.6;
}

.application-content>i {
    position: absolute;
    right: 23px;
    bottom: 22px;
    color: #0661af;
    font-size: 14px;
}


/* =========================================================
   INDUSTRIES
   ========================================================= */

.auth-industries {
    padding: 90px 0;
    background: #f5f9fc;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.industry-item {
    min-height: 155px;
    padding: 22px 14px;
    border: 1px solid #dfE8ef;
    border-radius: 4px;
    background: #ffffff;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 97, 175, 0.25);
    box-shadow: 0 12px 25px rgba(16, 47, 76, 0.07);
}

.industry-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin: 0 auto 13px;
    border-radius: 50%;
    background: #eaf5fc;
    color: #0661af;
}

.industry-item h3 {
    margin: 0 0 6px;
    color: #000;
    font-size: 17px;
}

.industry-item p {
    margin: 0;
    color: #000;
    font-size: 12px;
    line-height: 1.4;
}


/* =========================================================
   WHY CHOOSE
   ========================================================= */

.auth-why {
    padding: 100px 0;
    background: #ffffff;
}

.auth-why-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
    gap: 65px;
}

.auth-why-image {
    position: relative;
}

.auth-why-image img {
    display: block;
    width: 100%; 
    border-radius: 20px;
    object-fit: cover;
}

.why-image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 25px;
    background: linear-gradient(transparent,
            rgba(5, 29, 52, 0.92));
    color: #ffffff;
}

.why-image-overlay strong {
    display: block;
    font-size: 28px;
}

.why-image-overlay span {
    font-size: 15px;
}

.auth-why-content h2 {
    margin: 0 0 30px;
    color: #102945;
    font-size: 35px;
    line-height: 1.2;
}

.auth-why-content h2 span {
    display: block;
    color: #0661af;
}

.why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 23px 28px;
}

.why-item {
    display: flex;
    gap: 13px;
}

.why-icon {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #eaf5fc;
    color: #0661af;
}

.why-item h3 {
    margin: 0 0 5px;
    color: #000;
    font-size: 15px;
}

.why-item p {
    margin: 0;
    color: #000;
    font-size: 14px;
    line-height: 1.55;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.auth-final-cta {
    padding: 70px 0;
    background:
        linear-gradient(110deg,
            #062e52,
            #0661af);
}

.auth-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.auth-final-cta .auth-section-label {
    color: #8dcef8;
}

.auth-final-cta h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 37px;
    line-height: 1.15;
}

.auth-final-cta h2 span {
    color: #8dcef8;
}

.auth-final-cta p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.7;
}

.auth-cta-btn {
    flex-shrink: 0;
    background: #ffffff;
    color: #0661af;
}

.auth-cta-btn:hover {
    background: #f1f7fb;
    color: #044d8c;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .auth-container {
        width: min(100% - 40px, 940px);
    }

    .auth-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .auth-hero-content h1 {
        font-size: 48px;
    }

    .auth-solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .auth-why-grid {
        gap: 40px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .auth-container {
        width: calc(100% - 30px);
    }

    .auth-section-heading {
        margin-bottom: 30px;
    }

    .auth-section-heading h2 {
        font-size: 27px;
    }

    .auth-section-heading p {
        font-size: 14px;
    }


    /* HERO */

    .auth-hero {
        min-height: auto;
        padding: 70px 0 55px;
    }

    .auth-hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .auth-hero-content h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .auth-hero-description {
        font-size: 15px;
    }

    .auth-hero-points {
        gap: 8px;
    }

    .auth-hero-points span {
        font-size: 12px;
    }

    .auth-hero-visual {
        min-height: 350px;
    }

    .auth-hero-image-wrap {
        height: 320px;
    }

    .auth-floating-card {
        left: 10px;
        bottom: 20px;
    }


    /* INTRO */

    .auth-intro {
        padding: 50px 0;
    }

    .auth-intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    } 

    .auth-image-badge {
        right: 10px;
        bottom: -22px;
    }

    .auth-intro-content h2 {
        font-size: 29px;
    }

    .auth-feature-row {
        grid-template-columns: 1fr;
    }

    .auth-feature,
    .auth-feature+.auth-feature {
        padding: 18px 0;
        border-left: 0;
        border-bottom: 1px solid #e5edf4;
    }


    /* SOLUTIONS */

    .auth-solutions {
        padding: 50px 0;
    }

    .auth-solution-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    } 

    .solution-content {
        min-height: auto;
    }


    /* TECHNOLOGY */

    .auth-technology {
        padding: 50px 0;
    }

    .auth-technology-box {
        grid-template-columns: 1fr;
    } 

    .technology-content {
        padding: 35px 25px;
    }

    .technology-content h2 {
        font-size: 28px;
    }


    /* PROCESS */

    .auth-process {
        padding: 50px 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        min-height: auto;
    }


    /* APPLICATIONS */

    .auth-applications {
        padding: 50px 0;
    }

    .application-grid {
        grid-template-columns: 1fr;
    }

    .application-card {
        grid-template-columns: 1fr;
    } 


    /* INDUSTRIES */

    .auth-industries {
        padding: 65px 0;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* WHY */

    .auth-why {
        padding: 65px 0;
    }

    .auth-why-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    } 

    .auth-why-content h2 {
        font-size: 29px;
    }

    .why-list {
        grid-template-columns: 1fr;
    }


    /* CTA */

    .auth-final-cta {
        padding: 55px 0;
    }

    .auth-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .auth-final-cta h2 {
        font-size: 30px;
    }

    .auth-cta-btn {
        width: 100%;
    }

}


/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 420px) {

    .auth-hero-content h1 {
        font-size: 36px;
    }

    .auth-hero-points {
        flex-direction: column;
        align-items: flex-start;
    }

    .industry-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .industry-item {
        padding: 18px 8px;
    }

}

/* =========================================================
   PREMIUM CONTACT SECTION
========================================================= */

.infoseal-contact {
    position: relative;
    overflow: hidden;
    padding: 105px 0 85px;
    background:
        linear-gradient(135deg,
            #f1f8fd 0%,
            #ffffff 48%,
            #edf6fc 100%);
}


/* subtle background design */

.infoseal-contact-pattern {
    position: absolute;
    width: 700px;
    height: 700px;
    right: -250px;
    top: -260px;
    border: 1px solid rgba(6, 97, 175, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.infoseal-contact-pattern::before {
    content: "";
    position: absolute;
    inset: 65px;
    border: 1px solid rgba(6, 97, 175, 0.07);
    border-radius: 50%;
}

.infoseal-contact-pattern::after {
    content: "";
    position: absolute;
    inset: 135px;
    border: 1px solid rgba(6, 97, 175, 0.06);
    border-radius: 50%;
}


/* =========================================================
   HEADER
========================================================= */

.infoseal-contact-header {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.infoseal-contact-header h2 {
    margin: 0 0 18px;
    color: #102945;
    font-size: 35px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.infoseal-contact-header h2 span {
    display: block;
    color: #0661af;
}

.infoseal-contact-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #66778a;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   MAIN GRID
========================================================= */

.infoseal-contact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    align-items: stretch;
    gap: 0;
    max-width: 1120px;
    margin: 0 auto;
}


/* =========================================================
   LEFT PANEL
========================================================= */

.infoseal-contact-info {
    position: relative;
    overflow: hidden;
    padding: 48px 42px;
    background:
        linear-gradient(145deg,
            #062e52 0%,
            #075fa8 100%);
    color: #ffffff;
}

.infoseal-contact-info::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    right: -170px;
    bottom: -170px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;
}

.infoseal-contact-info::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -105px;
    bottom: -105px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.contact-info-top {
    position: relative;
    z-index: 2;
    margin-bottom: 38px;
}

.contact-small-label {
    display: block;
    margin-bottom: 11px;
    color: #8fd0f8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.contact-info-top h3 {
    max-width: 350px;
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.15;
}

.contact-info-top h3 strong {
    display: block;
    color: #9ed7fa;
}

.contact-info-top p {
    max-width: 390px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-detail {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 24px;
}

.contact-detail-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #9bd8fa;
    font-size: 14px;
}

.contact-detail span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.contact-detail a {
    display: block;
    width: fit-content;
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-detail a:hover {
    color: #9bd8fa;
}

.contact-detail p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.55;
}


/* =========================================================
   RESPONSE CARD
========================================================= */

.contact-response {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 35px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.07);
}

.response-icon {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.10);
    color: #9bd8fa;
}

.contact-response strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 13px;
}

.contact-response p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   FORM WRAPPER
========================================================= */

.infoseal-contact-form-wrap {
    position: relative;
    padding: 42px 45px;
    background: #ffffff;
    border: 1px solid #e0e8ef;
    box-shadow: 0 25px 60px rgba(13, 48, 80, 0.12);
}


/* =========================================================
   FORM HEADER
========================================================= */

.contact-form-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e7edf2;
}

.contact-form-heading>div:first-child>span {
    display: block;
    margin-bottom: 6px;
    color: #0661af;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.contact-form-heading h3 {
    margin: 0;
    color: #142d48;
    font-size: 25px;
    line-height: 1.2;
}

.form-secure-icon {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 1px solid #d8e8f3;
    border-radius: 50%;
    background: #f0f8fd;
    color: #0661af;
    font-size: 17px;
}


/* =========================================================
   FORM ROW
========================================================= */

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    margin-bottom: 19px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #243b54;
    font-size: 14px;
    font-weight: 650;
}

.input-wrap {
    position: relative;
}

.input-wrap>i:first-child {
    position: absolute;
    z-index: 2;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7d8fa2;
    font-size: 13px;
    pointer-events: none;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
    width: 100%;
    border: 1px solid #dce5ec;
    outline: none;
    border-radius: 3px;
    background: #fbfdfe;
    color: #243b54;
    font-family: inherit;
    font-size: 14px;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.input-wrap input,
.input-wrap select {
    height: 49px;
    padding: 0 15px 0 43px;
}

.input-wrap textarea {
    min-height: 125px;
    padding: 14px 15px 14px 43px;
    resize: vertical;
    line-height: 1.6;
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
    color: #a1adba;
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
    border-color: #0661af;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(6, 97, 175, 0.08);
}


/* =========================================================
   SELECT
========================================================= */

.select-wrap select {
    appearance: none;
    cursor: pointer;
    padding-right: 45px;
}

.select-wrap .select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7d8fa2;
    font-size: 11px;
    pointer-events: none;
}


/* =========================================================
   TEXTAREA
========================================================= */

.textarea-wrap>i:first-child {
    top: 18px;
    transform: none;
}


/* =========================================================
   FORM BOTTOM
========================================================= */

.form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 4px;
}

.contact-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    max-width: 270px;
    cursor: pointer;
}

.contact-checkbox input {
    width: 15px;
    height: 15px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #0661af;
}

.contact-checkbox span {
    color: #000;
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-width: 165px;
    height: 50px;
    padding: 0 8px 0 20px;
    border: 0;
    border-radius: 3px;
    background: #0661af;
    color: #ffffff;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-submit-btn span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.13);
}

.contact-submit-btn:hover {
    background: #044d8c;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(6, 97, 175, 0.22);
}

.contact-submit-btn:hover i {
    transform: translateX(3px);
}

.contact-submit-btn i {
    transition: transform 0.25s ease;
}


/* =========================================================
   SECURITY NOTE
========================================================= */

.form-security-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 17px;
    border-top: 1px solid #edf1f4;
    color: #8996a4;
}

.form-security-note i {
    color: #0661af;
    font-size: 12px;
}

.form-security-note span {
    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.contact-trust-strip {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1120px;
    margin: 20px auto 0;
    border: 1px solid #e0e8ef;
    background: #ffffff;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 73px;
    padding: 12px 15px;
}

.trust-item+.trust-item {
    border-left: 1px solid #e4ebf1;
}

.trust-item>div {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #edf7fd;
    color: #0661af;
    font-size: 12px;
}

.trust-item span {
    color: #52677c;
    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .infoseal-contact-grid {
        grid-template-columns: 1fr;
    }

    .infoseal-contact-info {
        padding: 40px;
    }

    .contact-info-top p {
        max-width: 600px;
    }

    .contact-response {
        max-width: 500px;
    }

    .contact-trust-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(3) {
        border-left: 0;
        border-top: 1px solid #e4ebf1;
    }

    .trust-item:nth-child(4) {
        border-top: 1px solid #e4ebf1;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .infoseal-contact {
        padding: 70px 0 55px;
    }

    .infoseal-contact-header {
        margin-bottom: 35px;
    }

    .infoseal-contact-header h2 {
        font-size: 30px;
    }

    .infoseal-contact-header p {
        font-size: 14px;
    }


    .infoseal-contact-info {
        padding: 35px 25px;
    }

    .contact-info-top h3 {
        font-size: 27px;
    }


    .infoseal-contact-form-wrap {
        padding: 30px 20px;
    }

    .contact-form-heading h3 {
        font-size: 21px;
    }


    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }


    .form-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-checkbox {
        max-width: none;
    }

    .contact-submit-btn {
        width: 100%;
    }


    .contact-trust-strip {
        grid-template-columns: 1fr 1fr;
    }

    .trust-item {
        min-height: 80px;
    }

    .trust-item:nth-child(2) {
        border-left: 1px solid #e4ebf1;
    }

    .trust-item:nth-child(3) {
        border-left: 0;
    }

    .trust-item span {
        font-size: 11px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .infoseal-contact-header h2 {
        font-size: 27px;
    }

    .infoseal-contact-info {
        padding: 30px 20px;
    }

    .infoseal-contact-form-wrap {
        padding: 27px 17px;
    }

    .contact-form-heading {
        align-items: flex-start;
    }

    .form-secure-icon {
        width: 40px;
        height: 40px;
    }

    .contact-trust-strip {
        grid-template-columns: 1fr;
    }

    .trust-item+.trust-item {
        border-left: 0;
        border-top: 1px solid #e4ebf1;
    }

}

/* Product Authentication & Verification — dedicated page design */
.pav-page {
    --ink: #101828;
    --muted: #000;
    --line: #e4e7ec;
    --accent: #1d2939;
    --soft: #f7f8fa;
    background: #fff;
    color: var(--ink);
    font-family: inherit
}

.pav-page * {
    box-sizing: border-box
}

.pav-wrap {
    width: min(1180px, 92%);
    margin: auto
}

.pav-hero {
    position: relative;
    overflow: hidden;
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #f7f8fa 0%, #fff 58%, #f1f4f7 100%)
}

.pav-hero:after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid #d9dee5;
    border-radius: 50%;
    right: -180px;
    top: -170px;
    opacity: .65
}

.pav-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1
}

.pav-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 1.8px;
    font-weight: 700;
    color: #475467;
    text-transform: uppercase;
    margin-bottom: 20px
}

.pav-kicker:before {
    content: "";
    width: 32px;
    height: 2px;
    background: #101828
}

.pav-hero h1 {
    font-size: 35px;
    line-height: 1.02; 
    margin: 0 0 24px;
    font-weight: 750
}

.pav-hero h1 span { 
    color: #0661af;
    font-weight: 500
}

.pav-lead {
    font-size: 18px;
    line-height: 1.75;
    color: #000;
    max-width: 620px;
    margin: 0 0 30px
}

.pav-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.pav-pill {
    border: 1px solid #d0d5dd;
    background: #fff;
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 650
}

.pav-visual {
    padding: 50px 0px;
    border: 1px solid #d9dee5;
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 22px 55px rgba(16, 24, 40, .08)
}

.pav-visual img {
    width: 78%;
    max-height: 390px;
    object-fit: contain;
    filter: drop-shadow(0 18px 25px rgba(16, 24, 40, .14))
}

.pav-code {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: #101828;
    color: #fff;
    padding: 15px 17px;
    min-width: 150px
}

.pav-code small {
    display: block;
    color: #98a2b3;
    font-size: 10px;
    letter-spacing: 1.3px;
    margin-bottom: 5px
}

.pav-code strong {
    font-size: 14px;
    letter-spacing: .4px
}

.pav-index {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 11px;
    color: #98a2b3;
    letter-spacing: 1.5px
}

.pav-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff
}

.pav-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.pav-stat {
    padding: 24px 22px;
    border-right: 1px solid var(--line)
}

.pav-stat:last-child {
    border-right: 0
}

.pav-stat b {
    display: block;
    font-size: 15px;
    margin-bottom: 6px
}

.pav-stat span {
    font-size: 12px;
    color: var(--muted)
}

.pav-section {
    padding: 50px 0
}

.pav-heading {
    display: flex;
    justify-content: space-between;
    gap: 45px;
    align-items: end;
    margin-bottom: 42px
}

.pav-heading .pav-kicker {
    margin-bottom: 0
}

.pav-heading h2 {
    font-size: 30px;
    line-height: 1.12;
    letter-spacing: -1.2px;
    margin: 10px 0 0;
    max-width: 650px
}

.pav-heading p {
    max-width: 410px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0
}

.pav-solutions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
}

.pav-card {
    position: relative;
    border: 1px solid var(--line);
    padding: 30px;
    min-height: 260px;
    overflow: hidden;
    background: #fff;
    transition: .25s
}

.pav-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(16, 24, 40, .07)
}

.pav-card:before {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -65px;
    width: 180px;
    height: 180px;
    border: 1px solid #e4e7ec;
    border-radius: 50%
}

.pav-num {
    font-size: 11px;
    color: #98a2b3;
    letter-spacing: 1.5px
}

.pav-card h3 {
    font-size: 24px;
    margin: 38px 0 12px;
    letter-spacing: -.4px
}

.pav-card p {
    color: var(--muted);
    line-height: 1.7;
    max-width: 480px;
    margin: 0
}

.pav-tag {
    display: inline-block;
    margin-top: 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #344054
}

.pav-dark {
    background: #101828;
    color: #fff;
    padding: 82px 0
}

.pav-dark .pav-kicker,
.pav-dark .pav-heading p {
    color: #98a2b3
}

.pav-dark .pav-kicker:before {
    background: #98a2b3
}

.pav-dark .pav-heading h2 {
    color: #fff
}

.pav-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid #344054;
    border-bottom: 1px solid #344054
}

.pav-step {
    padding: 30px 26px 34px;
    border-right: 1px solid #344054;
    min-height: 190px
}

.pav-step:last-child {
    border-right: 0
}

.pav-step-no {
    font-size: 11px;
    color: #98a2b3;
    letter-spacing: 1.4px
}

.pav-step h3 {
    font-size: 18px;
    margin: 35px 0 10px;
    color: #fff
}

.pav-step p {
    font-size: 13px;
    line-height: 1.65;
    color: #98a2b3;
    margin: 0
}

.pav-app-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 20px
}

.pav-panel {
    border: 1px solid var(--line);
    padding: 35px;
    background: #fafbfc
}

.pav-panel h3 {
    font-size: 22px;
    margin: 0 0 22px
}

.pav-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0
}

.pav-list div {
    padding: 15px 0;
    border-top: 1px solid var(--line);
    font-size: 14px;
    font-weight: 600
}

.pav-list span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 400;
    margin-top: 4px
}

.pav-final {
    padding: 76px 0;
    background: #f2f4f7
}

.pav-final-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px
}

.pav-final h2 {
    font-size: 28px;
    letter-spacing: -1px;
    margin: 0 0 10px
}

.pav-final p {
    color: var(--muted);
    margin: 0;
    max-width: 650px;
    line-height: 1.7
}

.pav-cta {
    display: inline-block;
    background: #101828;
    color: #fff;
    padding: 15px 24px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap
}

@media(max-width:900px) {

    .pav-hero-grid,
    .pav-app-grid {
        grid-template-columns: 1fr
    }

    .pav-heading {
        display: block
    }

    .pav-heading p {
        margin-top: 18px
    }

    .pav-flow {
        grid-template-columns: 1fr 1fr
    }

    .pav-step:nth-child(2) {
        border-right: 0
    }

    .pav-step {
        border-bottom: 1px solid #344054
    }

    .pav-strip-grid {
        grid-template-columns: 1fr 1fr
    }

    .pav-stat:nth-child(2) {
        border-right: 0
    }
}

@media(max-width:600px) {
    .pav-hero {
        padding: 40px 0
    }

    .pav-visual {
        min-height: 320px
    }

    .pav-solutions {
        grid-template-columns: 1fr
    }

    .pav-flow {
        grid-template-columns: 1fr
    }

    .pav-step {
        border-right: 0 !important
    }

    .pav-list {
        grid-template-columns: 1fr
    }

    .pav-final-box {
        display: block
    }

    .pav-cta {
        margin-top: 25px;
        display: inline-block
    }
}



/* =========================================================
   INDUSTRY PAGE — AGROCHEMICALS
   Premium Responsive Industry Layout
========================================================= */

.industry-page {
    --ind-black: #000;
    --ind-dark: #000;
    --ind-dark-2: #202522;
    --ind-green: #0661af;
    --ind-green-dark: #0661af;
    --ind-green-soft: #edf2e6;
    --ind-white: #ffffff;
    --ind-offwhite: #f7f8f5;
    --ind-text: #000;
    --ind-muted: #000;
    --ind-border: #dfe4df;
    --ind-shadow: 0 20px 60px rgba(15, 22, 17, 0.08);
  
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    color: var(--ind-text);
    background: var(--ind-white);
    overflow: hidden;
  }
  
  .industry-page *,
  .industry-page *::before,
  .industry-page *::after {
    box-sizing: border-box;
  }
  
  .industry-page a {
    text-decoration: none;
  }
  
  .industry-wrap {
    width: min(1240px, calc(100% - 80px));
    margin: 0 auto;
  }
  
  
  /* =========================================================
     HERO
  ========================================================= */
  
  .industry-hero {
    position: relative; 
    display: flex;
    align-items: center;
    background:
      radial-gradient(circle at 78% 42%, rgba(111, 143, 61, 0.15), transparent 28%),
      linear-gradient(135deg, #f8faf7 0%, #ffffff 58%, #eef2eb 100%);
    border-bottom: 1px solid var(--ind-border);
  }
  
  .industry-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: -170px;
    border: 1px solid rgba(111, 143, 61, 0.18);
    border-radius: 50%;
  }
  
  .industry-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -130px;
    bottom: -130px;
    border: 1px solid rgba(111, 143, 61, 0.12);
    border-radius: 50%;
  }
  
  .industry-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 80px;
  }
  
  .industry-hero-content {
    max-width: 680px;
  }
  
  .industry-kicker {
    margin-bottom: 18px;
    color: var(--ind-green-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.5;
    text-transform: uppercase;
  }
  
  .industry-hero h1 {
    margin: 0;
    max-width: 680px;
    color: #000;
    font-size: 35px;
    font-weight: 650;
    letter-spacing: -0.055em;
    line-height: 0.98;
  }
  
  .industry-hero h1 span { 
    color: var(--ind-green);
  }
  
  .industry-lead {
    max-width: 620px;
    margin: 30px 0 0;
    color: var(--ind-muted);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
  }
  
  .industry-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 38px;
  }
  
  .industry-primary-btn,
  .industry-secondary-btn,
  .industry-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 25px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition:
      transform 0.25s ease,
      background 0.25s ease,
      color 0.25s ease,
      border-color 0.25s ease,
      box-shadow 0.25s ease;
  }
  
  .industry-primary-btn {
    color: #ffffff;
    background: var(--ind-black);
    border: 1px solid var(--ind-black);
  }
  
  .industry-primary-btn:hover {
    color: #ffffff;
    background: var(--ind-green-dark);
    border-color: var(--ind-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(38, 54, 32, 0.16);
  }
  
  .industry-secondary-btn {
    color: var(--ind-text);
    background: transparent;
    border: 1px solid #cbd2cc;
  }
  
  .industry-secondary-btn:hover {
    color: var(--ind-green-dark);
    border-color: var(--ind-green);
    transform: translateY(-2px);
  }
  
  
  /* =========================================================
     HERO VISUAL
  ========================================================= */
  
  .industry-hero-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .industry-orbit {
    position: absolute;
    border: 1px solid rgba(111, 143, 61, 0.20);
    border-radius: 50%;
  }
  
  .orbit-one {
    width: 470px;
    height: 470px;
  }
  
  .orbit-two {
    width: 330px;
    height: 330px;
    border-style: dashed;
    border-color: rgba(111, 143, 61, 0.18);
  }
  
  .industry-visual-card {
    position: relative;
    z-index: 2;
    width: min(360px, 80%);
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    overflow: hidden;
    color: #ffffff;
    background:
      linear-gradient(145deg, rgba(255,255,255,0.06), transparent 45%),
      linear-gradient(145deg, #1a211d, #0c100e);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 8px;
    box-shadow: 0 35px 90px rgba(12, 17, 14, 0.22);
  }
  
  .industry-visual-card::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -110px;
    top: -100px;
    border: 1px solid rgba(143, 176, 92, 0.35);
    border-radius: 50%;
  }
  
  .industry-visual-card::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    left: -85px;
    bottom: -80px;
    border: 1px solid rgba(143, 176, 92, 0.20);
    border-radius: 50%;
  }
  
  .industry-visual-code {
    position: relative;
    z-index: 2;
    color: #aeb9af;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
  }
  
  .industry-visual-icon {
    position: relative;
    z-index: 2;
    width: 190px;
    height: 190px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .industry-visual-icon::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(145, 178, 92, 0.65);
    border-radius: 50%;
  }
  
  .industry-visual-icon::after {
    content: "";
    position: absolute;
    inset: 48px;
    border: 1px solid rgba(145, 178, 92, 0.35);
    border-radius: 50%;
  }
  
  .industry-visual-icon span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #91b25c;
    border-radius: 50%;
  }
  
  .industry-visual-icon span:nth-child(1) {
    transform: translateY(-74px);
  }
  
  .industry-visual-icon span:nth-child(2) {
    transform: translateX(74px);
  }
  
  .industry-visual-icon span:nth-child(3) {
    transform: translateY(74px);
  }
  
  .industry-visual-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .industry-visual-bottom small {
    color: #94a096;
    font-size: 10px;
    letter-spacing: 0.16em;
  }
  
  .industry-visual-bottom strong {
    font-size: 25px;
    font-weight: 650;
    letter-spacing: -0.02em;
  }
  
  
  /* =========================================================
     INTRO
  ========================================================= */
  
  .industry-intro {
    padding: 50px 0 40px;
    background: #ffffff;
  }
  
  .industry-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: end;
  }
  
  .industry-intro h2,
  .industry-section-heading h2,
  .industry-final h2 {
    margin: 0;
    color: var(--ind-black);
    font-size: 30px;
    font-weight: 650;
    letter-spacing: -0.045em;
    line-height: 1.08;
  }
  
  .industry-intro-grid p,
  .industry-section-heading > p {
    margin: 0;
    color: var(--ind-muted);
    font-size: 16px;
    line-height: 1.8;
  }
  
  .industry-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 75px;
    border-top: 1px solid var(--ind-border);
    border-bottom: 1px solid var(--ind-border);
  }
  
  .industry-metric {
    min-height: 190px;
    padding: 28px 25px;
    border-right: 1px solid var(--ind-border);
  }
  
  .industry-metric:last-child {
    border-right: 0;
  }
  
  .industry-metric strong {
    display: block;
    margin-bottom: 25px;
    color: var(--ind-green);
    font-size: 13px;
    letter-spacing: 0.12em;
  }
  
  .industry-metric span {
    display: block;
    margin-bottom: 10px;
    color: var(--ind-black);
    font-size: 17px;
    font-weight: 700;
  }
  
  .industry-metric p {
    margin: 0;
    color: var(--ind-muted);
    font-size: 13px;
    line-height: 1.65;
  }
  
  
  /* =========================================================
     SOLUTIONS / TABS
  ========================================================= */
  
  .industry-solutions {
    padding: 50px 0;
    background: var(--ind-offwhite);
  }
  
  .industry-section-heading {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 60px;
  }
  
  .industry-section-heading.centered {
    display: block;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
  
  .industry-section-heading.centered > p {
    max-width: 680px;
    margin: 22px auto 0;
  }
  
  .industry-tabs {
    position: relative;
  }
  
  .industry-tabs > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  
  .industry-tab-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #cfd6d0;
    border-bottom: 1px solid #cfd6d0;
  }
  
  .industry-tab-nav label {
    position: relative;
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 25px;
    color: #69736c;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition:
      color 0.25s ease,
      background 0.25s ease;
  }
  
  .industry-tab-nav label:not(:last-child) {
    border-right: 1px solid #cfd6d0;
  }
  
  .industry-tab-nav label span {
    color: #9aa39d;
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  
  .industry-tab-nav label::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background: var(--ind-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }
  
  
  /* ACTIVE TAB */
  
  #agro-tab-1:checked ~ .industry-tab-nav label[for="agro-tab-1"],
  #agro-tab-2:checked ~ .industry-tab-nav label[for="agro-tab-2"],
  #agro-tab-3:checked ~ .industry-tab-nav label[for="agro-tab-3"],
  #agro-tab-4:checked ~ .industry-tab-nav label[for="agro-tab-4"] {
    color: var(--ind-black);
    background: #ffffff;
  }
  
  #agro-tab-1:checked ~ .industry-tab-nav label[for="agro-tab-1"]::after,
  #agro-tab-2:checked ~ .industry-tab-nav label[for="agro-tab-2"]::after,
  #agro-tab-3:checked ~ .industry-tab-nav label[for="agro-tab-3"]::after,
  #agro-tab-4:checked ~ .industry-tab-nav label[for="agro-tab-4"]::after {
    transform: scaleX(1);
  }
  
  
  /* TAB CONTENT */
  
  .industry-tab-content {
    display: none;
    grid-template-columns: 1fr 0.8fr;
    gap: 90px;
    min-height: 560px;
    padding: 75px 60px;
    background: #ffffff;
    border-right: 1px solid #e0e5e1;
    border-bottom: 1px solid #e0e5e1;
    border-left: 1px solid #e0e5e1;
  }
  
  #agro-tab-1:checked ~ .tab-content-1,
  #agro-tab-2:checked ~ .tab-content-2,
  #agro-tab-3:checked ~ .tab-content-3,
  #agro-tab-4:checked ~ .tab-content-4 {
    display: grid;
  }
  
  .industry-tab-info {
    align-self: center;
    max-width: 620px;
  }
  
  .industry-tab-number {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--ind-green-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
  }
  
  .industry-tab-info h3 {
    margin: 0;
    color: var(--ind-black);
    font-size: 28px;
    font-weight: 650;
    letter-spacing: -0.04em;
    line-height: 1.08;
  }
  
  .industry-tab-info > p {
    max-width: 570px;
    margin: 25px 0 35px;
    color: var(--ind-muted);
    font-size: 15px;
    line-height: 1.8;
  }
  
  
  /* =========================================================
     FEATURE LIST
  ========================================================= */
  
  .industry-feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--ind-border);
  }
  
  .industry-feature-list > div {
    padding: 20px 20px 20px 0;
    border-bottom: 1px solid var(--ind-border);
  }
  
  .industry-feature-list > div:nth-child(odd) {
    padding-right: 25px;
    border-right: 1px solid var(--ind-border);
  }
  
  .industry-feature-list > div:nth-child(even) {
    padding-left: 25px;
  }
  
  .industry-feature-list b {
    display: block;
    margin-bottom: 7px;
    color: var(--ind-black);
    font-size: 13px;
    font-weight: 750;
  }
  
  .industry-feature-list span {
    display: block;
    color: var(--ind-muted);
    font-size: 12px;
    line-height: 1.6;
  }
  
  
  /* =========================================================
     TAB VISUALS
  ========================================================= */
  
  .industry-tab-visual {
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  
  /* PRODUCT SECURITY */
  
  .industry-product-frame {
    position: relative;
    width: 100%;
    max-width: 410px;
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
      linear-gradient(145deg, #f5f7f3, #e9eee6);
    border: 1px solid #d8ded7;
  }
  
  .industry-frame-label {
    position: absolute;
    top: 24px;
    left: 24px;
    color: #7b857e;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.16em;
  }
  
  .industry-bottle {
    position: relative;
    width: 150px;
    height: 310px;
  }
  
  .bottle-cap {
    width: 82px;
    height: 42px;
    margin: 0 auto;
    background: #202722;
    border-radius: 7px 7px 3px 3px;
  }
  
  .bottle-body {
    position: relative;
    width: 150px;
    height: 265px;
    background: linear-gradient(100deg, #dfe6d9, #f8faf7, #d5ddd0);
    border-radius: 12px 12px 25px 25px;
    box-shadow: 20px 25px 45px rgba(33, 44, 35, 0.14);
  }
  
  .bottle-label {
    position: absolute;
    top: 78px;
    left: 12px;
    right: 12px;
    padding: 20px 10px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #cfd7cd;
  }
  
  .bottle-label small {
    display: block;
    color: var(--ind-green-dark);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.16em;
  }
  
  .bottle-label strong {
    display: block;
    margin: 9px 0 5px;
    color: #1a201c;
    font-size: 22px;
  }
  
  .bottle-label span {
    color: #68736b;
    font-size: 8px;
    letter-spacing: 0.1em;
  }
  
  .industry-security-line {
    position: absolute;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .industry-security-line::before {
    content: "";
    width: 65px;
    height: 1px;
    background: var(--ind-green);
  }
  
  .industry-security-line span {
    color: #6d786f;
    font-size: 8px;
    letter-spacing: 0.12em;
  }
  
  .line-a {
    top: 155px;
  }
  
  .line-b {
    bottom: 120px;
  }
  
  
  /* PACKAGING */
  
  .industry-packaging-visual {
    position: relative;
    width: 370px;
    height: 360px;
  }
  
  .pack-layer,
  .pack-main {
    position: absolute;
    width: 220px;
    height: 290px;
    border: 1px solid #ccd5ca;
    transform: skewY(-7deg);
  }
  
  .layer-back {
    top: 35px;
    left: 70px;
    background: #e6ebe3;
    opacity: 0.6;
  }
  
  .layer-mid {
    top: 20px;
    left: 50px;
    background: #f0f3ed;
    opacity: 0.85;
  }
  
  .pack-main {
    top: 5px;
    left: 30px;
    z-index: 3;
    padding: 35px 25px;
    background: linear-gradient(150deg, #1c241e, #313a32);
    border-color: #4c594d;
    transform: skewY(-7deg);
    color: #ffffff;
  }
  
  .pack-main small {
    display: block;
    color: #a1b18d;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.15em;
  }
  
  .pack-main strong {
    display: block;
    margin-top: 95px;
    color: #ffffff;
    font-size: 54px;
    font-weight: 650;
    letter-spacing: -0.04em;
  }
  
  .pack-main span {
    display: block;
    margin-top: 6px;
    color: #b4beb6;
    font-size: 9px;
    letter-spacing: 0.1em;
  }
  
  .pack-badge {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 35px;
    padding: 12px 16px;
    color: #ffffff;
    background: var(--ind-green);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
  }
  
  
  /* AUTHENTICATION */
  
  .industry-auth-card {
    width: 360px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f5f7f3;
    border: 1px solid #d9dfd8;
  }
  
  .auth-ring {
    position: relative;
    width: 210px;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #9aaa8e;
    border-radius: 50%;
  }
  
  .auth-ring::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px dashed #9aaa8e;
    border-radius: 50%;
  }
  
  .auth-ring::after {
    content: "";
    position: absolute;
    inset: 48px;
    border: 1px solid #c6d0c1;
    border-radius: 50%;
  }
  
  .auth-ring > div {
    position: relative;
    z-index: 2;
    text-align: center;
  }
  
  .auth-ring small {
    display: block;
    color: #778274;
    font-size: 8px;
    letter-spacing: 0.14em;
  }
  
  .auth-ring strong {
    display: block;
    margin: 6px 0;
    color: var(--ind-green-dark);
    font-size: 38px;
    font-weight: 500;
  }
  
  .auth-ring span {
    color: #313a33;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.13em;
  }
  
  .auth-scan {
    display: flex;
    gap: 5px;
    margin-top: 30px;
  }
  
  .auth-scan span {
    width: 18px;
    height: 3px;
    background: #7f956d;
  }
  
  .auth-scan span:nth-child(2) {
    width: 35px;
  }
  
  .auth-scan span:nth-child(3) {
    width: 11px;
  }
  
  .auth-scan span:nth-child(4) {
    width: 26px;
  }
  
  .auth-caption {
    margin-top: 15px;
    text-align: center;
  }
  
  .auth-caption small {
    display: block;
    color: #788178;
    font-size: 8px;
    letter-spacing: 0.13em;
  }
  
  .auth-caption strong {
    display: block;
    margin-top: 5px;
    color: var(--ind-black);
    font-size: 12px;
    letter-spacing: 0.08em;
  }
  
  
  /* TRACEABILITY */
  
  .industry-trace {
    position: relative;
    width: 390px;
    padding: 35px 0;
  }
  
  .trace-line {
    position: absolute;
    top: 76px;
    left: 35px;
    right: 35px;
    height: 1px;
    background: #cbd3c8;
  }
  
  .trace-node {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 25%;
    float: left;
  }
  
  .trace-node span {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #657066;
    background: #f4f6f2;
    border: 1px solid #c9d1c7;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
  }
  
  .trace-node.active span {
    color: #ffffff;
    background: var(--ind-green);
    border-color: var(--ind-green);
    box-shadow: 0 8px 25px rgba(82, 109, 45, 0.20);
  }
  
  .trace-node b {
    color: #657066;
    font-size: 8px;
    letter-spacing: 0.09em;
  }
  
  .trace-node.active b {
    color: var(--ind-black);
  }
  
  
  /* =========================================================
     ECOSYSTEM
  ========================================================= */
  
  .industry-ecosystem {
    padding: 50px 0;
    background: #ffffff;
  }
  
  .industry-ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 65px;
    border-top: 1px solid var(--ind-border);
    border-bottom: 1px solid var(--ind-border);
  }
  
  .ecosystem-card {
    position: relative; 
    padding: 30px;
    border-right: 1px solid var(--ind-border);
    transition:
      background 0.25s ease,
      transform 0.25s ease;
  }
  
  .ecosystem-card:last-child {
    border-right: 0;
  }
  
  .ecosystem-card:hover {
    background: var(--ind-offwhite);
    transform: translateY(-4px);
  }
  
  .ecosystem-card > span {
    color: #a0aaa2;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
  }
  
  .ecosystem-icon {
    margin: 10px 0px;
    color: var(--ind-green);
    font-size: 32px;
    line-height: 1;
  }
  
  .ecosystem-card h3 {
    margin: 0 0 12px;
    color: var(--ind-black);
    font-size: 21px;
    font-weight: 700;
  }
  
  .ecosystem-card p {
    margin: 0;
    color: var(--ind-muted);
    font-size: 13px;
    line-height: 1.7;
  }
  
  
  /* =========================================================
     APPLICATIONS
  ========================================================= */
  
  .industry-applications {
    padding: 50px 0;
    background: var(--ind-dark);
    color: #ffffff;
  }
  
  .industry-application-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
  }
  
  .industry-application-intro {
    align-self: start;
    position: sticky;
    top: 30px;
  }
  
  .industry-applications .industry-kicker {
    color: #99b478;
  }
  
  .industry-application-intro h2 {
    margin: 0;
    color: #ffffff;
    font-size: 30px;
    font-weight: 650;
    letter-spacing: -0.045em;
    line-height: 1.08;
  }
  
  .industry-application-intro p {
    max-width: 460px;
    margin: 25px 0 32px;
    color: #aeb8b0;
    font-size: 15px;
    line-height: 1.8;
  }
  
  .industry-outline-btn {
    color: #ffffff;
    border: 1px solid #58645b;
  }
  
  .industry-outline-btn:hover {
    color: #ffffff;
    background: var(--ind-green-dark);
    border-color: var(--ind-green-dark);
    transform: translateY(-2px);
  }
  
  .industry-application-list {
    border-top: 1px solid #39423c;
  }
  
  .application-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid #39423c;
  }
  
  .application-item > span {
    color: #84927f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
  }
  
  .application-item h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 21px;
    font-weight: 650;
  }
  
  .application-item p {
    max-width: 540px;
    margin: 0;
    color: #98a39b;
    font-size: 13px;
    line-height: 1.7;
  }
  
  
  /* =========================================================
     FINAL CTA
  ========================================================= */
  
  .industry-final {
    padding: 50px 0;
    background:
      radial-gradient(circle at 85% 50%, rgba(111, 143, 61, 0.13), transparent 25%),
      #f3f6f1;
  }
  
  .industry-final-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    padding: 65px 70px;
    background: #ffffff;
    border: 1px solid #dce2dc;
    box-shadow: var(--ind-shadow);
  }
  
  .industry-final-box > div {
    max-width: 760px;
  }
  
  .industry-final .industry-kicker {
    margin-bottom: 15px;
  }
  
  .industry-final h2 {
    font-size: 30px;
  }
  
  .industry-final p {
    max-width: 680px;
    margin: 20px 0 0;
    color: var(--ind-muted);
    font-size: 15px;
    line-height: 1.8;
  }
  
  
  /* =========================================================
     RESPONSIVE — 1100px
  ========================================================= */
  
  @media (max-width: 1100px) {
  
    .industry-wrap {
      width: min(100% - 50px, 1100px);
    }
  
    .industry-hero-grid {
      gap: 45px;
    }
  
    .industry-intro-grid,
    .industry-section-heading {
      gap: 55px;
    }
  
    .industry-tab-content {
      gap: 50px;
      padding: 55px 40px;
    }
  
    .industry-application-grid {
      gap: 60px;
    }
  
    .industry-final-box {
      padding: 50px;
    }
  
  }
  
  
  /* =========================================================
     RESPONSIVE — 900px
  ========================================================= */
  
  @media (max-width: 900px) {
  
    .industry-wrap {
      width: min(100% - 40px, 760px);
    }
  
    .industry-hero {
      min-height: auto;
      padding: 100px 0;
    }
  
    .industry-hero-grid {
      grid-template-columns: 1fr;
      gap: 70px;
    }
  
    .industry-hero-content {
      max-width: 700px;
    }
  
    .industry-hero-visual {
      min-height: 440px;
    }
  
    .industry-intro-grid,
    .industry-section-heading {
      grid-template-columns: 1fr;
      gap: 25px;
    }
  
    .industry-metrics {
      grid-template-columns: 1fr 1fr;
    }
  
    .industry-metric:nth-child(2) {
      border-right: 0;
    }
  
    .industry-metric:nth-child(-n+2) {
      border-bottom: 1px solid var(--ind-border);
    }
  
    .industry-tab-nav {
      grid-template-columns: 1fr 1fr;
    }
  
    .industry-tab-nav label {
      min-height: 70px;
    }
  
    .industry-tab-nav label:nth-child(2) {
      border-right: 0;
    }
  
    .industry-tab-nav label:nth-child(-n+2) {
      border-bottom: 1px solid #cfd6d0;
    }
  
    .industry-tab-content {
      grid-template-columns: 1fr;
      gap: 50px;
    }
  
    .industry-tab-visual {
      min-height: 380px;
    }
  
    .industry-ecosystem-grid {
      grid-template-columns: 1fr 1fr;
    }
  
    .ecosystem-card:nth-child(2) {
      border-right: 0;
    }
  
    .ecosystem-card:nth-child(-n+2) {
      border-bottom: 1px solid var(--ind-border);
    }
  
    .industry-application-grid {
      grid-template-columns: 1fr;
    }
  
    .industry-application-intro {
      position: static;
    }
  
    .industry-final-box {
      align-items: flex-start;
      flex-direction: column;
    }
  
  }
  
  
  /* =========================================================
     RESPONSIVE — 600px
  ========================================================= */
  
  @media (max-width: 600px) {
  
    .industry-wrap {
      width: calc(100% - 30px);
    }
  
    .industry-hero {
      padding: 75px 0;
    }
  
    .industry-kicker {
      font-size: 10px;
    }
  
    .industry-hero h1 {
      font-size: 47px;
    }
  
    .industry-lead {
      font-size: 15px;
      line-height: 1.7;
    }
  
    .industry-actions {
      align-items: stretch;
      flex-direction: column;
    }
  
    .industry-primary-btn,
    .industry-secondary-btn,
    .industry-outline-btn {
      width: 100%;
    }
  
    .industry-hero-visual {
      min-height: 390px;
    }
  
    .orbit-one {
      width: 350px;
      height: 350px;
    }
  
    .orbit-two {
      width: 250px;
      height: 250px;
    }
  
    .industry-visual-card {
      width: 285px;
      min-height: 350px;
    }
  
    .industry-visual-icon {
      width: 150px;
      height: 150px;
    }
  
    .industry-intro,
    .industry-solutions,
    .industry-ecosystem,
    .industry-applications {
      padding: 80px 0;
    }
  
    .industry-intro h2,
    .industry-section-heading h2 {
      font-size: 34px;
    }
  
    .industry-metrics {
      grid-template-columns: 1fr;
      margin-top: 50px;
    }
  
    .industry-metric {
      min-height: auto;
      padding: 25px 0;
      border-right: 0;
      border-bottom: 1px solid var(--ind-border);
    }
  
    .industry-metric:last-child {
      border-bottom: 0;
    }
  
    .industry-tab-nav {
      grid-template-columns: 1fr;
    }
  
    .industry-tab-nav label,
    .industry-tab-nav label:not(:last-child) {
      min-height: 62px;
      border-right: 0;
      border-bottom: 1px solid #cfd6d0;
    }
  
    .industry-tab-nav label:last-child {
      border-bottom: 0;
    }
  
    .industry-tab-content {
      padding: 40px 25px;
    }
  
    .industry-tab-info h3 {
      font-size: 32px;
    }
  
    .industry-feature-list {
      grid-template-columns: 1fr;
    }
  
    .industry-feature-list > div,
    .industry-feature-list > div:nth-child(odd),
    .industry-feature-list > div:nth-child(even) {
      padding: 18px 0;
      border-right: 0;
    }
  
    .industry-tab-visual {
      min-height: 320px;
    }
  
    .industry-product-frame {
      height: 350px;
    }
  
    .industry-packaging-visual {
      transform: scale(0.82);
    }
  
    .industry-auth-card {
      width: 100%;
      min-height: 340px;
    }
  
    .industry-trace {
      width: 100%;
      transform: scale(0.85);
    }
  
    .industry-ecosystem-grid {
      grid-template-columns: 1fr;
    }
  
    .ecosystem-card,
    .ecosystem-card:nth-child(2) {
      min-height: 240px;
      border-right: 0;
      border-bottom: 1px solid var(--ind-border);
    }
  
    .ecosystem-card:last-child {
      border-bottom: 0;
    } 
  
    .application-item {
      grid-template-columns: 40px 1fr;
      gap: 15px;
    }
  
    .application-item h3 {
      font-size: 18px;
    }
  
    .industry-final {
      padding: 60px 0;
    }
  
    .industry-final-box {
      gap: 35px;
      padding: 35px 25px;
    }
  
    .industry-final h2 {
      font-size: 34px;
    }
  
  }

  .tech-page{
    --infoseal-blue:#0661af;
    --infoseal-blue-dark:#034c8d;
    --infoseal-blue-light:#eef7fd;
    --infoseal-black:#000000;
    --infoseal-text:#171717;
    --infoseal-muted:#626a70;
    --infoseal-border:#dfe5e9;
    --infoseal-white:#ffffff;
  
    font-family:"Inter","Helvetica Neue",Arial,sans-serif;
    color:var(--infoseal-black);
    background:#fff;
    overflow:hidden;
  }
  
  .tech-page *,
  .tech-page *::before,
  .tech-page *::after{
    box-sizing:border-box;
  }
  
  .tech-container{
    width:min(1240px,92%);
    margin:0 auto;
  }
  
  
  /* =========================================================
     HERO
  ========================================================= */
  
  .tech-hero{
    position:relative;
    min-height:780px;
    background:#fff;
    overflow:hidden;
  }
  
  .tech-hero-grid{
    position:absolute;
    right:0;
    top:0;
    width:48%;
    height:100%;
    background:
      linear-gradient(
        rgba(6,97,175,.035) 1px,
        transparent 1px
      ),
      linear-gradient(
        90deg,
        rgba(6,97,175,.035) 1px,
        transparent 1px
      );
    background-size:55px 55px;
    mask-image:linear-gradient(
      to right,
      transparent,
      black 45%
    );
  }
  
  .tech-topbar{
    height:105px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:1px solid var(--infoseal-border);
    position:relative;
    z-index:3;
  }
  
  .tech-logo{
    display:block;
    width:185px;
  }
  
  .tech-logo img{
    display:block;
    width:100%;
    height:auto;
  }
  
  .tech-breadcrumb{
    font-size:11px;
    color:#68727a;
    letter-spacing:.5px;
  }
  
  .tech-breadcrumb span{
    margin:0 10px;
    color:#b3bcc2;
  }
  
  .tech-hero-content{
    min-height:555px;
    display:grid;
    grid-template-columns:47% 53%;
    align-items:center;
    position:relative;
    z-index:2;
  }
  
  .tech-hero-copy{
    padding-right:55px;
  }
  
  .tech-overline,
  .tech-label,
  .tech-number{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:600;
  }
  
  .tech-overline{
    color:var(--infoseal-blue);
    margin-bottom:22px;
  }
  
  .tech-hero h1{
    font-size:clamp(65px,7vw,108px);
    line-height:.91;
    letter-spacing:-5px;
    font-weight:700;
    margin:0 0 32px;
    color:#000;
  }
  
  .tech-hero h1 span{
    display:block;
    color:var(--infoseal-blue);
  }
  
  .tech-hero-copy p{
    max-width:520px;
    color:#5c646a;
    font-size:18px;
    line-height:1.75;
    margin:0 0 38px;
  }
  
  .tech-btn{
    display:inline-flex;
    align-items:center;
    gap:22px;
    background:var(--infoseal-blue);
    color:#fff;
    text-decoration:none;
    padding:13px 14px 13px 22px;
    font-size:13px;
    font-weight:600;
    transition:.3s ease;
  }
  
  .tech-btn span{
    width:34px;
    height:34px;
    display:grid;
    place-items:center;
    background:#fff;
    color:var(--infoseal-blue);
    font-size:17px;
  }
  
  .tech-btn:hover{
    background:var(--infoseal-blue-dark);
    transform:translateY(-2px);
  }
  
  
  /* HERO IMAGE */
  
  .tech-hero-image{
    height:465px;
    margin-left:20px;
    position:relative;
    overflow:hidden;
    background:#edf5fa;
  }
  
  .tech-hero-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
  }
  
  .tech-image-overlay{
    position:absolute;
    inset:0;
    background:
      linear-gradient(
        135deg,
        rgba(6,97,175,.18),
        transparent 40%
      ),
      linear-gradient(
        to top,
        rgba(0,0,0,.55),
        transparent 40%
      );
  }
  
  .tech-image-info{
    position:absolute;
    left:28px;
    bottom:25px;
    color:#fff;
  }
  
  .tech-image-info span{
    display:block;
    font-size:9px;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:7px;
    opacity:.75;
  }
  
  .tech-image-info strong{
    font-size:17px;
    font-weight:600;
  }
  
  .tech-corner{
    position:absolute;
    width:30px;
    height:30px;
    border-color:#fff;
    z-index:2;
  }
  
  .tc-1{
    left:18px;
    top:18px;
    border-left:1px solid;
    border-top:1px solid;
  }
  
  .tc-2{
    right:18px;
    top:18px;
    border-right:1px solid;
    border-top:1px solid;
  }
  
  .tc-3{
    left:18px;
    bottom:18px;
    border-left:1px solid;
    border-bottom:1px solid;
  }
  
  .tc-4{
    right:18px;
    bottom:18px;
    border-right:1px solid;
    border-bottom:1px solid;
  }
  
  
  /* HERO BOTTOM */
  
  .tech-hero-bottom{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid var(--infoseal-border);
    position:relative;
    z-index:2;
  }
  
  .tech-hero-bottom div{
    padding:18px 20px 18px 0;
    display:flex;
    gap:15px;
    align-items:center;
    border-right:1px solid var(--infoseal-border);
  }
  
  .tech-hero-bottom div:last-child{
    border-right:0;
  }
  
  .tech-hero-bottom span{
    font-size:10px;
    color:var(--infoseal-blue);
  }
  
  .tech-hero-bottom strong{
    font-size:12px;
    font-weight:600;
  }
  
  
  /* =========================================================
     INTRO
  ========================================================= */
  
  .tech-intro{
    background:#f7fafc;
    padding:105px 0;
  }
  
  .tech-intro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:100px;
    align-items:end;
  }
  
  .tech-label{
    color:var(--infoseal-blue);
    margin-bottom:20px;
  }
  
  .tech-intro h2,
  .tech-section-head h2,
  .tech-flow-head h2,
  .tech-feature-content h2{
    font-size:clamp(40px,4.5vw,65px);
    line-height:1.04;
    letter-spacing:-3px;
    font-weight:650;
    margin:0;
  }
  
  .tech-intro h2 span,
  .tech-section-head h2 span,
  .tech-flow-head h2 span,
  .tech-feature-content h2 span{
    display:block;
    color:var(--infoseal-blue);
  }
  
  .tech-intro-copy p{
    font-size:16px;
    line-height:1.8;
    color:#626b71;
    max-width:550px;
  }
  
  .tech-line{
    width:100%;
    height:1px;
    background:#d8e0e5;
    margin:30px 0 18px;
  }
  
  .tech-note{
    font-size:11px;
    color:#707a81;
    letter-spacing:.5px;
  }
  
  .tech-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    margin-top:75px;
    border-top:1px solid #d8e0e5;
    border-bottom:1px solid #d8e0e5;
  }
  
  .tech-stat{
    padding:28px 25px 28px 0;
    border-right:1px solid #d8e0e5;
    margin-right:25px;
  }
  
  .tech-stat:last-child{
    border-right:0;
    margin-right:0;
  }
  
  .tech-stat > span{
    font-size:10px;
    color:#9aa4ab;
  }
  
  .tech-stat strong{
    display:block;
    font-size:27px;
    margin:13px 0 5px;
    color:#000;
  }
  
  .tech-stat small{
    color:#6d777d;
    font-size:11px;
  }
  
  
  /* =========================================================
     TECHNOLOGY PLATFORM
  ========================================================= */
  
  .tech-platform{
    padding:115px 0;
    background:#fff;
  }
  
  .tech-section-head{
    display:grid;
    grid-template-columns:1fr 400px;
    gap:80px;
    align-items:end;
    margin-bottom:65px;
  }
  
  .tech-section-head p{
    margin:0;
    color:#697279;
    line-height:1.8;
  }
  
  
  /* =========================================================
     TABS
  ========================================================= */
  
  .tech-tabs{
    position:relative;
  }
  
  .tech-tabs > input{
    display:none;
  }
  
  .tech-tab-nav{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    border-top:1px solid #d9e1e6;
    border-bottom:1px solid #d9e1e6;
  }
  
  .tech-tab-nav label{
    min-height:125px;
    padding:20px;
    cursor:pointer;
    border-right:1px solid #d9e1e6;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    position:relative;
    transition:.3s ease;
  }
  
  .tech-tab-nav label:last-child{
    border-right:0;
  }
  
  .tech-tab-nav label > span{
    color:#9ba5ab;
    font-size:10px;
  }
  
  .tech-tab-nav label strong{
    font-size:13px;
    line-height:1.4;
    font-weight:600;
    color:#111;
  }
  
  .tech-tab-nav label small{
    color:#7b858b;
    font-size:9px;
  }
  
  .tech-tab-nav label:after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-1px;
    height:3px;
    background:var(--infoseal-blue);
    transform:scaleX(0);
    transform-origin:left;
    transition:.3s ease;
  }
  
  #tech-tab-1:checked ~ .tech-tab-nav label[for="tech-tab-1"],
  #tech-tab-2:checked ~ .tech-tab-nav label[for="tech-tab-2"],
  #tech-tab-3:checked ~ .tech-tab-nav label[for="tech-tab-3"],
  #tech-tab-4:checked ~ .tech-tab-nav label[for="tech-tab-4"],
  #tech-tab-5:checked ~ .tech-tab-nav label[for="tech-tab-5"]{
    background:var(--infoseal-blue-light);
  }
  
  #tech-tab-1:checked ~ .tech-tab-nav label[for="tech-tab-1"]:after,
  #tech-tab-2:checked ~ .tech-tab-nav label[for="tech-tab-2"]:after,
  #tech-tab-3:checked ~ .tech-tab-nav label[for="tech-tab-3"]:after,
  #tech-tab-4:checked ~ .tech-tab-nav label[for="tech-tab-4"]:after,
  #tech-tab-5:checked ~ .tech-tab-nav label[for="tech-tab-5"]:after{
    transform:scaleX(1);
  }
  
  
  /* =========================================================
     TAB PANELS
  ========================================================= */
  
  .tech-panel{
    display:none;
    grid-template-columns:1fr 1fr;
    gap:85px;
    align-items:center;
    padding:75px 0 20px;
  }
  
  #tech-tab-1:checked ~ .tech-panel-1,
  #tech-tab-2:checked ~ .tech-panel-2,
  #tech-tab-3:checked ~ .tech-panel-3,
  #tech-tab-4:checked ~ .tech-panel-4,
  #tech-tab-5:checked ~ .tech-panel-5{
    display:grid;
  }
  
  .tech-number{
    color:var(--infoseal-blue);
    margin-bottom:20px;
  }
  
  .tech-panel-content h3{
    font-size:clamp(42px,4.2vw,65px);
    line-height:1;
    letter-spacing:-3px;
    margin:0 0 25px;
    font-weight:650;
  }
  
  .tech-panel-content h3 span{
    display:block;
    color:var(--infoseal-blue);
  }
  
  .tech-panel-content > p{
    max-width:560px;
    color:#656f76;
    line-height:1.8;
    font-size:16px;
  }
  
  .tech-features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid #dce2e6;
    margin-top:42px;
  }
  
  .tech-features div{
    padding:20px 15px 0 0;
    border-right:1px solid #dce2e6;
    margin-right:15px;
  }
  
  .tech-features div:last-child{
    border-right:0;
  }
  
  .tech-features strong{
    display:block;
    font-size:14px;
    margin-bottom:7px;
  }
  
  .tech-features span{
    font-size:10px;
    color:#747e84;
  }
  
  
  /* PANEL IMAGE */
  
  .tech-panel-image{
    height:460px;
    position:relative;
    overflow:hidden;
    background:#eaf3f9;
  }
  
  .tech-panel-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:.6s ease;
  }
  
  .tech-panel-image:hover img{
    transform:scale(1.03);
  }
  
  .tech-panel-image:after{
    content:"";
    position:absolute;
    inset:0;
    background:
      linear-gradient(
        to top,
        rgba(0,0,0,.62),
        transparent 45%
      );
  }
  
  .tech-panel-image-content{
    position:absolute;
    left:28px;
    bottom:27px;
    color:#fff;
    z-index:2;
  }
  
  .tech-panel-image-content span{
    display:block;
    font-size:9px;
    text-transform:uppercase;
    letter-spacing:2px;
    opacity:.75;
    margin-bottom:7px;
  }
  
  .tech-panel-image-content strong{
    display:block;
    font-size:25px;
    font-weight:600;
  }
  
  .tech-panel-image-content small{
    display:block;
    margin-top:5px;
    font-size:10px;
    opacity:.75;
  }
  
  .image-number{
    position:absolute;
    right:25px;
    top:22px;
    z-index:2;
    color:#fff;
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
  }
  
  
  /* =========================================================
     FLOW
  ========================================================= */
  
  .tech-flow{
    padding:110px 0;
    background:#f5f8fa;
  }
  
  .tech-flow-head{
    display:grid;
    grid-template-columns:1fr 400px;
    gap:80px;
    align-items:end;
    margin-bottom:70px;
  }
  
  .tech-flow-head p{
    color:#69737a;
    line-height:1.8;
    margin:0;
  }
  
  .tech-flow-grid{
    display:grid;
    grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;
    align-items:center;
  }
  
  .tech-flow-item{
    padding:25px;
    background:#fff;
    min-height:170px;
    border:1px solid #e0e6ea;
    transition:.3s ease;
  }
  
  .tech-flow-item:hover{
    border-color:var(--infoseal-blue);
    transform:translateY(-4px);
  }
  
  .flow-icon{
    color:var(--infoseal-blue);
    font-size:10px;
    margin-bottom:30px;
  }
  
  .tech-flow-item h4{
    margin:0 0 8px;
    font-size:18px;
  }
  
  .tech-flow-item p{
    margin:0;
    color:#737d83;
    font-size:11px;
    line-height:1.6;
  }
  
  .tech-flow-arrow{
    color:var(--infoseal-blue);
    font-size:22px;
    padding:0 15px;
  }
  
  
  /* =========================================================
     FEATURE
  ========================================================= */
  
  .tech-feature{
    padding:120px 0;
    background:#fff;
  }
  
  .tech-feature-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:90px;
    align-items:center;
  }
  
  .tech-feature-image{
    height:520px;
    position:relative;
    overflow:hidden;
  }
  
  .tech-feature-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }
  
  .feature-image-label{
    position:absolute;
    left:25px;
    bottom:25px;
    z-index:2;
    padding:18px 20px;
    background:#fff;
    border-left:3px solid var(--infoseal-blue);
  }
  
  .feature-image-label span{
    display:block;
    color:var(--infoseal-blue);
    font-size:9px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:6px;
  }
  
  .feature-image-label strong{
    font-size:13px;
  }
  
  .tech-feature-content p{
    color:#646e74;
    line-height:1.85;
    font-size:16px;
    max-width:550px;
    margin:30px 0;
  }
  
  .tech-check-list{
    border-top:1px solid #dce2e6;
  }
  
  .tech-check-list div{
    padding:15px 0;
    border-bottom:1px solid #dce2e6;
    font-size:13px;
    display:flex;
    gap:12px;
    align-items:center;
  }
  
  .tech-check-list span{
    color:var(--infoseal-blue);
    font-weight:700;
  }
  
  
  /* =========================================================
     CTA
  ========================================================= */
  
  .tech-cta{
    position:relative;
    padding:100px 0;
    background:var(--infoseal-blue);
    overflow:hidden;
  }
  
  .tech-cta-pattern{
    position:absolute;
    inset:0;
    opacity:.12;
    background:
      linear-gradient(
        rgba(255,255,255,.5) 1px,
        transparent 1px
      ),
      linear-gradient(
        90deg,
        rgba(255,255,255,.5) 1px,
        transparent 1px
      );
    background-size:55px 55px;
  }
  
  .tech-cta-content{
    position:relative;
    z-index:2;
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:50px;
  }
  
  .tech-cta .tech-label{
    color:#cfe7fa;
  }
  
  .tech-cta h2{
    color:#fff;
    font-size:clamp(42px,5vw,70px);
    line-height:1;
    letter-spacing:-3px;
    margin:0;
  }
  
  .tech-cta h2 span{
    display:block;
    color:#d8ecfb;
  }
  
  .tech-btn-white{
    background:#fff;
    color:#000;
  }
  
  .tech-btn-white span{
    background:var(--infoseal-blue);
    color:#fff;
  }
  
  
  /* =========================================================
     RESPONSIVE
  ========================================================= */
  
  @media(max-width:1100px){
  
    .tech-hero-content{
      grid-template-columns:1fr;
      padding:70px 0;
      gap:60px;
    }
  
    .tech-hero{
      min-height:auto;
    }
  
    .tech-hero-copy{
      padding-right:0;
    }
  
    .tech-hero-image{
      margin-left:0;
      height:450px;
    }
  
    .tech-intro-grid,
    .tech-section-head,
    .tech-flow-head,
    .tech-feature-grid{
      grid-template-columns:1fr;
      gap:45px;
    }
  
    .tech-tab-nav{
      overflow-x:auto;
      grid-template-columns:repeat(5,180px);
    }
  
    .tech-tab-nav label{
      min-width:180px;
    }
  
    .tech-panel{
      gap:45px;
    }
  
    .tech-flow-grid{
      grid-template-columns:1fr 1fr;
      gap:20px;
    }
  
    .tech-flow-arrow{
      display:none;
    }
  
  }
  
  
  @media(max-width:700px){
  
    .tech-container{
      width:90%;
    }
  
    .tech-topbar{
      height:85px;
    }
  
    .tech-logo{
      width:145px;
    }
  
    .tech-breadcrumb{
      display:none;
    }
  
    .tech-hero-content{
      padding:65px 0;
    }
  
    .tech-hero h1{
      font-size:58px;
      letter-spacing:-3px;
    }
  
    .tech-hero-copy p{
      font-size:15px;
    }
  
    .tech-hero-image{
      height:350px;
    }
  
    .tech-hero-bottom{
      grid-template-columns:1fr 1fr;
    }
  
    .tech-hero-bottom div{
      border-bottom:1px solid var(--infoseal-border);
    }
  
    .tech-intro,
    .tech-platform,
    .tech-flow,
    .tech-feature{
      padding:75px 0;
    }
  
    .tech-intro h2,
    .tech-section-head h2,
    .tech-flow-head h2,
    .tech-feature-content h2{
      font-size:43px;
      letter-spacing:-2px;
    }
  
    .tech-stats{
      grid-template-columns:1fr 1fr;
    }
  
    .tech-stat{
      margin:0;
      padding:22px 15px;
      border-bottom:1px solid #d8e0e5;
    }
  
    .tech-stat:nth-child(2){
      border-right:0;
    }
  
    .tech-stat:nth-child(3){
      border-right:1px solid #d8e0e5;
    }
  
    .tech-tab-nav{
      grid-template-columns:repeat(5,165px);
    }
  
    .tech-tab-nav label{
      min-width:165px;
      min-height:105px;
      padding:15px;
    }
  
    .tech-panel{
      grid-template-columns:1fr;
      padding-top:50px;
    }
  
    .tech-panel-content h3{
      font-size:45px;
      letter-spacing:-2px;
    }
  
    .tech-panel-image{
      height:350px;
    }
  
    .tech-features{
      grid-template-columns:1fr;
    }
  
    .tech-features div{
      border-right:0;
      border-bottom:1px solid #dce2e6;
      padding-bottom:15px;
      margin-right:0;
    }
  
    .tech-flow-grid{
      grid-template-columns:1fr;
    }
  
    .tech-flow-item{
      min-height:auto;
    }
  
    .tech-feature-image{
      height:350px;
    }
  
    .tech-cta-content{
      flex-direction:column;
      align-items:flex-start;
    }
  
    .tech-cta h2{
      font-size:45px;
      letter-spacing:-2px;
    }
  
  }

  .htech-page{
    --blue:#0661af;
    --blue-dark:#034f91;
    --blue-soft:#eef6fc;
    --black:#000;
    --text:#202428;
    --muted:#606a72;
    --light:#f6f8fa;
    --border:#dce2e7;
    --white:#fff;
  
    font-family:"Inter","Helvetica Neue",Arial,sans-serif;
    color:var(--black);
    background:#fff;
    overflow:hidden;
  }
  
  .htech-page *,
  .htech-page *::before,
  .htech-page *::after{
    box-sizing:border-box;
  }
  
  .htech-container{
    width:min(1240px,92%);
    margin:0 auto;
  }
  
  
  /* =====================================================
     HERO
  ===================================================== */
  
  .htech-hero{
    background:#fff;
    position:relative;
  }
  
  .htech-header{
    height:100px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:1px solid var(--border);
  }
  
  .htech-logo{
    width:185px;
    display:block;
  }
  
  .htech-logo img{
    width:100%;
    height:auto;
    display:block;
  }
  
  .htech-header-right{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:15px;
    color:#6b7379;
  }
  
  .htech-header-right strong{
    color:#000;
    font-weight:600;
  }
  
  .htech-divider{
    width:28px;
    height:1px;
    background:#b8c0c5;
  }
  
  
  .htech-hero-grid{
    min-height:600px;
    display:grid;
    grid-template-columns:46% 54%;
    align-items:center;
    gap:65px;
  }
  
  .htech-hero-copy{
    padding:70px 0;
  }
  
  .htech-kicker{
    color:var(--blue);
    font-size:15px;
    font-weight:600;
    margin-bottom:22px;
    position:relative;
    padding-left:38px;
  }
  
  .htech-kicker:before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:25px;
    height:2px;
    background:var(--blue);
  }
  
  .htech-hero h1{
    font-size:35px;
    line-height:1.08;
    letter-spacing:-1px;
    font-weight:700;
    margin:0 0 28px;
    text-transform:none;
  }
  
  .htech-hero h1 span{
    display:block;
    color:var(--blue);
  }
  
  .htech-hero-copy p{
    max-width:535px;
    font-size:18px;
    line-height:1.8;
    color:var(--muted);
    margin:0 0 34px;
  }
  
  .htech-link{
    display:inline-flex;
    align-items:center;
    gap:18px;
    color:var(--blue);
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    border-bottom:1px solid var(--blue);
    padding-bottom:9px;
  }
  
  .htech-link span{
    font-size:20px;
    transition:.3s ease;
  }
  
  .htech-link:hover span{
    transform:translateX(5px);
  }
  
  
  /* HERO IMAGE */
  
  .htech-hero-visual{
    height:480px;
    position:relative;
    overflow:hidden;
    background:#eaf3f9;
  }
  
  .htech-hero-visual img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
  }
  
  .htech-hero-visual:after{
    content:"";
    position:absolute;
    inset:0;
    background:
      linear-gradient(
        to top,
        rgba(0,0,0,.55),
        transparent 45%
      );
  }
  
  .htech-image-caption{
    position:absolute;
    z-index:2;
    bottom:28px;
    left:30px;
    color:#fff;
  }
  
  .htech-image-caption span{
    display:block;
    font-size:15px;
    margin-bottom:6px;
    opacity:.75;
  }
  
  .htech-image-caption strong{
    font-size:18px;
    font-weight:600;
  }
  
  .htech-image-index{
    position:absolute;
    z-index:2;
    top:25px;
    right:25px;
    color:#fff;
    font-size:18px;
    font-weight:600;
  }
  
  
  /* HERO META */
  
  .htech-hero-meta{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid var(--border);
  }
  
  .htech-hero-meta div{
    padding:23px 25px 23px 0;
    border-right:1px solid var(--border);
  }
  
  .htech-hero-meta div:not(:first-child){
    padding-left:25px;
  }
  
  .htech-hero-meta div:last-child{
    border-right:0;
  }
  
  .htech-hero-meta span{
    display:block;
    color:#7a8389;
    font-size:15px;
    margin-bottom:6px;
  }
  
  .htech-hero-meta strong{
    font-size:16px;
    font-weight:600;
  }
  
  
  /* =====================================================
     INTRO
  ===================================================== */
  
  .htech-intro{
    background:var(--light);
    padding:90px 0;
  }
  
  .htech-intro-grid{
    display:grid;
    grid-template-columns:25% 75%;
    gap:50px;
  }
  
  .htech-section-label{
    color:var(--blue);
    font-size:15px;
    font-weight:600;
  }
  
  .htech-intro h2,
  .htech-platform-heading h2,
  .htech-capability-head h2,
  .htech-feature-copy h2,
  .htech-cta h2{
    font-size:35px;
    line-height:1.15;
    letter-spacing:-.8px;
    font-weight:650;
    margin:0;
  }
  
  .htech-intro h2 span,
  .htech-platform-heading h2 span,
  .htech-capability-head h2 span,
  .htech-feature-copy h2 span,
  .htech-cta h2 span{
    display:block;
    color:var(--blue);
  }
  
  .htech-intro p{
    max-width:800px;
    color:var(--muted);
    font-size:18px;
    line-height:1.8;
    margin:27px 0 0;
  }
  
  
  /* =====================================================
     TECHNOLOGY PLATFORM
  ===================================================== */
  
  .htech-platform{
    padding:100px 0 110px;
    background:#fff;
  }
  
  .htech-platform-heading{
    display:grid;
    grid-template-columns:1fr 390px;
    gap:70px;
    align-items:end;
    margin-bottom:55px;
  }
  
  .htech-platform-heading p{
    margin:0;
    color:var(--muted);
    font-size:17px;
    line-height:1.75;
  }
  
  
  /* =====================================================
     TABS
  ===================================================== */
  
  .htech-tabs{
    position:relative;
  }
  
  .htech-tabs > input{
    display:none;
  }
  
  .htech-tab-nav{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
  }
  
  .htech-tab-nav label{
    min-height:125px;
    padding:20px 18px;
    border-right:1px solid var(--border);
    cursor:pointer;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    position:relative;
    transition:.25s ease;
  }
  
  .htech-tab-nav label:last-child{
    border-right:0;
  }
  
  .htech-tab-nav label > span{
    font-size:15px;
    color:#9aa3a9;
  }
  
  .htech-tab-nav label strong{
    font-size:15px;
    line-height:1.35;
    font-weight:600;
    color:#000;
  }
  
  .htech-tab-nav label small{
    font-size:15px;
    color:#737d84;
  }
  
  .htech-tab-nav label:after{
    content:"";
    position:absolute;
    left:0;
    bottom:-1px;
    width:100%;
    height:3px;
    background:var(--blue);
    transform:scaleX(0);
    transform-origin:left;
    transition:.3s ease;
  }
  
  #htech-tab-1:checked ~ .htech-tab-nav label[for="htech-tab-1"],
  #htech-tab-2:checked ~ .htech-tab-nav label[for="htech-tab-2"],
  #htech-tab-3:checked ~ .htech-tab-nav label[for="htech-tab-3"],
  #htech-tab-4:checked ~ .htech-tab-nav label[for="htech-tab-4"],
  #htech-tab-5:checked ~ .htech-tab-nav label[for="htech-tab-5"]{
    background:var(--blue-soft);
  }
  
  #htech-tab-1:checked ~ .htech-tab-nav label[for="htech-tab-1"]:after,
  #htech-tab-2:checked ~ .htech-tab-nav label[for="htech-tab-2"]:after,
  #htech-tab-3:checked ~ .htech-tab-nav label[for="htech-tab-3"]:after,
  #htech-tab-4:checked ~ .htech-tab-nav label[for="htech-tab-4"]:after,
  #htech-tab-5:checked ~ .htech-tab-nav label[for="htech-tab-5"]:after{
    transform:scaleX(1);
  }
  
  
  /* =====================================================
     TAB CONTENT
  ===================================================== */
  
  .htech-panel{
    display:none;
    grid-template-columns:46% 54%;
    gap:70px;
    align-items:center;
    padding:65px 0 15px;
  }
  
  #htech-tab-1:checked ~ .htech-panel-1,
  #htech-tab-2:checked ~ .htech-panel-2,
  #htech-tab-3:checked ~ .htech-panel-3,
  #htech-tab-4:checked ~ .htech-panel-4,
  #htech-tab-5:checked ~ .htech-panel-5{
    display:grid;
  }
  
  .htech-panel-number{
    color:var(--blue);
    font-size:15px;
    font-weight:600;
    margin-bottom:20px;
  }
  
  .htech-panel-copy h3{
    font-size:35px;
    line-height:1.08;
    letter-spacing:-1px;
    margin:0 0 25px;
    font-weight:650;
  }
  
  .htech-panel-copy h3 span{
    display:block;
    color:var(--blue);
  }
  
  .htech-panel-copy > p{
    color:var(--muted);
    font-size:17px;
    line-height:1.8;
    max-width:590px;
    margin:0;
  }
  
  .htech-highlight{
    display:flex;
    align-items:center;
    gap:22px;
    margin-top:35px;
    padding-top:22px;
    border-top:1px solid var(--border);
  }
  
  .htech-highlight strong{
    color:var(--blue);
    font-size:20px;
    font-weight:700;
    white-space:nowrap;
  }
  
  .htech-highlight span{
    font-size:15px;
    color:#707a81;
  }
  
  
  /* PANEL IMAGE */
  
  .htech-panel-media{
    height:430px;
    position:relative;
    overflow:hidden;
    background:#edf4f9;
  }
  
  .htech-panel-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s ease;
  }
  
  .htech-panel-media:hover img{
    transform:scale(1.025);
  }
  
  .htech-panel-media:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
      to top,
      rgba(0,0,0,.58),
      transparent 45%
    );
  }
  
  .htech-media-title{
    position:absolute;
    left:25px;
    bottom:23px;
    color:#fff;
    z-index:2;
    font-size:18px;
    font-weight:600;
  }
  
  .htech-media-number{
    position:absolute;
    top:20px;
    right:22px;
    color:#fff;
    z-index:2;
    font-size:18px;
  }
  
  
  /* =====================================================
     CAPABILITY
  ===================================================== */
  
  .htech-capability{
    background:var(--light);
    padding:95px 0;
  }
  
  .htech-capability-head{
    display:grid;
    grid-template-columns:25% 75%;
    gap:50px;
    margin-bottom:60px;
  }
  
  .htech-capability-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
  }
  
  .htech-capability-grid > div{
    padding:28px 22px 30px 0;
    margin-right:22px;
    border-right:1px solid var(--border);
  }
  
  .htech-capability-grid > div:last-child{
    border-right:0;
    margin-right:0;
  }
  
  .htech-capability-grid span{
    display:block;
    font-size:15px;
    color:var(--blue);
    margin-bottom:25px;
  }
  
  .htech-capability-grid strong{
    display:block;
    font-size:18px;
    line-height:1.35;
    margin-bottom:12px;
  }
  
  .htech-capability-grid p{
    color:var(--muted);
    font-size:15px;
    line-height:1.7;
    margin:0;
  }
  
  
  /* =====================================================
     FEATURE
  ===================================================== */
  
  .htech-feature{
    padding:110px 0;
    background:#fff;
  }
  
  .htech-feature-grid{
    display:grid;
    grid-template-columns:55% 45%;
    align-items:center;
  }
  
  .htech-feature-media{
    height:500px;
    position:relative;
    overflow:hidden;
  }
  
  .htech-feature-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }
  
  .htech-feature-media:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
      to top,
      rgba(0,0,0,.55),
      transparent 48%
    );
  }
  
  .htech-feature-caption{
    position:absolute;
    left:25px;
    bottom:25px;
    z-index:2;
    color:#fff;
  }
  
  .htech-feature-caption span{
    display:block;
    font-size:15px;
    margin-bottom:5px;
    opacity:.75;
  }
  
  .htech-feature-caption strong{
    font-size:18px;
  }
  
  .htech-feature-copy{
    padding:55px;
  }
  
  .htech-feature-copy p{
    color:var(--muted);
    font-size:17px;
    line-height:1.8;
    margin:28px 0 35px;
  }
  
  .htech-outline-btn{
    display:inline-flex;
    align-items:center;
    gap:18px;
    border:1px solid var(--blue);
    padding:14px 18px;
    color:var(--blue);
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.25s ease;
  }
  
  .htech-outline-btn span{
    font-size:20px;
  }
  
  .htech-outline-btn:hover{
    background:var(--blue);
    color:#fff;
  }
  
  
  /* =====================================================
     CTA
  ===================================================== */
  
  .htech-cta{
    background:var(--blue);
    padding:80px 0;
  }
  
  .htech-cta-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
  }
  
  .htech-cta-label{
    color:#d7eafa;
    font-size:15px;
    font-weight:600;
    margin-bottom:20px;
  }
  
  .htech-cta h2{
    color:#fff;
  }
  
  .htech-cta h2 span{
    color:#d9ecfb;
  }
  
  .htech-cta-btn{
    display:inline-flex;
    align-items:center;
    gap:20px;
    background:#fff;
    color:#000;
    text-decoration:none;
    padding:15px 18px 15px 22px;
    font-size:15px;
    font-weight:600;
    white-space:nowrap;
  }
  
  .htech-cta-btn span{
    width:32px;
    height:32px;
    display:grid;
    place-items:center;
    background:var(--blue);
    color:#fff;
    font-size:18px;
  }
  
  
  /* =====================================================
     RESPONSIVE
  ===================================================== */
  
  @media(max-width:1050px){
  
    .htech-hero-grid{
      grid-template-columns:1fr;
      gap:40px;
      padding:60px 0;
    }
  
    .htech-hero-copy{
      padding:0;
    }
  
    .htech-hero-visual{
      margin:0;
      height:430px;
    }
  
    .htech-intro-grid,
    .htech-capability-head{
      grid-template-columns:1fr;
      gap:30px;
    }
  
    .htech-platform-heading{
      grid-template-columns:1fr;
      gap:30px;
    }
  
    .htech-panel{
      grid-template-columns:1fr;
      gap:45px;
    }
  
    .htech-capability-grid{
      grid-template-columns:1fr 1fr;
    }
  
    .htech-capability-grid > div:nth-child(2){
      border-right:0;
    }
  
    .htech-capability-grid > div:nth-child(3),
    .htech-capability-grid > div:nth-child(4){
      border-top:1px solid var(--border);
    }
  
    .htech-feature-grid{
      grid-template-columns:1fr;
    }
  
    .htech-feature-copy{
      padding:55px 0 0;
    }
  
  }
  
  
  @media(max-width:700px){
  
    .htech-container{
      width:90%;
    }
  
    .htech-header{
      height:85px;
    }
  
    .htech-logo{
      width:145px;
    }
  
    .htech-header-right{
      display:none;
    }
  
    .htech-hero h1,
    .htech-intro h2,
    .htech-platform-heading h2,
    .htech-panel-copy h3,
    .htech-capability-head h2,
    .htech-feature-copy h2,
    .htech-cta h2{
      font-size:32px;
    }
  
    .htech-hero-copy p,
    .htech-intro p,
    .htech-panel-copy > p,
    .htech-feature-copy p{
      font-size:15px;
    }
  
    .htech-hero-grid{
      padding:50px 0;
    }
  
    .htech-hero-visual{
      height:330px;
    }
  
    .htech-hero-meta{
      grid-template-columns:1fr;
    }
  
    .htech-hero-meta div{
      border-right:0;
      border-bottom:1px solid var(--border);
      padding:18px 0;
    }
  
    .htech-hero-meta div:not(:first-child){
      padding-left:0;
    }
  
    .htech-hero-meta div:last-child{
      border-bottom:0;
    }
  
    .htech-intro,
    .htech-platform,
    .htech-capability,
    .htech-feature{
      padding:70px 0;
    }
  
    .htech-tab-nav{
      display:flex;
      overflow-x:auto;
    }
  
    .htech-tab-nav label{
      min-width:190px;
      min-height:110px;
    }
  
    .htech-panel{
      padding-top:50px;
    }
  
    .htech-panel-media{
      height:330px;
    }
  
    .htech-highlight{
      display:block;
    }
  
    .htech-highlight strong{
      display:block;
      margin-bottom:8px;
    }
  
    .htech-capability-grid{
      grid-template-columns:1fr;
    }
  
    .htech-capability-grid > div{
      border-right:0;
      border-bottom:1px solid var(--border);
      margin:0;
      padding-right:0;
    }
  
    .htech-capability-grid > div:nth-child(2),
    .htech-capability-grid > div:nth-child(3),
    .htech-capability-grid > div:nth-child(4){
      border-top:0;
    }
  
    .htech-capability-grid > div:last-child{
      border-bottom:0;
    }
  
    .htech-feature-media{
      height:330px;
    }
  
    .htech-feature-copy{
      padding-top:40px;
    }
  
    .htech-cta-inner{
      flex-direction:column;
      align-items:flex-start;
    }
  
  }

  /* =====================================================
   HOLOLIVE CORPORATION INDUSTRIES
   PREMIUM CORPORATE CONTENT SECTION
===================================================== */

.hololive-section{
    --hl-blue:#0661af;
    --hl-black:#000;
    --hl-text:#1d2328;
    --hl-muted:#606970;
    --hl-border:#dfe4e8;
    --hl-soft:#f6f9fb;
    --hl-white:#fff;
  
    background:#fff;
    color:var(--hl-black);
    font-family:"Inter","Helvetica Neue",Arial,sans-serif;
    padding: 50px 0 60px;
    overflow:hidden;
  }
  
  .hololive-section *,
  .hololive-section *::before,
  .hololive-section *::after{
    box-sizing:border-box;
  }
  
  .hololive-wrap{
    width:min(1240px,92%);
    margin:0 auto;
  }
  
  
  /* =====================================================
     HEADER
  ===================================================== */
  
  .hololive-section-head{
    position:relative;
    display:grid;
    grid-template-columns:1fr 2fr;
    column-gap:80px;
    padding-bottom:55px;
    border-bottom:1px solid var(--hl-border);
  }
  
  .hololive-eyebrow{
    grid-column:1 / -1;
    display:flex;
    align-items:center;
    gap:14px;
    color:var(--hl-blue);
    font-size:15px;
    font-weight:600;
    margin-bottom:25px;
  }
  
  .hololive-eyebrow-line{
    width:30px;
    height:2px;
    background:var(--hl-blue);
  }
  
  .hololive-section-head h2{
    margin:0;
    font-size:35px;
    line-height:1.12;
    letter-spacing:-.8px;
    font-weight:650;
  }
  
  .hololive-section-head h2 span{
    color:var(--hl-blue);
  }
  
  .hololive-head-side{
    align-self:end;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:15px;
    padding-bottom:4px;
  }
  
  .hololive-head-number{
    color:var(--hl-blue);
    font-size:18px;
    font-weight:600;
  }
  
  .hololive-head-label{
    color:#687178;
    font-size:15px;
    font-weight:500;
  }
  
  
  /* =====================================================
     CONTENT BLOCKS
  ===================================================== */
  
  .hololive-content-block{
    display:grid;
    grid-template-columns:120px 1fr;
    gap:45px;
    padding:58px 0;
    border-bottom:1px solid var(--hl-border);
  }
  
  .hololive-block-marker{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
  }
  
  .hololive-icon{
    width:52px;
    height:52px;
    border:1px solid var(--hl-border);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--hl-blue);
    background:#fff;
    font-size:20px;
    transition:.3s ease;
  }
  
  .hololive-content-block:hover .hololive-icon{
    border-color:var(--hl-blue);
    background:var(--hl-blue);
    color:#fff;
  }
  
  .hololive-block-marker > span{
    font-size:15px;
    color:#929ba1;
    font-weight:600;
  } 
  
  .hololive-block-top{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:22px;
  }
  
  .hololive-block-top > span:first-child{
    font-size:15px;
    color:var(--hl-blue);
    font-weight:600;
  }
  
  .hololive-mini-line{
    width:35px;
    height:1px;
    background:var(--hl-border);
  }
  
  .hololive-block-content p{
    margin:0;
    color:var(--hl-text);
    font-size:17px;
    line-height:1.9;
    font-weight:400;
  }
  
  
  /* =====================================================
     FEATURE BLOCK
  ===================================================== */
  
  .hololive-feature-block{
    background:linear-gradient(
      to right,
      transparent,
      rgba(6,97,175,.025)
    );
  }
  
  .hololive-icon-blue{
    background:var(--hl-blue);
    color:#fff;
    border-color:var(--hl-blue);
  }
  
  
  /* =====================================================
     FINAL STATEMENT
  ===================================================== */
  
  .hololive-final{
    display:grid;
    grid-template-columns:70px 70px 1fr;
    align-items:center;
    gap:25px;
    margin-top:55px;
    padding:38px 40px;
    background:var(--hl-blue);
    color:#fff;
  }
  
  .hololive-final-icon{
    width:48px;
    height:48px;
    border:1px solid rgba(255,255,255,.35);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:19px;
  }
  
  .hololive-final-number{
    font-size:18px;
    font-weight:600;
    color:#d8eafb;
    border-left:1px solid rgba(255,255,255,.35);
    padding-left:25px;
  }
  
  .hololive-final-content > span{
    display:block;
    font-size:15px;
    color:#d8eafb;
    margin-bottom:10px;
    font-weight:600;
  }
  
  .hololive-final-content p{
    margin:0;
    color:#fff;
    font-size:21px;
    line-height:1.6;
    font-weight:500;
  }
  
  
  /* =====================================================
     HOVER DETAILS
  ===================================================== */
  
  .hololive-content-block{
    transition:.25s ease;
  }
  
  .hololive-content-block:hover{
    padding-left:12px;
  }
  
  .hololive-content-block:hover .hololive-block-marker > span{
    color:var(--hl-blue);
  }
  
  
  /* =====================================================
     RESPONSIVE
  ===================================================== */
  
  @media(max-width:900px){
  
    .hololive-section{
      padding:75px 0 80px;
    }
  
    .hololive-section-head{
      grid-template-columns:1fr;
      gap:25px;
    }
  
    .hololive-head-side{
      justify-content:flex-start;
    }
  
    .hololive-content-block{
      grid-template-columns:80px 1fr;
      gap:30px;
    }
  
    .hololive-final{
      grid-template-columns:55px 55px 1fr;
      padding:30px;
    }
  
  }
  
  
  @media(max-width:650px){
  
    .hololive-wrap{
      width:90%;
    }
  
    .hololive-section-head h2{
      font-size:32px;
    }
  
    .hololive-content-block{
      grid-template-columns:1fr;
      gap:22px;
      padding:45px 0;
    }
  
    .hololive-block-marker{
      flex-direction:row;
      align-items:center;
    }
  
    .hololive-block-content p{
      font-size:15px;
      line-height:1.85;
    }
  
    .hololive-final{
      grid-template-columns:48px 1fr;
      gap:18px;
      padding:28px;
    }
  
    .hololive-final-number{
      display:none;
    }
  
    .hololive-final-content{
      grid-column:1 / -1;
    }
  
    .hololive-final-content p{
      font-size:18px;
    }
  
  }

  /* =========================================================
   INFOSEAL — ISO CERTIFICATION SECTION
   ========================================================= */

.infoseal-cert-section {
    position: relative;
    width: 100%;
    padding: 105px 0 110px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 73% 38%,
            rgba(30, 113, 210, 0.055),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fbff 52%,
            #edf5fc 100%
        );
}

.infoseal-cert-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: -180px;
    width: 500px;
    height: 500px;
    background: rgba(16, 91, 177, 0.035);
    border-radius: 50%;
    pointer-events: none;
}

.infoseal-cert-container {
    width: min(1320px, calc(100% - 50px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    align-items: center;
    gap: 65px;
    position: relative;
    z-index: 2;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.infoseal-cert-content {
    position: relative;
    z-index: 3;
}

.infoseal-cert-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;

    color: #1168c7;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.infoseal-cert-eyebrow span {
    display: block;
    width: 44px;
    height: 2px;
    background: #1168c7;
}

.infoseal-cert-kicker {
    margin-bottom: 15px;

    color: #172b4d;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.2px;
}

.infoseal-cert-heading {
    max-width: 690px;
    margin: 0;

    color: #102c52;
    font-size: 35px;
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -2.8px;
}

.infoseal-cert-heading strong {
    display: block;
    color: #1168c7;
    font-weight: 700;
}

.infoseal-cert-intro {
    max-width: 650px;
    margin: 27px 0 0;

    color: #496581;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 400;
}


/* =========================================================
   FEATURES
   ========================================================= */

.infoseal-cert-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 48px;
}

.infoseal-cert-feature {
    min-height: 175px;
    padding: 0 22px;
    border-right: 1px solid #dbe6f1;
}

.infoseal-cert-feature:first-child {
    padding-left: 0;
}

.infoseal-cert-feature:last-child {
    padding-right: 0;
    border-right: none;
}

.infoseal-cert-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1168c7;
    background: #edf5ff;
    border: 1px solid #d8e9fc;
    border-radius: 50%;
}

.infoseal-cert-icon svg {
    width: 25px;
    height: 25px;
}

.infoseal-cert-feature h3 {
    margin: 0;

    color: #102c52;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
}

.infoseal-cert-feature p {
    margin: 12px 0 0;

    color: #71859b;
    font-size: 13.5px;
    line-height: 1.6;
}


/* =========================================================
   QUOTE
   ========================================================= */

.infoseal-cert-quote {
    display: flex;
    align-items: stretch;
    gap: 18px;

    max-width: 650px;
    margin-top: 40px;
}

.infoseal-cert-quote-line {
    flex: 0 0 3px;
    min-height: 48px;
    background: #1168c7;
    border-radius: 5px;
}

.infoseal-cert-quote p {
    margin: 0;

    color: #294b6f;
    font-size: 15px;
    line-height: 1.65;
    font-style: italic;
    font-weight: 500;
}


/* =========================================================
   RIGHT CERTIFICATE VISUAL
   ========================================================= */

.infoseal-cert-visual {
    position: relative;
    min-height: 590px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.infoseal-cert-bg-shape {
    position: absolute;
    top: -100px;
    right: -120px;

    width: 420px;
    height: 680px;

    background: linear-gradient(
        135deg,
        #2d6fbd 0%,
        #1760ae 55%,
        #0c4b91 100%
    );

    clip-path: polygon(
        25% 0,
        100% 0,
        100% 100%,
        0 100%
    );

    opacity: 0.96;
}


/* CERTIFICATE FRAME */

.infoseal-cert-frame {
    position: relative;
    width: min(510px, 90%);
    padding: 12px;
    background: #fff;
    border: 1px solid rgba(255,255,255,0.6);
border-radius: 30px;
    box-shadow:
        0 28px 60px rgba(19, 55, 92, 0.22),
        0 10px 25px rgba(15, 52, 90, 0.12);
    transform: rotate(-0.7deg);
    z-index: 3;
}

.infoseal-cert-frame::before {
    content: "";
    position: absolute;
    inset: 5px;

    border: 1px solid rgba(255,255,255,0.25);

    pointer-events: none;
}

.infoseal-cert-frame img {
    display: block; 
    height: auto;
    margin: auto;
    aspect-ratio: 1.414 / 1;
    object-fit: 100% 100%;

    background: #ffffff;
}


/* =========================================================
   ISO BADGE
   ========================================================= */

.infoseal-cert-badge {
    position: absolute;

    left: 3%;
    bottom: 28px;

    width: 168px;
    height: 168px;

    padding: 8px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #fff3b5,
            #d99b20,
            #ffe79a,
            #c98a14
        );

    box-shadow:
        0 15px 35px rgba(14, 43, 75, 0.25),
        0 4px 12px rgba(14, 43, 75, 0.15);

    z-index: 5;
}

.infoseal-cert-badge-inner {
    width: 100%;
    height: 100%;

    border-radius: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 50% 35%,
            #285a8e 0%,
            #123c69 70%,
            #0c2f54 100%
        );

    border: 2px solid #f8e09b;

    text-align: center;
}

.infoseal-cert-badge-inner svg {
    width: 36px;
    height: 36px;
    margin-bottom: -4px;
}

.infoseal-cert-badge-title {
    margin-top: 1px;

    font-size: 19px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1px;
}

.infoseal-cert-badge-number {
    margin-top: 3px;

    font-size: 16px;
    line-height: 1;
    font-weight: 700;
}

.infoseal-cert-badge-label {
    margin-top: 7px;

    font-size: 8px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1px;
}

.infoseal-cert-stars {
    margin-top: 7px;

    font-size: 9px;
    letter-spacing: 2px;
    color: #f4d26d;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .infoseal-cert-section {
        padding: 80px 0 85px;
    }

    .infoseal-cert-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .infoseal-cert-heading {
        max-width: 800px;
    }

    .infoseal-cert-intro {
        max-width: 750px;
    }

    .infoseal-cert-visual {
        min-height: 550px;
    }

    .infoseal-cert-bg-shape {
        right: -100px;
    }

    .infoseal-cert-frame {
        width: min(570px, 78%);
    }

    .infoseal-cert-badge {
        left: 10%;
        bottom: 10px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 850px) {

    .infoseal-cert-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
    }

    .infoseal-cert-feature {
        min-height: 160px;
    }

    .infoseal-cert-feature:nth-child(2) {
        border-right: none;
    }

    .infoseal-cert-feature:nth-child(3) {
        padding-left: 0;
    }

    .infoseal-cert-visual {
        min-height: 480px;
    }

    .infoseal-cert-frame {
        width: 75%;
    }

    .infoseal-cert-badge {
        width: 145px;
        height: 145px;
        left: 7%;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .infoseal-cert-section {
        padding: 65px 0 70px;
    }

    .infoseal-cert-container {
        width: min(100% - 32px, 520px);
        gap: 45px;
    }

    .infoseal-cert-eyebrow {
        font-size: 11px;
        letter-spacing: 2.5px;
        gap: 9px;
    }

    .infoseal-cert-eyebrow span {
        width: 28px;
    }

    .infoseal-cert-kicker {
        font-size: 15px;
    }

    .infoseal-cert-heading {
        font-size: 38px;
        line-height: 1.08;
        letter-spacing: -1.7px;
    }

    .infoseal-cert-intro {
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.65;
    }

    .infoseal-cert-features {
        grid-template-columns: 1fr 1fr;
        margin-top: 35px;
        gap: 28px 0;
    }

    .infoseal-cert-feature {
        padding: 0 15px;
        min-height: 145px;
    }

    .infoseal-cert-feature:nth-child(odd) {
        padding-left: 0;
        border-right: 1px solid #dbe6f1;
    }

    .infoseal-cert-feature:nth-child(even) {
        padding-right: 0;
        border-right: none;
    }

    .infoseal-cert-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 13px;
    }

    .infoseal-cert-icon svg {
        width: 21px;
        height: 21px;
    }

    .infoseal-cert-feature h3 {
        font-size: 15px;
    }

    .infoseal-cert-feature p {
        margin-top: 8px;
        font-size: 12px;
    }

    .infoseal-cert-quote {
        margin-top: 30px;
        gap: 12px;
    }

    .infoseal-cert-quote p {
        font-size: 13px;
    }

    .infoseal-cert-visual {
        min-height: 370px;
    }

    .infoseal-cert-bg-shape {
        top: -40px;
        right: -100px;
        width: 290px;
        height: 440px;
    }

    .infoseal-cert-frame {
        width: 88%;
        padding: 8px;
    }

    .infoseal-cert-badge {
        width: 115px;
        height: 115px;
        left: 0;
        bottom: 0;
        padding: 5px;
    }

    .infoseal-cert-badge-inner svg {
        width: 27px;
        height: 27px;
    }

    .infoseal-cert-badge-title {
        font-size: 14px;
    }

    .infoseal-cert-badge-number {
        font-size: 12px;
    }

    .infoseal-cert-badge-label {
        font-size: 6px;
    }

    .infoseal-cert-stars {
        font-size: 7px;
    }
}


/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 380px) {

    .infoseal-cert-heading {
        font-size: 33px;
    }

    .infoseal-cert-features {
        grid-template-columns: 1fr;
    }

    .infoseal-cert-feature,
    .infoseal-cert-feature:nth-child(odd),
    .infoseal-cert-feature:nth-child(even) {
        padding: 0 0 22px;
        border-right: none;
        border-bottom: 1px solid #dbe6f1;
    }

    .infoseal-cert-feature:last-child {
        border-bottom: none;
    }

    .infoseal-cert-visual {
        min-height: 300px;
    }

    .infoseal-cert-badge {
        width: 100px;
        height: 100px;
    }
}