/* IONATECH — Brand palette from logo */
@font-face {
    font-family: 'DIN Next Arabic';
    src: url('../fonts/DINNextLTArabic-Regular-3.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --iona-blue: #4475B9;
    --iona-blue-dark: #1E4FA0;
    --iona-blue-light: #EBF2FC;
    --iona-orange: var(--iona-blue);
    --iona-orange-dark: #0099DD;
    --iona-navy: #0B1325;
    --iona-navy-soft: #142340;
    --iona-surface: #F3F7FD;
    --iona-white: #FFFFFF;
    --iona-muted: #5E6D82;
    --iona-border: rgba(11, 22, 40, 0.08);
    --iona-gradient-dark: linear-gradient(135deg, var(--iona-navy) 0%, var(--iona-blue-dark) 50%, var(--iona-blue) 100%);
    /* Solid colors only — no gradients */
    --shadow-sm: 0 4px 20px -2px rgba(11, 22, 40, 0.02), 0 8px 24px -4px rgba(11, 22, 40, 0.05);
    --shadow-md: 0 12px 32px -4px rgba(11, 22, 40, 0.03), 0 20px 50px -8px rgba(11, 22, 40, 0.07);
    --shadow-lg: 0 20px 48px -6px rgba(11, 22, 40, 0.04), 0 32px 80px -12px rgba(11, 22, 40, 0.09);
    --shadow-glow-blue: 0 8px 32px rgba(53, 114, 205, 0.35);
    --shadow-glow-orange: 0 8px 32px rgba(27, 186, 255, 0.4);
    --radius: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --header-h-mobile: 0px;
    --header-h-desktop: 0px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', 'IBM Plex Sans', 'DIN Next Arabic', 'Segoe UI', Tahoma, sans-serif;
    color: var(--iona-navy);
    background: var(--iona-white);
    line-height: 1.7;
    overflow-x: hidden;
}

body .container {
    max-width: 93%;
    padding-left: 20px;
    padding-right: 20px;
}

[dir="rtl"] * {
    text-align: right;
}

[dir="ltr"] * {
    text-align: left;
}

.section-title,
.section-desc,
.sector-title,
.sector-desc {
    text-align: center;
}

[dir="rtl"] .why-section .section-title,
[dir="rtl"] .why-section .section-desc {
    text-align: right;
}

[dir="ltr"] .why-section .section-title,
[dir="ltr"] .why-section .section-desc {
    text-align: left;
}

[dir="ltr"] .bi-arrow-left-short::before,
[dir="ltr"] .bi-chevron-left::before {
    transform: rotate(180deg);
}

/* Product carousel left-side button keeps its ← icon in LTR (override the global rotation) */
[dir="ltr"] .prod-arr .bi-chevron-left::before {
    transform: none;
}

[dir="ltr"] .cf-float-label {
    right: unset;
    left: 3rem;
}

body .btn-check:focus+.btn,
body .btn:focus {
    outline: 0;
    box-shadow: unset;
}

/* ─── LTR: Reviews (classic-card) direction fix ─── */
[dir="ltr"] .classic-card {
    direction: ltr;
}

[dir="ltr"] .classic-card-top {
    text-align: left;
}

[dir="ltr"] .review-stars {
    justify-content: flex-start;
}

[dir="ltr"] .wol-author-info {
    text-align: left;
}

[dir="ltr"] .classic-card-foot {
    flex-direction: row;
}

[dir="ltr"] .prod-body {
    align-items: flex-start;
}

[dir="ltr"] .prod-cat {
    flex-direction: row;
}

[dir="ltr"] .prod-name {
    text-align: left;
}

[dir="ltr"] .navbar-nav.me-auto {
    margin-left: auto;
    margin-right: unset !important;
}

body ul {
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: color var(--transition), background var(--transition), border-color var(--transition);
}

/* ─── Top header ─── */
.top-header {
    background: var(--iona-navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.55rem 0;
    z-index: 1090;
    position: relative;
    transition: background var(--transition), padding var(--transition);
}

.top-header.header-scrolled {
    padding: 0.35rem 0;
}

.top-header a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: color var(--transition);
}

.top-header a:hover {
    color: var(--iona-white);
}

.top-header a i {
    color: var(--iona-blue);
    font-size: 0.85rem;
}

.top-header .social-link {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-header .social-link:hover {
    background: var(--iona-orange);
    border-color: var(--iona-orange);
    color: var(--iona-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(27, 186, 255, 0.25);
}

.top-header .social-link i {
    color: inherit !important;
    margin: 0 !important;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─── Site header ─── */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1090;
}

body.is-scrolled .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

body.is-scrolled .top-header {
    display: none;
}

/* ─── Main navigation ─── */
.nav-main {
    /* background: transparent; */
    /* background: var(--iona-blue-light); */
    background: var(--iona-white);
    padding: 0.75rem 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    z-index: 1080;
}


body .navbar-brand {
    margin-right: unset;
}

.nav-main .navbar-brand img {
    max-height: 40px;
    max-width: 150px;
    object-fit: contain;
    transition: height var(--transition);
}

.nav-main.nav-scrolled .navbar-brand img {
    height: 44px;
}

.navbar-nav li a {
    display: block;
    text-decoration: none;
    /* color: rgba(255, 255, 255, 0.92) !important; */
    color: var(--accent-navy);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-main.nav-scrolled .navbar-nav li a,
body.is-scrolled .navbar-nav li a {
    color: var(--iona-navy) !important;
}

.navbar-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0.15rem;
    right: 1rem;
    left: 1rem;
    height: 2px;
    background: var(--iona-orange);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.navbar-nav li a:hover::after,
.navbar-nav li a.active::after {
    transform: scaleX(1);
}

.navbar-nav li a:hover {
    color: var(--iona-orange) !important;
}

.btn-nav-cta {
    background: var(--iona-blue);
    color: var(--iona-white);
    border: none;
    padding: 0.55rem 1.35rem;
    border-radius: 12px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, background 0.3s ease;
}

.btn-nav-cta:hover {
    /* background: linear-gradient(135deg, var(--iona-orange-dark) 0%, #0081C2 100%); */
    color: #fff !important;
    transform: translateY(-2px);
    /* box-shadow: 0 8px 20px rgba(27, 186, 255, 0.35); */
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.45rem 0.6rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.nav-main.nav-scrolled .navbar-toggler,
body.is-scrolled .navbar-toggler {
    border-color: rgba(11, 22, 40, 0.08);
    background: rgba(11, 22, 40, 0.03);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.nav-main.nav-scrolled .navbar-toggler-icon,
body.is-scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2811, 22, 40, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@media (max-width: 991.98px) {
    .nav-main {
        /* border-bottom: 1px solid rgba(255, 255, 255, 0.05); */
        padding: 0.60rem 0;
    }



    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid rgba(11, 22, 40, 0.06);
        border-radius: var(--radius-lg);
        margin-top: 0.85rem;
        padding: 1.5rem;
        box-shadow:
            0 15px 35px -5px rgba(11, 22, 40, 0.08),
            0 5px 15px -3px rgba(11, 22, 40, 0.03);
        transition: all 0.3s ease;
    }

    .nav-main.nav-scrolled .navbar-collapse {
        margin-top: 0.6rem;
    }

    .navbar-collapse .navbar-nav {
        gap: 0.4rem;
        margin-bottom: 1.25rem !important;
    }

    .navbar-collapse .navbar-nav li a {
        color: var(--iona-navy) !important;
        font-size: 1.025rem;
        font-weight: 600;
        padding: 0.65rem 1rem !important;
        display: inline-block;
        width: max-content;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .navbar-collapse .navbar-nav li a:hover,
    .navbar-collapse .navbar-nav li a.active {
        color: var(--iona-orange) !important;
        background: rgba(27, 186, 255, 0.04);
    }

    /* Shift vertical link slightly to the left on hover in RTL */
    [dir="rtl"] .navbar-collapse .navbar-nav li a:hover {
        transform: translateX(-4px);
    }

    /* Make the mobile CTA button full width and centered */
    .navbar-collapse .btn-nav-cta {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        font-weight: 700;
        border-radius: 10px;
        /* box-shadow: var(--shadow-glow-orange); */
        margin: 0.5rem 0 0;
    }
}

/* ─── Hero ─── */
/* .hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--iona-gradient-dark);
    padding: 3rem 0 3.5rem;
    padding-top: 5rem;
    overflow: hidden;
} */

.hero-bg-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* background: linear-gradient(135deg, rgba(11, 19, 37, 0.94) 0%, rgba(20, 35, 64, 0.9) 50%, rgba(30, 79, 160, 0.85) 100%); */
    background: linear-gradient(150deg,
            rgba(15, 23, 42, 0.95) 0%,
            rgba(30, 58, 138, 0.9) 100%) !important;
    pointer-events: none;
}


@media (min-width: 992px) {
    .footer-brand .small {
        max-width: 80%;
    }
}

.hero-bg-accent {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.hero-inner {
    width: 100%;
    padding: 0.25rem 0;
}

.hero-tag,
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.45rem 1.1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    backdrop-filter: blur(8px);
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.hero-tag:hover,
.hero-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-tag i,
.hero-badge i {
    color: var(--iona-orange);
    font-size: 1rem;
}

.hero h1 {
    font-size: clamp(2rem, 4.2vw, 3.25rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.32;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.text-highlight-blue {
    color: var(--iona-blue) !important;
    /* text-shadow: 0 0 15px rgba(126, 184, 240, 0.25); */
}


.hero-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 540px;
    margin: 0 0 1.35rem;
    line-height: 1.75;
}

.hero-pillars {
    margin-bottom: 1.35rem;
}

.hero-pillar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
    padding: 0.65rem 0.85rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.hero-pillar:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-pillar i {
    color: var(--iona-orange);
    font-size: 1.05rem;
}

.hero-btns {
    margin-bottom: 1.15rem;
}

.hero-proof {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    margin: 0;
    max-width: 520px;
}

.hero-proof>i {
    color: #4ADE80;
    font-size: 1rem;
}

.hero-proof strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.hero-proof-divider {
    opacity: 0.35;
    margin: 0 0.15rem;
}

.hero-btns .btn {
    padding: 0.85rem 1.85rem;
    font-weight: 600;
    border-radius: 12px;
    font-size: 1rem;
}

.btn-primary-custom {
    background: var(--iona-blue);
    border: none;
    color: #fff;
    border-radius: 12px;
    padding: 10px 20px;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.btn-primary-custom:hover {
    color: #fff;
    transform: translateY(-3px);
}

.btn-outline-custom {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    border-radius: 12px;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

/* Hero visual panel */
.hero-visual {
    width: 100%;
    max-width: 420px;
    margin-inline-start: auto;
    margin-inline-end: 0;
}

.hero-visual-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-xl);
    padding: 1.35rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

/* .hero-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--iona-orange);
} */

.hero-visual-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.15rem;
}

.hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: #4ADE80;
    background: rgba(74, 222, 128, 0.12);
    padding: 0.3rem 0.65rem;
    border-radius: 50px;
    border: 1px solid rgba(74, 222, 128, 0.25);
}

.hero-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ADE80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.8);
    animation: pulse-green 1.5s ease-in-out infinite;
}

.hero-visual-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
}

.hero-stat-grid {
    margin-bottom: 1rem;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 0.85rem 0.75rem;
    text-align: center;
    height: 100%;
    transition: transform var(--transition), border-color var(--transition);
}

.hero-stat:hover {
    transform: translateY(-3px);
    border-color: rgba(53, 114, 205, 0.35);
}

.hero-stat i {
    display: block;
    font-size: 1.1rem;
    color: var(--iona-blue);
    margin-bottom: 0.35rem;
}

.hero-stat strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.15rem;
}

.hero-stat span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.hero-stat--ok i {
    color: #4ADE80;
}

.hero-alert-strip {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    background: rgba(27, 186, 255, 0.12);
    border: 1px solid rgba(27, 186, 255, 0.28);
    border-radius: 12px;
    text-align: right;
}

.hero-alert-strip>i {
    color: var(--iona-orange);
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.hero-alert-strip strong {
    display: block;
    font-size: 0.82rem;
    color: #fff;
    margin-bottom: 0.15rem;
}

.hero-alert-strip span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.45;
}

.hero-alert-strip--secure {
    background: rgba(74, 222, 128, 0.08) !important;
    border-color: rgba(74, 222, 128, 0.28) !important;
}

.hero-alert-strip--secure>i {
    color: #4ADE80 !important;
}

@media (max-width: 991.98px) {
    /* .hero {
        padding: 2.5rem 0 3rem;
        padding-top: calc(var(--header-h-mobile, 100px) + 2rem);
        overflow: hidden;
    } */

    .hero-inner {
        text-align: center;
        max-width: 640px;
        margin: 0 auto;
    }

    .hero-lead,
    .hero-proof {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-proof {
        justify-content: center;
    }

    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 1.85rem;
    }

    .hero-pillar {
        justify-content: center;
    }
}

/* ─── Sectors ─── */
.sectors-section {
    background: var(--iona-white);
    border-bottom: 1px solid var(--iona-border);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.sectors-bg-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.45;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Ccircle cx='2' cy='2' r='1' fill='%233A7BC8' fill-opacity='0.08'/%3E%3C/svg%3E");
    background-size: 28px 28px;
}

.sectors-head {
    margin-bottom: 3rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.sectors-label {
    margin-bottom: 1rem;
}

.sectors-head .section-title {
    font-size: clamp(1.65rem, 3.2vw, 2.25rem);
    letter-spacing: -0.02em;
}

.sectors-head .section-desc {
    font-size: 1.05rem;
    line-height: 1.75;
}

.sectors-head-line {
    width: 56px;
    height: 4px;
    background: var(--iona-orange);
    border-radius: 4px;
    margin: 1.75rem auto 0;
}

.sectors-panel {
    background: var(--iona-surface);
    border: 1px solid var(--iona-border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.sectors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

/* Each card takes 1/3 width, 3 per row; last 2 auto-center via justify-content: center */
.sectors-grid .sector-card {
    flex: 0 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
}

.sector-card {
    background: linear-gradient(135deg, rgba(53, 114, 205, 0.03) 0%, var(--iona-white) 100%);
    border: 1px solid var(--iona-border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.5rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    cursor: default;
    opacity: 0;
    transform: translateY(24px);
    transition:
        transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1),
        box-shadow 0.4s ease,
        background 0.4s ease;
}

.sector-card.is-visible {
    animation: sectorFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.sectors-grid .sector-card:nth-child(1).is-visible {
    animation-delay: 0.06s;
}

.sectors-grid .sector-card:nth-child(2).is-visible {
    animation-delay: 0.13s;
}

.sectors-grid .sector-card:nth-child(3).is-visible {
    animation-delay: 0.2s;
}

.sectors-grid .sector-card:nth-child(4).is-visible {
    animation-delay: 0.27s;
}

.sectors-grid .sector-card:nth-child(5).is-visible {
    animation-delay: 0.34s;
}

@keyframes sectorFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sector-accent {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--iona-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.sector-card:hover .sector-accent {
    transform: scaleX(1);
    background: var(--iona-orange);
}

.sector-num {
    position: absolute;
    top: 1rem;
    inset-inline-start: 1rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--iona-muted);
    opacity: 0.35;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.sector-card:hover .sector-num {
    color: var(--iona-blue);
    opacity: 0.7;
}

.sector-icon-wrap {
    width: 72px;
    height: 72px;
    margin-bottom: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: var(--iona-blue-light);
    border: 1px solid rgba(53, 114, 205, 0.12);
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.sector-icon {
    width: 52px;
    height: 52px;
    background: var(--iona-white);
    color: var(--iona-blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    box-shadow: var(--shadow-sm);
    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1),
        box-shadow 0.35s ease;
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px -5px rgba(11, 22, 40, 0.05), 0 20px 50px -8px rgba(11, 22, 40, 0.12);
    border-color: rgba(53, 114, 205, 0.25);
}

.sector-card:hover .sector-icon-wrap {
    background: var(--iona-blue);
    border-color: var(--iona-blue);
    box-shadow: var(--shadow-glow-blue);
    transform: scale(1.04);
}

.sector-card:hover .sector-icon,
.sector-icon.icon-pop {
    background: var(--iona-white);
    color: var(--iona-blue);
    transform: scale(1.08);
    box-shadow: none;
}

@keyframes iconPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.14);
    }

    100% {
        transform: scale(1.08);
    }
}

.sector-icon.icon-pop {
    animation: iconPop 0.45s ease;
}

.sector-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sector-body h3 {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--iona-navy);
    margin-bottom: 0.45rem;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.sector-card:hover .sector-body h3 {
    color: var(--iona-blue-dark);
}

.sector-body p {
    font-size: 0.82rem;
    color: var(--iona-muted);
    margin: 0;
    line-height: 1.55;
    max-width: 14ch;
    transition: color 0.3s ease;
}

.sector-card:hover .sector-body p {
    color: var(--iona-navy);
}

.sector-arrow {
    position: absolute;
    bottom: 0.85rem;
    left: 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--iona-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    opacity: 0;
    transform: translate(-50%, 8px);
    transition:
        opacity 0.3s ease,
        transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.sector-card:hover .sector-arrow {
    opacity: 1;
    transform: translate(-50%, 0);
}

.sectors-footnote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin: 2rem 0 0;
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--iona-muted);
    background: var(--iona-surface);
    border: 1px solid var(--iona-border);
    border-radius: 50px;
    max-width: fit-content;
    margin-inline: auto;
}

.sectors-footnote i {
    color: var(--iona-blue);
    font-size: 1.1rem;
}

@media (max-width: 1199.98px) {

    /* flex already set; card widths still 1/3 */
    .sector-card {
        min-height: 210px;
    }
}

@media (max-width: 991.98px) {
    .sectors-section {
        padding: 4rem 0;
    }

    .sectors-panel {
        padding: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .sectors-section {
        padding: 3.5rem 0;
    }

    .sectors-head {
        margin-bottom: 2rem;
    }

    /* 2 per row on tablet */
    .sectors-grid {
        gap: 0.85rem;
    }

    .sectors-grid .sector-card {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }

    .sector-card {
        min-height: 200px;
        padding: 1.5rem 1rem 1.35rem;
    }

    .sector-icon-wrap {
        width: 64px;
        height: 64px;
        margin-bottom: 1rem;
    }

    .sector-icon {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .sectors-panel {
        padding: 1rem;
        border-radius: var(--radius-lg);
    }

    /* 1 per row on mobile — horizontal card layout */
    .sectors-grid .sector-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .sector-card {
        flex-direction: row;
        align-items: center;
        gap: 1.15rem;
        text-align: right;
        padding: 1.25rem 1.35rem;
        min-height: auto;
    }

    .sector-num {
        top: 0.85rem;
        inset-inline-start: auto;
        inset-inline-end: 1rem;
    }

    .sector-icon-wrap {
        margin: 0;
        flex-shrink: 0;
        width: 58px;
        height: 58px;
    }

    .sector-icon {
        width: 42px;
        height: 42px;
    }

    .sector-body {
        align-items: flex-start;
        flex: 1;
    }

    .sector-body h3,
    .sector-body p {
        text-align: right;
        max-width: none;
    }

    .sector-arrow {
        display: none;
    }
}

/* ─── Section utilities ─── */
.section-padding {
    padding: 6rem 0;
}

/* Colour utilities */
.text-navy {
    color: var(--iona-navy) !important;
}

.section-wave {
    height: 80px;
    background: var(--iona-white);
    margin-top: -1px;
    clip-path: ellipse(75% 100% at 50% 100%);
}

.section-wave-light {
    background: var(--iona-surface);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--iona-orange);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    background: rgba(27, 186, 255, 0.08);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(27, 186, 255, 0.15);
}

.section-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--iona-orange);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(27, 186, 255, 0.6);
}

/* Label with explicit dash spans hides the dot */
.section-label:has(.label-dash)::before {
    display: none;
}

.label-dash {
    color: var(--iona-orange);
    opacity: 0.7;
    font-weight: 400;
    letter-spacing: 0;
}

.section-title {
    font-size: clamp(1.85rem, 3.5vw, 2.65rem);
    font-weight: 800;
    color: var(--iona-navy);
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.section-desc {
    color: var(--iona-muted);
    font-size: 1.15rem;
    max-width: 650px;
    line-height: 1.8;
}

.section-head {
    max-width: 720px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.section-head-start {
    max-width: 100% !important;
    margin: 0 0 2.25rem !important;
    text-align: right !important;
}

.section-head-start .section-desc {
    max-width: 100%;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ─── About ─── */
.about-section {
    position: relative;
}

.about-section.band-light {
    background: var(--iona-white);
}

.about-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--iona-orange);
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    max-width: 200px;
}

.about-badge strong {
    display: block;
    font-size: 1.5rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--iona-blue);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-glow-blue);
}

.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--iona-border);
}

.about-photo {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-photo-badge {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background: var(--iona-blue);
    color: #fff;
    padding: 0.65rem 1.1rem;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    box-shadow: 0 8px 28px rgba(53, 114, 205, 0.35);
}

.about-photo-badge i {
    color: var(--iona-orange);
}

.about-stats-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-stat-item {
    flex: 1 1 calc(33.333% - 0.7rem);
    min-width: 90px;
    background: var(--iona-white);
    border: 1px solid var(--iona-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: scale(0.94);
    transition:
        transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.about-stat-item.is-visible {
    animation: statPop 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.about-stats-bar .about-stat-item:nth-child(1).is-visible {
    animation-delay: 0.05s;
}

.about-stats-bar .about-stat-item:nth-child(2).is-visible {
    animation-delay: 0.15s;
}

.about-stats-bar .about-stat-item:nth-child(3).is-visible {
    animation-delay: 0.25s;
}

@keyframes statPop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.about-stat-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: rgba(53, 114, 205, 0.2);
}

.about-stat-item i {
    display: block;
    font-size: 1.5rem;
    color: var(--iona-blue);
    margin-bottom: 0.65rem;
}

.about-stat-item strong {
    display: block;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--iona-orange);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.about-stat-item span {
    font-size: 0.82rem;
    color: var(--iona-muted);
    font-weight: 500;
}

@media (max-width: 575.98px) {
    .about-stat-item {
        flex: 1 1 100%;
    }
}

/* ─── Services ─── */
.services-section {
    background: var(--iona-gradient-dark) !important;
    position: relative;
    overflow: hidden;
}

.services-section .section-title {
    color: var(--iona-navy) !important;
}

.services-section .section-desc {
    color: rgba(255, 255, 255, 0.72) !important;
}

.services-section .section-label {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: var(--iona-orange) !important;
}

.services-section .services-bg-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23ffffff' fill-opacity='0.3'/%3E%3C/svg%3E");
    background-size: 28px 28px;
}

.services-head {
    max-width: 720px;
    margin: 0 auto 3rem;
}

.services-head-line {
    width: 56px;
    height: 4px;
    background: var(--iona-orange);
    border-radius: 4px;
    margin: 1.75rem auto 0;
}

.service-card {
    background: var(--iona-white);
    border: 1px solid var(--iona-border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: right;
    min-height: 250px;
    opacity: 0;
    transform: translateY(22px);
    text-decoration: none !important;
    color: inherit;
    transition:
        transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1),
        box-shadow 0.4s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.service-card.is-visible {
    animation: cardFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.services-grid>.col:nth-child(1) .service-card.is-visible {
    animation-delay: 0.05s;
}

.services-grid>.col:nth-child(2) .service-card.is-visible {
    animation-delay: 0.1s;
}

.services-grid>.col:nth-child(3) .service-card.is-visible {
    animation-delay: 0.15s;
}

.services-grid>.col:nth-child(4) .service-card.is-visible {
    animation-delay: 0.2s;
}

.services-grid>.col:nth-child(5) .service-card.is-visible {
    animation-delay: 0.25s;
}

.services-grid>.col:nth-child(6) .service-card.is-visible {
    animation-delay: 0.3s;
}

@keyframes cardFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-accent {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--iona-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.service-card:hover .service-accent {
    transform: scaleX(1);
    background: var(--iona-orange);
}

.service-num {
    position: absolute;
    top: 1rem;
    inset-inline-start: 1rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--iona-muted);
    opacity: 0.3;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.service-card:hover .service-num {
    color: var(--iona-blue);
    opacity: 0.65;
}

.service-icon-wrap {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--iona-blue-light);
    border: 1px solid rgba(53, 114, 205, 0.12);
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--iona-white);
    color: var(--iona-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: var(--shadow-sm);
    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px -5px rgba(11, 22, 40, 0.05), 0 20px 45px -8px rgba(11, 22, 40, 0.12);
    border-color: rgba(53, 114, 205, 0.28);
    background: var(--iona-white);
    text-decoration: none !important;
    color: inherit;
}

.service-card:hover .service-icon-wrap {
    background: var(--iona-blue);
    border-color: var(--iona-blue);
    box-shadow: var(--shadow-glow-blue);
    transform: scale(1.05);
}

.service-card:hover .service-icon,
.service-icon.icon-pop {
    background: var(--iona-white);
    color: var(--iona-blue);
    transform: scale(1.08);
}

.service-body {
    flex: 1;
    min-width: 0;
}

.service-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--iona-orange);
    background: rgba(27, 186, 255, 0.1);
    padding: 0.2rem 0.55rem;
    border-radius: 50px;
    margin-bottom: 0.55rem;
}

.service-body h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--iona-navy);
    margin-bottom: 0.45rem;
    letter-spacing: -0.01em;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.service-card:hover .service-body h3 {
    color: var(--iona-blue-dark);
}

.service-body p {
    color: var(--iona-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0 0 0.75rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-body p {
    color: var(--iona-navy);
}

.service-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--iona-blue);
    opacity: 0.55;
    transform: translateX(0);
    transition:
        opacity 0.3s ease,
        transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
        color 0.3s ease;
}

[dir="rtl"] .service-more {
    transform: translateX(0);
}

.service-card:hover .service-more {
    opacity: 1;
    transform: translateX(-6px);
    color: var(--iona-orange);
}

.service-more i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.service-more i::before {
    vertical-align: 0 !important;
}

.services-cta {
    margin-top: 2.75rem;
}

.services-cta .btn {
    padding: 0.85rem 2.25rem;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: var(--shadow-glow-orange);
}



/* ─── Floating UI Widgets ─── */
@keyframes floatDrift {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes floatDriftSlow {
    0% {
        transform: translateY(0px) rotate(-1deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(-1deg);
    }
}

.hero-float-widgets {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.hero-widget {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 0.85rem 1.25rem;
    color: #fff;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.hero-widget-status {
    top: 22%;
    left: 5%;
    animation: floatDrift 4s ease-in-out infinite;
}

.hero-widget-alert {
    bottom: 22%;
    left: 8%;
    animation: floatDriftSlow 5.5s ease-in-out infinite;
}

.hero-widget-cam {
    top: 30%;
    right: 5%;
    animation: floatDrift 5s ease-in-out infinite 1s;
}

.hero-widget-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-widget-dot.green {
    background: #4ADE80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.7);
    animation: pulse-green 1.5s infinite;
}

.hero-widget-dot.orange {
    background: var(--iona-orange);
    box-shadow: 0 0 8px rgba(27, 186, 255, 0.7);
}

.hero-widget-dot.blue {
    background: #60A5FA;
    box-shadow: 0 0 8px rgba(96, 165, 250, 0.7);
}

@keyframes pulse-green {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.8);
    }
}

.hero-widget-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.hero-widget-icon.blue-icon {
    background: rgba(53, 114, 205, 0.35);
    color: #60A5FA;
}

.hero-widget-icon.orange-icon {
    background: rgba(27, 186, 255, 0.35);
    color: var(--iona-orange);
}

.hero-widget-icon.green-icon {
    background: rgba(74, 222, 128, 0.25);
    color: #4ADE80;
}

.hero-widget-text strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 1px;
}

.hero-widget-text span {
    font-size: 0.7rem;
    opacity: 0.7;
}

@media (max-width: 767.98px) {
    .hero-float-widgets {
        display: none;
    }
}


@media (max-width: 575.98px) {
    .services-head {
        margin-bottom: 2rem;
    }

    .service-card {
        padding: 1.35rem 1.25rem;
        min-height: auto;
        gap: 1rem;
    }

    .service-icon-wrap {
        width: 56px;
        height: 56px;
    }

    .service-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .service-more {
        opacity: 1;
        transform: none;
    }
}

/* ─── Why us ─── */
.why-section {
    background: var(--iona-white);
}

.why-card {
    background: var(--iona-surface);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    height: 100%;
    border: 1px solid rgba(11, 22, 40, 0.03);
    box-shadow: var(--shadow-sm);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition:
        transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1),
        box-shadow 0.35s ease;
}

.why-card.is-visible {
    animation: cardFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.why-section .row>[class*="col-"]:nth-child(1) .why-card.is-visible {
    animation-delay: 0.05s;
}

.why-section .row>[class*="col-"]:nth-child(2) .why-card.is-visible {
    animation-delay: 0.12s;
}

.why-section .row>[class*="col-"]:nth-child(3) .why-card.is-visible {
    animation-delay: 0.19s;
}

.why-section .row>[class*="col-"]:nth-child(4) .why-card.is-visible {
    animation-delay: 0.26s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px -5px rgba(11, 22, 40, 0.04), 0 20px 45px -8px rgba(53, 114, 205, 0.12);
    border-color: var(--iona-blue);
}

.why-card:hover i {
    transform: scale(1.12) rotate(-5deg);
    color: var(--iona-orange);
}

.why-card i {
    font-size: 2.75rem;
    color: var(--iona-blue);
    margin-bottom: 1.15rem;
    display: block;
    transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1), color 0.3s ease;
}

.why-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-card p {
    color: var(--iona-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* ─── Stats ─── */
.stats-section {
    background: var(--iona-gradient-dark);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.04), transparent 50%),
        radial-gradient(circle at 85% 50%, rgba(27, 186, 255, 0.08), transparent 50%);
    opacity: 1;
    pointer-events: none;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stats-section .stat-glass {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        background-color 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.stats-section .stat-glass:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    /* border-color: rgba(27, 186, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 35px rgba(27, 186, 255, 0.3); */
}

.stats-section .stat-glass .stat-num {
    color: #ffffff;
    transition: color 0.3s ease;
}

.stats-section .stat-glass .stat-label {
    color: rgba(255, 255, 255, 0.72);
}

.stats-section .stat-glass:hover .stat-num {
    color: var(--iona-orange);
    text-shadow: 0 0 15px rgba(27, 186, 255, 0.45);
}

.stats-section .stat-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--iona-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.stats-section .stat-icon i {
    font-size: 2.35rem;
}

.stats-section .stat-glass:hover .stat-icon {
    /* background: var(--iona-orange); */
    border-color: var(--iona-orange);
    color: #fff;
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 0 20px rgba(27, 186, 255, 0.5);
}

.stats-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(27, 186, 255, 0.08);
    border-radius: 50%;
    top: -150px;
    inset-inline-end: -90px;
    pointer-events: none;
    filter: blur(50px);
}

.stat-glass {
    text-align: center;
    background: var(--iona-white);
    border: 1px solid rgba(53, 114, 205, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.5rem;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    box-shadow: 0 10px 30px rgba(11, 22, 40, 0.04), 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
}

.stat-glass::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--iona-blue), var(--iona-orange));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
}

.stat-glass:hover {
    transform: translateY(-8px);
    border-color: rgba(53, 114, 205, 0.3);
    box-shadow: 0 20px 40px rgba(11, 22, 40, 0.08), 0 30px 70px rgba(0, 0, 0, 0.15), var(--shadow-glow-blue);
}

.stat-glass:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: var(--iona-blue-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: var(--iona-blue);
    box-shadow: 0 4px 12px rgba(53, 114, 205, 0.1);
    transition: transform 0.3s ease;
}

.stat-glass:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-glass .stat-num {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--iona-orange);
    line-height: 1.2;
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
}

.stat-glass:hover .stat-num {
    color: var(--iona-blue-dark);
}

.stat-glass .stat-label {
    color: var(--iona-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

/* ─── Security Solutions (Redesigned Tabs) ─── */
/* ─── Solutions Section - New Premium Design ─── */
.solutions-section {
    background: var(--iona-white);
    position: relative;
    padding: 6rem 0;
}

.solutions-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-head {
    flex: none;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solutions-top-cta {
    flex-shrink: 0;
    padding: 0.75rem 1.75rem;
    font-weight: 700;
    border-radius: 8px;
    white-space: nowrap;
}

/* Container for sidebar + panels (Bootstrap row) */
.solutions-new-wrapper {
    min-height: 0;
}

/* Sidebar navigation */
.sector-tabs-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    border: none;
}

/* Buttons in sidebar */
.sector-tab {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--iona-white);
    border: 1px solid rgba(11, 22, 40, 0.04);
    border-radius: 1rem;
    color: var(--iona-muted);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: right;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    overflow: visible;
    cursor: pointer;
    width: 100%;
}

@media (max-width: 575.98px) {
    .sector-tab {
        padding: 0.85rem 1rem;
        font-size: 0.88rem;
        gap: 0.75rem;
        flex-direction: row;
        direction: rtl;
        text-align: right;
        white-space: normal;
        align-items: center;
    }

    .sector-tab-info {
        text-align: right;
        flex: 1;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .sector-tab {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        gap: 0.75rem;
    }
}


.sector-tab-icon {
    --tab-clr: var(--iona-orange);
    font-size: 1.25rem;
    color: var(--tab-clr, var(--iona-orange));
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(11, 22, 40, 0.05);
}

.sector-tab-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
}

.sector-tab-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--iona-navy);
}

.sector-tab-sub {
    font-size: 0.75rem;
    color: var(--iona-orange);
    font-weight: 600;
}

.sector-tab-check {
    opacity: 0;
    transform: scale(0.5);
    color: var(--iona-orange);
    transition: all 0.3s ease;
}

/* Active State */
.sector-tab.active {
    background: var(--iona-white);
    border-color: rgba(11, 22, 40, 0.08);
    box-shadow:
        0 10px 25px rgba(11, 22, 40, 0.10),
        0 0 0 2px rgba(27, 186, 255, 0.30);
    z-index: 3;
}

.sector-tab.active .sector-tab-check {
    opacity: 1;
    transform: scale(1);
    color: var(--iona-orange);
}

.sector-tab.active .sector-tab-icon {
    background: var(--iona-orange);
    color: var(--iona-white);
}

.sector-tab:hover {
    background: var(--iona-white);
    box-shadow:
        0 8px 28px rgba(27, 186, 255, 0.14),
        0 0 0 2px rgba(27, 186, 255, 0.30);
    border-color: transparent;
    transform: translateY(-4px);
    z-index: 4;
}

.sector-tab:hover .sector-tab-icon {
    background: var(--iona-orange);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(27, 186, 255, 0.38);
}

.sector-tab:hover .sector-tab-name {
    color: var(--iona-orange);
}



/* Panels Area */
.sector-panels {
    flex: 1;
    position: relative;
    min-width: 0;
    /* allows shrinking */
}

/* Sector Panel Card */
.sector-panel-card {
    background: var(--iona-white);
    border-radius: 1.5rem;
    border: 1px solid rgba(11, 22, 40, 0.05);
    padding: 3rem;
    display: flex;
    gap: 3rem;
    box-shadow: 0 15px 40px -10px rgba(11, 22, 40, 0.04);
    height: 100%;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}

/* Top accent bar — slides in on hover */
/* .sector-panel-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--iona-blue), var(--iona-orange));
    border-radius: 1.5rem 1.5rem 0 0;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
} */

/* .sector-panel-card:hover::after {
    transform: scaleX(1);
} */

.sector-panel-card:hover {
    transform: translateY(-4px);
    border-color: rgba(27, 186, 255, 0.18);
    box-shadow:
        0 20px 50px -10px rgba(11, 22, 40, 0.1),
        0 0 0 1px rgba(27, 186, 255, 0.1),
        0 8px 32px rgba(27, 186, 255, 0.08);
}

/* Dark Card Variant — matches brand gradient used across all dark sections */
.sector-panel-card.dark-card {
    background: var(--iona-gradient-dark);
    border: none;
    box-shadow: 0 20px 60px rgba(11, 22, 40, 0.5);
    flex-direction: row-reverse;
}

.dark-card .sector-panel-title {
    color: #ffffff;
    font-size: 1.9rem;
}

.dark-card .sector-panel-desc {
    color: rgba(255, 255, 255, 0.72);
}

.dark-card .sector-panel-cta {
    margin-top: 2rem;
}

/* ─── Light Card Variant (white background panel) ─── */
.sector-panel-card.light-card {
    background: var(--iona-white);
    flex-direction: row-reverse;
    border: 1px solid rgba(53, 114, 205, 0.08);
    box-shadow: 0 15px 45px rgba(11, 22, 40, 0.07);
}

.light-card .sector-panel-visual {
    width: auto;
    justify-content: center;
    padding: 1rem;
}

.light-card .dark-card-num {
    color: var(--iona-muted);
    opacity: 0.7;
}

.light-card .sector-panel-title {
    color: var(--iona-navy);
}

.light-card .sector-panel-desc {
    color: var(--iona-muted);
}

.light-card .dark-features-list li {
    color: var(--iona-navy);
    opacity: 0.85;
}

.light-card .dark-features-list li i {
    color: var(--iona-orange);
}

/* Shield rings on white card — use same orange but slightly stronger */
.light-card .shield-glow-ring {
    border-color: rgba(27, 186, 255, 0.3);
}

.light-card .shield-glow-ring-2 {
    border-color: rgba(27, 186, 255, 0.14);
}

.light-card .shield-secure-badge {
    background: rgba(27, 186, 255, 0.08);
    border-color: rgba(27, 186, 255, 0.25);
    color: var(--iona-orange);
}

.dark-card-num {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

/* Checkmark bullet list inside dark card */
.dark-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dark-features-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.dark-features-list li i {
    color: var(--iona-orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Orange solid button */
.btn-blue-solid {
    background: var(--iona-orange);
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 0.85rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-blue-solid:hover {
    background: var(--iona-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-orange);
}

/* Background gradient based on variable */
.sector-panel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, var(--panel-clr) 0%, transparent 40%);
    opacity: 0.03;
    pointer-events: none;
}

.sector-panel-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.sector-panel-header {
    margin-bottom: 2rem;
}

.sector-panel-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: rgba(27, 186, 255, 0.1);
    color: var(--iona-orange);
}

.sector-panel-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--iona-navy);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.sector-panel-desc {
    font-size: 1.1rem;
    color: var(--iona-muted);
    line-height: 1.8;
}

.sector-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.sector-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.sf-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.sf-body {
    display: flex;
    flex-direction: column;
}

.sf-body strong {
    font-size: 1.05rem;
    color: var(--iona-navy);
    margin-bottom: 0.25rem;
}

.sf-body span {
    font-size: 0.95rem;
    color: var(--iona-muted);
    line-height: 1.5;
}

.sector-panel-cta {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.sector-btn {
    background: var(--panel-clr);
    border-color: var(--panel-clr);
    border-radius: 8px;
    padding: 1rem 2.5rem;
    color: #ffffff !important;
    font-weight: 700;
    transition: all 0.3s ease;
}

.sector-btn:hover {
    filter: brightness(1.1);
    background: var(--panel-clr);
    border-color: var(--panel-clr);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.sector-stat {
    display: flex;
    flex-direction: column;
    border-right: 2px solid rgba(11, 22, 40, 0.1);
    padding-right: 1.5rem;
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--iona-navy);
    line-height: 1;
}

.stat-lbl {
    font-size: 0.8rem;
    color: var(--iona-muted);
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Panel Visual Area */
.sector-panel-visual {
    width: 350px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.sector-panel-img-wrap {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Soft glow behind the icon */
.spv-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0.05;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

/* Central big icon */
.spv-icon-big {
    font-size: 7rem;
    color: var(--iona-navy);
    opacity: 0.1;
    position: relative;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ─── Shield Glow Visual (Dark Card) ─── */
.shield-glow-wrap {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Shield rings — orange brand accent */
.shield-glow-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(27, 186, 255, 0.25);
    animation: shieldPulse 3s ease-in-out infinite;
}

.shield-glow-ring-2 {
    inset: -20px;
    border-color: rgba(27, 186, 255, 0.12);
    animation-delay: 1s;
}

@keyframes shieldPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.5;
    }
}

.shield-icon-center {
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(27, 186, 255, 0.25) 0%, rgba(27, 186, 255, 0.05) 70%);
    border: 2px solid rgba(27, 186, 255, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 40px rgba(27, 186, 255, 0.35), inset 0 0 20px rgba(27, 186, 255, 0.1);
}

.shield-icon-center i {
    font-size: 3.5rem;
    color: var(--iona-orange);
    filter: drop-shadow(0 0 10px rgba(27, 186, 255, 0.6));
}

.shield-secure-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(27, 186, 255, 0.15);
    border: 1px solid rgba(27, 186, 255, 0.3);
    color: var(--iona-orange);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.secure-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
    animation: secBlink 1.5s ease-in-out infinite;
}

@keyframes secBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* Dark card overrides for sector-panel-visual */
.dark-card .sector-panel-visual {
    width: auto;
    justify-content: center;
    padding: 1rem;
}

.sector-panel-card:hover .spv-glow {
    transform: scale(1);
    opacity: 0.1;
}

.sector-panel-card:hover .spv-icon-big {
    transform: scale(1.1) rotate(5deg);
    opacity: 0.15;
}

/* Floating Badges */
.spv-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--iona-navy);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
    animation: spvFloat 4s ease-in-out infinite alternate;
}

.spv-float i {
    font-size: 1.1rem;
    opacity: 0.8;
}

.spv-float-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.spv-float-2 {
    bottom: 15%;
    left: 0%;
    animation-delay: 1.5s;
}

@keyframes spvFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

/* Bottom elements */
.solutions-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    border-top: 1px solid var(--iona-border);
    padding-top: 2rem;
}

.solutions-bottom-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--iona-muted);
}

.solutions-bottom-item i {
    color: var(--iona-blue);
    font-size: 1rem;
}

.solutions-bottom-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--iona-orange);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.25s ease;
}

/* .solutions-bottom-link:hover {
    gap: 0.5rem;
    color: var(--iona-orange-dark);
} */

/* Responsiveness */
@media (max-width: 1199.98px) {
    .sector-panel-card {
        padding: 2.5rem;
        gap: 2rem;
    }

    .sector-panel-visual {
        width: 300px;
    }
}

@media (max-width: 991.98px) {
    .solutions-new-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .sector-tabs-row {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: visible;
        padding: 8px 4px 12px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .sector-tabs-row::-webkit-scrollbar {
        display: none;
    }

    .sector-tab {
        flex-shrink: 0;
        min-width: 180px;
        padding: 1rem 1.25rem;
        flex-direction: row;
        text-align: right;
    }

    .sector-tab::before {
        right: 0;
        left: 0;
        top: auto;
        bottom: 0;
        width: auto;
        height: 3px;
        transform: scaleX(0);
    }

    .sector-tab.active::before {
        transform: scaleX(1);
    }

    .sector-panel-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .sector-panel-header {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .sector-features-list {
        align-items: center;
    }

    .sector-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 300px;
    }

    .sector-panel-cta {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .sector-stat {
        border-right: none;
        border-top: 2px solid rgba(11, 22, 40, 0.1);
        padding-right: 0;
        padding-top: 1rem;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }

    .sector-panel-visual {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        order: -1;
        /* move image to top */
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .solutions-top {
        flex-direction: column;
        align-items: stretch;
    }

    /* .solutions-top-cta {
        align-self: flex-start;
    } */

    .sector-panel-title {
        font-size: 1.75rem;
    }
}


/* ─── Methodology — Modern Pipeline Timeline ─── */
.methodology-section {
    background: var(--iona-gradient-dark);
    position: relative;
    overflow: hidden;
}

.methodology-section .section-title {
    color: #ffffff;
}

.methodology-section .section-desc {
    color: rgba(255, 255, 255, 0.72);
}

/* .stats-section .section-label,
.methodology-section .section-label,
.cta-banner-card .section-label {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: var(--iona-orange) !important;
} */

/* Ensure cta-banner section-desc is visible on dark background */
.cta-banner-content .section-desc {
    color: rgba(255, 255, 255, 0.82);
    max-width: 540px;
}

/* Keep CTA banner actions justified to the visual left (end in RTL) */
.cta-banner-actions {
    justify-content: flex-end;
}

.methodology-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    left: -200px;
    filter: blur(60px);
    pointer-events: none;
}

.methodology-section h4 {
    color: #ffffff;
}

.methodology-section p {
    color: rgba(255, 255, 255, 0.72);
}

.methodology-section .step-content {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.methodology-section .step-icon {
    background: rgba(255, 255, 255, 0.08);
    color: var(--iona-orange);
    border-color: rgba(255, 255, 255, 0.1);
}

.methodology-section .step-number {
    /* color: var(--iona-blue-dark); */
    color: var(--iona-white);
}

.methodology-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-right: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Vertical glowing pipeline line */
.methodology-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 2.4rem;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent 0%, var(--iona-blue) 15%, var(--iona-orange) 85%, transparent 100%);
    opacity: 0.75;
    z-index: 0;
}

.methodology-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
    padding: 0 0 2.5rem 0;
    opacity: 0;
    transform: translateX(20px);
    transition:
        transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1),
        opacity 0.5s ease;
    z-index: 1;
}

.methodology-step.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.methodology-timeline .methodology-step:nth-child(1).is-visible {
    transition-delay: 0.05s;
}

.methodology-timeline .methodology-step:nth-child(2).is-visible {
    transition-delay: 0.15s;
}

.methodology-timeline .methodology-step:nth-child(3).is-visible {
    transition-delay: 0.25s;
}

.methodology-timeline .methodology-step:nth-child(4).is-visible {
    transition-delay: 0.35s;
}

.methodology-timeline .methodology-step:nth-child(5).is-visible {
    transition-delay: 0.45s;
}

.methodology-timeline .methodology-step:nth-child(6).is-visible {
    transition-delay: 0.55s;
}

/* Step number bubble on the line */
.step-number {
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--iona-white);
    box-shadow: 0 0 0 3px var(--iona-blue), 0 0 20px rgba(53, 114, 205, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--iona-blue);
    z-index: 2;
    aspect-ratio: 1 / 1;
    transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.methodology-step:hover .step-number {
    background: var(--iona-blue);
    color: #fff;
    box-shadow: 0 0 0 3px var(--iona-white), 0 0 30px rgba(53, 114, 205, 0.6);
}

.step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 20px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    position: relative;
    width: 100%;
    max-width: 460px;
}

/* Arrow pointing to the line */
.step-content::after {
    content: '';
    position: absolute;
    top: 1.4rem;
    right: -10px;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.07);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    transform: rotate(45deg);
    box-shadow: none;
}

.methodology-step:hover .step-content {
    transform: translateX(-6px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 0 25px 60px rgba(43, 77, 184, 0.2);
}

.step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--iona-blue) 0%, var(--iona-blue-dark) 100%);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
    box-shadow: 0 6px 20px -4px rgba(53, 114, 205, 0.45);
    transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.methodology-step:hover .step-icon {
    transform: scale(1.1) rotate(-5deg);
}

.methodology-step h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.methodology-step p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.65;
}

/* Two column grid layout for pipeline — desktop */
@media (min-width: 768px) {
    .methodology-timeline {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 3rem;
        padding-right: 0;
    }

    .methodology-timeline::before {
        right: calc(50% - 1px);
        top: 0;
        bottom: 0;
    }

    /* Let grid items fill their full column — do NOT put margins on the step container */
    .methodology-step {
        width: 100%;
        padding-bottom: 2.5rem;
        max-width: none !important;
        flex: none !important;
    }

    /* Pull cards close to the center timeline line */
    .methodology-timeline .methodology-step:nth-child(odd) .step-content {
        margin-right: auto;
        margin-left: 0;
    }

    .methodology-timeline .methodology-step:nth-child(even) .step-content {
        margin-left: auto;
        margin-right: 0;
    }

    /* Odd steps sit in the RIGHT column (RTL) — content faces left toward the centre line */
    .methodology-timeline .methodology-step:nth-child(odd) {
        padding-right: 2.5rem;
        padding-left: 0;
        flex-direction: row-reverse;
    }

    .methodology-timeline .methodology-step:nth-child(odd) .step-content::after {
        right: auto;
        left: -10px;
        background: rgba(255, 255, 255, 0.07);
        border-top: none;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        border-left: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: none;
    }

    /* RTL: Odd steps in the visual-RIGHT column — number faces LEFT toward centre */
    .methodology-timeline .methodology-step:nth-child(odd) .step-number {
        right: auto;
        left: 0;
        transform: translateX(-50%);
    }

    /* RTL: Even steps in the visual-LEFT column — layout & number face RIGHT toward centre */
    /* margin-top staggers even steps DOWN to create the original zigzag timeline effect */
    .methodology-timeline .methodology-step:nth-child(even) {
        padding-left: 2.5rem;
        padding-right: 0;
        margin-top: 3rem;
    }

    .methodology-timeline .methodology-step:nth-child(even) .step-content::after {
        right: -10px;
        left: auto;
        background: rgba(255, 255, 255, 0.07);
        border-bottom: none;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-right: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: none;
    }

    .methodology-timeline .methodology-step:nth-child(even) .step-number {
        right: 0;
        left: auto;
        transform: translateX(50%);
    }

    .methodology-timeline .methodology-step:nth-child(odd):hover .step-content {
        transform: translateX(6px);
    }

    .methodology-timeline .methodology-step:nth-child(even):hover .step-content {
        transform: translateX(-6px);
    }
}

@media (max-width: 767.98px) {
    .methodology-timeline::before {
        display: none;
    }

    .methodology-step {
        flex-direction: column;
        padding-bottom: 1.5rem;
    }

    .step-number {
        position: relative;
        right: auto;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 0.75rem;
    }

    .step-content::after {
        display: none;
    }
}

.reviews-section {
    background: var(--iona-white);
    position: relative;
    overflow: hidden;
}

/* ─── Subtitle tag — dash styled ─── */
.reviews-sublabel {
    color: var(--iona-navy);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.05em;
}

.reviews-sublabel::before,
.reviews-sublabel::after {
    content: '—';
    color: var(--iona-orange);
    /* Vibrant red */
    font-weight: 800;
}

.reviews-owl {
    padding: 3rem 0;
}

.classic-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 3.5rem 3rem;
    position: relative;
    box-shadow: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    direction: rtl;
    border: 1px solid #f1f5f9;
}

.classic-card-top {
    text-align: right;
    margin-bottom: 2.5rem;
    transition: opacity 0.4s ease;
}

.review-stars {
    color: #f59e0b;
    font-size: 1.15rem;
    letter-spacing: 4px;
    display: flex;
    gap: 0.2rem;
    justify-content: flex-start;
}

.classic-card-body {
    position: relative;
    flex-grow: 1;
}

.classic-quote-mark {
    display: block;
    font-family: Georgia, serif;
    font-size: 3.5rem;
    color: var(--iona-navy);
    line-height: 0.8;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.wol-quote {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.9;
    font-weight: 500;
    margin: 0 0 2rem 0;
}

.classic-card-foot {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.wol-avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.wol-avatar-circle {
    /* background: linear-gradient(135deg, var(--iona-navy), #2563eb); */
    background: var(--iona-blue);
}

/* .wol-avatar-circle.badge-orange { background: linear-gradient(135deg, var(--iona-orange), #f97316); } */

.wol-author-info {
    display: flex;
    flex-direction: column;
    text-align: right;
    flex-grow: 1;
}

.wol-author-info strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--iona-navy);
}

.wol-author-info span {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Center mode styling */
.reviews-owl .owl-item {
    transition: transform 0.5s ease;
    transform: scale(0.88);
    z-index: 1;
}

.reviews-owl .owl-item.center {
    transform: scale(1);
    z-index: 10;
}

/* Apply active state colors only to the center card */
.reviews-owl .owl-item.center .classic-card {
    box-shadow: 0 20px 50px rgba(11, 22, 40, 0.08);
    border-color: transparent;
}

.cta-banner-section {
    padding: 0 0 5rem 0;
    background: #ffffff;
    position: relative;
    z-index: 10;
}

.cta-banner-card {
    background: var(--iona-gradient-dark);
    border-radius: var(--radius-xl);
    padding: 3.5rem 4rem;
    color: var(--iona-white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-banner-card::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(27, 186, 255, 0.22) 0%, rgba(27, 186, 255, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
}

.cta-banner-card .section-title {
    color: var(--iona-white);
    margin-bottom: 1rem;
}

.cta-banner-card .section-desc {
    color: rgba(255, 255, 255, 0.8);
    max-width: 580px;
    margin: 0;
}

.cta-banner-actions {
    position: relative;
    z-index: 2;
    height: 100%;
    justify-content: center;
}

.btn-cta-primary {
    background: var(--iona-orange);
    /* Vibrant red */
    color: var(--iona-white);
    border: none;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 186, 255, 0.3);
}

.btn-cta-primary:hover {
    background: var(--iona-orange-dark);
    color: var(--iona-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 186, 255, 0.4);
}

.btn-cta-outline {
    background: transparent;
    color: var(--iona-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--iona-white);
    color: var(--iona-white);
}

.cta-banner-phone {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--iona-white);
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: 0.25rem;
}

.cta-banner-phone:hover {
    color: var(--iona-orange);
}

/* Telephone LTR direction helper to prevent reversed numbers in RTL */
/* a[href^="tel:"]:not(.btn) {
    unicode-bidi: isolate !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.35rem;
} */

.phone-span,
.cta-banner-phone {
    direction: ltr !important;
    unicode-bidi: isolate !important;
    display: inline-block;
}

@media (max-width: 767.98px) {
    .cta-banner-card {
        padding: 2.5rem 1.5rem;
    }

    .cta-banner-card .section-title {
        font-size: 1.75rem;
    }
}

/* ─── Owl Nav Arrows ─── */
.reviews-owl .owl-nav button.owl-prev,
.reviews-owl .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: none !important;
    outline: none !important;
    color: var(--iona-navy) !important;
    font-size: 1rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(11, 22, 40, 0.12);
    transition: all 0.3s ease;
    margin-top: -2rem;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.reviews-section .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 30px;
}

.reviews-owl .owl-nav button.owl-prev {
    right: 0;
}

.reviews-owl .owl-nav button.owl-next {
    left: 0;
}

.reviews-owl .owl-nav button.owl-prev:hover,
.reviews-owl .owl-nav button.owl-next:hover {
    background: var(--iona-orange) !important;
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(27, 186, 255, 0.35);
}

/* ─── Owl Dots ─── */
.reviews-owl .owl-dots {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 1.75rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.reviews-owl .owl-dot {
    background: none !important;
    border: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-block !important;
}

.reviews-owl .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    background: rgba(11, 22, 40, 0.2) !important;
    border: none !important;
    border-radius: 50% !important;
    transition: all 0.35s ease !important;
    margin: 0 4px !important;
    display: block !important;
}

.reviews-owl .owl-dot.active span {
    background: var(--iona-orange) !important;
    width: 28px !important;
    border-radius: 4px !important;
    /* box-shadow: 0 0 8px rgba(27, 186, 255, 0.45) !important; */
}

/* ─── Owl wrap ─── */
.reviews-owl-wrap {
    position: relative;
    z-index: 1;
    padding-bottom: 0;
}

/* ─── Equal-height cards in carousel ─── */
.reviews-owl .owl-stage {
    display: flex;
    align-items: stretch;
    padding-bottom: 20px;
}

.reviews-owl .owl-item {
    display: flex;
}

.reviews-owl .owl-item .wol-card {
    flex: 1;
}

@media (max-width: 1300px) {
    .reviews-owl .owl-nav button.owl-prev {
        right: 0;
    }

    .reviews-owl .owl-nav button.owl-next {
        left: 0;
    }

    .reviews-owl-wrap {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 991.98px) {
    .wol-column.mt-lg-4 {
        margin-top: 0 !important;
    }
}

@media (max-width: 767.98px) {

    .reviews-summary-badge {
        flex-direction: row;
        gap: 0.75rem;
        padding: 0.25rem 0;
    }

    .badge-score {
        border-inline-end: none;
        padding-inline-end: 0;
    }
}

/* ─── Contact ─── */
.contact-section {
    background: var(--iona-white);
    position: relative;
}

.contact-section.section-padding {
    padding-bottom: 0;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--iona-white);
    z-index: -1;
}

/* Premium Split Wrapper */
.contact-premium-wrapper {
    background: var(--iona-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--iona-border);
}

/* Info Side (Light Blue) */
.contact-info-side {
    background: var(--iona-blue-light);
    padding: 3rem 2.5rem;
    position: relative;
    border-left: none;
    overflow: hidden;
}

/* Subtle dot texture overlay matching services */
.contact-info-side::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Ccircle cx='2' cy='2' r='1' fill='%234475B9' fill-opacity='0.3'/%3E%3C/svg%3E");
    background-size: 28px 28px;
    z-index: 0;
}

.contact-info-side>* {
    position: relative;
    z-index: 1;
}

/* Headings & paragraph */
.contact-info-side h3 {
    color: var(--iona-navy) !important;
}

/* .contact-info-side>div>p {
    color: rgba(255, 255, 255, 0.68) !important;
} */

/* Divider at bottom */
.contact-info-side .border-top {
    border-top-color: rgba(11, 22, 40, 0.08) !important;
}

/* .contact-info-side h6 {
    color: rgba(255, 255, 255, 0.85) !important;
} */



.contact-info-list li {
    display: flex;
    /* align-items: center; */
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.ci-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(53, 114, 205, 0.1);
    color: var(--iona-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Inside light info side, icons style in brand blue */
.contact-info-side .ci-icon {
    background: rgba(68, 117, 185, 0.1);
    color: var(--iona-blue);
    border: 1px solid rgba(68, 117, 185, 0.15);
}

/* Labels (small muted text) */
/* .contact-info-side .ci-text span.small,
.contact-info-side .text-muted {
    color: rgba(255, 255, 255, 0.55) !important;
} */

/* Main values / links */
/* .contact-info-side .ci-text a,
.contact-info-side .ci-text span.text-navy,
.contact-info-side .text-navy {
    color: var(--iona-navy) !important;
} */

.contact-info-side .ci-text a:hover {
    color: var(--iona-orange) !important;
}


.ci-text span.small {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

/* Light Side (Form) */
.contact-light-side {
    padding: 3.5rem 3rem;
    background: var(--iona-white);
}

.form-control-premium {
    background: var(--iona-surface);
    border: 1px solid transparent;
    border-radius: 12px;
    transition: all var(--transition);
}

.form-control-premium:focus {
    background: var(--iona-white);
    border-color: var(--iona-blue);
    box-shadow: 0 0 0 4px rgba(53, 114, 205, 0.1);
    outline: none;
}

/* Form floating overrides — RTL fix */
.form-floating>.form-control-premium~label,
.form-floating>.form-select.form-control-premium~label {
    color: #6B7280;
    font-size: 0.9rem;
    font-weight: 500;
    /* RTL: anchor label to the right instead of left */
    left: auto;
    right: 0;
    padding-right: 1.25rem;
    padding-left: 0;
    transform-origin: right top;
}

/* When focused or has value — float up from the right */
.form-floating>.form-control-premium:focus~label,
.form-floating>.form-control-premium:not(:placeholder-shown)~label,
.form-floating>.form-select.form-control-premium~label {
    transform: scale(0.85) translateY(-0.5rem) translateX(0);
    color: var(--iona-blue);
}

/* Input padding to leave room for label on the right */
.form-floating>.form-control-premium {
    padding-right: 1.25rem;
    padding-left: 0.75rem;
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating>.form-select.form-control-premium {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
    padding-right: 1.25rem;
}

/* Mobile responsive stacking */
@media (max-width: 991.98px) {
    .contact-info-side {
        padding: 2.5rem 2rem;
        border-left: none;
        border-top: 1px solid var(--iona-border);
    }

    .contact-light-side {
        padding: 2.5rem 2rem;
    }
}

/* ─── Custom Select Dropdown ─── */
.custom-select-wrap {
    position: relative;
    width: 100%;
    user-select: none;
}

.custom-select-btn {
    width: 100%;
    background: var(--iona-surface);
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 1.625rem 1.25rem 0.625rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    cursor: pointer;
    text-align: right;
    position: relative;
    transition: all var(--transition);
    height: calc(3.5rem + 2px);
}

.custom-select-btn:hover {
    border-color: rgba(53, 114, 205, 0.3);
}

/* Floating label inside the button */
.custom-select-label {
    position: absolute;
    top: 50%;
    right: 1.25rem;
    transform: translateY(-50%);
    font-size: 1rem;
    font-weight: 500;
    color: #6B7280;
    pointer-events: none;
    transition: all 0.15s ease-in-out;
    transform-origin: right top;
}

/* When a value has been chosen — label floats up */
.custom-select-wrap.has-value .custom-select-label {
    top: 0.65rem;
    transform: translateY(0) scale(0.82);
    color: var(--iona-blue);
    font-size: 0.9rem;
}

.custom-select-value {
    flex: 1;
    font-size: 1rem;
    color: var(--iona-navy);
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
    opacity: 0;
    /* hidden until a real value is chosen */
    transition: opacity 0.2s;
}

.custom-select-wrap.has-value .custom-select-value {
    opacity: 1;
}

.custom-select-arrow {
    font-size: 0.85rem;
    color: #9CA3AF;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.custom-select-wrap.is-open .custom-select-arrow {
    transform: rotate(180deg);
    color: var(--iona-blue);
}

/* Open state border */
.custom-select-wrap.is-open .custom-select-btn {
    border-color: var(--iona-blue);
    background: var(--iona-white);
    box-shadow: 0 0 0 4px rgba(53, 114, 205, 0.1);
    border-radius: 12px 12px 0 0;
}

/* Dropdown list */
.custom-select-list {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    background: var(--iona-white);
    border: 1px solid var(--iona-blue);
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 12px 32px rgba(11, 22, 40, 0.12);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    overflow: hidden;
    animation: dropdownIn 0.2s ease forwards;
}

@keyframes dropdownIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-select-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    color: var(--iona-navy);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    /* text-align: right;
    direction: rtl; */
}

.custom-select-option i {
    font-size: 1rem;
    color: var(--iona-blue);
    flex-shrink: 0;
}

.custom-select-option:hover {
    background: var(--iona-surface);
    color: var(--iona-blue);
}

.custom-select-option:hover i {
    color: var(--iona-orange);
}

.custom-select-option.is-selected {
    background: rgba(53, 114, 205, 0.06);
    color: var(--iona-blue);
    font-weight: 600;
}

.custom-select-option.is-selected i {
    color: var(--iona-orange);
}

.custom-select-option.placeholder-opt {
    color: #9CA3AF;
    font-size: 0.9rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--iona-border);
    cursor: default;
}

.form-alert {
    border-radius: 10px;
}

/* ─── Footer ─── */
.site-footer {
    background: var(--iona-surface);
    color: var(--iona-muted);
    padding-top: 4rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--iona-border);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--iona-blue);
}

.site-footer::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(53, 114, 205, 0.04);
    border-radius: 50%;
    bottom: -200px;
    left: -100px;
    pointer-events: none;
}

.site-footer h5 {
    color: var(--iona-navy);
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.site-footer a {
    color: var(--iona-muted);
}

.site-footer a:hover {
    color: var(--iona-blue);
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--iona-border);
    margin-top: 3rem;
    padding: 1.25rem 0;
    font-size: 0.9rem;
}

.footer-brand img {
    height: 56px;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* ─── Back to top ─── */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 48px;
    height: 48px;
    background: var(--iona-orange);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    /* background: var(--iona-orange-dark);
    color: #fff; */
    transform: translateY(-4px);
}

/* Nav scrolled — glass pill links */
body.is-scrolled .navbar-nav li a {
    border-radius: 8px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .reveal,
    .sectors-panel,
    .sector-card,
    .services-grid,
    .solutions-slide,
    .service-card,
    .sectors-band-item,
    .about-stat-item,
    .why-card,
    .methodology-step {
        opacity: 1;
        transform: none;
        transition: none !important;
        animation: none !important;
    }

    .reviews-progress-bar {
        transition: none !important;
    }
}

/* ─── Premium Visual Polish & Shimmers ─── */
.btn-primary-custom::after,
.btn-nav-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.35) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 2;
    animation: shimmerSweep 4.5s infinite ease-in-out;
}

@keyframes shimmerSweep {
    0% {
        left: -150%;
    }

    30% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

/* Ambient background blur orbs */
.ambient-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.035;
    /* extremely subtle, premium */
    mix-blend-mode: multiply;
}

.ambient-glow-orb-primary {
    background: var(--iona-blue);
}

.ambient-glow-orb-accent {
    background: var(--iona-orange);
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM POLISH — Final layer of visual excellence
   ═══════════════════════════════════════════════════════════ */

/* ─── Dark-section title overrides ─── */
/* On dark/navy backgrounds the gradient text becomes invisible.
   These overrides restore white text for those sections. */




/* ─── Button shimmer effect ─── */
@keyframes shimmer-slide {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }

    100% {
        transform: translateX(250%) skewX(-15deg);
    }
}

/* .btn-primary-custom {
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 40%;
    height: 140%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: translateX(-100%) skewX(-15deg);
    transition: none;
}

.btn-primary-custom:hover::after {
    animation: shimmer-slide 0.65s ease forwards;
} */

/* ─── Service card hover micro-glow ─── */
.service-card:hover {
    box-shadow:
        0 0 0 1.5px rgba(53, 114, 205, 0.18),
        0 16px 44px -8px rgba(53, 114, 205, 0.22),
        0 4px 20px -4px rgba(11, 22, 40, 0.06);
    transform: translateY(-6px);
    border-color: rgba(53, 114, 205, 0.25);
}

.service-card {
    transition:
        transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1),
        box-shadow 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
        border-color 0.35s ease,
        background-color 0.35s ease;
}

/* ─── Sector card hover micro-glow ─── */
.sector-card:hover {
    box-shadow:
        0 0 0 1px rgba(27, 186, 255, 0.1),
        0 12px 40px -8px rgba(27, 186, 255, 0.14),
        0 4px 16px -4px rgba(11, 22, 40, 0.06);
    transform: translateY(-6px);
}

/* ─── Why-card hover glow ─── */
.why-card:hover {
    box-shadow:
        0 0 0 1px rgba(53, 114, 205, 0.12),
        0 16px 48px -8px rgba(53, 114, 205, 0.18),
        0 4px 20px -4px rgba(11, 22, 40, 0.05);
}

/* ─── Stat counter ambient pulse ─── */
@keyframes stat-glow-pulse {

    0%,
    100% {
        text-shadow: 0 0 0px rgba(53, 114, 205, 0);
    }

    50% {
        text-shadow: 0 0 24px rgba(53, 114, 205, 0.35);
    }
}

.about-stat-item.is-visible .stat-number {
    animation: stat-glow-pulse 3s ease-in-out infinite 0.8s;
}

/* ─── Section label dot glow pulse ─── */
@keyframes dot-glow {

    0%,
    100% {
        box-shadow: 0 0 4px rgba(27, 186, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 10px rgba(27, 186, 255, 0.9);
    }
}

.section-label::before {
    animation: dot-glow 2.5s ease-in-out infinite;
}

/* ─── Smooth inter-section background transitions ─── */
.sectors-section {
    background: var(--iona-surface);
}


.solutions-section {
    background: var(--iona-surface);
}

/* ─── Service tag badge upgrade ─── */
.service-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(53, 114, 205, 0.12) 0%, rgba(27, 186, 255, 0.08) 100%);
    color: var(--iona-blue);
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    margin-bottom: 0.45rem;
}

/* ─── Hero widget fade-in on load ─── */
@keyframes widgetFadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-widget-status {
    animation: widgetFadeIn 0.7s ease 0.5s both, floatDrift 4s ease-in-out 1.2s infinite;
}

.hero-widget-alert {
    animation: widgetFadeIn 0.7s ease 0.8s both, floatDriftSlow 5.5s ease-in-out 1.5s infinite;
}

.hero-widget-cam {
    animation: widgetFadeIn 0.7s ease 1.1s both, floatDrift 5s ease-in-out 1.8s infinite;
}

/* ─── Methodology section responsive fix ─── */
@media (max-width: 767.98px) {
    .methodology-timeline {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-right: 0;
    }

    .methodology-step {
        padding-bottom: 1.25rem;
    }
}

/* ─── Section rhythm & sectors strip ─── */
.section-divider {
    height: 3rem;
    line-height: 0;
    pointer-events: none;
}

.section-divider--down {
    margin-top: -1px;
    background: var(--iona-white);
    clip-path: ellipse(72% 100% at 50% 100%);
}

.section-divider--up {
    background: var(--iona-navy);
    clip-path: ellipse(72% 100% at 50% 0%);
    margin-bottom: -1px;
}

.section-divider--down-light {
    background: var(--iona-white);
    clip-path: ellipse(70% 100% at 50% 100%);
    margin-top: -1px;
}

.band-light {
    background: var(--iona-white);
}

.band-dark {
    background: var(--iona-navy);
    color: #fff;
}

/* ─── Sectors Band (قطاعات نخدمها) — Premium Design ─── */
.sectors-band {
    background: var(--iona-surface);
    padding: 3rem 0;
    border-block: 1px solid var(--iona-border);
    position: relative;
}

.sectors-band-heading {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--iona-muted);
    margin: 0 0 2rem;
}

.sectors-band-list {
    max-width: 880px;
    margin-inline: auto;
}

/* Each col hosts the full-width anchor link */
.sectors-band-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
    padding: 1.5rem 0.75rem;
    text-decoration: none;
    border-radius: var(--radius-lg);
    background: transparent;
    transition: background 0.3s ease;
    cursor: pointer;
}

/* Icon container — white card with brand-blue icon */
.sectors-band-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: var(--iona-white);
    border: 1.5px solid rgba(53, 114, 205, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    color: var(--iona-blue);
    transition: all 0.38s cubic-bezier(0.34, 1.4, 0.64, 1);
    box-shadow: 0 4px 16px rgba(53, 114, 205, 0.1);
}

.sectors-band-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--iona-navy);
    transition: color 0.3s ease;
    line-height: 1;
}

.sectors-band-item:hover {
    background: rgba(53, 114, 205, 0.05);
}

.sectors-band-item:hover .sectors-band-icon {
    background: var(--iona-orange);
    color: var(--iona-white);
    /* border-color: var(--iona-blue); */
    /* box-shadow: 0 10px 28px rgba(53, 114, 205, 0.38); */
    transform: translateY(-5px) scale(1.02);
}

.sectors-band-item:hover .sectors-band-label {
    color: var(--iona-orange);
}

.sectors-band-item:focus-visible {
    outline: 2px solid var(--iona-orange);
    outline-offset: 3px;
    border-radius: var(--radius);
}

@media (max-width: 767.98px) {
    .sectors-band {
        padding: 2rem 0;
    }

    .sectors-band-heading {
        margin-bottom: 1.5rem;
    }

    .sectors-band-icon {
        width: 54px;
        height: 54px;
        font-size: 1.35rem;
        border-radius: 14px;
    }
}

@media (max-width: 575.98px) {
    .sectors-band {
        padding: 1.75rem 0;
    }

    .sectors-band-heading {
        margin-bottom: 1.25rem;
        font-size: 0.68rem;
    }

    .sectors-band-item {
        padding: 1rem 0.4rem;
        gap: 0.5rem;
    }

    .sectors-band-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        border-radius: 12px;
    }

    .sectors-band-label {
        font-size: 0.78rem;
    }
}

.service-card.h-100 {
    height: 100%;
}

.services-grid .service-card.is-visible {
    animation: cardFadeUp 0.55s ease forwards;
}

/* Services — exactly 3 cards per row on large screens */
.services-grid.row {
    display: flex;
    flex-wrap: wrap;
}

.services-grid>.col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.services-grid .service-card {
    width: 100%;
    min-width: 0;
    flex: 1 1 auto;
}

/* Force 3-up from tablet landscape up (overrides conflicting width rules) */
@media (min-width: 768px) {
    .services-grid.row>.col {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
        width: 33.333333% !important;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .services-grid.row>.col {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
    }
}

@media (max-width: 575.98px) {
    .services-grid.row>.col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* ─── Light theme refinements (no dark sections) ─── */
.stat-glass::before {
    display: none;
}

.stat-glass:hover {
    transform: translateY(-3px);
    border-color: rgba(53, 114, 205, 0.28);
    box-shadow: 0 10px 28px -12px rgba(53, 114, 205, 0.32);
}

.stat-glass:hover .stat-icon {
    transform: scale(1.04);
    background: rgba(53, 114, 205, 0.16);
}

.stat-icon {
    transition: transform 0.3s ease, background 0.3s ease;
}

.band-dark {
    background: var(--iona-surface);
    color: var(--iona-navy);
}






.phone-li {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    /* direction: rtl !important; */
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
}

.phone-span {
    display: inline-block;
    direction: ltr !important;
    transition: color 0.3s ease;
}

.site-footer .phone-li:hover,
.site-footer .phone-li:hover .phone-span,
.site-footer .phone-li:hover i {
    color: var(--iona-orange) !important;
}

/* ─── Premium Whatsapp Outline Button ─── */
.btn-whatsapp {
    background: rgba(37, 211, 102, 0.05);
    border: 1.5px solid rgba(37, 211, 102, 0.35);
    color: #25D366 !important;
    border-radius: 12px;
    font-weight: 600;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
}

.btn-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* ----------------------------------------------------------------------------
   RESPONSIVE STYLES (merged from responsive.css)
   ---------------------------------------------------------------------------- */
/* ════════════════════════════════════════════════════════════════════════════
   PROFESSIONAL RESPONSIVE DESIGN
   Preserving original layout while ensuring mobile responsiveness
   ════════════════════════════════════════════════════════════════════════════ */

/* ─── Tablet & Desktop (768px+) - Centre step-numbers exactly on the timeline line ─── */
@media (min-width: 768px) {
    /*
     * RTL grid: odd steps = visual-RIGHT column, even steps = visual-LEFT column.
     * Each number is anchored to the column edge that faces the central dividing line,
     * then shifted by half its own width (24px = half of 48px) to sit exactly on the line.
     */

    /* Odd step → right column in RTL → physical-left edge faces centre */
    .methodology-timeline .methodology-step:nth-child(odd) .step-number {
        right: auto;
        left: 0;
        transform: translateX(-50%);
    }

    /* Even step → left column in RTL → physical-right edge faces centre */
    .methodology-timeline .methodology-step:nth-child(even) .step-number {
        right: 0;
        left: auto;
        transform: translateX(50%);
    }
}

/* ─── Tablet & Small Devices (576px - 991px) ─── */
@media (max-width: 991.98px) {

    /* 
    .hero {
        min-height: auto !important;
        height: auto !important;
        overflow: visible !important;
        padding-bottom: 5rem !important;
    } */

    .hero-visual {
        margin-top: 2.5rem !important;
    }

    .hero-inner h1 {
        font-size: 2.5rem;
        line-height: 1.3;
        text-align: center;
    }

    .hero-lead {
        font-size: 1rem;
    }

    /* .hero-pillars {
        gap: 0.75rem;
    } */

    .hero-pillar {
        font-size: 0.95rem;
        padding: 0.75rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        min-height: 48px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-desc {
        font-size: 0.95rem;
    }

    .about-image-wrap {
        max-width: 100%;
    }

    .about-stats-bar {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }

    .about-stat-item {
        flex: 1;
        min-width: auto;
        padding: 1rem 0.75rem;
    }

    /* .services-grid {
        gap: 1.25rem;
    } */

    .service-card {
        min-height: 240px;
    }

    .service-card:hover {
        transform: translateY(-4px);
    }

    .why-card {
        padding: 2rem 1.5rem;
    }

    .solutions-new-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        min-height: auto;
    }

    .sector-tabs-row {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .sector-tab {
        width: auto;
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        flex-direction: row;
        white-space: nowrap;
    }

    .sector-tab-info {
        text-align: right;
    }

    .sector-panel-card {
        flex-direction: column;
    }

    .sector-panel-left {
        width: 100%;
        order: 2;
    }

    .sector-panel-visual {
        width: 100%;
        order: 1;
        margin-bottom: 2rem;
    }

    /* Methodology - only for single column mobile/tablet view (< 768px) */
    @media (max-width: 767.98px) {
        .methodology-timeline {
            padding-right: 2rem;
            overflow: hidden;
        }

        .methodology-timeline::before {
            right: 2.4rem;
            display: block;
        }

        .methodology-step {
            padding: 0 4rem 2rem 0;
            position: relative;
        }

        .step-number {
            position: absolute;
            right: calc(2.4rem - 24px);
            left: auto;
            transform: none;
            top: 0;
            width: 48px;
            height: 48px;
            font-size: 0.85rem;
        }
    }

    .contact-info-side {
        padding: 2rem;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .contact-light-side {
        padding: 2rem;
        border-left: none;
    }

    .contact-info-list li {
        margin-bottom: 1.5rem;
    }

    .ci-icon {
        min-width: 36px;
        width: 36px;
        height: 36px;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }

    /* .footer-links {
        text-align: center;
    } */

    .reviews-owl-wrap {
        max-width: 100%;
    }

    .wol-card {
        padding: 1.75rem;
        margin: 0 0.5rem;
    }

    .wol-quote {
        font-size: 0.95rem;
    }
}

/* ─── Mobile Devices (320px - 575px) ─── */
@media (max-width: 575.98px) {
    :root {
        --radius: 12px;
        --radius-lg: 16px;
    }

    /* Hero */
    .hero-container {
        padding: 1.5rem 1rem;
    }

    .hero-inner {
        text-align: center;
    }

    .hero-inner h1 {
        font-size: 1.65rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-tag {
        font-size: 0.75rem;
    }

    .hero-lead {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }

    .hero-pillars {
        margin-bottom: 1.5rem;
    }

    .hero-pillar {
        justify-content: center;
        padding: 0.65rem 0.75rem;
        font-size: 0.85rem;
    }

    /* ── Hero Visual Card – full-width, no overflow ── */
    .hero-visual {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .hero-visual-card {
        padding: 1rem;
        border-radius: 16px;
        overflow: hidden;
    }

    .hero-visual-top {
        margin-bottom: 0.9rem;
    }

    .hero-live-badge {
        font-size: 0.68rem;
        padding: 0.25rem 0.55rem;
    }

    .hero-visual-label {
        font-size: 0.72rem;
    }

    /* Stats grid – tighter but readable */
    .hero-stat-grid {
        margin-bottom: 0.75rem;
    }

    .hero-stat {
        padding: 0.65rem 0.5rem;
        border-radius: 10px;
    }

    .hero-stat i {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .hero-stat strong {
        font-size: 1.15rem;
        margin-bottom: 0.1rem;
    }

    .hero-stat span {
        font-size: 0.65rem;
    }

    /* Alert strip – compact */
    .hero-alert-strip {
        padding: 0.65rem 0.75rem;
        gap: 0.5rem;
        border-radius: 10px;
        align-items: center;
    }

    .hero-alert-strip>i {
        font-size: 1rem;
    }

    .hero-alert-strip strong {
        font-size: 0.78rem;
        margin-bottom: 0.08rem;
    }

    .hero-alert-strip span {
        font-size: 0.7rem;
        line-height: 1.35;
    }

    .hero-pillar i {
        font-size: 1.15rem;
        margin-left: 0.5rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        min-height: 44px;
    }

    .hero-proof {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.8rem;
        margin-top: 1rem;
    }

    .hero-proof-divider {
        display: none;
    }

    .hero-proof strong {
        display: block;
    }

    /* Float Widgets */
    .hero-widget {
        left: 0.75rem;
        right: 0.75rem;
        width: auto;
        padding: 0.75rem;
        border-radius: 12px;
    }

    .hero-widget-text {
        flex: 1;
    }

    .hero-widget-dot,
    .hero-widget-icon {
        width: 24px;
        height: 24px;
    }

    .hero-widget-icon i {
        font-size: 0.85rem;
    }

    .hero-widget-text strong {
        font-size: 0.8rem;
    }

    .hero-widget-text span {
        font-size: 0.65rem;
    }

    /* Sections */
    .section-padding {
        padding: 2.5rem 1rem;
    }

    .section-label {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0rem;
    }

    .section-desc {
        font-size: 0.9rem;
    }

    /* About */
    .about-section .col-lg-6 {
        margin-bottom: 2rem;
    }

    .about-image-wrap {
        max-width: 100%;
    }

    .about-placeholder {
        width: 100%;
        height: auto;
        max-height: 300px;
    }

    .about-placeholder img {
        max-height: 300px;
    }

    .about-stats-bar {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .about-stat-item {
        text-align: center;
        padding: 1rem;
    }

    .about-stat-item i {
        font-size: 1.5rem;
    }

    .about-stat-item strong {
        display: block;
        font-size: 1.25rem;
    }

    .about-stat-item span {
        font-size: 0.8rem;
    }

    .about-feature {
        gap: 0.75rem;
        padding: 1rem;
        margin-bottom: 0.75rem;
    }

    .about-feature-icon {
        min-width: 36px;
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .about-feature h5 {
        font-size: 0.95rem;
    }

    .about-feature p {
        font-size: 0.85rem;
    }

    /* Stats */
    .stat-glass {
        padding: 1.25rem 0.75rem;
        min-height: auto;
    }

    .stat-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Services */
    .services-head {
        margin-bottom: 1.5rem;
    }

    /* Services layout: Bootstrap .row / .col-* only */

    .service-card {
        padding: 1.25rem;
        min-height: auto;
        gap: 1rem;
    }

    .service-num {
        font-size: 0.65rem;
        inset-inline-start: auto;
        inset-inline-end: 1.25rem;
        top: 1.25rem;
    }

    .service-icon-wrap {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .service-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        border-radius: 8px;
    }

    .service-tag {
        font-size: 0.7rem;
    }

    .service-body h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .service-body p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .service-more {
        font-size: 0.8rem;
        opacity: 1;
        transform: none;
    }

    .services-cta {
        margin-top: 1.5rem;
    }

    /* Why Us */
    .why-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }

    .why-card i {
        font-size: 2rem;
    }

    .why-card h4 {
        font-size: 0.95rem;
    }

    .why-card p {
        font-size: 0.85rem;
    }

    /* Sector Tabs */
    .sector-tabs-row {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
        overflow: visible;
        padding: 4px 4px;
    }

    .sector-tab {
        width: 100%;
        padding: 0.85rem 1rem;
        font-size: 0.88rem;
        flex-direction: row;
        /* direction: rtl;
        text-align: right; */
        gap: 0.75rem;
        align-items: center;
    }

    .sector-tab-icon {
        order: 1;
        /* icon: visual RIGHT in RTL (first in RTL flow) */
        flex-shrink: 0;
    }

    .sector-tab-info {
        order: 2;
        /* text: after icon going left */
        flex: 1;
        text-align: right;
    }

    .sector-tab-icon {
        width: 38px;
        height: 38px;
        font-size: 1.05rem;
        flex-shrink: 0;
    }

    .sector-tab-name {
        font-size: 0.85rem;
    }

    .sector-tab-sub {
        font-size: 0.7rem;
    }

    .sector-tab-check {
        order: 3;
        /* check: visual LEFT in RTL (last/end in RTL flow) */
        position: static;
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
        margin-inline-start: 0;
    }

    /* Sector Panels */
    .sector-panels {
        min-height: auto;
    }

    .sector-panel-card {
        flex-direction: column;
        border-radius: 1rem;
    }

    .sector-panel-left {
        width: 100%;
        order: 2;
    }

    .sector-panel-visual {
        width: 100%;
        order: 1;
        margin-bottom: 1.5rem;
        min-height: 200px;
    }

    .sector-panel-header {
        margin-bottom: 1.25rem;
    }

    .sector-panel-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    .sector-panel-title {
        font-size: 1.25rem;
    }

    .sector-panel-desc {
        font-size: 0.9rem;
    }

    .sector-feature {
        gap: 0.75rem;
        padding: 0.75rem 0;
        margin-bottom: 0.75rem;
    }

    .sf-icon {
        min-width: 32px;
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .sf-body strong {
        font-size: 0.9rem;
    }

    .sf-body span {
        font-size: 0.8rem;
    }

    .sector-panel-cta {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .sector-btn {
        width: 100%;
    }

    .sector-stat {
        justify-content: center;
        font-size: 0.9rem;
    }

    /* Methodology */
    .methodology-timeline {
        padding-right: 1.5rem;
        overflow: hidden;
    }

    .methodology-timeline::before {
        right: 1.75rem;
        display: block;
    }

    .methodology-step {
        gap: 0.75rem;
        padding: 0 3.25rem 1.75rem 0;
        position: relative;
        flex-shrink: 0;
    }

    .step-number {
        position: absolute;
        right: calc(1.75rem - 20px);
        left: auto;
        transform: none;
        top: 0;
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 0.75rem;
        box-shadow: 0 0 0 2px var(--iona-blue), 0 0 12px rgba(53, 114, 205, 0.25);
        flex-shrink: 0;
    }

    .step-icon {
        font-size: 1.75rem;
    }

    .step-content {
        padding: 1rem;
        overflow: hidden;
    }

    .step-content::after {
        display: none;
    }

    .step-content h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .step-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Contact Form */
    .contact-premium-wrapper {
        border-radius: 1rem;
    }

    /* 
    .contact-premium-wrapper .row {
        flex-direction: column-reverse;
        g-0: unset;
    } */

    .contact-info-side {
        padding: 1.5rem 1rem;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-bottom: none;
        /* text-align: center; */
    }

    .contact-light-side {
        padding: 1.5rem 1rem;
        border-left: none;
    }

    .contact-info-list li {
        /* justify-content: center; */
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .ci-icon {
        min-width: 32px;
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .ci-text {
        text-align: center;
    }

    .ci-text a {
        font-size: 0.9rem;
    }

    #contactForm h4 {
        font-size: 1.1rem;
    }

    .form-floating>label {
        font-size: 0.9rem;
    }

    .custom-select-btn {
        font-size: 0.9rem;
    }

    /* Footer */
    .site-footer {
        padding: 2rem 0 1rem;
    }

    /* .site-footer .row {
        text-align: center;
    } */

    .footer-brand {
        margin-bottom: 1.5rem;
    }

    .footer-brand img {
        max-width: 120px;
        height: auto;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .site-footer h5 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .footer-links {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    /* Reviews */
    .reviews-section {
        padding: 2rem 1rem;
    }

    .reviews-summary-badge {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .badge-score {
        font-size: 1rem;
    }

    .badge-score strong {
        font-size: 1.25rem;
    }

    .badge-text {
        font-size: 0.85rem;
    }

    .wol-card {
        padding: 1.25rem 1rem;
        margin: 0.5rem 0.25rem;
    }

    .wol-card-header {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .wol-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
        flex-shrink: 0;
    }

    .wol-author strong {
        font-size: 0.9rem;
        display: block;
    }

    .wol-author span {
        font-size: 0.75rem;
    }

    .wol-stars {
        margin-bottom: 0.75rem;
    }

    .wol-stars i {
        font-size: 0.9rem;
    }

    .wol-quote {
        font-size: 0.9rem;
        line-height: 1.6;
        border-right-width: 2.5px;
        padding-right: 0.75rem;
        margin-bottom: 1.25rem;
    }

    /* Owl Carousel */
    .owl-carousel .owl-nav {
        display: none;
    }

    .owl-carousel .owl-dots {
        margin-top: 1rem;
    }
}

/* ─── Extra Small (Very Small Phones) (320px - 374px) ─── */
@media (max-width: 374.98px) {
    .hero-inner h1 {
        font-size: 1.35rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    /* .hero-pillars {
        gap: 0.4rem;
    } */

    .hero-pillar {
        padding: 0.5rem;
        font-size: 0.75rem;
    }

    .hero-btns .btn {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }

    /* .services-grid {
        gap: 0.75rem;
    } */

    .service-card {
        padding: 1rem;
    }

    .about-stats-bar {
        gap: 0.75rem;
    }

    .about-stat-item {
        padding: 0.75rem 0.5rem;
    }

    .sector-tab {
        padding: 0.75rem 0.75rem;
        font-size: 0.8rem;
    }

    .methodology-step {
        padding: 0 2.75rem 1rem 0;
        flex-shrink: 0;
    }

    .step-number {
        width: 36px;
        /* height: 36px; */
        font-size: 0.7rem;
        right: calc(1.4rem - 18px);
        left: auto;
        transform: none;
    }
}

/* ─── Landscape Orientation ─── */
@media (max-height: 500px) and (orientation: landscape) {
    /* .hero {
        min-height: auto;
        padding: 1.5rem 0;
    } */

    .hero-inner h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-lead {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    /* .hero-pillars {
        gap: 0.3rem;
        margin-bottom: 1rem;
    } */

    .hero-pillar {
        padding: 0.4rem;
        font-size: 0.75rem;
    }

    .hero-btns .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

@media(min-width: 1100px) {
    .hero-inner h1 {
        max-width: 85%;
    }
}

/* ─── Large Screens (1400px+) ─── */
@media (min-width: 1400px) {
    .section-title {
        font-size: 3rem;
    }

    .hero-inner h1 {
        font-size: 4rem;
    }

    /* .services-grid {
        gap: 2rem;
    } */

    .service-card {
        min-height: 300px;
    }

    .why-card {
        padding: 3rem 2rem;
    }
}



/* ═══════════════════════════════════════════════════════════════════════════
   Utility Classes (extracted from inline HTML styles)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Ambient orb — Why Us section */
.why-orb {
    width: 450px;
    height: 450px;
    top: -100px;
    right: -150px;
}

/* Ambient orb — Contact section */
.contact-orb {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
}

/* Contact form textarea fixed height */
.contact-textarea {
    height: 120px !important;
    resize: vertical;
}

/* ─── Floating Logo Widget (Bottom Right) ─── */
.floating-logo-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    z-index: 1050;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}

.floating-logo-widget:hover {
    transform: scale(1.08) translateY(-2px);
}

.floating-widget-circle {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(11, 22, 40, 0.12);
    border: 1px solid rgba(11, 22, 40, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px;
    position: relative;
    overflow: hidden;
}

.floating-widget-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-bottom: 2px;
}

.floating-widget-text {
    font-size: 0.5rem;
    font-weight: 800;
    color: var(--iona-navy);
    letter-spacing: 0.05em;
    line-height: 1;
}

.floating-widget-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--iona-orange);
    /* Vibrant red */
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(27, 186, 255, 0.3);
    z-index: 10;
}


/* ─── Sector Cards Responsive Overrides ─── */
@media (max-width: 991.98px) {

    .sector-panel-card.dark-card,
    .sector-panel-card.light-card {
        flex-direction: column !important;
        text-align: right;
        padding: 2rem;
        gap: 1.5rem;
    }

    .dark-card .sector-panel-visual,
    .light-card .sector-panel-visual {
        order: -1;
        margin: 0 auto;
        padding: 0;
        width: auto;
    }

    .shield-glow-wrap {
        width: 160px;
        height: 160px;
    }

    .shield-icon-center {
        width: 80px;
        height: 80px;
    }

    .shield-icon-center i {
        font-size: 2.5rem;
    }

    .dark-features-list {
        align-items: flex-start;
    }

    .dark-card .sector-panel-cta,
    .light-card .sector-panel-cta {
        justify-content: flex-start;
    }

    .dark-card .sector-panel-title,
    .light-card .sector-panel-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .shield-glow-wrap {
        width: 120px;
        height: 120px;
    }

    .shield-icon-center {
        width: 65px;
        height: 65px;
    }

    .shield-icon-center i {
        font-size: 2rem;
    }

    .sector-panel-card.dark-card,
    .sector-panel-card.light-card {
        padding: 1.5rem;
    }
}

/* Hero Quick Consultation Form */
.hero-quick-form {
    margin-bottom: 1.25rem;
    text-align: right;
}

.hero-quick-form .form-control-premium {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border-radius: 12px;
    padding: 0.75rem 1.15rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-quick-form .form-control-premium::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.hero-quick-form .form-control-premium:focus {
    background: rgba(255, 255, 255, 0.09) !important;
    border-color: var(--iona-orange) !important;
    box-shadow: 0 0 10px rgba(27, 186, 255, 0.25) !important;
}

/* ================================================================
   GENETEC-INSPIRED DESIGN OVERRIDES
   Matching: dark navy nav + vivid blue CTAs + deep hero gradient
   Logo palette: Blue #3572CD | Accent var(--iona-blue) | Navy #0B1325
   ================================================================ */

:root {
    --accent: var(--iona-blue);
    --accent-dark: #0099DD;
    --accent-darker: #0081C2;
    --accent-navy: #05101E;
}

/* ── 1. NAVBAR: Always dark (Genetec never goes white) ─────────── */
.top-header {
    background: #05101E !important;
    border-bottom: 1px solid rgba(27, 186, 255, 0.08) !important;
}

.nav-main,
body.is-scrolled .nav-main,
.nav-main.nav-scrolled {
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45) !important;
    border-bottom: 1px solid rgba(27, 186, 255, 0.07) !important;
    padding: 0.6rem 0 !important;
}

/* Nav links always white on dark bg */
.navbar-nav li a,
.nav-main.nav-scrolled .navbar-nav li a,
body.is-scrolled .navbar-nav li a {
    /* color: rgba(255,255,255,0.82) !important; */
    font-weight: 500;
}

.navbar-nav li a:hover {
    color: var(--accent) !important;
}

.navbar-nav li a::after {
    background: var(--accent) !important;
}

/* Nav toggler stays white-icon */
.nav-main.nav-scrolled .navbar-toggler,
body.is-scrolled .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

/* .nav-main.nav-scrolled .navbar-toggler-icon,
body.is-scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
} */

/* Mobile collapse: dark */
@media (max-width: 991.98px) {
    /* .nav-main {
        background: rgba(5, 12, 30, 0.99) !important;
    } */

    /* .navbar-collapse {
        background: rgba(6, 14, 35, 0.98) !important;
        border: 1px solid rgba(27, 186, 255, 0.10) !important;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5) !important;
    } */

    /* .navbar-collapse .navbar-nav li a {
        color: rgba(255, 255, 255, 0.85) !important;
    } */

    .navbar-collapse .navbar-nav li a:hover,
    .navbar-collapse .navbar-nav li a.active {
        color: var(--accent) !important;
        background: rgba(27, 186, 255, 0.07) !important;
    }
}


/* ── 3. HERO: Deeper, richer Genetec-style dark gradient ──────── */
/* .hero-bg-overlay {
    background: linear-gradient(128deg,
            rgba(3, 8, 20, 0.97) 0%,
            rgba(8, 18, 38, 0.95) 30%,
            rgba(15, 35, 75, 0.90) 60%,
            rgba(25, 65, 145, 0.80) 100%) !important;
} */

/* ── 4. PRIMARY BUTTONS: Solid bright blue, dark text ─────────── */
/* .btn-primary-custom {
    background: var(--accent) !important;
    color: #05101E !important;
    font-weight: 700 !important;
    border: none !important;
    box-shadow: 0 6px 22px rgba(27, 186, 255, 0.4) !important;
}

.btn-primary-custom:hover {
    background: #39CBFF !important;
    color: #05101E !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 36px rgba(27, 186, 255, 0.55) !important;
} */

/* ── 5. OUTLINE BUTTON: Genetec white-border style ────────────── */
.btn-outline-custom {
    background: transparent !important;
    border: 1.5px solid rgba(255, 255, 255, 0.50) !important;
    color: #fff !important;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.09) !important;
    border-color: rgba(255, 255, 255, 0.85) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
}

/* ── 6. CTA BANNER BUTTONS ────────────────────────────────────── */
.btn-cta-primary {
    background: var(--accent) !important;
    color: #05101E !important;
    font-weight: 700 !important;
    border: none !important;
    box-shadow: 0 6px 22px rgba(27, 186, 255, 0.4) !important;
}

.btn-cta-primary:hover {
    /* background: #39CBFF !important;
    color: #05101E !important; */
    transform: translateY(-2px) !important;
}

.btn-cta-outline {
    border-color: rgba(255, 255, 255, 0.45) !important;
    color: #fff !important;
    background: transparent !important;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: #fff !important;
    color: #fff !important;
}

/* ── 7. TEXT HIGHLIGHTS: bright cyan-blue ─────────────────────── */
/* .text-highlight-blue {
    color: var(--accent) !important;
    text-shadow: 0 0 18px rgba(27, 186, 255, 0.28);
} */

/* ── 8. HERO BADGE & PILLARS ──────────────────────────────────── */
.hero-badge i,
.hero-pillar i {
    color: var(--accent) !important;
}

/* ── 9. SECTION LABELS ────────────────────────────────────────── */
.section-label {
    color: var(--accent) !important;
    border-color: rgba(27, 186, 255, 0.35) !important;
}

.section-label::before {
    background: var(--accent) !important;
}

/* ── 10. BLUE SOLID BUTTON (solutions panels) ─────────────────── */
.btn-blue-solid {
    background: var(--accent) !important;
    /* color: #05101E !important; */
    color: var(--iona-white);
    font-weight: 700 !important;
    border: none !important;
    border-radius: 12px;
    padding: 0.7rem 1.6rem;
    /* box-shadow: 0 6px 20px rgba(27, 186, 255, 0.38) !important; */
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-blue-solid:hover {
    /* background: #39CBFF !important;
    color: #05101E !important; */
    transform: translateY(-2px) !important;
    /* box-shadow: 0 10px 28px rgba(27, 186, 255, 0.5) !important; */
}

/* ── 11. SHIELD GLOW (solutions visual) ───────────────────────── */
.shield-glow-ring {
    border-color: rgba(27, 186, 255, 0.28) !important;
}

.shield-glow-ring.shield-glow-ring-2 {
    border-color: rgba(27, 186, 255, 0.13) !important;
}

.shield-icon-center {
    background: radial-gradient(circle, rgba(27, 186, 255, 0.26) 0%, rgba(27, 186, 255, 0.05) 70%) !important;
    border-color: rgba(27, 186, 255, 0.48) !important;
    box-shadow: 0 0 38px rgba(27, 186, 255, 0.38), inset 0 0 18px rgba(27, 186, 255, 0.10) !important;
}

.shield-icon-center i {
    color: var(--accent) !important;
    filter: drop-shadow(0 0 9px rgba(27, 186, 255, 0.65)) !important;
}

/* ── 12. STATS & ICONS ────────────────────────────────────────── */
.stats-glow {
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(27, 186, 255, 0.13), transparent) !important;
}

.stat-icon {
    color: var(--accent) !important;
}

/* ── 13. STEP NUMBERS (methodology) ──────────────────────────── */
.step-number {
    background: var(--accent) !important;
    font-weight: 800 !important;
}

/* ── 14. CONTACT ICONS ────────────────────────────────────────── */
.ci-icon {
    background: rgba(27, 186, 255, 0.09) !important;
    color: var(--accent) !important;
}

/* ── 15. BACK TO TOP ──────────────────────────────────────────── */
/* .back-to-top {
    background: var(--accent) !important;
    color: #05101E !important;
    box-shadow: 0 4px 16px rgba(27, 186, 255, 0.38) !important;
}

.back-to-top:hover {
    background: #39CBFF !important;
    box-shadow: 0 8px 24px rgba(27, 186, 255, 0.55) !important;
} */

/* ── 16. SECTOR TABS ──────────────────────────────────────────── */
.sector-tab.active {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 1px rgba(27, 186, 255, 0.18) !important;
}

.sector-tab-check {
    color: var(--accent) !important;
}

/* ── 17. FLOATING WIDGET ──────────────────────────────────────── */
/* .floating-widget-circle {
    box-shadow: 0 0 0 4px rgba(27, 186, 255, 0.12), 0 8px 24px rgba(0, 0, 0, 0.3) !important;
} */

/* ── 18. HERO ALERT STRIP (non-secure variant) ────────────────── */
.hero-alert-strip:not(.hero-alert-strip--secure) {
    background: rgba(27, 186, 255, 0.09) !important;
    border-color: rgba(27, 186, 255, 0.27) !important;
}

.hero-alert-strip:not(.hero-alert-strip--secure)>i {
    color: var(--accent) !important;
}

/* ═══ END GENETEC OVERRIDES ═══ */
/* ================================================================
   GENETEC HERO + WHITE SECTIONS OVERRIDES
   ================================================================ */

/* ── HERO: Genetec exact layout ──────────────────────────────── */


/* @media (max-width: 991.98px) {
    .hero {
        min-height: auto !important;
        padding-top: calc(var(--header-h-mobile, 80px) + 2rem) !important;
        padding-bottom: 3rem !important;
    }
} */

/* Hero headline: large, bold, dark navy - Genetec style */
.hero-headline {
    font-size: clamp(2.2rem, 3.5vw, 3.6rem) !important;
    font-weight: 800 !important;
    color: var(--iona-navy) !important;
    line-height: 1.28 !important;
    margin-bottom: 1.4rem !important;
    letter-spacing: -0.02em;
}

.hero-headline .text-highlight-blue {
    color: var(--iona-blue) !important;
    text-shadow: 0 0 24px rgba(27, 186, 255, 0.35);
}


/* Hero lead text */
.hero .hero-lead {
    font-size: 1.05rem !important;
    /* color: rgba(11, 19, 37, 0.75) !important; */
    color: var(--iona-white) !important;
    max-width: 500px !important;
    line-height: 1.8 !important;
    margin-bottom: 2rem !important;
}

/* Genetec-style CTA button row */
.hero-btns-genetec {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    /* justify-content: flex-end; */
}

@media (max-width: 991.98px) {
    .hero-btns-genetec {
        justify-content: center;
    }
}

/* Genetec solid blue button */
.btn-genetec-primary {
    background: var(--iona-blue);
    color: var(--iona-white);
    /* color: #05101E; */
    font-weight: 700;
    font-size: 0.98rem;
    border: 2px solid var(--iona-blue);
    border-radius: 6px;
    padding: 0.75rem 1.8rem;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 18px rgba(27,186,255,0.4); */
    white-space: nowrap;
}

.btn-genetec-primary:hover {
    color: var(--iona-white);
    transform: translateY(-2px);
    /* box-shadow: 0 8px 28px rgba(27, 186, 255, 0.55); */
}

/* Genetec blue-outline button */
.btn-genetec-outline {
    background: transparent;
    color: var(--iona-blue) !important;
    font-weight: 600;
    font-size: 0.98rem;
    border: 2px solid var(--iona-blue) !important;
    border-radius: 6px;
    padding: 0.75rem 1.8rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-genetec-outline:hover {
    background: var(--iona-blue);
    color: var(--iona-white) !important;
    /* border-color: var(--iona-blue-dark) !important; */
    color: var(--iona-blue-dark) !important;
    transform: translateY(-2px);
}

/* ── HEXAGONAL IMAGE VISUAL (right side) ─────────────────────── */
.hero-hex-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.hero-hex-shape {
    position: relative;
    width: 100%;
    padding-bottom: 90%;
    overflow: hidden;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    border-radius: 4px;
}

.hero-hex-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    transition: transform 8s ease;
}

.hero-hex-wrap:hover .hero-hex-img {
    transform: scale(1.13);
}

.hero-hex-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(5, 16, 46, 0.45) 0%,
            rgba(10, 30, 80, 0.25) 50%,
            rgba(27, 186, 255, 0.12) 100%);
    pointer-events: none;
}

/* Hex badge floating over the shape */
.hero-hex-badge {
    position: absolute;
    bottom: 12%;
    right: -5%;
    background: rgba(5, 12, 30, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(27, 186, 255, 0.35);
    border-radius: 50px;
    padding: 0.55rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-hex-badge i {
    color: var(--iona-blue);
    font-size: 1rem;
}

@media (max-width: 991.98px) {
    .hero-hex-wrap {
        max-width: 340px;
        margin: 2rem auto 0;
    }

    .hero-hex-badge {
        right: 2%;
        bottom: 8%;
    }
}

/* ── WHITE SECTIONS: Remove all dark backgrounds ─────────────── */

/* Services section */
.services-section,
.band-dark {
    background: #ffffff !important;
    color: var(--iona-navy) !important;
}

.services-section .section-title,
.band-dark .section-title {
    color: var(--iona-navy) !important;
}

.services-section .section-desc,
.band-dark .section-desc {
    color: var(--iona-muted) !important;
}

.services-section .section-label,
.band-dark .section-label {
    color: var(--accent) !important;
}

.services-bg-dots {
    display: none;
}

/* Service cards: light on white */
.service-card {
    background: #f8faff !important;
    border: 1px solid rgba(53, 114, 205, 0.12) !important;
    color: var(--iona-navy) !important;
}

.service-card:hover {
    border-color: rgba(27, 186, 255, 0.35) !important;
    box-shadow: 0 12px 36px rgba(27, 186, 255, 0.12) !important;
}

.service-card h3 {
    color: var(--iona-navy) !important;
}

.service-card p {
    color: var(--iona-muted) !important;
}

.service-tag {
    background: rgba(27, 186, 255, 0.10) !important;
    color: #0099DD !important;
}

.service-more {
    color: var(--accent) !important;
}

.service-num {
    color: rgba(27, 186, 255, 0.15) !important;
}

.service-icon {
    background: rgba(27, 186, 255, 0.10) !important;
    color: var(--accent) !important;
}

/* Stats section: white */
.stats-section {
    background: #f3f7fd !important;
    color: var(--iona-navy) !important;
}

.stats-section::before {
    display: none;
}

.stat-glass {
    background: #ffffff !important;
    border: 1px solid rgba(53, 114, 205, 0.12) !important;
    box-shadow: 0 4px 20px rgba(53, 114, 205, 0.06) !important;
}

.stat-glass:hover {
    border-color: rgba(27, 186, 255, 0.35) !important;
    box-shadow: 0 12px 32px rgba(27, 186, 255, 0.15) !important;
}

.stat-num {
    color: var(--iona-navy) !important;
}

.stat-label {
    color: var(--iona-muted) !important;
}

.stats-glow {
    display: none !important;
}

/* Methodology section: white */
.methodology-section {
    background: #ffffff !important;
    color: var(--iona-navy) !important;
}

.methodology-section .section-title {
    color: var(--iona-navy) !important;
}

.methodology-section .section-desc,
.methodology-section p {
    color: var(--iona-muted) !important;
}

.methodology-section h4 {
    color: var(--iona-navy) !important;
}

.step-content {
    background: #f8faff !important;
    border-color: rgba(53, 114, 205, 0.12) !important;
    color: var(--iona-navy) !important;
}

.step-icon {
    color: var(--accent) !important;
    background: rgba(27, 186, 255, 0.10) !important;
}

.methodology-timeline::before {
    background: linear-gradient(to bottom, transparent, var(--accent), transparent) !important;
}

/* Reviews section: light */
.reviews-section {
    background: #f3f7fd !important;
    color: var(--iona-navy) !important;
}

.reviews-section .section-head {
    margin-bottom: 0 !important;
}

.reviews-section .section-title {
    color: var(--iona-navy) !important;
}

/* Review cards */
.wol-card {
    background: #ffffff !important;
    border: 1px solid rgba(53, 114, 205, 0.10) !important;
    color: var(--iona-navy) !important;
}

.wol-quote {
    color: var(--iona-muted) !important;
}

.wol-author strong {
    color: var(--iona-navy) !important;
}

.wol-author span {
    color: var(--iona-muted) !important;
}

.quote-char {
    color: var(--accent) !important;
}

/* CTA banner: keep blue-dark (it's a CTA, should stand out) */
.cta-banner-card {
    background: linear-gradient(135deg, var(--iona-navy) 0%, var(--iona-blue-dark) 100%) !important;
}

.cta-banner-card .section-title,
.cta-banner-card .section-desc,
.cta-banner-card .section-label {
    color: #fff !important;
}

.cta-banner-card .text-highlight-blue {
    color: var(--iona-blue) !important;
}

/* Contact section: white */
.contact-section {
    background: #ffffff !important;
}

.contact-info-side {
    background: #f3f7fd !important;
    border-radius: 0;
}

.contact-info-side h3 {
    color: var(--iona-navy) !important;
}

.contact-info-side p {
    color: var(--iona-muted) !important;
}

/* About section stays light — already was */
.about-section.band-light {
    background: var(--iona-surface) !important;
}

/* Ambient orbs: hide */
.ambient-glow-orb {
    display: none !important;
}

/* ═══ END WHITE SECTIONS ═══ */
/* ================================================================
   HERO — GENETEC EXACT REPLICA
   Full-bleed background image, strong directional gradient overlay,
   text on one side, image bleeds through on the other.
   ================================================================ */

/* Reset any previous hero overrides */
/* .hero {
    min-height: 85vh !important;
    height: auto !important;
    max-height: none !important;
    display: flex !important;
    align-items: center !important;
    padding-top: calc(var(--header-h-desktop, 90px) + 2.5rem) !important;
    padding-bottom: 4rem !important;
    position: relative !important;
    overflow: hidden !important;
    background: #05101E !important;
} */

/* @media (max-width: 991.98px) {
    .hero {
        min-height: auto !important;
        padding-top: calc(var(--header-h-mobile, 70px) + 2rem) !important;
        padding-bottom: 3rem !important;
    }
} */

/* Background photo: fills the whole hero */
.hero-bg-photo {
    position: absolute !important;
    inset: 0 !important;
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
    z-index: 0 !important;
}

/* ── THE KEY GENETEC GRADIENT:
   For RTL (Arabic): text is on the RIGHT → darken from right to left
   Image bleeds through on the LEFT side                              */
.hero-bg-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    /* Start almost-black on the right (text side), fade to dark blue on left (image side) */
    /* background: linear-gradient(to left,
            rgba(2, 6, 18, 0.99) 0%,
            rgba(4, 10, 28, 0.98) 20%,
            rgba(6, 15, 40, 0.94) 38%,
            rgba(8, 22, 58, 0.82) 52%,
            rgba(12, 32, 80, 0.55) 65%,
            rgba(18, 48, 110, 0.28) 80%,
            rgba(27, 70, 150, 0.08) 100%) !important; */
    pointer-events: none !important;
}

/* Container is positioned above overlay */
.hero-container {
    position: relative !important;
    z-index: 3 !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
}

.hero-hl {
    color: var(--iona-blue) !important;
    text-shadow: 0 0 28px rgba(27, 186, 255, 0.38);
}

/* ── LEAD TEXT ── */
.hero .hero-lead {
    font-size: 1.08rem !important;
    /* color: rgba(255, 255, 255, 0.75) !important; */
    line-height: 1.82 !important;
    margin: 0 0 2.2rem 0 !important;
    max-width: 480px !important;
}

@media (max-width: 991.98px) {
    .hero .hero-lead {
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* ── BUTTONS: Exact Genetec style ── */
.hero-btns-genetec {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.9rem !important;
    align-items: center !important;
    /* justify-content: flex-end !important; */
}

@media (max-width: 991.98px) {
    .hero-btns-genetec {
        justify-content: center !important;
    }
}

/* Solid filled cyan button — "Request a demo" */

/* White outline button — "Tour Security Center" */
.btn-genetec-outline {
    display: inline-flex !important;
    align-items: center !important;
    background: transparent !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    border: 2px solid rgba(255, 255, 255, 0.58) !important;
    border-radius: 5px !important;
    padding: 0.72rem 1.75rem !important;
    white-space: nowrap !important;
    transition: all 0.28s ease !important;
    text-decoration: none !important;
}

/* .btn-genetec-outline:hover {
    background: rgba(255, 255, 255, 0.09) !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
} */

/* Removed hiding of hero elements */

/* ═══ END GENETEC HERO ═══ */

/* ── CORE FEATURES BAND (Post-Hero, Genetec style with Iona Tech touch) ── */
.core-features-band {
    background: #ffffff;
    padding: 5rem 0;
    border-bottom: 1px solid rgba(53, 114, 205, 0.08);
}

.feature-card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.feature-card-link:hover {
    transform: translateY(-8px);
}

.feature-card-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    background: #f8faff;
    border-radius: 50%;
    border: 1px solid rgba(27, 186, 255, 0.18);
    color: #05101E;
    /* navy */
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

/* Multi-tone touch */
/* .feature-card-icon::after {
    content: '';
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    background: var(--iona-blue); 
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
    transition: opacity 0.3s ease;
} */
.feature-card-icon i {
    z-index: 1;
    font-size: 3rem;
}

.feature-card-link:hover .feature-card-icon {
    background: #ffffff;
    border-color: var(--iona-blue);
    box-shadow: 0 12px 32px rgba(27, 186, 255, 0.18);
    color: var(--iona-blue);
}

/* .feature-card-link:hover .feature-card-icon::after {
    opacity: 0.25;
} */
.feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #05101E;
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
}

.feature-card-cta {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--iona-blue);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

/* .feature-card-link:hover .feature-card-cta {
    gap: 0.7rem;
    color: #0099DD;
} */

/* ── UPDATED HERO (Solid Gradient Background + Hexagon Cutout Image) ── */
/* .hero {
    background: linear-gradient(135deg, #F3F7FD 0%, #FFFFFF 100%) !important;
} */
/* 
.hero-bg-photo,
.hero-bg-overlay {
    display: none !important;
} */

.hero-hex-cutout-wrap {
    position: relative;
    width: 100%;
    max-width: 440px;
    /* Reduced from 580px so it's not too big */
    margin: 0 auto;
    /* Center it nicely in its column */
    display: flex;
    justify-content: center;
}

.hero-hex-cutout {
    width: 100%;
    aspect-ratio: 1.1 / 1;
    position: relative;
    /* Create a Genetec-style hexagon */
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    /* Create a thick transparent diagonal cut through the image to mimic the "G" shape logo */
    -webkit-mask-image: linear-gradient(210deg, #000 38%, transparent 38%, transparent 54%, #000 54%);
    mask-image: linear-gradient(210deg, #000 38%, transparent 38%, transparent 54%, #000 54%);
}

.hero-hex-cutout img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 10s ease;
}

.hero-hex-cutout-wrap:hover .hero-hex-cutout img {
    transform: scale(1.1);
}

/* ── CREATIVE LAYERED HERO VISUAL ── */
.hero-creative-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

/* Glowing orb behind the image */
.hero-glow-backdrop {
    position: absolute;
    width: 85%;
    height: 85%;
    background: radial-gradient(circle, rgba(68, 117, 185, 0.25) 0%, rgba(68, 117, 185, 0) 70%);
    filter: blur(40px);
    z-index: 0;
    animation: pulseGlow 6s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.95);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* The Main Image Frame */
.hero-image-frame {
    position: relative;
    z-index: 1;
    width: 85%;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    /* Glassmorphic border & 3D tilt */
    box-shadow: 0 25px 50px rgba(11, 22, 40, 0.12), inset 0 0 0 1px rgba(11, 22, 40, 0.05);
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-creative-wrap:hover .hero-image-frame {
    transform: perspective(1000px) rotateY(-2deg) rotateX(0deg) translateY(-10px);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero-creative-wrap:hover .hero-image-frame img {
    transform: scale(1.08);
}

.frame-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(68, 117, 185, 0.12) 0%, transparent 50%, rgba(11, 22, 40, 0.06) 100%);
    pointer-events: none;
}

/* Floating Glass Cards */
.floating-glass-card {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(68, 117, 185, 0.12);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 12px 32px rgba(11, 22, 40, 0.08);
    color: var(--iona-navy);
    animation: floatAnim 6s ease-in-out infinite;
}

.glass-card-top {
    top: 5%;
    right: -12%;
    animation-delay: 0s;
}

.glass-card-bottom {
    bottom: 8%;
    left: -18%;
    animation-delay: -3s;
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.glass-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(27, 186, 255, 0.15);
    color: var(--iona-blue);
    border-radius: 50%;
    font-size: 1.3rem;
    border: 1px solid rgba(27, 186, 255, 0.3);
}

.glass-pulse {
    width: 12px;
    height: 12px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

.glass-text {
    display: flex;
    flex-direction: column;
}

.glass-text strong {
    font-size: 0.95rem;
    font-weight: 700;
}

.glass-text span {
    font-size: 0.8rem;
    color: var(--iona-muted);
}

/* Hide old hex cutout classes just in case */
.hero-hex-cutout-wrap {
    display: none !important;
}

/* ── PRODUCTS SECTION (Owl Carousel) ── */
.products-section {
    background-color: #f8faff;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(27, 186, 255, 0.08);
    border-color: rgba(27, 186, 255, 0.15);
}

.product-img-wrap {
    width: 130px;
    height: 130px;
    margin: 0 auto 1.8rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.1);
}

/* Fallback Icon Styling (for when image isn't loaded) */
.product-icon-fallback {
    width: 100%;
    height: 100%;
    background: #f0f4fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--iona-blue);
    font-size: 3.5rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon-fallback {
    background: var(--iona-blue);
    color: #ffffff;
    /* box-shadow: 0 10px 25px rgba(27,186,255,0.3); */
}

.product-info {
    margin-top: auto;
}

.product-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #05101E;
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--iona-blue);
}

.product-features {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Owl Carousel Custom Controls */
.products-carousel .owl-nav {
    position: absolute;
    top: 35%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    /* Let clicks pass through empty space */
}

.products-carousel .owl-nav button {
    pointer-events: auto;
    /* Enable clicks on buttons */
    margin: 0 -22px !important;
}

.products-carousel .owl-nav button.owl-prev,
.products-carousel .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    background: #ffffff !important;
    border-radius: 50% !important;
    color: #05101E !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    font-size: 1.3rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

.products-carousel .owl-nav button.owl-prev:hover,
.products-carousel .owl-nav button.owl-next:hover {
    background: var(--iona-blue) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(27, 186, 255, 0.3) !important;
    transform: scale(1.1);
}

@media (max-width: 991.98px) {
    .products-carousel .owl-nav {
        display: none !important;
    }
}

.products-carousel .owl-dots {
    margin-top: 2.5rem !important;
}

.products-carousel .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background: #d1dfed !important;
    transition: all 0.3s ease !important;
}

.products-carousel .owl-dot.active span {
    background: var(--iona-blue) !important;
    width: 30px !important;
}

/* ─── Language Switcher ─── */
.lang-selector {
    position: relative;
    display: inline-block;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--iona-navy) !important;
    text-decoration: none;
    padding: 0.45rem 0.85rem;
    border-radius: 50px;
    border: 1px solid var(--iona-border);
    background: transparent;
    transition: all var(--transition);
}

.lang-btn:hover {
    color: var(--iona-blue) !important;
    border-color: rgba(68, 117, 185, 0.3);
    background: var(--iona-blue-light);
}

.lang-btn i {
    font-size: 1rem;
    color: var(--iona-blue);
}

@media (max-width: 991.98px) {
    .nav-buttons-wrap {
        flex-direction: column;
        align-items: stretch !important;
        width: 100%;
        margin-top: 1rem;
        gap: 0.75rem !important;
    }

    /* 
    .lang-selector {
        text-align: center;
    } */

    .lang-btn {
        justify-content: center;
    }
}


/* ═══════════════════════════════════════════════════════════════
   HERO — PREMIUM REDESIGN (Light Background + Video Frame)
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero base – override old dark background ── */
.hero {
    /* background: linear-gradient(145deg,
            #edf3ff 0%,
            #f5f8ff 35%,
            #f8fbff 65%,
            #edf5fb 100%) !important; */
    /* background: var(--iona-blue) !important; */
    /* min-height: 100vh; */
    padding-top: calc(var(--header-h-desktop, 90px) + 6rem);
    padding-bottom: 10rem;
    position: relative;
    overflow: hidden;
}

/* ── Light Decorative Background Layer ── */
.hero-bg-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

/* Soft colour orbs */
.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-bg-orb-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, #c7ddfb 0%, transparent 70%);
    top: -100px;
    right: -80px;
    animation: orbFloat1 8s ease-in-out infinite;
}

.hero-bg-orb-2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #d8eeff 0%, transparent 70%);
    bottom: 60px;
    left: -60px;
    animation: orbFloat2 10s ease-in-out infinite;
}

.hero-bg-orb-3 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, #b8d8f8 0%, transparent 70%);
    top: 40%;
    right: 42%;
    animation: orbFloat1 12s ease-in-out infinite reverse;
    opacity: 0.3;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -30px) scale(1.06);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-15px, 20px) scale(1.04);
    }
}

/* Subtle dot grid pattern */
.hero-bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #bbd5f0 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.35;
}

/* Bottom wave separator */
.hero-bg-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: #ffffff;
    clip-path: ellipse(55% 100% at 50% 100%);
}

/* Keep container above bg layer */
.hero .container {
    position: relative;
    z-index: 1;
}

/* ── Trust Badge ── */
.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(37, 99, 235, 0.18);
    border-radius: 50px;
    padding: 6px 16px;
    margin-bottom: 1.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--iona-navy);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.10);
}

.hero-trust-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulseTrustDot 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulseTrustDot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
}

/* ── Hero Headline override for light bg ── */
.hero-headline {
    color: var(--iona-navy) !important;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

/* .hero-hl {
    background: linear-gradient(135deg, #1E4FA0, #4475B9, #0ea5e9) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
} */

.hero-lead {
    color: #475569 !important;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

/* ── Mini Stats Row ── */
.hero-mini-stats {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 16px;
    padding: 14px 22px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.07);
    width: fit-content;
}

.hero-mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 18px;
}

.hero-mini-stat strong {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--iona-blue);
    line-height: 1.1;
}

.hero-mini-stat span {
    font-size: 0.73rem;
    color: #64748b;
    margin-top: 2px;
    font-weight: 500;
}

.hero-mini-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(37, 99, 235, 0.15);
    flex-shrink: 0;
}

/* ── Buttons update for light bg ── */
.btn-genetec-primary {
    /* background: linear-gradient(135deg, #1E4FA0, #4475B9) !important; */
    color: #fff !important;
    border: none !important;
    padding: 13px 30px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35) !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.btn-genetec-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.45) !important;
}

.btn-genetec-outline {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--iona-navy) !important;
    border: 2px solid rgba(37, 99, 235, 0.3) !important;
    padding: 11px 28px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    transition: all 0.2s !important;
}

/* .btn-genetec-outline:hover {
    background: #1E4FA0 !important;
    color: #fff !important;
    border-color: #1E4FA0 !important;
} */

/* ── Hero Video Wrap ── */
.hero-video-wrap {
    position: relative;
    padding: 20px;
}

/* Animated decorative rings */
.hero-video-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 105%;
    height: 105%;
    border-radius: 22px;
    border: 1.5px solid rgba(37, 99, 235, 0.18);
    animation: heroRingPulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-video-ring-2 {
    width: 112%;
    height: 112%;
    animation: heroRingPulse 3s ease-in-out infinite 1.5s;
    border-color: rgba(37, 99, 235, 0.09);
}

@keyframes heroRingPulse {

    0%,
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.01);
    }
}

/* ── Video Frame (security camera monitor UI) ── */
.hero-video-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.06),
        0 12px 40px rgba(15, 40, 80, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    background: #0d1a2e;
    position: relative;
    z-index: 2;
}

/* Top bar */
.hero-video-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: rgba(10, 18, 35, 0.95);
    padding: 8px 14px;
    font-family: 'Courier New', monospace;
    font-size: 0.72rem;
    color: #a0b4d0;
}

.hero-video-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #ef4444;
    letter-spacing: 1px;
    font-size: 0.7rem;
}

.hero-live-dot {
    width: 7px;
    height: 7px;
    background: #ef4444;
    border-radius: 50%;
    animation: heroLiveBlink 1s step-start infinite;
    flex-shrink: 0;
}

@keyframes heroLiveBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-video-cam-id {
    flex: 1;
    text-align: center;
    font-size: 0.68rem;
    color: #7c9ab8;
}

.hero-video-time {
    font-size: 0.7rem;
    color: #9eb5cc;
    letter-spacing: 0.5px;
}

/* Media area */
.hero-video-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0a1424;
}

.hero-vid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* -- AI Scan Overlay -- */
.hero-ai-scan {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 7px 20px;
    font-size: 0.83rem;
    font-weight: 600;
    color: #ffffff;
}

.hero-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(34, 197, 94, 0.7) 40%, rgba(34, 197, 94, 1) 50%, rgba(34, 197, 94, 0.7) 60%, transparent 100%);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
    animation: heroScanSweep 3.5s linear infinite;
    top: 0;
}

@keyframes heroScanSweep {
    0% {
        top: 0%;
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.hero-scan-box {
    position: absolute;
    border: 1.5px solid rgba(34, 197, 94, 0.7);
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.3);
    animation: heroBoxFade 3.5s ease-in-out infinite;
}

.hero-scan-box-1 {
    width: 90px;
    height: 110px;
    top: 25%;
    left: 20%;
    animation-delay: 0.8s;
}

.hero-scan-box-2 {
    width: 65px;
    height: 80px;
    top: 30%;
    right: 25%;
    animation-delay: 1.6s;
}

@keyframes heroBoxFade {

    0%,
    20% {
        opacity: 0;
    }

    35%,
    75% {
        opacity: 1;
    }

    90%,
    100% {
        opacity: 0;
    }
}

.hero-scan-label {
    position: absolute;
    bottom: -22px;
    left: 0;
    font-size: 0.6rem;
    font-family: 'Courier New', monospace;
    color: #22c55e;
    background: rgba(0, 0, 0, 0.55);
    padding: 2px 5px;
    border-radius: 3px;
    white-space: nowrap;
}

/* Bottom bar */
.hero-video-bottombar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 18, 35, 0.95);
    padding: 8px 14px;
    font-family: 'Courier New', monospace;
    font-size: 0.68rem;
}

.hero-vid-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #22c55e;
    font-size: 0.7rem;
}

.hero-vid-status i {
    font-size: 0.8rem;
}

.hero-vid-resolution {
    color: #7c9ab8;
    font-size: 0.68rem;
    letter-spacing: 0.5px;
}

/* ── Floating Glass Cards – light theme ── */
.floating-glass-card {
    background: rgba(255, 255, 255, 0.92) !important;
    border: 1.5px solid rgba(37, 99, 235, 0.15) !important;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    backdrop-filter: blur(12px) !important;
    border-radius: 14px !important;
    padding: 12px 18px !important;
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: heroFloatCard 4s ease-in-out infinite;
}

.glass-text strong {
    color: var(--iona-navy) !important;
    font-size: 0.85rem !important;
    display: block;
    line-height: 1.2;
}

.glass-text span {
    color: #64748b !important;
    font-size: 0.72rem !important;
}

.glass-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #EBF2FC, #bfdbfe);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.glass-icon i {
    color: #1E4FA0;
    font-size: 1rem;
}

.glass-icon-green {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0) !important;
}

.glass-icon-green i {
    color: #15803d !important;
}

/* Card positions */
.glass-card-top {
    top: -18px !important;
    right: -18px !important;
}

.glass-card-bottom {
    bottom: 38px !important;
    left: -18px !important;
    animation-delay: 1s;
}

.glass-card-side {
    bottom: -18px !important;
    right: 10% !important;
    animation-delay: 2s;
}

@keyframes heroFloatCard {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Pulse dot inside glass card 2 */
.glass-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: pulseTrustDot 1.4s ease-in-out infinite;
}

/* ── Scroll Indicator ── */
/* .hero-scroll-indicator {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 5;
    opacity: 0.6;
}

.hero-scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid var(--iona-blue);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.hero-scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--iona-blue);
    border-radius: 2px;
    animation: heroScrollWheel 1.8s ease-in-out infinite;
} */

@keyframes heroScrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    /* .hero {
        padding-top: calc(var(--header-h-mobile, 70px) + 2rem) !important;
        padding-bottom: 4rem;
        min-height: auto;
    } */

    .hero-mini-stats {
        padding: 10px 14px;
    }

    .hero-mini-stat {
        padding: 0 12px;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-mini-stats {
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
        justify-content: center;
    }

    .hero-mini-stat-divider {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM HERO — Centered Light Theme
   ═══════════════════════════════════════════════════════════ */

/* ── Base ── */
.hero.hero-premium {
    /* background: linear-gradient(
    150deg,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(30, 58, 138, 0.9) 100%
) !important; */

    padding-top: calc(var(--header-h-desktop, 80px) + 5rem);
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.hero-premium .hero-bg-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.hero-orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99, 160, 255, 0.18) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    animation: premOrb1 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 155, 80, 0.10) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: premOrb2 15s ease-in-out infinite;
}

.hero-orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(80, 200, 200, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: premOrb1 18s ease-in-out infinite reverse;
}

@keyframes premOrb1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(25px, -35px) scale(1.06);
    }
}

@keyframes premOrb2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, 28px) scale(1.05);
    }
}

/* Subtle dot grid */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(37, 99, 235, 0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.8;
}

/* ── Trust Pill ── */
.hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
    padding: 7px 20px;
    font-size: 0.83rem;
    font-weight: 600;
    color: #1e3a5f;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 14px rgba(37, 99, 235, 0.09);
    margin-bottom: 1.6rem;
}

.hero-trust-pill i {
    color: #16a34a;
    font-size: 1rem;
}

.hero-trust-dot {
    width: 8px;
    height: 8px;
    background: #16a34a;
    border-radius: 50%;
    flex-shrink: 0;
    animation: heroPulseDot 1.6s ease-in-out infinite;
}

@keyframes heroPulseDot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(22, 163, 74, 0);
    }
}

/* ── Hero Headline ── */
.hero-headline-wrap {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.22;
    color: #ffffff;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.hero-hl-gradient {
    background: linear-gradient(135deg, #1E4FA0 0%, #4475B9 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-hl-and {
    color: #64748b;
    font-weight: 400;
}

.hero-hl-outline {
    -webkit-text-stroke: 2.5px #ea580c;
    color: transparent;
}

/* ── Subtitle ── */
.hero-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.85;
    max-width: 600px;
    margin-bottom: 0;
}

/* ── CTA Row ── */
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    margin-top: 2rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* background: linear-gradient(135deg, #1E4FA0 0%, #4475B9 60%, #0ea5e9 100%); */
    background: var(--iona-blue);
    color: var(--iona-white);
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 36px;
    border-radius: 14px;
    text-decoration: none;
    border: none;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.25s;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(37, 99, 235, 0.5);
    color: #fff;
    text-decoration: none;
}

.btn-hero-primary:hover::after {
    opacity: 1;
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0b1325;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 14px;
    text-decoration: none;
    border: 2px solid rgba(37, 99, 235, 0.2);
    transition: all 0.25s ease;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.07);
}

.btn-hero-outline:hover {
    border-color: var(--iona-blue);
    color: var(--iona-blue);
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

/* ── Feature Pills ── */
.hero-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1.5px solid rgba(37, 99, 235, 0.1);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1e3a5f;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: default;
}

.hero-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.22);
}

.hero-pill-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* ── Stats Bar ── */
.hero-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #fff;
    border: 1.5px solid rgba(37, 99, 235, 0.1);
    border-radius: 20px;
    padding: 18px 32px;
    box-shadow: 0 4px 30px rgba(37, 99, 235, 0.08);
    flex-wrap: wrap;
    row-gap: 14px;
}

.hero-stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 0 28px;
}

.hero-stats-item i {
    font-size: 1.2rem;
    color: #4475B9;
    margin-bottom: 4px;
}

.hero-stats-item strong {
    font-size: 1.6rem;
    font-weight: 900;
    color: #0b1325;
    line-height: 1;
}

.hero-stats-item span {
    font-size: 0.73rem;
    color: #64748b;
    font-weight: 500;
}

.hero-stats-sep {
    width: 1.5px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    flex-shrink: 0;
}

/* ── Bottom Wave ── */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='%23f8fafc' d='M0,128L80,149.3C160,171,320,213,480,208C640,203,800,149,960,138.7C1120,128,1280,161,1360,176L1440,192L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
    clip-path: none;
    z-index: 10;
}

/* @media(min-width: 1200px) {
    .hero.hero-premium .container {
        min-height: 75vh;
    }
} */

@media (max-width: 991.98px) {
    .hero.hero-premium {
        padding-top: calc(var(--header-h-mobile, 70px) + 3rem);
        padding-bottom: 4rem;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .hero-stats-item {
        padding: 0 16px;
    }
}

@media (max-width: 767.98px) {
    .hero-pills-row {
        gap: 8px;
    }

    .hero-pill {
        padding: 8px 14px;
        font-size: 0.82rem;
    }

    .hero-stats-bar {
        padding: 14px 16px;
    }

    .hero-stats-item {
        padding: 0 12px;
    }

    .hero-stats-sep {
        height: 36px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-wave {
        position: absolute;
        bottom: -1px;
        left: 0;
        right: 0;
        height: 120px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='%23f8fafc' d='M0,128L80,149.3C160,171,320,213,480,208C640,203,800,149,960,138.7C1120,128,1280,161,1360,176L1440,192L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
        clip-path: none;
        z-index: 10;
    }
}

@media (max-width: 575.98px) {
    .hero-stats-sep:nth-child(4) {
        display: none;
    }
}


/* -- Core Features Grid -- */
.core-features-grid {
    background: #ffffff;
}

.core-feature-card {
    background: #ffffff;
    border: 1px solid rgba(29, 78, 216, 0.08);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.core-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(29, 78, 216, 0.08);
    border-color: rgba(29, 78, 216, 0.15);
}

.cf-icon-wrap {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #4475B9;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.core-feature-card:hover .cf-icon-wrap {
    transform: scale(1.1);
    background: #4475B9;
    color: #ffffff;
}

.cf-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0b1325;
    margin-bottom: 1.25rem;
}

.cf-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4475B9;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    transition: color 0.2s ease;
}

.cf-link i {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.core-feature-card:hover .cf-link {
    color: #1E4FA0;
}

.core-feature-card:hover .cf-link i {
    transform: translateX(-4px);
}

/* -- Premium Banner -- */
/* -- Premium Banner � Hero-Style Overlay -- */
.premium-banner-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    /* background:
        linear-gradient(150deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 58, 138, 0.85) 100%),
        url('../assets/images/hero-bg.jpg') center/cover no-repeat; */
}

/* Subtle dot grid on top */
.premium-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background: linear-gradient(150deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 138, 0.9) 100%) !important;
    background-size: 26px 26px;
    pointer-events: none;
    z-index: 1;
}

/* Decorative large ring top-right */
.premium-banner-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 50px solid rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 1;
}

/* Hide old separate overlay layers � the bg handles it now */
.pb-bg-image,
.pb-overlay,
.pb-tech-grid,
.pb-orb,
.pb-glow {
    display: none !important;
}

.pb-content {
    position: relative;
    z-index: 5;
}

/* Label pill */
.pb-label {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #93c5fd;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 0.3rem 1rem;
    margin-bottom: 1.25rem;
}

/* Title */
.pb-title {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 800;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 0.85rem;
}

.pb-title span {
    color: #93c5fd;
}

/* Subtitle */
.pb-subtitle {
    font-size: 0.97rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65) !important;
    margin-bottom: 2rem;
    line-height: 1.75;
    background: none !important;
    -webkit-background-clip: unset !important;
    animation: none !important;
}

/* CTA Button */
.pb-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--iona-blue);
    color: var(--iona-white);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.5rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.pb-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
    color: var(--iona-white);
}

.pb-cta-btn i {
    font-size: 1.1rem;
}

/* Divider */
.pb-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.pb-divider-line {
    width: 1px;
    height: 160px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
}

/* Badges � side by side */
.pb-badges-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    height: 100%;
}

/* Badge circles � glass on dark */
.pb-badge {
    width: 155px;
    height: 155px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.25rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 3;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.pb-badge:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 0 6px rgba(68, 117, 185, 0.1);
}

/* Spinning dashed ring */
.pb-badge-ring {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1.5px dashed rgba(147, 197, 253, 0.4);
    border-top-color: #93c5fd;
    animation: spin-ring 14s linear infinite;
    pointer-events: none;
}

.pb-badge-alt .pb-badge-ring {
    animation-direction: reverse;
    inset: -14px;
    border-color: rgba(255, 255, 255, 0.15);
    border-top-color: rgba(255, 255, 255, 0.5);
    animation-duration: 10s;
}

.pb-badge-icon {
    font-size: 2rem;
    color: #93c5fd;
    margin-bottom: 0.55rem;
    line-height: 1;
}

.pb-badge-alt .pb-badge-icon {
    color: #ffffff;
}

.pb-badge-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.pb-badge-desc {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.55);
}

/* Float animations */
.pb-animate-float {
    animation: float-badge 5s ease-in-out infinite;
}

.pb-animate-float-alt {
    animation: float-badge 6s ease-in-out infinite 1.5s;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin-ring {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 991.98px) {
    .pb-badges-wrap {
        justify-content: center;
        margin-top: 2.5rem;
        gap: 2rem;
    }

    .pb-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .pb-badge {
        width: 130px;
        height: 130px;
    }

    .pb-badge-icon {
        font-size: 1.6rem;
    }

    .premium-banner-section {
        padding: 3rem 0;
    }
}

/* -- Advanced Animations & Creative Redesign -- */

/* 1. Core Features Grid Enhancements */
.core-feature-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(29, 78, 216, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.core-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1E4FA0 0%, #4475B9 100%);
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.core-feature-card:hover::before {
    transform: translateY(0);
}

.core-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(29, 78, 216, 0.2);
    border-color: transparent;
}

.core-feature-card .cf-icon-wrap i {
    animation: float-icon 3s ease-in-out infinite;
}

.core-feature-card:hover .cf-title,
.core-feature-card:hover .cf-link {
    color: #ffffff;
}

.core-feature-card:hover .cf-icon-wrap {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: scale(1.1);
}

.core-feature-card:hover .cf-link i {
    color: #ffffff;
}

@keyframes float-icon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* 2. Premium Banner Dynamic Elements */
.pb-tech-grid {
    position: absolute;
    inset: -50%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    transform: perspective(500px) rotateX(60deg) translateY(-100px);
    animation: grid-pan 15s linear infinite;
    opacity: 0.5;
    pointer-events: none;
}

@keyframes grid-pan {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(40px);
    }
}

.pb-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.pb-orb-1 {
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: #0ea5e9;
    animation: pulse-orb 8s ease-in-out infinite alternate;
}

.pb-orb-2 {
    bottom: -150px;
    left: 20%;
    width: 400px;
    height: 400px;
    background: #1E4FA0;
    animation: pulse-orb 10s ease-in-out infinite alternate-reverse;
}

@keyframes pulse-orb {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.2) translate(-20px, 20px);
        opacity: 0.7;
    }
}

.pb-subtitle {
    background: linear-gradient(to right, #0ea5e9, #38bdf8, #ffffff, #38bdf8, #0ea5e9);
    background-size: 200% auto;
    -webkit-background-clip: text;
    color: transparent;
    animation: shimmer-text 4s linear infinite;
}

@keyframes shimmer-text {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: 0% center;
    }
}

/* 3. Floating Badges */
.pb-badge {
    position: relative;
    z-index: 3;
}

.pb-animate-float {
    animation: float-badge 4s ease-in-out infinite;
}

.pb-animate-float-alt {
    animation: float-badge 5s ease-in-out infinite 1s;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.pb-badge-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px dashed rgba(14, 165, 233, 0.4);
    border-top-color: #0ea5e9;
    animation: spin-ring 12s linear infinite;
    pointer-events: none;
}

.pb-badge-alt .pb-badge-ring {
    animation-direction: reverse;
    border: 1px dashed rgba(29, 78, 216, 0.4);
    border-top-color: #4475B9;
}

@keyframes spin-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.pb-badge:hover .pb-badge-ring {
    border-color: rgba(255, 255, 255, 0.6);
    animation-duration: 4s;
}

/* -- Bento Box Grid Redesign -- */
.bento-section {
    background: #f8fafc;
}

.bento-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 100%;
    display: flex;
    padding: 2.5rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.bento-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    transition: transform 0.8s ease, opacity 0.4s ease;
}

.bento-card:hover .bento-bg {
    transform: scale(1.08);
}

.bento-content {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    gap: 1.5rem;
}

.bento-wide {
    flex-direction: row;
    align-items: center;
    min-height: 280px;
}

.bento-square {
    flex-direction: column;
    align-items: flex-start;
    min-height: 280px;
}

.bento-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.bento-card:hover .bento-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.bento-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.bento-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.bento-desc-small {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.bento-link {
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease, opacity 0.3s ease;
}

.bento-link i {
    transition: transform 0.3s ease;
}

.bento-card:hover .bento-link {
    gap: 0.75rem;
}

.bento-card:hover .bento-link i {
    transform: translateX(-4px);
}

/* Themes */
.bento-dark {
    background: #0f172a;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.1);
}

.bento-dark .bento-icon-wrapper {
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
}

.bento-dark .bento-link {
    color: #38bdf8;
}

.bento-dark .bento-bg-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.bento-primary {
    background: #4475B9;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.bento-primary .bento-bg-gradient {
    background: radial-gradient(circle at top right, #4475B9, #1E4FA0);
}

.bento-primary .bento-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.bento-primary .bento-link {
    color: #ffffff;
    opacity: 0.9;
}

.bento-light {
    background: #ffffff;
    color: #0f172a;
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.bento-light .bento-icon-wrapper {
    background: rgba(15, 23, 42, 0.05);
    color: #0f172a;
}

.bento-light .bento-link {
    color: #4475B9;
}

.bento-accent {
    background: #f0f9ff;
    color: #0f172a;
    border-color: rgba(14, 165, 233, 0.1);
}

.bento-accent .bento-bg-waves {
    background: radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.15) 0%, transparent 60%);
}

.bento-accent .bento-icon-wrapper {
    background: #0ea5e9;
    color: #ffffff;
}

.bento-accent .bento-link {
    color: #0ea5e9;
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .bento-wide {
        flex-direction: column;
        align-items: flex-start;
    }

    .bento-card {
        padding: 2rem;
    }
}

/* -- Modern Core Features Grid -- */
.core-features-grid {
    background: #ffffff;
}

.cf-modern-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.cf-modern-card:hover {
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.15);
}

.cf-icon-circle {
    width: 64px;
    height: 64px;
    background: #f0f7ff;
    color: #4475B9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.cf-modern-card:hover .cf-icon-circle {
    background: #4475B9;
    color: #ffffff;
    transform: scale(1.1);
}

.cf-modern-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b1325;
    margin-bottom: 1rem;
}

.cf-modern-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4475B9;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    transition: gap 0.3s ease, color 0.3s ease;
}

.cf-modern-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.cf-modern-card:hover .cf-modern-link {
    color: #1E4FA0;
    gap: 0.75rem;
}

.cf-modern-card:hover .cf-modern-link i {
    transform: translateX(-3px);
}


/* -- Staggered Glassmorphic Features -- */
.staggered-features-section {
    position: relative;
    padding: 6rem 0;
    background: #f8fafc;
    overflow: hidden;
}

.sf-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.sf-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.sf-orb-left {
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, 0.15);
    top: -100px;
    left: -100px;
    animation: drift 10s infinite alternate;
}

.sf-orb-right {
    width: 300px;
    height: 300px;
    background: rgba(14, 165, 233, 0.15);
    bottom: -50px;
    right: -50px;
    animation: drift 12s infinite alternate-reverse;
}

@keyframes drift {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(50px, 50px);
    }
}

.sf-card {
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sf-stagger-down {
    transform: translateY(40px);
}

.sf-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.sf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}

.sf-card.sf-stagger-down:hover {
    transform: translateY(35px);
}

.sf-card:hover::before {
    opacity: 1;
}

.sf-icon-wrap {
    width: 70px;
    height: 70px;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #4475B9;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.sf-card:hover .sf-icon-wrap {
    background: #4475B9;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.sf-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0b1325;
    margin-bottom: 0.75rem;
}

.sf-desc {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sf-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: #4475B9;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    transition: gap 0.3s ease, color 0.3s ease;
}

.sf-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.sf-card:hover .sf-link {
    color: #1E4FA0;
    gap: 0.75rem;
}

.sf-card:hover .sf-link i {
    transform: translateX(-4px);
}

@media (max-width: 991.98px) {
    .sf-stagger-down {
        transform: translateY(0);
    }

    .sf-card.sf-stagger-down:hover {
        transform: translateY(-5px);
    }
}


/* -- 2x2 Professional Cards -- */
.premium-features-section {
    position: relative;
    z-index: 5;
}

.pfc-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    height: 100%;
}

.pfc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.1), 0 10px 10px -5px rgba(37, 99, 235, 0.04);
    border-color: #cbd5e1;
}

.pfc-icon {
    width: 72px;
    height: 72px;
    background: #f1f5f9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #4475B9;
    transition: all 0.3s ease;
}

.pfc-card:hover .pfc-icon {
    background: #4475B9;
    color: #ffffff;
    transform: scale(1.05) rotate(-5deg);
}

.pfc-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.8;
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pfc-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pfc-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.pfc-desc {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pfc-link {
    font-size: 1rem;
    font-weight: 700;
    color: #4475B9;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    transition: gap 0.3s ease, color 0.3s ease;
}

.pfc-card:hover .pfc-link {
    color: #1E4FA0;
    gap: 0.75rem;
}

.pfc-card:hover .pfc-link i {
    transform: translateX(-4px);
}

@media (max-width: 767.98px) {
    .pfc-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
    }
}




/* -- Products Carousel Section -- */
.products-section {
    background: #ffffff;
}

/* Wrapper for Side Arrows */
.prod-carousel-wrap {
    position: relative;
    padding: 0 50px;
    /* Space for arrows */
}

/* Carousel Inner Padding */
.prod-carousel .owl-stage-outer {
    padding: 1rem 0 2rem;
    /* Give shadow space to breathe */
    overflow: hidden !important;
}

.prod-carousel .owl-item {
    padding: 0 10px;
}

/* Professional Card Design */
.prod-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #ebf2fc;
    box-shadow: 0 6px 20px rgba(68, 117, 185, 0.04);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.prod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(68, 117, 185, 0.1);
    border-color: #d1ddf5;
}

/* Image Wrap */
.prod-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    background: #f8fafc;
    /* Very light modern gray */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow: hidden;
}

.prod-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.prod-card:hover .prod-img-wrap img {
    transform: scale(1.1);
}

/* Hover Overlay */
/* .prod-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(68, 117, 185, 0.95), rgba(68, 117, 185, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
} */

.prod-card:hover .prod-overlay {
    opacity: 1;
}

.prod-overlay-btn {
    color: #ffffff;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 6px;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.prod-card:hover .prod-overlay-btn {
    transform: translateY(0);
}

.prod-overlay-btn:hover {
    background: #ffffff;
    color: #4475b9;
}

/* Card Body */
.prod-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.prod-cat {
    font-size: 0.75rem;
    font-weight: 600;
    /* color: #5e6d82; */
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4475B9;
    /* background: #EBF2FC; */
}

.prod-cat::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4475b9;
}

.prod-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0b1325;
    margin: 0;
    line-height: 1.4;
}

/* Side Arrows */
.prod-arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #d1ddf5;
    color: #4475b9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(68, 117, 185, 0.1);
    transition: all 0.3s ease;
}

.prod-arr-prev {
    right: 0;
}

.prod-arr-next {
    left: 0;
}

.prod-arr:hover {
    background: #4475b9;
    color: #ffffff;
    border-color: #4475b9;
    box-shadow: 0 6px 18px rgba(68, 117, 185, 0.25);
    transform: translateY(-50%) scale(1.05);
}

/* Dots */
.prod-dots-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.prod-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1ddf5;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.prod-dot.active {
    width: 30px;
    border-radius: 10px;
    background: #4475b9;
}

/* -- 4-Column Staggered Cards � Clean No-Gradient -- */

/* Keyframes */
@keyframes slide-up-fade {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes icon-pop-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    70% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes dot-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Section */
.stag4-section {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    padding-bottom: 8rem;
}

/* Dot-grid background */
.stag4-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
    z-index: 0;
}

.stag4-section .container {
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .stag4-down {
        margin-top: 60px;
    }
}

/* Card */
.stag4-card {
    background: #ffffff;
    border: 1.5px solid #e8edf5;
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    position: relative;
    overflow: hidden;
    height: 100%;

    /* Slide-up entry animation */
    opacity: 0;
    animation: slide-up-fade 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;

    transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* Stagger delays */
.stag4-card:nth-of-type(1) {
    animation-delay: 0.1s;
}

.stag4-card:nth-of-type(2) {
    animation-delay: 0.25s;
}

.stag4-card:nth-of-type(3) {
    animation-delay: 0.4s;
}

.stag4-card:nth-of-type(4) {
    animation-delay: 0.55s;
}

/* Blue left-border accent � slides in on hover */
/* .stag4-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: #4475B9;
    border-radius: 20px 0 0 20px;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.stag4-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
} */

/* Hover state */
.stag4-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.09), 0 4px 12px rgba(0, 0, 0, 0.04);
    border-color: #d0dff2;
}

/* Number badge */
.stag4-num {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #cbd5e1;
}

/* Icon wrapper */
.stag4-icon {
    width: 68px;
    height: 68px;
    background: #EBF2FC;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4475B9;
    margin-bottom: 1.75rem;
    position: relative;
    flex-shrink: 0;

    /* Pop-in animation */
    animation: icon-pop-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: inherit;

    transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

/* Continuous pulsing ring on icon (always animated) */
.stag4-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 2px solid #4475B9;
    opacity: 0;
    animation: pulse-ring 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

/* Offset each card's ring pulse timing */
.col-lg-3:nth-child(1) .stag4-icon::after {
    animation-delay: 0s;
}

.col-lg-3:nth-child(2) .stag4-icon::after {
    animation-delay: 0.6s;
}

.col-lg-3:nth-child(3) .stag4-icon::after {
    animation-delay: 1.2s;
}

.col-lg-3:nth-child(4) .stag4-icon::after {
    animation-delay: 1.8s;
}

/* Icon hover */
.stag4-card:hover .stag4-icon {
    background: #4475B9;
    color: #ffffff;
    transform: scale(1.1);
}

.stag4-card:hover .stag4-icon::after {
    animation: none;
    border-color: #4475B9;
    opacity: 0.2;
}

/* SVG icon */
.stag4-icon svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.35s ease;
}

.stag4-card:hover .stag4-icon svg {
    animation: dot-bounce 1s ease-in-out infinite;
}

/* Title */
.stag4-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.stag4-card:hover .stag4-title {
    color: #4475B9;
}

/* Description */
.stag4-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 2rem;
    flex: 1;
}

/* Link */
.stag4-link {
    font-size: 0.92rem;
    font-weight: 700;
    color: #4475B9;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    border: 1.5px solid #EBF2FC;
    background: transparent;
    transition: all 0.3s ease;
}

.stag4-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.stag4-card:hover .stag4-link {
    background: #4475B9;
    color: #ffffff;
    border-color: #4475B9;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.stag4-card:hover .stag4-link i {
    transform: translateX(-4px);
}

@media (max-width: 991.98px) {
    .stag4-section {
        padding-bottom: 4rem;
    }
}


/* -- Products Carousel Section -- */
.products-section {
    background: #ffffff;
    overflow: hidden;
}

.products-section .container {
    overflow: visible;
}

/* Card */
.prod-card {
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e8edf5;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.prod-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(68, 117, 185, 0.12);
    border-color: rgba(68, 117, 185, 0.2);
}

/* Image wrap */
.prod-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f1f5f9;
}

.prod-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.25rem;
    transition: transform 0.5s ease;
}

.prod-card:hover .prod-img-wrap img {
    transform: scale(1.07);
}

/* Hover overlay */
.prod-overlay {
    position: absolute;
    inset: 0;
    background: rgba(68, 117, 185, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.prod-card:hover .prod-overlay {
    opacity: 1;
}

.prod-overlay-btn {
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    padding: 0.55rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(10px);
    transition: transform 0.35s ease, border-color 0.3s ease;
}

.prod-card:hover .prod-overlay-btn {
    transform: translateY(0);
    border-color: #fff;
}

/* Card body */
.prod-body {
    padding: 1.25rem 1.25rem 1.5rem;
    border-top: 1px solid #f1f5f9;
}

/* .prod-cat {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4475B9;
    background: #EBF2FC;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 0.6rem;
} */

.prod-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0B1325;
    margin: 0;
    line-height: 1.4;
}

/* Item padding for visible shadow */
.prod-item {
    padding: 0.5rem 0.75rem 1.5rem;
}

/* Owl overrides */
.prod-carousel .owl-item {
    padding: 0 8px;
}

.prod-carousel .owl-stage-outer {
    overflow: hidden !important;
}

/* Custom navigation */
.prod-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.prod-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid #d1ddf5;
    background: #fff;
    color: #4475B9;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(68, 117, 185, 0.08);
}

.prod-nav-btn:hover {
    background: #4475B9;
    color: #fff;
    border-color: #4475B9;
    box-shadow: 0 6px 18px rgba(68, 117, 185, 0.25);
    transform: scale(1.08);
}

/* Dot indicators */
.prod-dots-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prod-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1ddf5;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.prod-dot.active {
    width: 24px;
    border-radius: 50px;
    background: #4475B9;
}

/* -- Solutions Bento Grid -- */
.iona-solutions {
    background-color: #f8fafc;
}

.sol-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(240px, auto);
    gap: 24px;
}

.sol-bento-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
}

.sol-bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(68, 117, 185, 0.08);
    border-color: #d1ddf5;
}

.sol-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: #ebf2fc;
    color: #4475b9;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.sol-bento-card:hover .sol-card-icon {
    background: #4475b9;
    color: #ffffff;
    transform: scale(1.1);
}

.sol-card-content {
    position: relative;
    z-index: 2;
}

.sol-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0b1325;
    margin-bottom: 0.75rem;
}

.sol-desc {
    font-size: 0.95rem;
    color: #5e6d82;
    line-height: 1.6;
    margin-bottom: 0;
}

.bento-large {
    grid-column: span 2;
}

.bento-large:nth-child(2) {
    grid-column: span 1;
}

.sol-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(68, 117, 185, 0.1);
    color: #4475b9;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.sol-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    display: flex;
    gap: 1.5rem;
}

.sol-features li {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0b1325;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sol-features li i {
    color: #4475b9;
    font-size: 1.1rem;
}

.sol-card-bg {
    position: absolute;
    bottom: -20px;
    left: -20px;
    font-size: 12rem;
    color: rgba(68, 117, 185, 0.03);
    z-index: 0;
    pointer-events: none;
    transition: all 0.5s ease;
    transform: rotate(-15deg);
}

.sol-bento-card:hover .sol-card-bg {
    color: rgba(68, 117, 185, 0.06);
    transform: rotate(0deg) scale(1.1);
}

@media (max-width: 991px) {
    .sol-bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large,
    .bento-large:nth-child(2) {
        grid-column: span 1;
    }

    .sol-features {
        flex-direction: column;
        gap: 0.75rem;
    }
}



/* -- Horizontal Tabs Design -- */
.h-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    background: #ffffff;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(68, 117, 185, 0.05);
    border: 1px solid #ebf2fc;
}

.h-tabs-nav .nav-item {
    margin: 0;
}

.h-tabs-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    background: transparent;
    color: #5e6d82;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
}

.h-tabs-nav .nav-link i {
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.h-tabs-nav .nav-link:hover {
    color: #4475b9;
    background: #f8fafc;
}

.h-tabs-nav .nav-link.active {
    background: #4475b9;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(68, 117, 185, 0.2);
}

.h-tabs-nav .nav-link.active i {
    color: #ffffff;
}

/* Tabs Content Card */
.htab-card {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(68, 117, 185, 0.08);
    border: 1px solid rgba(68, 117, 185, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.htab-card .row {
    min-height: 420px;
}

.htab-text-col {
    padding: 5rem 5rem;
    position: relative;
    z-index: 2;
}

.htab-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    color: #4475b9;
    background: rgba(68, 117, 185, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.htab-text-col h3 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #0B1325;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.htab-text-col p {
    font-size: 1.1rem;
    color: #5e6d82;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.htab-features {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.htab-features li {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0b1325;
    background: #f8fafc;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid #ebf2fc;
    transition: all 0.3s ease;
    width: auto;
    /* align-self: flex-end; */
}

.htab-features li:hover {
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(68, 117, 185, 0.08);
    border-color: #d1ddf5;
    transform: translateY(-2px);
}

.htab-features li i {
    color: #4475b9;
    font-size: 1.2rem;
}

.btn-htab {
    display: inline-block;
    background: #4475B9;
    color: #ffffff !important;
    padding: 0.9rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(68, 117, 185, 0.25);
    border: none;
    text-decoration: none;
}

.btn-htab:hover {
    background: #1E4FA0;
    box-shadow: 0 12px 35px rgba(68, 117, 185, 0.35);
    transform: translateY(-2px);
    color: var(--iona-navy) !important;
}

/* Visual Panel - On-Brand Light Design */
.htab-visual-col {
    background: #EBF2FC;
    position: relative;
    height: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    border-right: 1px solid rgba(68, 117, 185, 0.08);
}

/* Subtle diagonal stripe overlay */
.htab-visual-col::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(68, 117, 185, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(68, 117, 185, 0.07) 0%, transparent 50%);
    z-index: 0;
}

/* Dot grid pattern */
.htab-visual-col::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(68, 117, 185, 0.2) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.5;
    z-index: 0;
}

.htab-visual-dark {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    z-index: 2;
}

/* Concentric rings - on-brand blue */
.htab-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.htab-ring {
    position: absolute;
    border-radius: 50%;
}

.htab-ring-1 {
    width: 150px;
    height: 150px;
    border: 2px solid rgba(68, 117, 185, 0.35);
    animation: pulse-ring 3s ease-in-out infinite;
}

.htab-ring-2 {
    width: 240px;
    height: 240px;
    border: 1.5px solid rgba(68, 117, 185, 0.18);
    animation: pulse-ring 3s ease-in-out 0.8s infinite;
}

.htab-ring-3 {
    width: 340px;
    height: 340px;
    border: 1px solid rgba(68, 117, 185, 0.09);
    animation: pulse-ring 3s ease-in-out 1.6s infinite;
}

@keyframes pulse-ring {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.04);
        opacity: 0.6;
    }
}

/* Center icon card - white glassmorphism on light bg */
.htab-icon-glow {
    width: 130px;
    height: 130px;
    background: #ffffff;
    border-radius: 32px;
    border: 1px solid rgba(68, 117, 185, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    box-shadow:
        0 20px 50px rgba(68, 117, 185, 0.12),
        0 4px 15px rgba(68, 117, 185, 0.08);
    transform: rotate(-6deg);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.htab-card:hover .htab-icon-glow {
    transform: rotate(0deg) scale(1.06);
}

.htab-icon-glow i {
    font-size: 4rem;
    color: #4475B9;
}

/* Floating stat pills - white on light blue */
.htab-stat-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #ffffff;
    border: 1px solid rgba(68, 117, 185, 0.15);
    border-radius: 50px;
    padding: 0.7rem 1.4rem;
    z-index: 10;
    color: #0B1325;
    box-shadow: 0 10px 30px rgba(68, 117, 185, 0.1);
}

.htab-stat-card i {
    color: #4475B9;
    font-size: 1.1rem;
}

.htab-stat-num {
    font-size: 1.2rem;
    font-weight: 900;
    color: #4475B9;
    line-height: 1;
}

.htab-stat-lbl {
    font-size: 0.78rem;
    font-weight: 700;
    color: #5E6D82;
    display: block;
    white-space: nowrap;
}

.htab-stat-card--a {
    top: 18%;
    right: 6%;
    animation: float-card 4s ease-in-out infinite alternate;
}

.htab-stat-card--b {
    bottom: 18%;
    left: 6%;
    animation: float-card 4s ease-in-out 2s infinite alternate;
}

@keyframes float-card {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-8px);
    }
}

/* Kill old conflicting rules */
.htab-visual-inner {
    display: none !important;
}

.htab-big-icon {
    display: none !important;
}

.htab-float-badge {
    display: none !important;
}

@media (max-width: 991px) {
    .htab-visual-col {
        min-height: 360px;
        border-right: none;
        border-top: 1px solid rgba(68, 117, 185, 0.1);
    }

    .htab-stat-card--a {
        top: 8%;
        right: 5%;
    }

    .htab-stat-card--b {
        bottom: 8%;
        left: 5%;
    }

    .htab-ring-2,
    .htab-ring-3 {
        display: none;
    }
}



/* -------------------------------------------
   CONTACT SECTION (Professional & Modern)
------------------------------------------- */
.contact-section {
    background: #F8FAFE;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(68, 117, 185, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* -- Left Side: Contact Info -- */
.contact-info-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-intro {
    margin-bottom: 2rem;
}

.contact-info-intro h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0B1325;
    margin-bottom: 0.8rem;
}

.contact-info-intro p {
    color: #5E6D82;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(68, 117, 185, 0.08);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-item:not(.ci-no-link):hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(68, 117, 185, 0.06);
    border-color: rgba(68, 117, 185, 0.15);
}

.ci-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.ci-blue {
    background: #EBF2FC;
    color: #4475B9;
}

.contact-info-item:hover .ci-blue {
    background: #4475B9;
    color: #ffffff;
}

.ci-green {
    background: #DCFCE7;
    color: #22C55E;
}

.contact-info-item:hover .ci-green {
    background: #22C55E;
    color: #ffffff;
}

.ci-amber {
    background: #FFF3E0;
    color: #F59E0B;
}

.contact-info-item:hover .ci-amber {
    background: #F59E0B;
    color: #ffffff;
}

.ci-purple {
    background: #F3E8FF;
    color: #9333EA;
}

.ci-body {
    display: flex;
    flex-direction: column;
}

.ci-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #8C9BAB;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.ci-value {
    font-size: 1rem;
    font-weight: 700;
    color: #0B1325;
    transition: color 0.3s ease;
}

.contact-info-item:not(.ci-no-link):hover .ci-value {
    color: #4475B9;
}

.ci-arrow {
    margin-right: auto;
    color: #4475B9;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.contact-info-item:hover .ci-arrow {
    opacity: 1;
    transform: translateX(0);
}

.contact-response-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: #EBF2FC;
    border-radius: 16px;
    margin-top: auto;
}

.crb-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.contact-response-badge span {
    font-size: 0.9rem;
    color: #0B1325;
}

.contact-response-badge strong {
    color: #4475B9;
}

/* -- Right Side: Form Card -- */
.contact-form-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 3.5rem 3rem;
    box-shadow: 0 25px 70px rgba(68, 117, 185, 0.08);
    border: 1px solid rgba(68, 117, 185, 0.1);
}

.contact-form-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.cfh-icon {
    width: 50px;
    height: 50px;
    aspect-ratio: 1/1;
    /* background: linear-gradient(135deg, #4475B9, #1E4FA0); */
    background: var(--iona-blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    box-shadow: 0 10px 20px rgba(68, 117, 185, 0.2);
}

.contact-form-header h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0B1325;
    margin-bottom: 0.2rem;
}

.contact-form-header p {
    font-size: 0.95rem;
    color: #5E6D82;
    margin: 0;
}

/* -- Floating Label Inputs -- */
.cf-float-field {
    position: relative;
    background: #F8FAFE;
    border: 1.5px solid #EBF2FC;
    border-radius: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.cf-float-field:focus-within {
    border-color: #4475B9;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(68, 117, 185, 0.08);
}

.cf-field-icon {
    position: absolute;
    right: 1.2rem;
    color: #9DAEC3;
    font-size: 1.1rem;
    pointer-events: none;
    transition: color 0.3s ease;
    z-index: 2;
}

.cf-icon-top {
    top: 1.2rem;
}

.cf-float-field:focus-within .cf-field-icon {
    color: #4475B9;
}

.cf-float-input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 1.6rem 3rem 0.6rem 1.2rem;
    /* space for icon on right */
    font-size: 1rem;
    color: #0B1325;
    outline: none;
    font-family: inherit;
}

.cf-float-field--textarea .cf-float-input {
    padding-top: 1.8rem;
    resize: none;
}

.cf-float-label {
    position: absolute;
    right: 3rem;
    /* match input padding right */
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: #8C9BAB;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cf-float-field--textarea .cf-float-label {
    top: 1.2rem;
    transform: none;
}

/* Float the label on focus or when not empty */
.cf-float-input:focus~.cf-float-label,
.cf-float-input:not(:placeholder-shown)~.cf-float-label,
.cf-label-active {
    top: 0.6rem;
    transform: none;
    font-size: 0.75rem;
    font-weight: 700;
    color: #4475B9;
}

.cf-req {
    color: #EF4444;
}

/* -- Custom Select -- */
.cf-custom-select {
    position: relative;
    background: #F8FAFE;
    border: 1.5px solid #EBF2FC;
    border-radius: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.cf-custom-select.is-open {
    border-color: #4475B9;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(68, 117, 185, 0.08);
}

.cf-custom-select.is-open .cf-field-icon {
    color: #4475B9;
}

.cf-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 1.2rem 0.6rem 3rem;
    /* reversed padding for RTL, icon is on right */
    min-height: 56px;
    outline: none;
}

.cf-select-value {
    font-size: 1rem;
    color: #0B1325;
    opacity: 0;
    /* hidden initially to show floating label properly */
    transition: opacity 0.2s ease;
}

.cf-custom-select.has-value .cf-select-value {
    opacity: 1;
}

.cf-select-arrow {
    color: #9DAEC3;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    position: absolute;
    left: 1.2rem;
    /* arrow on the left in RTL */
}

.cf-custom-select.is-open .cf-select-arrow {
    transform: rotate(180deg);
    color: #4475B9;
}

.cf-select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    background: #ffffff;
    border: 1px solid rgba(68, 117, 185, 0.15);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(68, 117, 185, 0.1);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-height: 250px;
    overflow-y: auto;
    padding: 0.5rem;
}

.cf-custom-select.is-open .cf-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Custom scrollbar for dropdown */
.cf-select-dropdown::-webkit-scrollbar {
    width: 6px;
}

.cf-select-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.cf-select-dropdown::-webkit-scrollbar-thumb {
    background: #D1DDF5;
    border-radius: 10px;
}

.cf-select-option {
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #0B1325;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cf-select-option i {
    color: #9DAEC3;
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.cf-select-option:hover,
.cf-select-option.is-selected {
    background: #F8FAFE;
    color: #4475B9;
    font-weight: 700;
}

.cf-select-option:hover i,
.cf-select-option.is-selected i {
    color: #4475B9;
}

/* Make sure the label is floated by default for the custom select */
.cf-custom-select .cf-float-label {
    top: 50%;
    transform: translateY(-50%);
}

.cf-custom-select.is-open .cf-float-label,
.cf-custom-select.has-value .cf-float-label {
    top: 0.6rem;
    transform: none;
    font-size: 0.75rem;
    font-weight: 700;
    color: #4475B9;
}

/* -- Submit Button -- */
.btn-contact-submit {
    width: 100%;
    background: #4475B9;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 0.7rem 2rem;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(68, 117, 185, 0.25);
    margin-top: 1rem;
    text-align: center;
}

.btn-contact-submit:hover {
    /* background: #1E4FA0; */
    box-shadow: 0 12px 35px rgba(68, 117, 185, 0.35);
    transform: translateY(-2px);
}

.btn-contact-submit.success {
    background: #22C55E;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

@media (max-width: 991px) {
    .contact-form-card {
        padding: 2.5rem 1.5rem;
    }

    .contact-info-list {
        gap: 0.8rem;
    }
}



/* -- Left Side: Unified Contact Card (ON BRAND) -- */
.ci-unified-card {
    background: #ffffff;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
    margin-top: 1rem;
    box-shadow: 0 20px 60px rgba(68, 117, 185, 0.08);
    border: 1px solid rgba(68, 117, 185, 0.1);
}

.ci-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.5rem 2rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.ci-row:not(.ci-no-hover):hover {
    background: #f8fafe;
}

.ci-text {
    display: flex;
    flex-direction: column;
    text-align: right;
    margin-left: 1.2rem;
    /* space between text and icon */
}

.ci-title {
    font-size: 0.85rem;
    color: #8c9bab;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.ci-value {
    font-size: 1.1rem;
    font-weight: 700;
}

.text-blue {
    color: #4475B9 !important;
}

.text-success {
    color: #22C55E !important;
}

.text-light-body {
    color: #0B1325 !important;
}

.ci-icon-box {
    width: 50px;
    height: 50px;
    aspect-ratio: 1 / 1;
    background: #ebf2fc;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.ci-row:hover .ci-icon-box {
    background: #4475B9;

}

.ci-row:hover .ci-icon-box i {
    /* color: var(--iona-navy) !important; */
    color: var(--iona-white) !important;
}

.text-danger {
    color: #4475B9 !important;
}

.text-secondary {
    color: #4475B9 !important;
}

.ci-divider {
    height: 1px;
    background: #ebf2fc;
    margin: 0 2rem;
}

/* Fix Custom Select Floating Label Issue */
.cf-custom-select .cf-float-label {
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    padding: 0;
    z-index: 10;
}

.cf-custom-select.is-open .cf-float-label,
.cf-custom-select.has-value .cf-float-label {
    top: 0;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #4475B9;
    right: 2rem;
}

/* Form fixes */
.cf-float-label {
    background: transparent;
    padding: 0;
    z-index: 10;
    right: 3rem;
}

.cf-float-input:focus~.cf-float-label,
.cf-float-input:not(:placeholder-shown)~.cf-float-label {
    top: 0;
    transform: translateY(-50%);
    right: 2rem;
    background: #ffffff;
    padding: 0 0.5rem;
}

.cf-select-value {
    font-size: 0.95rem;
    color: #0B1325;
    opacity: 0;
    transition: opacity 0.2s ease;
    text-align: right;
    width: 100%;
}

.cf-custom-select.has-value .cf-select-value {
    opacity: 1;
}

.cf-select-trigger {
    padding: 1.6rem 2rem 0.6rem 3rem;
}

/* Fix Custom Select Dropdown Padding & Layout */
.cf-select-dropdown {
    padding: 0.8rem !important;
}

.cf-select-option {
    padding: 0.8rem 1.2rem !important;
    justify-content: flex-start !important;
}

.cf-select-option i {
    margin-left: 0.8rem;
    margin-right: 0;
}


/* -- Dropdown Specific Fixes -- */
.cf-custom-select .cf-field-icon {
    /* right: auto; */
    top: 50%;
    transform: translateY(-50%);
}



/* Fix floating label overlap with icon */
.cf-custom-select.is-open .cf-float-label,
.cf-custom-select.has-value .cf-float-label {
    right: 2.8rem;
    /* Move label slightly left to avoid border-radius */
}

.cf-select-trigger {
    padding: 1.6rem 1.2rem 0.6rem 3rem;
    /* padding for left icon */
}

.cf-select-value {
    text-align: right;
    padding-right: 2rem;
    /* Space for arrow */
}

/* Fix dropdown options layout (Icon on right, text on left, overall right aligned) */
.cf-select-option {
    justify-content: flex-start !important;
    /* flex-direction: row-reverse !important; 
    text-align: right; */
    padding: 0.8rem 1.2rem !important;
}

.cf-select-option i {
    margin-left: 0.8rem;
    margin-right: 0;
    width: 20px;
    text-align: center;
}


/* -------------------------------------------
   SOLUTIONS SECTION � Fresh Start
------------------------------------------- */

.solutions-section {
    background: #F3F7FD;
    /* font-family: 'Tajawal', sans-serif; */
}

/* -- Tab Navigation -- */
.sol-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid #E1EAF6;
    padding-bottom: 0;
}

.sol-tab-btn {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    color: #7A8FA6;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.9rem 1.5rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.sol-tab-btn:hover {
    color: #4475B9;
}

.sol-tab-btn.active {
    color: #4475B9;
    border-bottom-color: #4475B9;
}

/* -- Tab Content -- */
.sol-tab-content {
    display: none;
}

.sol-tab-content.active {
    display: block;
}

/* -- Product Layout -- */
.sol-product-wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

/* -- Image side -- */
.sol-image-side {
    background: linear-gradient(145deg, #ffffff 0%, #EBF2FC 100%);
    border-radius: 28px;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.sol-image-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(68, 117, 185, 0.04) 1px, transparent 1px);
    background-size: 22px 22px;
}

.sol-image-side img {
    /* width: 100%; */
    max-width: 100%;
    max-height: 340px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(11, 19, 37, 0.12));
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sol-image-side:hover img {
    transform: translateY(-10px) scale(1.04);
}

/* Floating badges ON the image */
.sol-badge {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border-radius: 12px;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(68, 117, 185, 0.12);
    border: 1px solid rgba(68, 117, 185, 0.08);
    white-space: nowrap;
}

.sol-badge-top {
    top: 1.5rem;
    left: 1.5rem;
    color: #4475B9;
}

.sol-badge-bottom {
    bottom: 1.5rem;
    right: 1.5rem;
    color: #16a34a;
}

.sol-badge i {
    font-size: 0.9rem;
}

.sol-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0B1325;
    line-height: 1.4;
    margin-bottom: 1.2rem;
}

.sol-desc {
    color: #5E6D82;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Feature list (checkmarks) */
.sol-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sol-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    font-size: 0.95rem;
    font-weight: 500;
    /* flex-direction: row-reverse; */
}

.sol-features li i {
    color: #4475B9;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Specs row */
.sol-specs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 70%;
    margin-bottom: 2rem;
    /* justify-content: flex-end; */
}

.sol-spec-chip {
    background: #ffffff;
    border: 1px solid #E1EAF6;
    border-radius: 10px;
    padding: 0.7rem 1.1rem;
    text-align: center;
}

.sol-spec-chip .val {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: #4475B9;
}

.sol-spec-chip .lbl {
    display: block;
    font-size: 0.75rem;
    color: #7A8FA6;
    margin-top: 0.15rem;
}

/* Buttons */
.sol-cta-row {
    display: flex;
    gap: 1rem;
    /* justify-content: flex-end; */
}

.btn-sol-primary {
    background: #4475B9;
    color: #ffffff;
    padding: 0.85rem 2.2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    transition: background 0.25s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-sol-primary:hover {
    /* background: #1E4FA0; */
    color: #fff;
    transform: translateY(-2px);
}

.btn-sol-secondary {
    background: #ffffff;
    color: #4475B9;
    padding: 0.85rem 2.2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    border: 1.5px solid #4475B9;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-sol-secondary:hover {
    background: #EBF2FC;
    color: #1E4FA0;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .sol-product-wrap {
        grid-template-columns: 1fr;
    }

    .sol-image-side {
        order: -1;
        min-height: 300px;
    }

    .sol-text-side {
        text-align: center;
    }

    /* 
    .sol-cta-row,
    .sol-specs,
    .sol-features li {
        justify-content: center;
    } */
}


/* --- Solutions Section � Compact & Enhanced ---- */

/* Tighter section padding */
.solutions-section.section-padding {
    padding: 60px 0 !important;
}

.solutions-section .sol-tabs-nav {
    margin-bottom: 2rem;
}

/* -- Compact Product Wrap -- */
.sol-product-wrap {
    gap: 2.5rem !important;
    align-items: center !important;
}

/* -- Compact Image Side -- */
.sol-image-side {
    /* min-height: 300px !important;
    padding: 2rem 1.5rem !important; */
    border-radius: 22px !important;
    /* Animated subtle glow border */
    border: 1.5px solid rgba(68, 117, 185, 0.12) !important;
    box-shadow: 0 8px 40px rgba(68, 117, 185, 0.07) !important;
    overflow: hidden !important;
}

/* Animated gradient shimmer in background */
.sol-image-side::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.5) 50%, transparent 60%);
    transform: skewX(-15deg);
    animation: shimmer-sol 5s infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shimmer-sol {
    0% {
        left: -60%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    60% {
        left: 130%;
        opacity: 0;
    }

    100% {
        left: 130%;
        opacity: 0;
    }
}

/* Compact image */
.sol-image-side img {
    max-height: 240px !important;
    filter: drop-shadow(0 12px 28px rgba(11, 19, 37, 0.1)) !important;
}

.sol-product-wrap .section-label,
.sol-product-wrap .section-label::before {
    border: none;
    background: none;
}

/* -- Compact Text Side -- */
.sol-eyebrow {
    font-size: 0.78rem !important;
    padding: 0.25rem 0.7rem !important;
    margin-bottom: 0.6rem !important;
}

.sol-title {
    font-size: 1.6rem !important;
    margin-bottom: 0.8rem !important;
}

.sol-desc {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    margin-bottom: 1.2rem !important;
}

/* -- Compact Features -- */
.sol-features {
    gap: 0.5rem !important;
    margin-bottom: 1.2rem !important;
}

.sol-features li {
    font-size: 0.9rem !important;
}

.sol-features li i {
    font-size: 0.85rem !important;
}

/* -- Animated Spec Chips -- */
.sol-specs {
    gap: 0.7rem !important;
    margin-bottom: 1.5rem !important;
}

.sol-spec-chip {
    padding: 0.5rem 0.9rem !important;
    border-radius: 8px !important;
    transition: all 0.25s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.sol-spec-chip:hover {
    /* background: #4475B9 !important;
    border-color: #4475B9 !important; */
    transform: translateY(-3px);
    /* box-shadow: 0 6px 16px rgba(68, 117, 185, 0.25); */
}

/* .sol-spec-chip:hover .val,
.sol-spec-chip:hover .lbl {
    color: #fff !important;
} */

.sol-spec-chip .val {
    font-size: 1rem !important;
}

.sol-spec-chip .lbl {
    font-size: 0.7rem !important;
}

/* -- CTA Buttons Enhancement -- */
.sol-cta-row {
    gap: 0.8rem !important;
}

.btn-sol-primary {
    padding: 0.75rem 2rem !important;
    font-size: 0.95rem !important;
    box-shadow: 0 6px 20px rgba(68, 117, 185, 0.3);
}

.btn-sol-primary:hover {
    box-shadow: 0 8px 28px rgba(68, 117, 185, 0.4) !important;
}

.btn-sol-secondary {
    padding: 0.75rem 2rem !important;
    font-size: 0.95rem !important;
}

/* -- Tab Badges Enhancement -- */
.sol-badge {
    animation: badge-fade-in 0.5s ease forwards;
    font-weight: 600 !important;
    font-size: 0.78rem !important;
    padding: 0.5rem 0.85rem !important;
    border-radius: 10px !important;
}

@keyframes badge-fade-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -- Tab Transition Animation -- */
.sol-tab-content {
    animation: none;
}

.sol-tab-content.active {
    animation: tab-slide-in 0.35s ease forwards;
}

@keyframes tab-slide-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -- Enhanced Tab Buttons -- */
.sol-tab-btn {
    font-size: 0.95rem !important;
    padding: 0.75rem 1.2rem !important;
    border-radius: 0 !important;
    position: relative;
    overflow: hidden;
}


.creative-footer {
    background: #0B1325;
    color: #94a3b8;
    position: relative;
    overflow: hidden;
}

/* Background decorative circles */
.creative-footer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(68, 117, 185, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.creative-footer::after {
    content: '';
    position: absolute;
    bottom: 60px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(68, 117, 185, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* -- Wave divider -- */
.footer-wave {
    line-height: 0;
    margin-bottom: -2px;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

/* -- Body -- */
.footer-body {
    padding: 3.5rem 0 2.5rem;
    position: relative;
    z-index: 2;
}

/* -- Grid Layout -- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 3rem;
    /* direction: rtl; */
}

/* -- Brand Column -- */
.footer-brand-col {}

.footer-logo {
    height: 40px;
    margin-bottom: 1.2rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.5rem;
}

/* Social icons */
.footer-socials {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.fsoc-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.fsoc-btn:hover {
    background: #4475B9;
    border-color: #4475B9;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(68, 117, 185, 0.3);
}

.fsoc-whatsapp:hover {
    background: #22c55e;
    border-color: #22c55e;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

/* -- Link Columns -- */
.footer-links-col {}

.footer-col-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-col-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4475B9;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(68, 117, 185, 0.6);
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav-list li a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s ease, gap 0.2s ease;
}

.footer-nav-list li a i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.footer-nav-list li a:hover {
    color: #93c5fd;
    gap: 0.7rem;
}

.footer-nav-list li a:hover i {
    transform: translateX(-3px);
}

/* -- Contact Column -- */
.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: #64748b;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease;
    /* flex-direction: row-reverse; */
}

.footer-contact-item:hover {
    color: #93c5fd;
}

.fci-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(68, 117, 185, 0.12);
    border: 1px solid rgba(68, 117, 185, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4475B9;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.footer-contact-item:hover .fci-icon {
    background: rgba(68, 117, 185, 0.25);
}

/* -- Bottom Bar -- */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    color: #475569;
}

.footer-bottom-badges {
    display: flex;
    gap: 1rem;
}

.footer-bottom-badges span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #475569;
}

.footer-bottom-badges i {
    color: #4475B9;
}

/* -- Responsive -- */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* -------------------------------------------
   SOLUTIONS SECTION � Height Reduction & Polish
------------------------------------------- */

/* Tighten section padding */
.solutions-section.section-padding {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Reduce header spacing */
.solutions-section .text-center.mb-5 {
    margin-bottom: 2rem !important;
}

/* Tabs closer to content */
.sol-tabs-nav {
    margin-bottom: 2rem !important;
}

/* Reduce grid gap */
.sol-product-wrap {
    gap: 2rem !important;
}

/* Image side � tighter and more dynamic */
.sol-image-side {
    min-height: 320px !important;
    padding: 1.5rem !important;
    border-radius: 20px !important;
    /* Add a subtle animated shimmer border */
    position: relative;
    overflow: hidden;
}

/* Glowing corner accent */
.sol-image-side::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(68, 117, 185, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.sol-image-side img {
    max-height: 260px !important;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.3s ease !important;
}

.sol-image-side:hover img {
    transform: translateY(-8px) scale(1.05) !important;
    filter: drop-shadow(0 25px 45px rgba(68, 117, 185, 0.2)) !important;
}

/* Text side � tighter spacing */
.sol-text-side {
    padding-top: 0.5rem;
}

.sol-title {
    font-size: 1.6rem !important;
    margin-bottom: 0.9rem !important;
}

.sol-desc {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    margin-bottom: 1.2rem !important;
}

/* Feature list � compact */
.sol-features {
    gap: 0.5rem !important;
    margin-bottom: 1.2rem !important;
}

.sol-features li {
    font-size: 0.9rem !important;
}

/* Spec chips � compact + more visual pop */
.sol-specs {
    gap: 0.6rem !important;
    margin-bottom: 1.4rem !important;
}

.sol-spec-chip {
    padding: 0.5rem 0.9rem !important;
    border-radius: 10px !important;
    background: #EBF2FC !important;
    border: none !important;
    transition: transform 0.2s ease, background 0.2s ease;
}

/* .sol-spec-chip:hover {
    transform: translateY(-2px);
    background: #daeaf9 !important;
} */

.sol-spec-chip .val {
    font-size: 1rem !important;
    color: #4475B9 !important;
}

.sol-spec-chip .lbl {
    font-size: 0.7rem !important;
}

/* CTA buttons � tighter */
.sol-cta-row {
    gap: 0.75rem !important;
}

.btn-sol-primary,
.btn-sol-secondary {
    padding: 0.7rem 1.8rem !important;
    font-size: 0.95rem !important;
}

/* Badges � refined position & look */
.sol-badge {
    font-size: 0.75rem !important;
    padding: 0.45rem 0.85rem !important;
    border-radius: 8px !important;
    box-shadow: 0 6px 18px rgba(68, 117, 185, 0.1) !important;
    backdrop-filter: blur(8px);
}

.sol-badge-top {
    top: 1rem !important;
    left: 1rem !important;
}

.sol-badge-bottom {
    bottom: 1rem !important;
    right: 1rem !important;
}

/* Eyebrow badge on text side */
.sol-eyebrow {
    font-size: 0.8rem !important;
    padding: 0.25rem 0.7rem !important;
    margin-bottom: 0.7rem !important;
}

/* Tab buttons � slimmer */
.sol-tab-btn {
    padding: 0.65rem 1.1rem !important;
    font-size: 0.9rem !important;
}

/* Subtle entrance animation for tab content */
.sol-tab-content.active {
    animation: solFadeIn 0.35s ease;
}

@keyframes solFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add a decorative side stripe to the image card */
.sol-image-side .sol-stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4px;
    height: 60%;
    background: linear-gradient(to top, #4475B9, transparent);
    border-radius: 0 4px 4px 0;
}


/* -------------------------------------------
   PREMIUM STATS SECTION
------------------------------------------- */

.stats-section {
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 10;
    margin-top: -60px;
    /* Overlap the hero section */
    /* margin-bottom: 4rem; */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(11, 19, 37, 0.08);
    border: 1px solid rgba(68, 117, 185, 0.1);
    position: relative;
    overflow: hidden;
}

/* Decorative background inside the panel */
.stats-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 100% 0%, rgba(68, 117, 185, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(68, 117, 185, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    position: relative;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

/* Dividers between items */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: -0.75rem;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(68, 117, 185, 0.15), transparent);
}

.stat-icon-ring {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #F3F7FD 0%, #ffffff 100%);
    border: 1px solid #E1EAF6;
    box-shadow: 0 8px 16px rgba(68, 117, 185, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #4475B9;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon-ring {
    background: #4475B9;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(68, 117, 185, 0.2);
    transform: rotate(5deg) scale(1.05);
}

.stat-icon-green {
    color: #16a34a;
}

.stat-item:hover .stat-icon-green {
    background: #16a34a;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(22, 163, 74, 0.2);
}

.stat-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    direction: ltr;
    /* Ensure suffix stays on the right */
    margin-bottom: 0.3rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--iona-blue-dark);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-suffix {
    font-size: 1.8rem;
    font-weight: 800;
    color: #4475B9;
    margin-left: 0.2rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #5E6D82;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* -------------------------------------------
   PARTNERS / BRANDS SECTION
------------------------------------------- */
.partners-section {
    background: #ffffff;
}

.partners-section .owl-stage {
    padding: 40px 0;
}

.partners-eyebrow {
    display: inline-block;
    background: #EBF2FC;
    color: #4475B9;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    text-transform: uppercase;
}

/* -- Infinite scrolling marquee -- */
.partners-track-wrap {
    overflow: hidden;
    position: relative;
    margin: 0 -1rem 2.5rem;
    /* fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.partners-track {
    display: flex;
    gap: 1.2rem;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.partners-track-wrap:hover .partners-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo-card {
    background: #F3F7FD;
    border: 1.5px solid #E1EAF6;
    border-radius: 14px;
    padding: 1.1rem 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    transition: all 0.25s ease;
    cursor: default;
}

.partner-logo-card:hover {
    background: #EBF2FC;
    border-color: #4475B9;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(68, 117, 185, 0.1);
}

.partner-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #5E6D82;
    letter-spacing: 0.5px;
    transition: color 0.25s ease;
}

.partner-logo-card:hover .partner-name {
    color: #4475B9;
}

/* -- Trust Badges -- */
.trust-badges-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #F3F7FD;
    border: 1px solid #E1EAF6;
    border-radius: 30px;
    padding: 0.55rem 1.3rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #374151;
    transition: all 0.2s ease;
}

.trust-badge:hover {
    background: #EBF2FC;
    border-color: #4475B9;
    color: #4475B9;
    transform: translateY(-2px);
}

.trust-badge i {
    color: #4475B9;
    font-size: 1rem;
}

/* Overriding premium stats margin to fix wave overlap */
.stats-section {
    margin-top: -2px !important;
    padding-top: 2rem !important;
    padding-bottom: 1rem !important;
    background: #f8fafc !important;
    /* Matches hero wave bottom */
}

/* Borderless, clean partner logos */
.partner-logo-card {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: none !important;
}

.partner-logo-card:hover {
    background: transparent !important;
    border: none !important;
    transform: translateY(-3px) !important;
    box-shadow: none !important;
}

.partner-logo-card img {
    max-height: 100px !important;
    width: auto !important;
    margin: 0 auto;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.partner-logo-card:hover img,
.owl-item.center .partner-logo-card img {
    filter: grayscale(0%) opacity(1) !important;
    transform: scale(1.1);
}

/* Adjust Owl Carousel dots spacing and design for partners */
.partner-carousel .owl-dots {
    margin-top: 2rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.partner-carousel .owl-dot {
    background: none !important;
    border: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-block !important;
}

.partner-carousel .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    background: rgba(11, 22, 40, 0.2) !important;
    border: none !important;
    border-radius: 50% !important;
    transition: all 0.35s ease !important;
    margin: 0 4px !important;
    display: block !important;
}

.partner-carousel .owl-dot.active span {
    background: #4475B9 !important;
    /* using the site's primary blue color */
    width: 28px !important;
    border-radius: 4px !important;
}

.owl-theme .owl-dots {
    margin-top: 2rem !important;
}


/* -------------------------------------------
   PRE-FOOTER CTA CARD (REVISED & PREMIUM)
------------------------------------------- */

.pre-footer-cta-card {
    background: linear-gradient(135deg, #4475B9 0%, #1E4FA0 100%) !important;
    border-radius: 24px !important;
    padding: 3.5rem 4rem !important;
    box-shadow: 0 10px 50px rgba(68, 117, 185, 0.3) !important;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

/* Decorative tech elements inside the card */
.pre-footer-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.cta-text-side {
    position: relative;
    z-index: 2;
}

.cta-text-side h3 {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 0.8rem !important;
    /* font-family: 'Tajawal', sans-serif !important; */
}

.cta-text-side p {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0 !important;
    /* font-family: 'Tajawal', sans-serif !important; */
    max-width: 600px;
    line-height: 1.7 !important;
}

.cta-btn-side {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row !important;
    /* Side by side on desktop */
    gap: 1.2rem !important;
    min-width: max-content;
}

.btn-cta-primary {
    background: #ffffff !important;
    color: #4475B9 !important;
    padding: 1rem 2.2rem !important;
    border-radius: 12px !important;
    /* font-size: 1.05rem !important; */
    font-weight: 800 !important;
    text-align: center;
    border: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.btn-cta-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
    /* background: #f8fafc !important; */
}

.btn-cta-outline {
    background: transparent !important;
    color: #ffffff !important;
    padding: 1rem 2.2rem !important;
    border-radius: 12px !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    transition: all 0.3s ease !important;
}

.btn-cta-outline:hover {
    border-color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-3px) !important;
}

@media (max-width: 991px) {
    .pre-footer-cta-card {
        flex-direction: column !important;
        text-align: center !important;
        padding: 3rem 2rem !important;
    }

    .cta-btn-side {
        flex-direction: column !important;
        width: 100% !important;
    }
}

/* Make room inside the footer so content is not hidden by the overlapping card */
.footer-body {
    padding-top: 6rem !important;
    /* increased padding */
}

@media (max-width: 991px) {
    .pre-footer-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
    }

    .cta-text-side p {
        margin-bottom: 1.5rem;
    }

    .cta-btn-side {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-cta-primary,
    .btn-cta-outline {
        width: auto;
        min-width: 180px;
    }
}

@media (max-width: 575px) {
    .cta-btn-side {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-outline {
        width: 100%;
    }

    .sol-specs {
        max-width: 100%;
    }
}

/* Fix the CTA positioning to overlap perfectly */
.pre-footer-cta-wrapper {
    position: relative !important;
    z-index: 50 !important;
    margin-top: 5rem !important;
    /* Add suitable space above */
    margin-bottom: -120px !important;
    /* Pull footer up to overlap */
}

.pre-footer-cta-wrapper .btn {
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 0.55rem 1.35rem !important;
    font-size: 16px;
}

.creative-footer {
    padding-top: 120px !important;
    /* Ensure enough space for the card to overlap */
    position: relative !important;
    z-index: 10 !important;
}

/* Ensure the wave doesn't mess with the card overlap */
.footer-wave {
    z-index: -1 !important;
}


.footer-contact-item.phone span {
    direction: ltr;
}


/* -------------------------------------------
   PRODUCTS CAROUSEL � SMALL SCREEN FIXES
------------------------------------------- */
@media (max-width: 767.98px) {

    /* Hide side arrows on mobile � user swipes instead */
    .prod-arr {
        display: none !important;
    }

    /* Remove arrow padding so carousel fills full width */
    .prod-carousel-wrap {
        padding: 0 !important;
    }

    /* Ensure owl items take more width (1 item visible) */
    .prod-carousel .owl-item {
        padding: 0 6px !important;
    }
}


/* -------------------------------------------
   SOLUTIONS SECTION IMAGE SIDE � FULL REDESIGN
   Dark Premium Card with Glassmorphism
------------------------------------------- */

/* Override the light gradient with a bold dark card */
.sol-image-side {
    background: linear-gradient(135deg, #0B1325 0%, #112240 50%, #0d1b3e 100%) !important;
    border-radius: 28px !important;
    border: 1px solid rgba(68, 117, 185, 0.25) !important;
    box-shadow:
        0 0 0 1px rgba(68, 117, 185, 0.08),
        0 30px 80px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    position: relative;
    overflow: hidden !important;
    min-height: 380px !important;
    padding: 2.5rem !important;
}

/* Animated glow orb background */
.sol-image-side::before {
    content: '' !important;
    position: absolute !important;
    top: -40% !important;
    left: -20% !important;
    width: 80% !important;
    height: 80% !important;
    background: radial-gradient(circle, rgba(68, 117, 185, 0.22) 0%, transparent 70%) !important;
    animation: sol-orb-pulse 5s ease-in-out infinite alternate !important;
    pointer-events: none !important;
    z-index: 0 !important;
    border-radius: 50% !important;
    background-size: unset !important;
}

/* Second decorative glow in bottom right */
.sol-image-side::after {
    content: '' !important;
    position: absolute !important;
    bottom: -30% !important;
    right: -20% !important;
    width: 60% !important;
    height: 60% !important;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, transparent 70%) !important;
    animation: sol-orb-pulse 7s ease-in-out infinite alternate-reverse !important;
    pointer-events: none !important;
    z-index: 0 !important;
    border-radius: 50% !important;
    top: unset !important;
    left: unset !important;
    transform: none !important;
    width: 55% !important;
    height: 55% !important;
    background-image: none !important;
}

@keyframes sol-orb-pulse {
    from {
        opacity: 0.7;
        transform: scale(1);
    }

    to {
        opacity: 1;
        transform: scale(1.15);
    }
}

/* Grid dots overlay removed � replaced with subtle noise texture */
.sol-image-side>*:not(img):not(.sol-badge):not(.sol-stripe) {
    position: relative;
    z-index: 2;
}

/* Image itself: elevated, glowing, floating */
.sol-image-side img {
    position: relative !important;
    z-index: 3 !important;
    max-height: 280px !important;
    filter:
        drop-shadow(0 0 30px rgba(68, 117, 185, 0.45)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5)) !important;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.4s ease !important;
    animation: sol-img-float 4s ease-in-out infinite;
}

@keyframes sol-img-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.sol-image-side:hover img {
    transform: translateY(-14px) scale(1.06) !important;
    filter:
        drop-shadow(0 0 45px rgba(68, 117, 185, 0.65)) drop-shadow(0 25px 50px rgba(0, 0, 0, 0.6)) !important;
    animation: none !important;
}

/* Badges get glass style to contrast against dark bg */
.sol-image-side .sol-badge {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
}

.sol-image-side .sol-badge i {
    color: #93c5fd !important;
}

.sol-image-side .sol-badge.sol-badge-bottom {
    color: #86efac !important;
}

.sol-image-side .sol-badge.sol-badge-bottom i {
    color: #86efac !important;
}

/* Horizontal scan-line animation across the card */
.sol-image-side .sol-scan-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(68, 117, 185, 0.6), rgba(14, 165, 233, 0.6), transparent);
    animation: sol-scan 4s linear infinite;
    z-index: 4;
    pointer-events: none;
}

@keyframes sol-scan {
    0% {
        top: 0%;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Corner accent rings */
.sol-image-side .sol-corner-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1.5px solid rgba(68, 117, 185, 0.2);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.sol-image-side .sol-corner-ring:nth-child(1) {
    top: -30px;
    left: -30px;
    animation: sol-ring-spin 12s linear infinite;
}

.sol-image-side .sol-corner-ring:nth-child(2) {
    bottom: -30px;
    right: -30px;
    width: 90px;
    height: 90px;
    border-color: rgba(14, 165, 233, 0.15);
    animation: sol-ring-spin 18s linear infinite reverse;
}

@keyframes sol-ring-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive: keep design on mobile too */
@media (max-width: 991px) {
    .sol-image-side {
        min-height: 260px !important;
        padding: 1.75rem !important;
    }

    .sol-image-side img {
        max-height: 200px !important;
    }
}


/* -------------------------------------------
   SOLUTIONS SECTION IMAGE SIDE � CLEAN LIGHT
------------------------------------------- */

/* Completely override previous dark card */
.sol-image-side {
    background: linear-gradient(145deg, #f8fafd 0%, #eef4ff 100%) !important;
    border-radius: 24px !important;
    border: 1.5px solid rgba(68, 117, 185, 0.12) !important;
    box-shadow: 0 8px 40px rgba(68, 117, 185, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 360px !important;
    padding: 2.5rem !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Soft dot-grid pattern */
.sol-image-side::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    background-image: radial-gradient(circle, rgba(68, 117, 185, 0.06) 1px, transparent 1px) !important;
    background-size: 22px 22px !important;
    pointer-events: none !important;
    z-index: 0 !important;
    border-radius: 0 !important;
    animation: none !important;
    filter: none !important;
    opacity: 1 !important;
}

/* Light accent glow top-right */
.sol-image-side::after {
    content: '' !important;
    position: absolute !important;
    top: -60px !important;
    right: -60px !important;
    bottom: auto !important;
    left: auto !important;
    width: 200px !important;
    height: 200px !important;
    background: radial-gradient(circle, rgba(68, 117, 185, 0.1) 0%, transparent 70%) !important;
    background-image: none !important;
    pointer-events: none !important;
    z-index: 0 !important;
    border-radius: 50% !important;
    animation: none !important;
    transform: none !important;
}

/* Image � centered with gentle float & glow */
.sol-image-side img {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 2 !important;
    max-height: 280px !important;
    max-width: 90% !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
    filter: drop-shadow(0 12px 30px rgba(68, 117, 185, 0.18)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08)) !important;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.4s ease !important;
    animation: sol-float-v2 4s ease-in-out infinite !important;
}

@keyframes sol-float-v2 {

    0%,
    100% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-50%, -55%);
    }
}

.sol-image-side:hover img {
    transform: translate(-50%, -55%) scale(1.04) !important;
    filter: drop-shadow(0 20px 40px rgba(68, 117, 185, 0.28)) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.1)) !important;
    animation: none !important;
}

/* Badges � white on light background (must be absolute) */
.sol-image-side .sol-badge {
    position: absolute !important;
    background: #ffffff !important;
    border: 1px solid rgba(68, 117, 185, 0.14) !important;
    box-shadow: 0 6px 18px rgba(68, 117, 185, 0.1) !important;
    color: #0B1325 !important;
    font-weight: 700 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 3 !important;
}

.sol-image-side .sol-badge i {
    color: #4475B9 !important;
}

.sol-image-side .sol-badge.sol-badge-bottom {
    color: #0B1325 !important;
}

.sol-image-side .sol-badge.sol-badge-bottom i {
    color: #16a34a !important;
}

/* Hide dark-mode decorative elements */
.sol-scan-line,
.sol-corner-ring {
    display: none !important;
}

/* Responsive */
@media (max-width: 991px) {
    .sol-image-side {
        min-height: 260px !important;
        padding: 1.75rem !important;
    }

    .sol-image-side img {
        max-height: 200px !important;
    }
}


/* -------------------------------------------
   ?????? ????? � TOTAL REDESIGN (CREATIVE)
   Connected timeline, floating 3D icons, watermark
------------------------------------------- */

.methodology-section {
    background: var(--iona-white) !important;
    position: relative !important;
    overflow: hidden !important;
    padding: 6rem 0 !important;
}

/* Dot-grid background */
.methodology-section::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background-image: radial-gradient(circle, rgba(68, 117, 185, 0.07) 1px, transparent 1px) !important;
    background-size: 28px 28px !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

/* Huge Watermark Text */
.methodology-section::after {
    content: 'WORKFLOW' !important;
    position: absolute !important;
    top: 15% !important;
    left: -2% !important;
    font-size: 16vw !important;
    font-weight: 900 !important;
    color: rgba(68, 117, 185, 0.03) !important;
    pointer-events: none !important;
    z-index: 0 !important;
    font-family: Arial, sans-serif !important;
    letter-spacing: -2px !important;
}

/* Section text colors */
.methodology-section .section-title {
    color: #0B1325 !important;
    position: relative !important;
    z-index: 2 !important;
}

.methodology-section .section-desc,
.methodology-section .section-head p {
    color: #5E6D82 !important;
    position: relative !important;
    z-index: 2 !important;
}

.methodology-section .container {
    position: relative !important;
    z-index: 2 !important;
}

/* -- Grid timeline -- */
.methodology-timeline {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 1rem !important;
    padding: 3rem 0 1rem !important;
    position: relative !important;
}

/* Hide the old vertical line */
.methodology-timeline::before {
    display: none !important;
}

/* -- Step card -- */
.methodology-step {
    position: relative !important;
    background: #f4f7fb !important;
    border-radius: 12px !important;
    padding: 2.5rem 0.5rem 1.5rem !important;
    text-align: center !important;
    box-shadow: 0 10px 30px rgba(11, 19, 37, 0.04) !important;
    border: 1px solid rgba(68, 117, 185, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    opacity: 1 !important;
    transform: none !important;
    margin: 0 !important;
    overflow: visible !important;
    /* Allow the number to overflow top */
}

.methodology-step.is-visible {
    opacity: 1 !important;
    transform: none !important;
}

.methodology-step:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(68, 117, 185, 0.08) !important;
    border-color: rgba(68, 117, 185, 0.15) !important;
}

/* Connecting Dashed Line between top edge of cards */
.methodology-step::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    right: 50% !important;
    /* Start from center of this card */
    width: calc(100% + 1rem) !important;
    /* Span exactly to the next card's center */
    height: 2px !important;
    background: linear-gradient(to left, #cbd5e1 50%, transparent 50%) !important;
    background-size: 16px 2px !important;
    z-index: -1 !important;
}

/* Hide line on the last item of the timeline */
.methodology-step:last-child::before {
    display: none !important;
}

/* Step Number � Floating Circle on the Top Edge */
.methodology-step .step-number {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    /* Exactly half in, half out */
    width: 52px !important;
    height: 52px !important;
    background: #ffffff !important;
    color: #4475B9 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    box-shadow: 0 0 0 6px #f4f7fb, 0 4px 12px rgba(68, 117, 185, 0.15) !important;
    border: 2px solid #4475B9 !important;
    z-index: 3 !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
}

.methodology-step:hover .step-number {
    background: #4475B9 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(68, 117, 185, 0.25) !important;
}

/* Step Content (Wrapper) */
.methodology-step .step-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.methodology-step .step-content::after {
    display: none !important;
}

/* Step Icon � 3D Flip Effect */
.methodology-step .step-icon {
    width: 48px !important;
    height: 48px !important;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    color: #4475B9 !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.3rem !important;
    margin: 0 auto 1rem !important;
    box-shadow: inset 0 2px 4px #ffffff, 0 8px 16px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.5s ease !important;
    border: none !important;
}

.methodology-step:hover .step-icon {
    /* background: linear-gradient(135deg, #4475B9 0%, #1E4FA0 100%) !important; */
    background: var(--iona-blue) !important;
    color: var(--iona-white) !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 12px 24px rgba(68, 117, 185, 0.25) !important;
}

/* Fix inner icon so it doesn't rotate backwards when wrapper rotates */
.methodology-step .step-icon i {
    transition: transform 0.3s ease !important;
}

.methodology-step:hover .step-icon i {
    transform: none !important;
}

/* Typography */
.methodology-step h4 {
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    color: #0b1325 !important;
    margin-bottom: 0.5rem !important;
    transition: color 0.3s ease !important;
}

.methodology-step:hover h4 {
    color: #4475B9 !important;
}

.methodology-step p {
    font-size: 0.75rem !important;
    color: #5e6d82 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .methodology-timeline {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 3rem 1.5rem !important;
    }

    .methodology-step::before {
        width: calc(100% + 1.5rem) !important;
    }

    .methodology-step:nth-child(3n)::before {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .methodology-timeline {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2.5rem 1rem !important;
    }

    .methodology-step:nth-child(3n)::before {
        display: block !important;
    }

    .methodology-step:nth-child(2n)::before {
        display: none !important;
    }
}

@media (max-width: 575.98px) {
    .methodology-timeline {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding-top: 2rem !important;
    }

    .methodology-step::before {
        display: none !important;
    }
}


/* --- HERO SECTION NEW STYLES --- */
.hero-bg-overlay-gradient {
    background: var(--iona-gradient-dark);
}

.hero-tag-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--iona-white);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero-tag-pill i {
    color: var(--iona-blue);
    font-size: 1rem;
}

.hero-main-title {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 800;
    color: var(--iona-white);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-main-title span {
    color: var(--iona-orange);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 95%;
    margin-bottom: 2.5rem;
}

.hero-feature-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.7rem 1.2rem;
    color: var(--iona-white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.hero-feature-pill:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hero-feature-pill i {
    color: var(--iona-orange);
    font-size: 1.1rem;
}

.hero-btn-primary {
    background-color: var(--iona-orange);
    color: var(--iona-white) !important;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: transform 0.3s;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    /* box-shadow: var(--shadow-glow-orange); */
}

.hero-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--iona-white) !important;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: background 0.3s;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-trust-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.hero-trust-text i {
    color: #4ade80;
    font-size: 1rem;
}

/* --- WHY SECTION NEW STYLES --- */
.why-section-light {
    /* background-color: var(--iona-surface); */
    color: var(--iona-navy);
}

.why-content-wrap {
    padding-right: 2rem;
}

@media (max-width: 991px) {
    .why-content-wrap {
        padding-right: 0;
        /* margin-top: 2rem; */
    }
}

.why-pretitle {
    color: var(--iona-blue);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: block;
}

.why-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--iona-navy);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.why-lead {
    color: var(--iona-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 90%;
}

.why-feature-item {
    text-align: right;
}

.why-feature-icon {
    color: var(--iona-orange);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.why-feature-title {
    color: var(--iona-navy);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.why-feature-desc {
    color: var(--iona-muted);
    font-size: 0.95rem;
    margin: 0;
}

.why-cert-card {
    background-color: var(--iona-surface);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--iona-border);
    box-shadow: var(--shadow-lg);
}

.why-cert-title {
    color: var(--iona-blue);
    font-weight: 700;
    font-size: 0.95rem;
}

.cert-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--iona-border);
}

.cert-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cert-item-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: right;
}

.cert-icon-wrap {
    background: var(--iona-blue-light);
    padding: 0.8rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.cert-icon-wrap img {
    width: 24px;
    height: 24px;
}

.cert-icon-wrap i {
    font-size: 1.2rem;
}

.cert-text-title {
    color: var(--iona-navy);
    font-weight: 700;
    font-size: 0.95rem;
}

.cert-text-sub {
    color: var(--iona-muted);
    font-size: 0.75rem;
}

.cert-status {
    color: var(--iona-blue);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Icons Colors matching palette */
.icon-bank {
    color: var(--iona-muted);
}

.icon-data {
    color: var(--iona-muted);
}

.icon-globe {
    color: var(--iona-blue);
}

.icon-geo {
    color: var(--iona-orange);
}

/* --- HERO ANIMATION KEYFRAMES --- */
@keyframes heroScanDown {
    0% {
        top: -10%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes heroRadarSweep {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes heroSpinRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes heroBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes heroPulseGlow {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* --- RESPONSIVE FIXES FOR HERO --- */
@media (max-width: 991px) {
    .hero-feature-pill {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        flex-grow: 1;
        justify-content: center;
    }

    .hero-feature-pill i {
        font-size: 0.95rem;
    }

    .hero-main-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .hero-visual {
        margin-top: 3rem !important;
        opacity: 0.8;
        transform: scale(0.9);
    }
}

@media (max-width: 575px) {
    .hero-feature-pill {
        width: 100%;
    }
}

/* --- NEW RADAR DETAILS --- */
.hero-visual-circle-out {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border: 1px solid rgba(100, 150, 250, 0.2);
    border-radius: 50%;
    z-index: 1;
}

.hero-visual-data {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 4;
    font-family: monospace;
    font-size: 0.65rem;
    color: rgba(150, 200, 255, 0.8);
}

.data-left {
    top: 30%;
    left: 1.5rem;
}

.data-right {
    bottom: 30%;
    right: 1.5rem;
    text-align: right;
    align-items: flex-end;
}

.data-bar {
    height: 2px;
    background: rgba(100, 150, 250, 0.6);
    margin-bottom: 2px;
}

.data-left .data-bar:nth-child(1) {
    width: 40px;
    animation: heroDataBar 2s infinite alternate;
}

.data-left .data-bar:nth-child(2) {
    width: 25px;
    animation: heroDataBar 1.5s infinite alternate-reverse;
}

.data-left .data-bar:nth-child(3) {
    width: 35px;
    animation: heroDataBar 3s infinite alternate;
}

.data-dot {
    width: 6px;
    height: 6px;
    background: #60a5fa;
    border-radius: 50%;
    margin-bottom: 5px;
    box-shadow: 0 0 10px #60a5fa;
    animation: heroBlink 2s infinite;
}

.radar-target {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 10px #4ade80;
    animation: heroTargetBlink 3s infinite;
}

.radar-target::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 14px;
    height: 14px;
    border: 1px solid rgba(74, 222, 128, 0.5);
    border-radius: 50%;
}

.target-1 {
    top: 25%;
    left: 35%;
    animation-delay: 0s;
}

.target-2 {
    top: 60%;
    right: 25%;
    animation-delay: 1s;
}

.target-3 {
    bottom: 20%;
    left: 45%;
    animation-delay: 2s;
}

@keyframes heroDataBar {
    0% {
        transform: scaleX(0.5);
        transform-origin: left;
    }

    100% {
        transform: scaleX(1);
        transform-origin: left;
    }
}

@keyframes heroTargetBlink {

    0%,
    100% {
        opacity: 0.1;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* --- RADAR CARD ENHANCED OVERRIDES --- */
.hero-visual-glow {
    background: radial-gradient(circle, rgba(68, 117, 185, 0.35) 0%, rgba(30, 58, 138, 0.2) 40%, transparent 70%) !important;
}

.hero-visual-lens {
    width: 80px !important;
    height: 80px !important;
    top: -40px !important;
    left: -40px !important;
    background: radial-gradient(circle at 30% 30%, #7eb3ff, #1e3a8a) !important;
    box-shadow: 0 0 30px rgba(68, 117, 185, 0.6), 0 0 60px rgba(68, 117, 185, 0.2) !important;
    border: 2px solid rgba(150, 200, 255, 0.6) !important;
}

.hero-visual-ring-dashed {
    border-color: rgba(100, 150, 255, 0.5) !important;
}

.hero-visual-ring-solid {
    border: 2px solid rgba(100, 150, 255, 0.35) !important;
    box-shadow: inset 0 0 40px rgba(68, 117, 185, 0.1), 0 0 20px rgba(68, 117, 185, 0.15) !important;
}

.hero-visual-sweep {
    background: conic-gradient(from 0deg, rgba(68, 117, 185, 0) 60%, rgba(100, 180, 255, 0.35) 85%, rgba(100, 180, 255, 0.05) 100%) !important;
}

/* Bottom status bar inside radar */
.hero-visual-status-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 0.6rem 1.2rem;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(100, 150, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: monospace;
    font-size: 0.65rem;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 5px;
    margin-right: 2px;
}

.status-dot.green {
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
    animation: heroBlink 1.5s infinite;
}

.status-dot.blue {
    background: #60a5fa;
    box-shadow: 0 0 6px #60a5fa;
    animation: heroBlink 2s infinite 0.5s;
}

.status-dot.orange {
    background: #fb923c;
    box-shadow: 0 0 6px #fb923c;
    animation: heroBlink 2.5s infinite 1s;
}

.status-label {
    color: rgba(180, 210, 255, 0.8);
}

.status-value {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

/* Crosshair lines through center */
.hero-visual-crosshair-h,
.hero-visual-crosshair-v {
    position: absolute;
    background: rgba(100, 150, 255, 0.15);
    z-index: 2;
}

.hero-visual-crosshair-h {
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
}

.hero-visual-crosshair-v {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
}

/* Corner accents */
.hero-visual-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 4;
}

.hero-visual-corner.c-tl {
    top: 1rem;
    left: 1rem;
    border-top: 2px solid rgba(100, 180, 255, 0.7);
    border-left: 2px solid rgba(100, 180, 255, 0.7);
    border-radius: 6px 0 0 0;
}

.hero-visual-corner.c-tr {
    top: 1rem;
    right: 1rem;
    border-top: 2px solid rgba(100, 180, 255, 0.7);
    border-right: 2px solid rgba(100, 180, 255, 0.7);
    border-radius: 0 6px 0 0;
}

.hero-visual-corner.c-bl {
    bottom: 3.5rem;
    left: 1rem;
    border-bottom: 2px solid rgba(100, 180, 255, 0.7);
    border-left: 2px solid rgba(100, 180, 255, 0.7);
    border-radius: 0 0 0 6px;
}

.hero-visual-corner.c-br {
    bottom: 3.5rem;
    right: 1rem;
    border-bottom: 2px solid rgba(100, 180, 255, 0.7);
    border-right: 2px solid rgba(100, 180, 255, 0.7);
    border-radius: 0 0 6px 0;
}

/* =========================================
   CCTV SECURITY DASHBOARD
   ========================================= */

.cctv-dashboard {
    background: #0d1520;
    border: 1px solid rgba(68, 117, 185, 0.35);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(68, 117, 185, 0.1);
    font-family: 'Courier New', monospace;
}

/* Header */
.cctv-header {
    background: #111c2e;
    border-bottom: 1px solid rgba(68, 117, 185, 0.3);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cctv-header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cctv-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.cctv-dot-red {
    background: #ff5f57;
}

.cctv-dot-yellow {
    background: #febc2e;
}

.cctv-dot-green {
    background: #28c840;
}

.cctv-title {
    color: rgba(150, 190, 255, 0.7);
    font-size: 0.68rem;
    margin-right: 0.6rem;
    letter-spacing: 0.03em;
}

.cctv-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cctv-rec-badge {
    color: #ef4444;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.cctv-blink {
    animation: heroBlink 1s infinite;
}

.cctv-clock {
    color: rgba(200, 220, 255, 0.9);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* 2x2 Camera Grid */
.cctv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: #080e18;
}

/* Individual Feed */
.cctv-feed {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    background: #0a1220;
}

.cctv-feed:hover {
    filter: brightness(1.1);
}

/* Simulated environments using gradients */
.cam-entrance {
    background: linear-gradient(160deg, #0d1e2e 0%, #152235 40%, #0a1520 100%);
    box-shadow: inset 0 0 30px rgba(30, 80, 140, 0.2);
}

.cam-parking {
    background: linear-gradient(160deg, #111820 0%, #1a2030 50%, #0d1420 100%);
}

.cam-server {
    background: linear-gradient(160deg, #0d1e1a 0%, #0f2020 50%, #0a1515 100%);
}

.cam-lobby {
    background: linear-gradient(160deg, #1a1520 0%, #201828 50%, #12101e 100%);
}

/* Scan Line animation */
.cctv-scan {
    position: absolute;
    top: -10%;
    left: 0;
    right: 0;
    height: 25%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(68, 117, 185, 0.04) 50%,
            transparent 100%);
    z-index: 2;
    animation: cctvScan 4s linear infinite;
    pointer-events: none;
}

/* Noise texture overlay */
.cctv-feed-noise {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: cover;
    pointer-events: none;
}

/* Feed Label (top-left) */
.cctv-feed-label {
    position: absolute;
    top: 0.4rem;
    left: 0.5rem;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.cctv-cam-id {
    color: #4ade80;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.cctv-location {
    color: rgba(200, 220, 255, 0.6);
    font-size: 0.55rem;
    letter-spacing: 0.05em;
}

/* Timestamp (bottom-right) */
.cctv-timestamp {
    position: absolute;
    bottom: 0.4rem;
    right: 0.5rem;
    z-index: 5;
    color: rgba(200, 220, 255, 0.55);
    font-size: 0.5rem;
    letter-spacing: 0.04em;
}

/* Motion Alert */
.cctv-motion-alert {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.7);
    color: #f87171;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    z-index: 6;
    letter-spacing: 0.1em;
    animation: motionFlash 2s infinite;
}

.cctv-motion-alert i {
    font-size: 0.6rem;
}

/* Person silhouette */
.cctv-person {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 30px;
    background: rgba(200, 220, 255, 0.15);
    border-radius: 4px 4px 0 0;
    z-index: 3;
    box-shadow: 0 0 10px rgba(200, 220, 255, 0.2);
    animation: cctvPersonWalk 6s ease-in-out infinite;
}

.cctv-person::before {
    content: '';
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    width: 11px;
    height: 11px;
    background: rgba(200, 220, 255, 0.15);
    border-radius: 50%;
}

/* Car silhouette */
.cctv-car {
    position: absolute;
    bottom: 25%;
    right: 15%;
    width: 40px;
    height: 16px;
    background: rgba(150, 180, 255, 0.12);
    border-radius: 4px;
    z-index: 3;
}

.cctv-car::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 8px;
    width: 22px;
    height: 10px;
    background: rgba(150, 180, 255, 0.1);
    border-radius: 3px 3px 0 0;
}

/* Server rack silhouette */
.cctv-server-rack {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 70%;
    background: rgba(68, 185, 150, 0.08);
    border: 1px solid rgba(68, 185, 150, 0.15);
    z-index: 3;
    border-radius: 2px 2px 0 0;
}

.cctv-server-rack::before,
.cctv-server-rack::after {
    content: '';
    position: absolute;
    left: 3px;
    right: 3px;
    height: 3px;
    background: rgba(74, 222, 128, 0.3);
    border-radius: 1px;
    animation: heroBlink 2s infinite;
}

.cctv-server-rack::before {
    top: 8px;
}

.cctv-server-rack::after {
    top: 18px;
    animation-delay: 0.7s;
}

/* Dashboard Footer */
.cctv-footer {
    background: #111c2e;
    border-top: 1px solid rgba(68, 117, 185, 0.25);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cctv-stat {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(160, 200, 255, 0.8);
    font-size: 0.6rem;
    letter-spacing: 0.03em;
}

.cctv-stat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.cctv-stat-dot.online {
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
    animation: heroBlink 2s infinite;
}

.cctv-stat-dot.alert {
    background: #fbbf24;
    box-shadow: 0 0 6px #fbbf24;
    animation: heroBlink 1.5s infinite;
}

/* --- CCTV Keyframes --- */
@keyframes cctvScan {
    0% {
        top: -25%;
    }

    100% {
        top: 110%;
    }
}

@keyframes motionFlash {

    0%,
    100% {
        opacity: 1;
        border-color: rgba(239, 68, 68, 0.7);
    }

    50% {
        opacity: 0.4;
        border-color: rgba(239, 68, 68, 0.2);
    }
}

@keyframes cctvPersonWalk {
    0% {
        left: 30%;
    }

    50% {
        left: 60%;
    }

    100% {
        left: 30%;
    }
}

/* =============================================
   IONA COMMAND CENTER DASHBOARD
   ============================================= */

.cmd-shell {
    background: #0B1325;
    border: 1px solid rgba(68, 117, 185, 0.35);
    border-radius: 14px;
    overflow: hidden;
    font-family: 'Courier New', monospace;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(68, 117, 185, 0.12);
}

/* --- Topbar --- */
.cmd-topbar {
    background: #111d30;
    border-bottom: 1px solid rgba(68, 117, 185, 0.25);
    padding: 0.5rem 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.cmd-topbar-title {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.65rem;
    color: rgba(180, 210, 255, 0.9);
    letter-spacing: 0.02em;
}

.cmd-live-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
    animation: heroBlink 1.5s infinite;
    flex-shrink: 0;
}

.cmd-live-dot.sm {
    width: 5px;
    height: 5px;
}

.cmd-app-name {
    color: rgba(200, 225, 255, 0.95);
    font-weight: 700;
}

.cmd-sep {
    color: rgba(100, 150, 220, 0.4);
}

.cmd-screen-name {
    color: rgba(68, 117, 185, 0.9);
}

.cmd-topbar-stats {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cmd-stat-chip {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    background: rgba(68, 117, 185, 0.1);
    border: 1px solid rgba(68, 117, 185, 0.2);
    border-radius: 4px;
    padding: 0.15rem 0.45rem;
    font-size: 0.58rem;
}

.cmd-stat-label {
    color: rgba(150, 190, 255, 0.6);
}

.cmd-stat-val {
    font-weight: 700;
}

.cmd-stat-val.green {
    color: #4ade80;
}

.cmd-stat-val.orange {
    color: #fb923c;
}

.cmd-stat-val.blue {
    color: #60a5fa;
}

/* --- Body Layout --- */
.cmd-body {
    display: flex;
    height: 320px;
}

/* --- Sidebar (alerts) --- */
.cmd-sidebar {
    width: 130px;
    flex-shrink: 0;
    background: #0e1829;
    border-left: 1px solid rgba(68, 117, 185, 0.18);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cmd-sidebar-hdr {
    padding: 0.45rem 0.6rem;
    background: rgba(68, 117, 185, 0.08);
    border-bottom: 1px solid rgba(68, 117, 185, 0.15);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.6rem;
    color: rgba(150, 190, 255, 0.8);
    font-weight: 700;
}

.cmd-badge {
    margin-right: auto;
    background: #EA580C;
    color: #fff;
    font-size: 0.5rem;
    font-weight: 700;
    padding: 0.05rem 0.35rem;
    border-radius: 50px;
    line-height: 1.4;
}

.cmd-alert-list {
    overflow-y: auto;
    flex: 1;
    scrollbar-width: none;
}

.cmd-alert-item {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 0.4rem 0.6rem;
    border-bottom: 1px solid rgba(68, 117, 185, 0.08);
    transition: background 0.2s;
}

.cmd-alert-item:hover {
    background: rgba(68, 117, 185, 0.06);
}

.cmd-alert-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    margin-top: 3px;
    flex-shrink: 0;
}

.cmd-alert-dot.orange {
    background: #fb923c;
    box-shadow: 0 0 5px #fb923c;
}

.cmd-alert-dot.green {
    background: #4ade80;
    box-shadow: 0 0 5px #4ade80;
}

.cmd-alert-dot.red {
    background: #f87171;
    box-shadow: 0 0 5px #f87171;
    animation: heroBlink 1s infinite;
}

.cmd-alert-dot.blue {
    background: #60a5fa;
    box-shadow: 0 0 5px #60a5fa;
}

.cmd-alert-title {
    color: rgba(200, 225, 255, 0.85);
    font-size: 0.58rem;
    font-weight: 700;
    line-height: 1.3;
}

.cmd-alert-sub {
    color: rgba(120, 160, 220, 0.6);
    font-size: 0.52rem;
    line-height: 1.3;
    margin-top: 1px;
}

.cmd-alert-time {
    color: rgba(100, 140, 200, 0.45);
    font-size: 0.5rem;
    margin-top: 1px;
}

/* --- Camera Feeds --- */
.cmd-feeds {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #0a1220;
    gap: 2px;
}

/* Main large feed */
.cmd-feed-main {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #0d1828;
}

/* Two small feeds row */
.cmd-feeds-row {
    display: flex;
    gap: 2px;
    height: 100px;
    flex-shrink: 0;
}

.cmd-feed-sm {
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* Environment backgrounds */
.cmd-feed-env {
    position: absolute;
    inset: 0;
}

.cam1-env {
    background: linear-gradient(160deg, #0d1e2e 0%, #1a2e45 40%, #0a1a2e 100%);
}

.cam4-env {
    background: linear-gradient(160deg, #1a1a20 0%, #251e2a 50%, #141020 100%);
}

.cam7-env {
    background: linear-gradient(160deg, #0e1e1a 0%, #142420 50%, #0c1815 100%);
}

/* Scan line */
.cmd-feed-scan {
    position: absolute;
    top: -20%;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to bottom, transparent, rgba(68, 117, 185, 0.06), transparent);
    z-index: 2;
    animation: cctvScan 4s linear infinite;
    pointer-events: none;
}

.cmd-feed-scan.slow {
    animation-duration: 6s;
}

.cmd-feed-scan.slow2 {
    animation-duration: 8s;
    animation-delay: -3s;
}

/* HUD overlay */
.cmd-feed-hud {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.35rem 0.5rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.cmd-feed-hud.sm {
    padding: 0.2rem 0.35rem;
}

.cmd-live-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #4ade80;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.cmd-live-badge.sm {
    font-size: 0.5rem;
}

.cmd-cam-tag {
    color: rgba(180, 210, 255, 0.7);
    font-size: 0.58rem;
}

.cmd-cam-tag.sm {
    font-size: 0.5rem;
}

/* Detection boxes */
.cmd-detect-box {
    position: absolute;
    z-index: 5;
    border: 1px solid transparent;
}

.orange-box {
    border-color: rgba(234, 88, 12, 0.8);
    animation: cmdBoxPulse 2s infinite;
}

.blue-box {
    border-color: rgba(68, 117, 185, 0.8);
}

.dbox-tl,
.dbox-tr,
.dbox-bl,
.dbox-br {
    position: absolute;
    width: 8px;
    height: 8px;
}

.dbox-tl {
    top: -1px;
    left: -1px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
}

.dbox-tr {
    top: -1px;
    right: -1px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.dbox-bl {
    bottom: -1px;
    left: -1px;
    border-bottom: 2px solid currentColor;
    border-left: 2px solid currentColor;
}

.dbox-br {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.orange-box .dbox-tl,
.orange-box .dbox-tr,
.orange-box .dbox-bl,
.orange-box .dbox-br {
    color: #EA580C;
}

.blue-box .dbox-tl,
.blue-box .dbox-tr,
.blue-box .dbox-bl,
.blue-box .dbox-br {
    color: #4475B9;
}

.cmd-detect-label {
    position: absolute;
    top: -1.2rem;
    left: 0;
    font-size: 0.48rem;
    font-weight: 700;
    padding: 0.08rem 0.3rem;
    border-radius: 2px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.orange-lbl {
    background: rgba(234, 88, 12, 0.85);
    color: #fff;
}

.blue-lbl {
    background: rgba(68, 117, 185, 0.85);
    color: #fff;
}

/* Person silhouettes inside small feeds */
.cmd-person-sm {
    position: absolute;
    bottom: 20%;
    left: 40%;
    width: 10px;
    height: 22px;
    border-radius: 3px 3px 0 0;
    z-index: 3;
}

.cmd-person-sm::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.8;
}

.cmd-person-sm.p-orange {
    background: rgba(234, 88, 12, 0.35);
    box-shadow: 0 0 8px rgba(234, 88, 12, 0.3);
    animation: cctvPersonWalk 5s ease-in-out infinite;
}

/* Server rack in small feed */
.cmd-rack-sm {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 60%;
    background: rgba(68, 185, 150, 0.07);
    border: 1px solid rgba(68, 185, 150, 0.18);
    border-radius: 2px 2px 0 0;
    z-index: 3;
}

.cmd-rack-sm::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 2px;
    right: 2px;
    height: 2px;
    background: rgba(74, 222, 128, 0.5);
    animation: heroBlink 2s infinite;
}

/* Timestamp */
.cmd-feed-ts {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    padding: 0.25rem 0.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
    color: rgba(150, 190, 255, 0.55);
    font-size: 0.5rem;
    letter-spacing: 0.04em;
}

.cmd-feed-ts.sm {
    font-size: 0.45rem;
    padding: 0.15rem 0.3rem;
}

/* --- Right Icon Nav --- */
.cmd-icon-nav {
    width: 30px;
    flex-shrink: 0;
    background: #0d1525;
    border-right: 1px solid rgba(68, 117, 185, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0;
    gap: 0.3rem;
}

.cmd-icon-btn {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(100, 150, 220, 0.5);
    font-size: 0.65rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.cmd-icon-btn:hover {
    background: rgba(68, 117, 185, 0.15);
    color: rgba(150, 190, 255, 0.9);
}

.cmd-icon-btn.active {
    background: rgba(68, 117, 185, 0.25);
    color: #60a5fa;
}

.cmd-icon-btn.alert-icon {
    color: #fb923c;
}

/* --- Status Bar --- */
.cmd-statusbar {
    background: #0a1220;
    border-top: 1px solid rgba(68, 117, 185, 0.2);
    padding: 0.35rem 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    overflow: hidden;
}

.cmd-sb-brand {
    color: #4475B9;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-left: auto;
}

.cmd-sb-item {
    color: rgba(120, 160, 220, 0.6);
    font-size: 0.55rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    white-space: nowrap;
}

.cmd-sb-item.green-txt {
    color: #4ade80;
}

/* --- Keyframes --- */
@keyframes cmdBoxPulse {

    0%,
    100% {
        border-color: rgba(234, 88, 12, 0.8);
    }

    50% {
        border-color: rgba(234, 88, 12, 0.25);
    }
}

/* =============================================
   HERO OVERLAPPING LAYOUT
   ============================================= */

/* Row: zero gap so columns can bleed into each other */
.hero-overlap-row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    position: relative;
}

/* Text column: sits on top, bleeds right into dashboard space */
.hero-text-col {
    position: relative;
    z-index: 3;
    padding-left: 0;
    /* nudge left so it overlaps the dashboard */
    margin-left: -3%;
}

/* Dashboard column: slides under the text, fades on the right edge */
.hero-dash-col {
    position: relative;
    z-index: 2;
    /* push it left so it partially hides behind text */
    margin-right: -8%;
    padding-right: 0;
}

/* Right-edge fade so dashboard bleeds seamlessly into hero bg */
.hero-dash-col::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 45%;
    background: linear-gradient(to left,
            rgba(15, 23, 42, 0) 0%,
            rgba(15, 23, 42, 0.5) 50%,
            rgba(15, 23, 42, 0.85) 100%);
    pointer-events: none;
    z-index: 10;
    border-radius: 0 14px 14px 0;
}

/* Left-edge fade on the text col so it melts into the dashboard */
.hero-text-col::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 20%;
    background: linear-gradient(to right,
            rgba(15, 23, 42, 0) 0%,
            rgba(15, 23, 42, 0.15) 100%);
    pointer-events: none;
    z-index: 1;
}

/* cmd-shell: make it slightly transparent so the hero bg glows through */
.cmd-shell {
    opacity: 0.97;
    transform: perspective(800px) rotateY(3deg);
    transform-origin: right center;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4), 0 30px 70px rgba(0, 0, 0, 0.55);
}

/* Slight tilt on small sizes */
@media (max-width: 991px) {
    .hero-text-col {
        margin-left: 0;
    }

    .hero-dash-col {
        margin-right: 0;
        margin-top: 2rem;
    }

    .hero-dash-col::after {
        display: none;
    }

    .cmd-shell {
        transform: none;
    }
}

/* =============================================
   REVERT: Remove overlap / restore clean layout
   ============================================= */
.hero-overlap-row {
    --bs-gutter-x: inherit;
    --bs-gutter-y: inherit;
}

.hero-text-col {
    position: static;
    z-index: auto;
    margin-left: 0;
}

.hero-text-col::before {
    display: none;
}

.hero-dash-col {
    position: static;
    z-index: auto;
    margin-right: 0;
}

.hero-dash-col::after {
    display: none;
}

/* Clean cmd-shell ? remove tilt, restore normal shadow */
.cmd-shell {
    opacity: 1 !important;
    transform: none !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(68, 117, 185, 0.12) !important;
}


/* =============================================
   PILLARS SECTION
   ============================================= */
.pillars-section {
    background-color: var(--iona-navy);
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.pillar-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(68, 117, 185, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Subtle corner glow effect */
.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(68, 117, 185, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-30%, -30%);
    transition: all 0.4s ease;
}

.pillar-card:hover {
    background: rgba(15, 23, 42, 0.95);
    border-color: rgba(68, 117, 185, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(68, 117, 185, 0.15);
}

.pillar-card:hover::before {
    transform: translate(-10%, -10%) scale(1.5);
    background: radial-gradient(circle, rgba(68, 117, 185, 0.25) 0%, transparent 70%);
}

.pillar-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.pillar-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(68, 117, 185, 0.1);
    border: 1px solid rgba(68, 117, 185, 0.3);
    border-radius: 14px;
    color: var(--iona-blue);
    font-size: 1.6rem;
    transition: all 0.4s ease;
}

.pillar-card:hover .pillar-icon {
    background: var(--iona-blue);
    color: #fff;
    box-shadow: 0 10px 20px rgba(68, 117, 185, 0.4);
    transform: scale(1.1);
}

.pillar-number {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    font-weight: bold;
}

.pillar-title {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.pillar-card:hover .pillar-title {
    color: var(--iona-blue);
}

.pillar-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
}


/* =============================================
   PILLARS SECTION - LIGHT THEME OVERRIDE
   ============================================= */
.pillars-section {
    background-color: #f8fafc !important;
    /* Very light slate bg */
}

.pillar-card {
    background: #ffffff !important;
    border-color: rgba(68, 117, 185, 0.1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
}

.pillar-card::before {
    background: radial-gradient(circle, rgba(68, 117, 185, 0.08) 0%, transparent 70%) !important;
}

.pillar-card:hover {
    background: #ffffff !important;
    border-color: rgba(68, 117, 185, 0.3) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 0 25px rgba(68, 117, 185, 0.1) !important;
}

.pillar-card:hover::before {
    background: radial-gradient(circle, rgba(68, 117, 185, 0.15) 0%, transparent 70%) !important;
}

/* .pillar-icon {
    background: rgba(68, 117, 185, 0.08) !important;
    border-color: rgba(68, 117, 185, 0.2) !important;
} */

/* .pillar-card:hover .pillar-icon {
    box-shadow: 0 10px 20px rgba(68,117,185,0.25) !important;
} */

.pillar-number {
    color: #94a3b8 !important;
    /* Slate 400 */
}

.pillar-title {
    color: #0f172a !important;
    /* Slate 900 */
}

.pillar-desc {
    color: #475569 !important;
    /* Slate 600 */
}

/* =============================================
   SECTORS GRID SECTION (LIGHT THEME)
   ============================================= */
.sectors-grid-section {
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    padding-top: 6rem;
}

.sector-box {
    /* background: #f8fafc; */
    background: var(--iona-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.sector-box:hover {
    background: #ffffff;
    border-color: rgba(68, 117, 185, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(68, 117, 185, 0.1);
}

.sector-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--iona-blue);
    font-size: 1.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sector-box:hover .sector-icon {
    background: var(--iona-blue);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.sector-title {
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.sector-desc {
    color: #475569;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}


/* =============================================
   AI SECURITY CORE VISUAL (HERO RIGHT)
   ============================================= */
.ai-core-visual {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: perspective(1000px) rotateX(10deg) rotateY(-10deg);
}

.core-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    box-sizing: border-box;
}

.ring-outer {
    width: 320px;
    height: 320px;
    border-top-color: rgba(68, 117, 185, 0.4);
    border-bottom-color: rgba(68, 117, 185, 0.4);
    animation: spinRight 12s linear infinite;
    box-shadow: 0 0 30px rgba(68, 117, 185, 0.1);
}

.ring-middle {
    width: 250px;
    height: 250px;
    border-left-color: rgba(74, 222, 128, 0.5);
    /* Green accent */
    border-right-color: rgba(74, 222, 128, 0.5);
    border-style: dashed;
    animation: spinLeft 8s linear infinite;
}

.ring-inner {
    width: 180px;
    height: 180px;
    border: 1px solid rgba(100, 150, 255, 0.2);
    background: radial-gradient(circle, rgba(68, 117, 185, 0.1) 0%, transparent 60%);
    animation: pulseGlow 4s ease-in-out infinite;
}

.core-center {
    position: relative;
    z-index: 5;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--iona-blue), #0f172a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    box-shadow: 0 0 40px rgba(68, 117, 185, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.2);
    animation: floatCore 4s ease-in-out infinite;
}

/* Scanner line that sweeps down */
.core-scanner {
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #4ade80;
    box-shadow: 0 0 15px #4ade80, 0 5px 15px rgba(74, 222, 128, 0.4);
    z-index: 10;
    animation: scanSweep 3s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
    opacity: 0.7;
}

/* Data nodes floating around */
.core-data-nodes .node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff;
}

.node-1 {
    top: 20%;
    left: 15%;
    animation: floatNode 3s ease-in-out infinite 0.5s;
}

.node-2 {
    top: 15%;
    right: 25%;
    background: #4ade80;
    box-shadow: 0 0 10px #4ade80;
    animation: floatNode 4s ease-in-out infinite 1s;
}

.node-3 {
    bottom: 25%;
    left: 20%;
    animation: floatNode 3.5s ease-in-out infinite 0.2s;
}

.node-4 {
    bottom: 15%;
    right: 20%;
    background: #fb923c;
    box-shadow: 0 0 10px #fb923c;
    animation: floatNode 4.5s ease-in-out infinite 1.5s;
}

/* Animations */
@keyframes spinRight {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinLeft {
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
        box-shadow: 0 0 20px rgba(68, 117, 185, 0.4);
    }
}

@keyframes floatCore {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes scanSweep {
    0% {
        top: 10%;
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        top: 90%;
        opacity: 0;
    }
}

@keyframes floatNode {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(5px, -8px);
    }
}

/* =============================================
   MOBILE FIXES FOR AI CORE & HERO PADDING
   ============================================= */
@media (max-width: 991px) {

    /* Give the hero more top padding so text doesn't hide behind the navbar */
    .hero-premium {
        padding-top: 100px !important;
    }
}

@media (max-width: 768px) {
    .ai-core-visual {
        transform: scale(0.8) !important;
        margin-top: -30px !important;
        margin-bottom: -30px !important;
    }
}

@media (max-width: 480px) {
    .ai-core-visual {
        transform: scale(0.65) !important;
        margin-top: -50px !important;
        margin-bottom: -50px !important;
    }

    /* Ensure hero has enough breathing room on very small screens */
    .hero-premium {
        padding-top: 120px !important;
        padding-bottom: 60px !important;
    }
}

/* =============================================
   FORCE CENTER AI CORE ON MOBILE
   ============================================= */
@media (max-width: 991px) {
    .hero-container .col-lg-5 {
        display: flex;
        justify-content: center;
    }

    .ai-core-visual {
        position: relative !important;
        margin: 0 auto !important;
        left: auto !important;
        right: auto !important;
        transform: scale(0.9) !important;
        transform-origin: center center !important;
    }
}

/* =============================================
   SOLUTIONS CAMERA BADGES RESPONSIVENESS FIX
   ============================================= */
@media (max-width: 576px) {
    .sol-image-side .sol-badge {
        font-size: 0.65rem !important;
        padding: 0.35rem 0.6rem !important;
        white-space: normal !important;
        text-align: center;
        max-width: 45%;
    }

    .sol-badge-top {
        top: 0.5rem !important;
        left: 0.5rem !important;
    }

    .sol-badge-bottom {
        bottom: 0.5rem !important;
        right: 0.5rem !important;
    }
}

/* -- UI Fixes (Typography, Centering, Overflow) -- */
.sol-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem) !important;
    line-height: 1.4 !important;
    margin-bottom: 0.8rem !important;
}

.cert-item-left {
    flex: 1;
    min-width: 0;
    /* allows text to wrap without pushing layout */
}

.cert-text-title {
    word-break: break-word;
    display: block;
}

.cert-status {
    flex-shrink: 0;
}

.cf-select-arrow {
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
}

.cf-custom-select.is-open .cf-select-arrow {
    transform: translateY(-50%) rotate(180deg) !important;
}

/* Refactored inline styles */
.fs-1-5rem {
    font-size: 1.5rem;
}

.separator-line {
    opacity: 0.3;
    margin: 0 0.5rem;
}

.text-iona-blue {
    color: var(--iona-blue) !important;
}

.max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.max-w-580 {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.max-w-520 {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.bg-light-blue {
    background: #f8fafc;
}

.text-light-grey {
    color: #9daec3;
}

/* =============================================
   IONA COMMAND DASHBOARD (NEW)
   ============================================= */

/* Wrap */
.cmd-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    font-family: 'Courier New', Courier, monospace;
    direction: rtl;
    /* Important for Arabic */
}

/* Floating chips */
.cmd-chip {
    position: absolute;
    background: rgba(11, 19, 37, 0.65);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(100, 150, 255, 0.2);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: floatChip 6s ease-in-out infinite;
}

.chip-top {
    top: -30px;
    right: -20px;
    animation-delay: 0s;
}

.chip-bot {
    bottom: 30px;
    left: -30px;
    animation-delay: -3s;
}

@keyframes floatChip {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.chip-l {
    font-size: 0.65rem;
    color: rgba(150, 200, 255, 0.7);
    margin-bottom: 2px;
}

.chip-v {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--iona-white);
}

.chip-s {
    font-size: 0.55rem;
    color: #4ade80;
    margin-top: 2px;
}

/* Main Shell */
.cmd-shell {
    background: rgba(11, 19, 37, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(68, 117, 185, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(68, 117, 185, 0.15);
    /* Subtle breathing scale animation */
    animation: shellFloat 10s ease-in-out infinite;
}

@keyframes shellFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Titlebar */
.cmd-title {
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(68, 117, 185, 0.2);
}

.wdots {
    display: flex;
    gap: 6px;
    margin-left: 15px;
}

.wd {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.cmd-brand {
    flex: 1;
    text-align: center;
    color: rgba(180, 210, 255, 0.8);
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

.cmd-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6rem;
    color: #4ade80;
}

.cmd-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

/* Body */
.cmd-body {
    display: flex;
    height: 360px;
}

/* Sidebar */
.cmd-sidebar {
    width: 45px;
    background: rgba(11, 19, 37, 0.2);
    border-left: 1px solid rgba(68, 117, 185, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 12px;
}

.sb-ico {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(120, 160, 220, 0.5);
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.sb-ico svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sb-ico:hover,
.sb-ico.active {
    background: rgba(68, 117, 185, 0.2);
    color: var(--iona-blue);
}

.sb-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 6px;
    height: 6px;
    background: #fb923c;
    border-radius: 50%;
}

.sb-div {
    width: 20px;
    height: 1px;
    background: rgba(68, 117, 185, 0.15);
    margin: 5px 0;
}

/* Main Content */
.cmd-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: transparent;
}

/* Topbar */
.cmd-topbar {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0.8rem;
    background: rgba(68, 117, 185, 0.05);
    border-bottom: 1px solid rgba(68, 117, 185, 0.1);
}

.site-sel {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(200, 230, 255, 0.9);
    font-size: 0.65rem;
}

.site-dot {
    width: 6px;
    height: 6px;
    background: #60a5fa;
    border-radius: 50%;
}

.topbar-stats {
    display: flex;
    gap: 12px;
}

.ts {
    font-size: 0.6rem;
    color: rgba(150, 180, 220, 0.6);
}

.ts-v {
    font-weight: bold;
}

.ts-v.ok {
    color: #4ade80;
}

.ts-v.warn {
    color: #fb923c;
}

/* Camera Grid */
.cam-area {
    flex: 1;
    padding: 0.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 6px;
}

.vcam {
    position: relative;
    background: rgba(6, 10, 18, 0.4);
    border: 1px solid rgba(68, 117, 185, 0.2);
    border-radius: 6px;
    overflow: hidden;
}

.vcam.featured {
    grid-row: span 3;
    border-color: rgba(96, 165, 250, 0.4);
}

.vcam-scan {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom, transparent, rgba(96, 165, 250, 0.15));
    border-bottom: 1px solid rgba(96, 165, 250, 0.4);
    z-index: 10;
    animation: camScan 4s linear infinite;
}

@keyframes camScan {
    0% {
        top: -20%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.vcam-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(68, 117, 185, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(68, 117, 185, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}

.vcam-hud {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0.5rem;
    z-index: 20;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
}

.vcam-id {
    font-size: 0.55rem;
    color: rgba(220, 240, 255, 0.9);
}

.vcam-live {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.5rem;
    color: #f87171;
    font-weight: bold;
}

.vcam-reddot {
    width: 4px;
    height: 4px;
    background: #f87171;
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}

.vcam-loc {
    position: absolute;
    bottom: 0.3rem;
    right: 0.5rem;
    font-size: 0.5rem;
    color: rgba(150, 180, 220, 0.6);
    z-index: 20;
}

.vcam-res {
    position: absolute;
    bottom: 0.3rem;
    left: 0.5rem;
    font-size: 0.5rem;
    color: #4ade80;
    z-index: 20;
}

/* Scene and AI Elements */
.scene {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.scene-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to bottom, transparent, rgba(68, 117, 185, 0.1));
}

.person {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-head {
    background: rgba(150, 190, 255, 0.5);
    border-radius: 50%;
}

.p-body {
    background: rgba(100, 150, 220, 0.4);
    border-radius: 4px 4px 0 0;
    margin-top: 1px;
}

.p-shadow {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    filter: blur(2px);
}

.ai-box {
    position: absolute;
    border: 1px solid #4ade80;
    background: rgba(74, 222, 128, 0.1);
    z-index: 5;
    animation: boxPulse 2s infinite;
}

.ai-box.red {
    border-color: #f87171;
    background: rgba(248, 113, 113, 0.15);
}

.ai-box::after {
    content: attr(data-label);
    position: absolute;
    top: -14px;
    right: -1px;
    background: inherit;
    border: 1px solid inherit;
    border-bottom: none;
    padding: 1px 4px;
    font-size: 0.45rem;
    color: #fff;
    white-space: nowrap;
}

.ai-box.red::after {
    background: #f87171;
    border-color: #f87171;
}

.ai-box:not(.red)::after {
    background: #4ade80;
    border-color: #4ade80;
}

@keyframes boxPulse {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 0.3;
    }
}

/* Info Bar */
.cmd-infobar {
    display: flex;
    padding: 0.4rem 0.8rem;
    background: rgba(11, 19, 37, 0.3);
    border-top: 1px solid rgba(68, 117, 185, 0.15);
    gap: 12px;
}

.ib-stat {
    font-size: 0.55rem;
    color: rgba(150, 180, 220, 0.6);
}

.ib-v {
    font-weight: bold;
    color: rgba(220, 240, 255, 0.9);
}

.ib-v.ok {
    color: #4ade80;
}

/* Right Panel */
.cmd-panel {
    width: 160px;
    background: rgba(11, 19, 37, 0.3);
    border-right: 1px solid rgba(68, 117, 185, 0.15);
    display: flex;
    flex-direction: column;
}

.panel-hdr {
    padding: 0.6rem 0.8rem;
    font-size: 0.65rem;
    color: rgba(220, 240, 255, 0.9);
    border-bottom: 1px solid rgba(68, 117, 185, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-cnt {
    background: #fb923c;
    color: #fff;
    padding: 1px 5px;
    border-radius: 10px;
    font-size: 0.5rem;
}

.alerts-feed {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.alerts-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    animation: scrollAlerts 20s linear infinite;
}

@keyframes scrollAlerts {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.alerts-inner:hover {
    animation-play-state: paused;
}

.alert-item {
    padding: 0.5rem 0.8rem;
    border-bottom: 1px solid rgba(68, 117, 185, 0.08);
}

.alert-type {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.55rem;
    font-weight: bold;
    margin-bottom: 2px;
}

.alert-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.alert-dot.warn {
    background: #fb923c;
    box-shadow: 0 0 5px #fb923c;
}

.alert-dot.ok {
    background: #4ade80;
    box-shadow: 0 0 5px #4ade80;
}

.alert-dot.info {
    background: #60a5fa;
    box-shadow: 0 0 5px #60a5fa;
}

.alert-type.warn {
    color: #fb923c;
}

.alert-type.ok {
    color: #4ade80;
}

.alert-type.info {
    color: #60a5fa;
}

.alert-msg {
    font-size: 0.5rem;
    color: rgba(180, 210, 255, 0.7);
    line-height: 1.3;
}

.alert-time {
    font-size: 0.45rem;
    color: rgba(100, 140, 200, 0.4);
    margin-top: 3px;
}

/* Ensure mobile responsiveness */
@media (max-width: 768px) {
    .cmd-body {
        height: auto;
        flex-direction: column;
    }

    .cmd-sidebar {
        width: 100%;
        flex-direction: row;
        border-left: none;
        border-bottom: 1px solid rgba(68, 117, 185, 0.15);
        padding: 5px 10px;
        justify-content: space-around;
    }

    .sb-div {
        display: none;
    }

    .cmd-panel {
        width: 100%;
        border-right: none;
        border-top: 1px solid rgba(68, 117, 185, 0.15);
    }

    .alerts-feed {
        height: 80px;
    }

    .cam-area {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 6px;
    }

    .vcam.featured {
        grid-column: span 2;
        grid-row: auto;
        height: 130px;
    }

    .vcam {
        height: 75px;
    }

    /* Hide the last camera to save an entire row of vertical height */
    .vcam:last-child {
        display: none !important;
    }

    /* Fix topbar stats wrapping */
    .cmd-topbar {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .topbar-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    /* Fix bottom info bar squishing */
    .cmd-infobar {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .ib-stat {
        margin-right: 0 !important;
    }

    /* Hide floating chips on mobile to save vertical space */
    .cmd-wrap {
        display: block;
    }

    .cmd-chip {
        display: none !important;
    }

    .cmd-shell {
        order: 3;
        /* Move shell below the chips */
        width: 100%;
    }
}

/* =============================================
   BTN STORE & CCTV TABS
   ============================================= */

/* Store Button with Hover Effect */
.btn-store {
    background-color: var(--iona-blue);
    color: #ffffff;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(68, 117, 185, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-store:hover {
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(68, 117, 185, 0.6);
    transform: translateY(-2px);
}

/* CCTV Mini Tabs matching the design palette */
.cctv-mini-tabs {
    /* spacing handled by bootstrap utility classes */
}

.cctv-tab {
    background: #f8fafc;
    border: 1px solid rgba(68, 117, 185, 0.15);
    color: rgba(68, 117, 185, 0.8);
    padding: 0.4rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
}

.cctv-tab:hover {
    background: rgba(68, 117, 185, 0.1);
    color: var(--iona-blue);
    border-color: rgba(68, 117, 185, 0.3);
}

.cctv-tab.active {
    background: var(--iona-blue);
    color: #ffffff;
    border-color: var(--iona-blue);
    box-shadow: 0 4px 12px rgba(68, 117, 185, 0.3);
}

/* CCTV Specs Card */
.cctv-specs-card {
    background: #ffffff;
    border: 1px solid rgba(68, 117, 185, 0.15);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    box-shadow: 0 4px 20px rgba(68, 117, 185, 0.05);
}

.cctv-spec-body {
    display: none;
    animation: fadeIn 0.4s ease;
}

.cctv-spec-body.active {
    display: block;
}

.cctv-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(68, 117, 185, 0.08);
}

.cctv-spec-row:last-child {
    border-bottom: none;
}

.cctv-spec-row .lbl {
    font-size: 0.85rem;
    color: rgba(68, 117, 185, 0.8);
    font-weight: 500;
}

.cctv-spec-row .val {
    font-size: 0.95rem;
    color: var(--iona-blue);
    font-weight: bold;
    direction: ltr;
    /* Keeps 4K, 60m aligned properly */
    text-align: right;
}

.cctv-specs-tabs {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(68, 117, 185, 0.1);
}

/* Override layout for Grid style specs */
.cctv-specs-card {
    padding: 0;
    /* remove global padding, handle in rows */
}

.cctv-grid-row {
    margin: 0;
    border-bottom: 1px solid rgba(68, 117, 185, 0.08);
}

.cctv-grid-row:last-child {
    border-bottom: none;
}

.cctv-grid-col {
    padding: 1.2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: 1px solid rgba(68, 117, 185, 0.08);
}

.cctv-grid-col:nth-child(even) {
    border-left: none;
}

.cctv-grid-col .lbl {
    font-size: 0.8rem;
    color: rgba(68, 117, 185, 0.6);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.cctv-grid-col .val {
    font-size: 1.05rem;
    color: var(--iona-blue);
    font-weight: 700;
    direction: ltr;
    /* Keeps 4K, 60m aligned properly */
}

.cctv-specs-tabs {
    border-top: none;
    padding-top: 0;
}

/* Bento Box Layout for CCTV Specs */
.cctv-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 2rem;
}

.cctv-features-grid li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #4a5568;
}

.cctv-features-grid li i {
    color: var(--iona-blue);
    font-size: 1.1rem;
}

.bento-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.cctv-bento-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cctv-bento-item {
    flex: 1 1 200px;
    /* Grow to fill space, wrap automatically */
    background: #ffffff;
    border: 1px solid rgba(68, 117, 185, 0.1);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.cctv-bento-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(68, 117, 185, 0.08);
    border-color: rgba(68, 117, 185, 0.25);
}

.bento-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(68, 117, 185, 0.06);
    color: var(--iona-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.bento-text {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.bento-text .lbl {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 2px;
    font-weight: 500;
}

.bento-text .val {
    font-size: 0.95rem;
    color: #2b3a4a;
    font-weight: 700;
    direction: rtl;
}

/* Adjust mobile layout */
@media (max-width: 768px) {
    .cctv-bento-grid {
        gap: 8px;
    }

    .cctv-bento-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: right;
        padding: 8px 10px !important;
        gap: 8px;
    }

    .cctv-bento-item .bento-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 1rem !important;
    }

    .cctv-bento-item .bento-text {
        text-align: right;
    }

    .cctv-bento-item .lbl {
        font-size: 0.7rem;
        margin-bottom: 0;
    }

    .cctv-bento-item .val {
        font-size: 0.8rem;
    }

    .cctv-feature-chips {
        gap: 6px;
    }

    .cctv-chip {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
}

/* Enhanced Premium Features Grid */
.cctv-features-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-bottom: 2.5rem !important;
    padding: 0;
    list-style: none;
}

.cctv-features-grid li {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 1px solid rgba(68, 117, 185, 0.15) !important;
    padding: 10px 20px !important;
    border-radius: 100px !important;
    /* Premium Pill Shape */
    font-size: 0.95rem !important;
    color: #2b3a4a !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    box-shadow: 0 4px 15px rgba(68, 117, 185, 0.05) !important;
    transition: all 0.3s ease;
}

.cctv-features-grid li:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(68, 117, 185, 0.1) !important;
    border-color: rgba(68, 117, 185, 0.3) !important;
}

.cctv-features-grid li i {
    color: var(--iona-blue) !important;
    font-size: 1.25rem !important;
}

/* Enhanced Description */
.cctv-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
    border-right: 3px solid var(--iona-blue);
    padding-right: 15px;
    background: linear-gradient(90deg, rgba(68, 117, 185, 0.03) 0%, transparent 100%);
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0 8px 8px 0;
}

/* Modern Feature Chips */
.cctv-feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cctv-chip {
    background: #ffffff;
    color: var(--iona-blue);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(68, 117, 185, 0.15);
    box-shadow: 0 2px 8px rgba(68, 117, 185, 0.05);
    transition: all 0.2s ease;
}

.cctv-chip:hover {
    background: rgba(68, 117, 185, 0.04);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(68, 117, 185, 0.08);
}

.cctv-chip i {
    font-size: 1rem;
    color: var(--iona-primary);
    /* Golden accent for icons, or keep it blue */
}

/* Compact Bento Items */
.cctv-bento-item {
    padding: 10px 14px !important;
}

.bento-icon {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.1rem !important;
}

/* ═══════════════════════════════════════════════════════════
   EXTRACTED INLINE STYLES — moved from HTML to keep markup clean
   ═══════════════════════════════════════════════════════════ */

/* ── Window / traffic-light dots ── */
.wd-red {
    background: #FF5F57;
}

.wd-yellow {
    background: #FEBC2E;
}

.wd-green {
    background: #28C840;
}

/* ── Sidebar icon modifiers ── */
.sb-ico-rel {
    position: relative;
}

.sb-ico-bottom {
    margin-top: auto;
}

/* ── Scene person wrappers ── */
.scene-person-1 {
    position: relative;
    margin-left: 20%;
}

.scene-person-2 {
    position: relative;
    margin-right: 15%;
    margin-bottom: 4px;
}

.p-head-lg {
    width: 13px;
    height: 13px;
}

.p-body-lg {
    width: 16px;
    height: 26px;
}

.p-shadow-lg {
    width: 18px;
    height: 5px;
    margin-top: 1px;
}

.p-head-md {
    width: 11px;
    height: 11px;
    background: rgba(255, 107, 53, .6);
}

.p-body-md {
    width: 14px;
    height: 22px;
    background: rgba(255, 107, 53, .4);
}

.p-shadow-md {
    width: 16px;
    height: 4px;
    margin-top: 1px;
}

.p-head-sm {
    width: 9px;
    height: 9px;
}

.p-body-sm {
    width: 12px;
    height: 18px;
}

.person-faded {
    opacity: .5;
    transform: scale(.7);
}

.ai-box-cam1 {
    left: 28%;
    bottom: 18%;
    width: 52px;
    height: 72px;
    animation-delay: 0s;
}

.ai-box-cam2 {
    left: 62%;
    bottom: 15%;
    width: 44px;
    height: 60px;
    animation-delay: .6s;
}

.ai-box-cam3 {
    left: 35%;
    bottom: 20%;
    width: 36px;
    height: 48px;
    font-size: 0;
}

.vcam-scan-d1 {
    animation-delay: .7s;
}

.vcam-scan-d2 {
    animation-delay: 1.4s;
}

.vcam-scan-d3 {
    animation-delay: 2.1s;
}

.vcam-loc-sm {
    font-size: 7px;
}

.vcam-person-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ib-stat-push {
    margin-right: auto;
}

.ib-stat-brand {
    color: rgba(59, 158, 255, .6);
    font-size: 9px;
}


/* ═══════════════════════════════════════════════════════════════
   HERO SWIPER
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero section must be the positioning context for the pagination ── */
#hero {
    position: relative;
}

/* ── Swiper container: transparent wrapper, must not disturb hero layout ── */
.hero-swiper {
    position: relative;
    width: 100%;
    height: 100%;
    /* overflow:visible lets the floating cmd-chip cards breathe outside the frame */
    overflow: visible;
    z-index: 1;
}

/* ── Wrapper row: keep slides in a flat horizontal strip ── */
.hero-swiper .swiper-wrapper {
    align-items: stretch;
}

/* ── Each slide fills whatever height the hero-container needs ── */
.hero-swiper .swiper-slide {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    /* Let the original hero-container drive all sizing */
    flex-shrink: 0;
}

/* ── hero-container sits directly inside the slide; keep its own styles ── */
.hero-swiper .hero-container {
    width: 100%;
}

/* ══ Pagination dots ══════════════════════════════════════════ */
.hero-swiper-pagination {
    position: absolute !important;
    bottom: 24px !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    text-align: center !important;
    transform: none !important;
    -webkit-transform: none !important;
    z-index: 20 !important;
    pointer-events: none;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    border-radius: 4px;
    margin: 0 4px;
    cursor: pointer;
    pointer-events: all;
    transition: width 0.35s ease, background 0.35s ease;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 26px;
    border-radius: 4px;
}

/* ══ Navigation arrows — permanently hidden (dots only) ══════ */
.hero-swiper-prev,
.hero-swiper-next {
    display: none !important;
}

/* ══ Single-slide state — hide pagination too ════════════════ */
.hero-swiper.is-single .hero-swiper-pagination {
    display: none !important;
}

/* Gutenberg Editor Custom Styles for IONA Tech Header */
.iona-tech-block-wrapper .site-header {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: auto !important;
    background: #ffffff !important;
    border-bottom: 1px solid #eee !important;
    margin-bottom: 1rem !important;
}

.iona-tech-block-wrapper .site-header .navbar-collapse {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-basis: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-top: 0 !important;
}

.iona-tech-block-wrapper .site-header .navbar-toggler {
    display: none !important;
}

.iona-tech-block-wrapper .site-header .navbar-nav {
    flex-direction: row !important;
    display: flex !important;
    gap: 1.5rem !important;
    margin-bottom: 0 !important;
    align-items: center !important;
}

.iona-tech-block-wrapper .site-header .navbar-nav li {
    display: block !important;
}

.iona-tech-block-wrapper .site-header .navbar-nav li a {
    color: #0b1628 !important;
    /* Dark navy color */
    font-size: 1rem !important;
    font-weight: 600 !important;
    padding: 0.5rem 0.75rem !important;
    text-decoration: none !important;
}

.iona-tech-block-wrapper .site-header .nav-buttons-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.iona-tech-block-wrapper .site-header .btn-nav-cta {
    display: inline-block !important;
    width: auto !important;
    background: #1bbaff !important;
    /* Primary blue color */
    color: #fff !important;
    padding: 0.55rem 1.35rem !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    margin: 0 !important;
}

/* ─────────────────────────────────────────────────────────────
   PRE-FOOTER CTA CARD & CREATIVE FOOTER
   ───────────────────────────────────────────────────────────── */

.pre-footer-cta-wrapper {
    position: relative !important;
    z-index: 50 !important;
    margin-top: 5rem !important;
    margin-bottom: -120px !important;
}

.pre-footer-cta-wrapper .btn {
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 0.55rem 1.35rem !important;
    font-size: 16px;
}

.pre-footer-cta-card {
    background: linear-gradient(135deg, #4475B9 0%, #1E4FA0 100%) !important;
    border-radius: 24px !important;
    padding: 3.5rem 4rem !important;
    box-shadow: 0 10px 50px rgba(68, 117, 185, 0.3) !important;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.pre-footer-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.cta-text-side {
    position: relative;
    z-index: 2;
}

.cta-text-side h3 {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 0.8rem !important;
}

.cta-text-side p {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0 !important;
    max-width: 600px;
    line-height: 1.7 !important;
}

.cta-btn-side {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row !important;
    gap: 1.2rem !important;
    min-width: max-content;
}

.btn-cta-primary {
    background: #ffffff !important;
    color: #4475B9 !important;
    padding: 1rem 2.2rem !important;
    border-radius: 12px !important;
    font-weight: 800 !important;
    text-align: center;
    border: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.btn-cta-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.btn-cta-outline {
    background: transparent !important;
    color: #ffffff !important;
    padding: 1rem 2.2rem !important;
    border-radius: 12px !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    transition: all 0.3s ease !important;
}

.btn-cta-outline:hover {
    border-color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-3px) !important;
}

.creative-footer {
    background: #0B1325;
    color: #94a3b8;
    position: relative;
    overflow: hidden;
    padding-top: 120px !important;
}

.creative-footer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(68, 117, 185, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.creative-footer::after {
    content: '';
    position: absolute;
    bottom: 60px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(68, 117, 185, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.footer-wave {
    line-height: 0;
    margin-bottom: -2px;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

.footer-body {
    padding: 3.5rem 0 2.5rem;
    position: relative;
    z-index: 2;
    padding-top: 6rem !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 3rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.2rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.fsoc-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.fsoc-btn:hover {
    background: #4475B9;
    border-color: #4475B9;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(68, 117, 185, 0.3);
}

.fsoc-whatsapp:hover {
    background: #22c55e;
    border-color: #22c55e;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.footer-col-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-col-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4475B9;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(68, 117, 185, 0.6);
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav-list li a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s ease, gap 0.2s ease;
}

.footer-nav-list li a i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.footer-nav-list li a:hover {
    color: #93c5fd;
    gap: 0.7rem;
}

.footer-nav-list li a:hover i {
    transform: translateX(-3px);
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: #64748b;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.footer-contact-item:hover {
    color: #93c5fd;
}

.fci-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(68, 117, 185, 0.12);
    border: 1px solid rgba(68, 117, 185, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4475B9;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.footer-contact-item:hover .fci-icon {
    background: rgba(68, 117, 185, 0.25);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    color: #475569;
}

/* ─── Back to top ─── */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 48px;
    height: 48px;
    background: #4475B9;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 12px 32px -4px rgba(11, 22, 40, 0.03), 0 20px 50px -8px rgba(11, 22, 40, 0.07);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* ─── Floating Logo Widget (Bottom Right) ─── */
.floating-logo-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    z-index: 1050;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-logo-widget:hover {
    transform: scale(1.08) translateY(-2px);
}

.floating-widget-circle {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(11, 22, 40, 0.12);
    border: 1px solid rgba(11, 22, 40, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px;
    position: relative;
    overflow: hidden;
}

.floating-widget-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-bottom: 2px;
}

.floating-widget-text {
    font-size: 0.5rem;
    font-weight: 800;
    color: #0B1325;
    letter-spacing: 0.05em;
    line-height: 1;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ==========================================================================
   Editor-Specific Overrides (Force visibility of scroll-animated elements)
   ========================================================================== */
.editor-styles-wrapper .reveal,
.editor-styles-wrapper .sectors-panel,
.editor-styles-wrapper .sector-card,
.editor-styles-wrapper .services-grid,
.editor-styles-wrapper .solutions-slide,
.editor-styles-wrapper .service-card,
.editor-styles-wrapper .sectors-band-item,
.editor-styles-wrapper .about-stat-item,
.editor-styles-wrapper .why-card,
.editor-styles-wrapper .methodology-step {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    visibility: visible !important;
}

[dir="rtl"] .wpcf7,
[dir="rtl"] .contact-section .contact-form-cf7 form,
[dir="rtl"] .contact-section.contact-form-cf7 form input {
    direction: rtl !important;
    text-align: right !important;
}

[dir="ltr"] .cf-float-label {
    right: 3rem !important;
    left: unset !important;
}

[dir="ltr"] .cf-custom-select option {
    text-align: right !important;
}

.cf-custom-select .cf-float-label {
    margin-top: -10px;
}

/* ==========================================================================
   Solutions Block – CCTV Bento Specs Grid (missing from plugin stylesheet)
   ========================================================================== */

.bento-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.cctv-bento-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cctv-bento-item {
    flex: 1 1 200px;
    background: #ffffff;
    border: 1px solid rgba(68, 117, 185, 0.1);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.cctv-bento-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(68, 117, 185, 0.08);
    border-color: rgba(68, 117, 185, 0.25);
}

.bento-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(68, 117, 185, 0.06);
    color: var(--iona-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.bento-text {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.bento-text .lbl {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 2px;
    font-weight: 500;
}

.bento-text .val {
    font-size: 0.95rem;
    color: #2b3a4a;
    font-weight: 700;
    direction: rtl;
}

@media (max-width: 768px) {
    .cctv-bento-grid {
        gap: 8px;
    }

    .cctv-bento-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: right;
        padding: 8px 10px !important;
        gap: 8px;
    }

    .cctv-bento-item .bento-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 1rem !important;
    }

    .cctv-bento-item .bento-text {
        text-align: right;
    }
}

#iona-landing-page .section-title {
    display: block !important;
}

body#iona-landing-page {
    font-family: 'DM Sans', 'IBM Plex Sans', 'DIN Next Arabic', 'Segoe UI', Tahoma, sans-serif;
}

#iona-landing-page .select-resize-ghost,
#iona-landing-page .select2-container .select2-choice,
#iona-landing-page .select2-container .select2-selection,
#iona-landing-page input[type=date],
#iona-landing-page input[type=email],
#iona-landing-page input[type=number],
#iona-landing-page input[type=password],
#iona-landing-page input[type=search],
#iona-landing-page input[type=tel],
#iona-landing-page input[type=text],
#iona-landing-page input[type=url],
#iona-landing-page select,
#iona-landing-page textarea {
    background-color: transparent;
    box-shadow: unset;
    border: none;
    padding: 1.6rem 3rem 0.6rem 1.2rem;
}

#iona-landing-page input[type=email]:focus,
#iona-landing-page input[type=number]:focus,
#iona-landing-page input[type=password]:focus,
#iona-landing-page input[type=search]:focus,
#iona-landing-page input[type=tel]:focus,
#iona-landing-page input[type=text]:focus,
#iona-landing-page select:focus,
#iona-landing-page textarea:focus {
    background-color: unset;
    box-shadow: unset;
}

#iona-landing-page .btn-contact-submit {
    max-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#iona-landing-page .floating-logo-widget {
    display: none;
}

#iona-landing-page .back-to-top {
    right: unset;
    left: 30px;
}

#iona-landing-page .joinchat__button {
    bottom: 8px;
}

#iona-landing-page button {
    max-width: unset;
    min-height: unset;
}

#iona-landing-page .wpcf7 label {
    width: unset;
}

#iona-landing-page .cf-field-icon {
    top: 13px;
}

#iona-landing-page .sol-cta-row {
    margin-top: 30px;
}

#iona-landing-page .hero.hero-premium {
    padding-top: calc(var(--header-h-desktop, 80px) + 2rem) !important;
}

#iona-landing-page button {
    margin-left: unset !important;
}

#iona-landing-page .row {
    max-width: 100% !important;
}

#iona-landing-page h1,
#iona-landing-page h2,
#iona-landing-page h3,
#iona-landing-page h4,
#iona-landing-page h5,
#iona-landing-page h6,
#iona-landing-page .heading-font,
#iona-landing-page .off-canvas-center .nav-sidebar.nav-vertical>li>a {
    font-family: 'DM Sans', 'IBM Plex Sans', 'DIN Next Arabic', 'Segoe UI', Tahoma, sans-serif !important;
}

@media (max-width: 575px) {

    #iona-landing-page .btn-cta-primary,
    #iona-landing-page .btn-cta-outline {
        max-width: 80%;
    }
}

@media(max-width:700px) {
    #iona-landing-page .contact-section .row>* {
        padding-left: unset !important;
        padding-right: unset !important;
    }
}