@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');


/* ── Root Theme ── */
:root {
    --primary-color: #F57C20;
    --secondary-color: #3865AE;
    --dark-blue: #2F3680;
    --text-color: #333333;
    --border-radius: 8px;
    --transition: 0.3s ease;
    --bg: #f4f6fb;
    --card-bg: #ffffff;
    --border: #e4e8f0;
    --muted: #6b7280;
    --white: #ffffff;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text-color);
    background: #f8f9fa;
    line-height: 1.8;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-blue);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

.btn-primary-theme {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 14px;
}

.btn-primary-theme:hover {
    background: var(--dark-blue);
}

.container {
    width: 100%;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Small devices (mobile) */
@media (min-width:576px) {
    .container {
        max-width: 540px;
    }
}

/* Tablets */
@media (min-width:768px) {
    .container {
        max-width: 720px;
    }
}

/* Small laptops */
@media (min-width:992px) {
    .container {
        max-width: 960px;
    }
}

/* Desktops */
@media (min-width:1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Large screens */
@media (min-width:1400px) {
    .container {
        max-width: 1320px;
    }
}

/* ══════════════════════════════════════
       TOPBAR
    ══════════════════════════════════════ */
.topbar {
    background: var(--dark-blue);
    padding: 7px 0;
    font-size: 0.78rem;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.72);
    transition: var(--transition);
}

.topbar-item:hover {
    color: #fff;
}

.topbar-item i {
    color: var(--primary-color);
    font-size: 0.82rem;
}

.topbar-sep {
    width: 1px;
    height: 13px;
    background: rgba(255, 255, 255, 0.16);
    display: inline-block;
    vertical-align: middle;
}

.topbar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    transition: var(--transition);
}

.topbar-social a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* ══════════════════════════════════════
       SITE HEADER
    ══════════════════════════════════════ */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 18px rgba(47, 54, 128, 0.08);
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(47, 54, 128, 0.14);
}

.navbar {
    padding: 0;
    min-height: 70px;
}

/* ── Logo ── */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 12px 0;
    gap: 10px;
}

/* Image logo */
.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* Fallback text logo (shown if image fails / no src) */
.logo-fallback {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--primary-color), #d96008);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    color: #fff;
    letter-spacing: -1px;
    box-shadow: 0 4px 14px rgba(245, 124, 32, 0.38);
    flex-shrink: 0;
}

.logo-text .name {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--dark-blue);
    letter-spacing: -0.3px;
    line-height: 1.1;
}

.logo-text .name span {
    color: var(--primary-color);
}

.logo-text .tagline {
    font-size: 0.64rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    opacity: 0.75;
}

/* ── Nav Links ── */
.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    padding: 10px 18px !important;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color var(--transition);
    white-space: nowrap;
    font-size: 15px;
    margin: 15px 0;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 13px;
    right: 13px;
    height: 2.5px;
    background: var(--primary-color);
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active-link {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active-link::after {
    transform: scaleX(1);
}

.nav-link .chevron {
    font-size: 13px;
    /* opacity: 0.5; */
    transition: transform var(--transition);
    align-items: center;
    display: flex;
}

.navbar-nav .nav-item:hover .chevron,
.navbar-nav .nav-item.show .chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* ── Standard Dropdown ── */
.standard-drop {
    border: none;
    border-top: 3px solid var(--primary-color);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: 0 10px 36px rgba(47, 54, 128, 0.13);
    min-width: 210px;
    margin-top: 0 !important;
    animation: dropSlide 0.18s ease;
}

@keyframes dropSlide {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

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

.standard-drop .dropdown-item {
    font-size: 15px;
    font-weight: 450;
    color: var(--text-color);
    padding: 9px 13px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: var(--transition);
}

.standard-drop .dropdown-item i {
    width: 18px;
    font-size: 0.88rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    text-align: center;
}

.standard-drop .dropdown-item:hover {
    background: rgba(245, 124, 32, 0.07);
    color: var(--primary-color);
}

.standard-drop .dropdown-item:hover i {
    color: var(--primary-color);
}

.standard-drop .dropdown-divider {
    margin: 4px 8px;
    opacity: 0.12;
}

.dropdown-menu {
    display: none;
    transition: 0.3s;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

@media (min-width:992px) {
    .navbar .nav-item:hover .dropdown-menu {
        display: block;
    }
}

/* ── Header Action Buttons ── */
.btn-search {
    width: 38px;
    height: 38px;
    border-radius: var(--border-radius);
    border: 1.5px solid rgba(47, 54, 128, 0.13);
    background: transparent;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-search:hover {
    background: rgba(56, 101, 174, 0.07);
    border-color: var(--secondary-color);
}

.btn-outline-nav {
    height: 38px;
    padding: 0 16px;
    border-radius: var(--border-radius);
    border: 1.5px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-outline-nav:hover {
    background: var(--secondary-color);
    color: #fff;
}

.btn-primary-nav {
    height: 38px;
    padding: 0 18px;
    border-radius: var(--border-radius);
    border: none;
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(245, 124, 32, 0.3);
}

.btn-primary-nav:hover {
    background: var(--dark-blue);
    box-shadow: 0 4px 16px rgba(47, 54, 128, 0.28);
}

/* Toggler */
.navbar-toggler {
    border: 1.5px solid rgba(47, 54, 128, 0.18);
    border-radius: var(--border-radius);
    padding: 6px 10px;
    transition: var(--transition);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler:hover {
    background: rgba(47, 54, 128, 0.05);
}

.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='%232F3680' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ══════════════════════════════════════
       DEMO PAGE CONTENT
    ══════════════════════════════════════ */
.demo-body {
    padding: 64px 0;
    text-align: center;
}

.demo-body .eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 14px;
}

.demo-body h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--dark-blue);
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.demo-body h1 span {
    color: var(--primary-color);
}

.demo-body p {
    color: #666;
    max-width: 480px;
    margin: 0 auto 28px;
    font-size: 1rem;
}

.demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 124, 32, 0.09);
    color: var(--primary-color);
    border: 1px solid rgba(245, 124, 32, 0.22);
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 14px;
    margin-bottom: 20px;
}

.demo-badge i {
    font-size: 0.7rem;
}


/* ══════════════════════════════════
       FOOTER MAIN
    ══════════════════════════════════ */
.site-footer {
    background: var(--dark-blue);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -70px;
    right: -90px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: 70px;
    left: -70px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(47, 54, 128, 0.16);
    pointer-events: none;
}

/* 4 equal-ish columns */
.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
    gap: 36px 40px;
    position: relative;
    z-index: 1;
}

/* Shared column title */
.col-heading {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.col-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* ─────────────────────────
       COL 1 — Logo + About
    ───────────────────────── */
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.logo-name {
    font-weight: 800;
    font-size: 1.08rem;
    color: #fff;
    letter-spacing: -0.2px;
    line-height: 1.1;
}

.logo-name span {
    color: var(--primary-color);
}

.logo-sub {
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.78;
    margin-bottom: 22px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* ─────────────────────────
       COL 2 & 3 — Links
    ───────────────────────── */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: rgb(255 255 255 / 83%);
    transition: var(--transition);
}

.footer-links a i {
    font-size: 0.62rem;
    color: var(--primary-color);
    opacity: 0.7;
    flex-shrink: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-links a:hover i {
    opacity: 1;
}

/* ─────────────────────────
       COL 4 — Contact
    ───────────────────────── */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.contact-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 2px;
}


.contact-value {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
}

.contact-value a {
    color: rgba(255, 255, 255, 0.72);
}

.contact-value a:hover {
    color: #fff;
}

/* ── Divider ── */
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0 0;
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════
       BOTTOM BAR
    ══════════════════════════════════ */
.footer-bottom {
    background: var(--dark-blue);
    padding: 15px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.copy-text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.44);
}

.copy-text span {
    color: var(--primary-color);
    font-weight: 600;
}

.policy-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.policy-links a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.42);
    transition: var(--transition);
}

.policy-links a:hover {
    color: #fff;
}

.ssl-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
}

.ssl-badge i {
    color: var(--primary-color);
}

/* ══════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════ */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }
}

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

    .newsletter-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .nl-input {
        width: 100%;
    }

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

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .policy-links {
        justify-content: center;
    }
}

/* ══════════════════════════════════════════
       HERO SECTION
    ══════════════════════════════════════════ */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #f0f4ff;
}

/* ─────────────────────────────────────────
       GRID BOX BACKGROUND
    ───────────────────────────────────────── */
.hero-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Small box grid lines */
.hero-grid-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(47, 54, 128, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47, 54, 128, 0.07) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Fade mask — edges fade out, center bright */
.hero-grid-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%,
            transparent 30%,
            #f0f4ff 80%);
}


/* ─────────────────────────────────────────
       HERO CONTENT — centered
    ───────────────────────────────────────── */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
    padding: 60px 0;
}

/* Eyebrow */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 124, 32, 0.1);
    border: 1px solid rgba(245, 124, 32, 0.28);
    border-radius: 99px;
    padding: 6px 18px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 28px;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {

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

    50% {
        opacity: 0.35;
        transform: scale(0.65);
    }
}

/* Headline */
.hero-headline {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.15;
    letter-spacing: -0.035em;
    margin-bottom: 22px;
}

.hero-headline .orange {
    color: var(--primary-color);
}

.hero-headline .blue {
    color: var(--secondary-color);
}

/* Underline word */
.u-line {
    position: relative;
    display: inline-block;
}

.u-line::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 3px;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    opacity: 0.35;
}

/* Description */
.hero-desc {
    font-size: 1.05rem;
    color: #5a6479;
    line-height: 1.82;
    margin: 0 auto 38px;
    max-width: 580px;
    font-weight: 400;
}

/* Buttons */
.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 52px;
    padding: 0 32px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(245, 124, 32, 0.36);
}

.btn-hero-primary:hover {
    background: #d9660d;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(245, 124, 32, 0.44);
    color: #fff;
}

.btn-hero-primary i {
    transition: transform var(--transition);
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 52px;
    padding: 0 26px;
    background: #fff;
    color: var(--secondary-color);
    border: 1.5px solid rgba(56, 101, 174, 0.28);
    border-radius: var(--border-radius);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(47, 54, 128, 0.08);
}

.btn-hero-outline:hover {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Stats strip */
.hero-stats {
    display: inline-flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid rgba(47, 54, 128, 0.1);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(47, 54, 128, 0.09);
    overflow: hidden;
}

.hstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    position: relative;
}

.hstat+.hstat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: rgba(47, 54, 128, 0.1);
}

.hstat-val {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--dark-blue);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 4px;
}

.hstat-val .accent {
    color: var(--primary-color);
}

.hstat-lbl {
    font-size: 0.71rem;
    color: #9099b2;
    font-weight: 500;
    white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .hero-stats {
        flex-wrap: wrap;
        border-radius: 12px;
    }

    .hstat {
        flex: 1 1 45%;
        padding: 16px 20px;
    }

    .hstat+.hstat::before {
        display: none;
    }

    .corner-tl,
    .corner-tr,
    .corner-bl,
    .corner-br {
        display: none;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        width: 100%;
    }

    .hstat {
        flex: 1 1 100%;
        border-bottom: 1px solid rgba(47, 54, 128, 0.08);
    }

    .hstat:last-child {
        border-bottom: none;
    }
}

/* ══════════════════════════════════════
       CLIENT SECTION
    ══════════════════════════════════════ */
.clients-section {
    background: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Faint dot bg */
.clients-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(47, 54, 128, 0.06) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    pointer-events: none;
}


/* ── Marquee track ── */
.marquee-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* Left/right fade edges */
    mask-image: linear-gradient(90deg,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(90deg,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%);
    padding: 12px 0;
}

.marquee-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

/* Second track scrolls opposite for depth */
.marquee-track-reverse {
    animation: marqueeScrollReverse 32s linear infinite;
    margin-top: 16px;
}

.marquee-track-reverse:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeScrollReverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ── Individual logo card ── */
.logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1.5px solid rgba(47, 54, 128, 0.09);
    border-radius: var(--border-radius);
    padding: 18px 32px;
    margin: 0 8px;
    min-width: 180px;
    height: 76px;
    transition: var(--transition);
    flex-shrink: 0;
    cursor: pointer;
}

.logo-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 18px rgba(245, 124, 32, 0.14);
    transform: translateY(-3px);
}

.logo-card img {
    max-width: 140px;
    max-height: 46px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-card:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Placeholder logo for missing images */
.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-icon {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.lp-text {
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: -0.02em;
}

/* ── Divider line ── */
.marquee-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 36px 0 0;
    position: relative;
    z-index: 1;
}

.marquee-divider::before,
.marquee-divider::after {
    content: '';
    flex: 1;
    max-width: 160px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(47, 54, 128, 0.15));
}

.marquee-divider::after {
    background: linear-gradient(90deg, rgba(47, 54, 128, 0.15), transparent);
}

.divider-diamond {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    transform: rotate(45deg);
    border-radius: 1px;
}


/* ── Common section eyebrow / title (shared style) ── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    opacity: 0.5;
}

.section-title {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-weight: 800;
    color: var(--dark-blue);
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ══════════════════════════════════════
       ABOUT SECTION
    ══════════════════════════════════════ */
.about-section {
    background: #fff;
    padding: 0 0 60px;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(47, 54, 128, 0.055) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 124, 32, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Section header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px;
    position: relative;
    z-index: 1;
}

/* Two-column row */
.about-body {
    position: relative;
    z-index: 1;
}

/* ── LEFT: text content ── */
.about-para {
    font-size: 0.95rem;
    color: #5a6479;
    line-height: 1.82;
    margin-bottom: 16px;
}

.about-bold-label {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin: 22px 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-bold-label::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 2px;
    flex-shrink: 0;
}

.about-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 28px;
    padding-left: 0 !important;
}

.about-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 0.9rem;
    color: #5a6479;
    line-height: 1.65;
}

.check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(245, 124, 32, 0.1);
    border: 1.5px solid rgba(245, 124, 32, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 1px;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 0 28px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(245, 124, 32, 0.32);
}

.btn-about:hover {
    background: var(--dark-blue);
    box-shadow: 0 6px 20px rgba(47, 54, 128, 0.28);
    transform: translateY(-2px);
    color: #fff;
}

.btn-about i {
    transition: transform var(--transition);
}

.btn-about:hover i {
    transform: translateX(4px);
}

/* ── RIGHT: 2x2 service cards ── */
.service-card {
    background: #f8f9ff;
    border: 1.5px solid rgba(47, 54, 128, 0.08);
    border-radius: 14px;
    padding: 28px 22px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 0 0 14px 14px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(47, 54, 128, 0.11);
    border-color: transparent;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.sc-1::after {
    background: var(--primary-color);
}

.sc-2::after {
    background: var(--secondary-color);
}

.sc-3::after {
    background: var(--dark-blue);
}

.sc-4::after {
    background: var(--primary-color);
}

.sc-num {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(47, 54, 128, 0.05);
    line-height: 1;
}

.sc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.sc-1 .sc-icon {
    background: rgba(245, 124, 32, 0.1);
    color: var(--primary-color);
}

.sc-2 .sc-icon {
    background: rgba(56, 101, 174, 0.1);
    color: var(--secondary-color);
}

.sc-3 .sc-icon {
    background: rgba(47, 54, 128, 0.1);
    color: var(--dark-blue);
}

.sc-4 .sc-icon {
    background: rgba(245, 124, 32, 0.1);
    color: var(--primary-color);
}

.service-card:hover .sc-icon {
    transform: scale(1.08);
}

.sc-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.sc-text {
    font-size: 0.83rem;
    color: #6a7080;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
    .about-body .col-lg-6:last-child {
        margin-top: 36px;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 56px 0;
    }
}

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

/* ══════════════════════════════════════
       SECTION
    ══════════════════════════════════════ */
.crm-about-section {
    background: #fff;
    padding: 0 0 60px;
}

/* ── Service Card ── */
.service-card {
    background: #f8f9ff;
    border: 1.5px solid rgba(47, 54, 128, 0.09);
    border-radius: 12px;
    padding: 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.service-card:hover {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 8px 28px rgba(245, 124, 32, 0.12);
    transform: translateY(-4px);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(245, 124, 32, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.card-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.card-icon i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.card-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.card-text {
    font-size: 0.84rem;
    color: #6a7080;
    line-height: 1.72;
    flex: 1;
    margin-bottom: 18px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-color);
}

.card-link i {
    transition: transform var(--transition);
    font-size: 0.78rem;
}

.card-link:hover {
    color: var(--dark-blue);
}

.card-link:hover i {
    transform: translateX(4px);
}

/* ══════════════════════════════════════════
       TRUST BAR (newsletter section redesigned)
    ══════════════════════════════════════════ */
.crm-newsletter-section {
    background: #fff;
    padding: 0;
    position: relative;
}

.trust-bar {
    background: var(--dark-blue);
    padding: 0;
}

.trust-items {
    display: flex;
    align-items: stretch;
}

.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 28px;
    position: relative;
    transition: var(--transition);
}

.trust-item+.trust-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.trust-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(245, 124, 32, 0.15);
    border: 1px solid rgba(245, 124, 32, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.trust-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.trust-icon i {
    font-size: 1.15rem;
    color: var(--primary-color);
}

.trust-item:hover .trust-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.trust-item:hover .trust-icon i {
    color: #fff;
}

.trust-text h5 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

.trust-text p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ══════════════════════════════════════════
       CTA + CONTACT FORM SECTION
    ══════════════════════════════════════════ */
#ready-to-grow {
    background: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* dot bg */
#ready-to-grow::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(47, 54, 128, 0.055) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    pointer-events: none;
}

/* orange blob */
#ready-to-grow::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 124, 32, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Left info panel ── */
.contact-info-panel {
    position: relative;
    z-index: 1;
    padding-right: 32px;
}

/* Contact details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cd-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius);
    background: rgba(245, 124, 32, 0.1);
    border: 1.5px solid rgba(245, 124, 32, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-detail-item:hover .cd-icon {
    background: var(--primary-color);
    color: #fff;
}

.cd-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #aab0c0;
    margin-bottom: 2px;
}

.cd-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.cd-value a {
    color: var(--dark-blue);
}

.cd-value a:hover {
    color: var(--primary-color);
}

/* Why us list */
.why-us {
    margin-top: 36px;
}

.why-us-title {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5d616c;
    margin-bottom: 14px;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.why-us-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #5a6479;
}

.why-us-item i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(245, 124, 32, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* ── Right: Form card ── */
.contact-form-card {
    background: #f8f9ff;
    border: 1.5px solid rgba(47, 54, 128, 0.08);
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    z-index: 1;
}

.form-greeting {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 4px;
}

.form-greeting span {
    color: var(--primary-color);
}

.form-sub {
    font-size: 0.83rem;
    color: #8a91a8;
    margin-bottom: 24px;
}

/* Form fields */
.form-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #5a6479;
    margin-bottom: 5px;
}

.form-control,
.form-select {
    font-size: 0.86rem;
    color: var(--text-color);
    border: 1.5px solid rgba(47, 54, 128, 0.1);
    border-radius: var(--border-radius);
    background: #fff;
    padding: 10px 14px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(245, 124, 32, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #bbb;
}

/* Phone row with country code */
.phone-row {
    display: flex;
    gap: 8px;
}

.phone-code {
    width: 70px;
    flex-shrink: 0;
    text-align: center;
    font-weight: 600;
    color: var(--dark-blue);
    background: #eef2fb;
    border: 1.5px solid rgba(47, 54, 128, 0.1);
}

/* Captcha */
.captcha-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.captchacodebox {
    width: 42px;
    height: 42px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    border: 1.5px solid rgba(47, 54, 128, 0.12);
    border-radius: var(--border-radius);
    background: #fff;
    color: var(--dark-blue);
    transition: var(--transition);
}

.captchacodebox:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(245, 124, 32, 0.1);
    outline: none;
}

.captcha-display {
    background: var(--dark-blue);
    color: #fff;
    padding: 10px 16px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    user-select: none;
    flex-shrink: 0;
}

/* Error text */
.error {
    font-size: 0.73rem;
    color: #e53e3e;
    margin-top: 3px;
    display: block;
}

/* Submit button */
.btn-submit {
    width: 100%;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(245, 124, 32, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    background: var(--dark-blue);
    box-shadow: 0 6px 20px rgba(47, 54, 128, 0.28);
    transform: translateY(-2px);
}

.btn-submit i {
    transition: transform var(--transition);
}

.btn-submit:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-info-panel {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .trust-items {
        flex-wrap: wrap;
    }

    .trust-item {
        flex: 1 1 50%;
    }

    .trust-item+.trust-item::before {
        display: none;
    }
}

@media (max-width: 575px) {
    #ready-to-grow {
        padding: 56px 0;
    }

    .trust-item {
        flex: 1 1 100%;
    }

    .contact-form-card {
        padding: 24px 18px;
    }
}

#crm-banner-inner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-blue) 100%);
    text-align: center;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle radial glow behind content */
#crm-banner-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

#crm-banner-inner .cd-headline,
#crm-banner-inner h1 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 14px;
}

#crm-banner-inner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 500px;
    margin: 0 auto;
}

/* Breadcrumb */
.crm-breadcrumb {
    display: flex;
    justify-content: center;
}

.crm-breadcrumb-list {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 8px 20px;
    margin: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(6px);
}

.crm-breadcrumb-item a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #f0a500;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.crm-breadcrumb-item a:hover {
    opacity: 0.75;
    text-decoration: none;
}

.crm-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
}

.crm-breadcrumb-item.active {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
}

/* SECTION LABEL */
.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary-color);
    white-space: nowrap;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* CONTACT CARDS */
.c-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 13px;
    box-shadow: 0 2px 8px rgba(47, 54, 128, 0.05);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.c-card:hover {
    border-color: var(--primary-color);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(47, 54, 128, 0.10);
}

.c-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #fff3e8, #ffe0c2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
}

.c-card h6 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2px;
}

.c-card a {
    color: var(--dark-blue);
    font-size: 14px;
    font-weight: 600;
}

.c-card a:hover {
    color: var(--primary-color);
}

/* PITCH */
.pitch {
    background: linear-gradient(145deg, var(--dark-blue) 0%, var(--secondary-color) 100%);
    border-radius: var(--border-radius);
    padding: 26px 22px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pitch::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.pitch::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -30px;
    width: 170px;
    height: 170px;
    background: rgba(245, 124, 32, 0.12);
    border-radius: 50%;
}

.pitch-inner {
    position: relative;
    z-index: 1;
}

.pitch h2 {
    color: #fff;
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 800;
    line-height: 1.3;
}

.pitch h2 em {
    font-style: normal;
    color: var(--primary-color);
}

.pitch p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.65;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    padding: 5px 0;
}

.chk {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: rgba(245, 124, 32, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 9px;
}

/* FORM CARD */
.form-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(47, 54, 128, 0.08);
}

.form-card-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--dark-blue), var(--secondary-color));
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.form-card-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 18px;
    margin-bottom: 24px;
}

.form-card-header h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.form-card-header p {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
}

/* SUBMIT */
.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), #e06510);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(245, 124, 32, 0.35);
    transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-submit:hover {
    opacity: .92;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245, 124, 32, 0.45);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

.fu {
    animation: fadeUp .4s ease both;
}

.fu-1 {
    animation-delay: .05s;
}

.fu-2 {
    animation-delay: .10s;
}

.fu-3 {
    animation-delay: .15s;
}

.fu-4 {
    animation-delay: .20s;
}

.fu-5 {
    animation-delay: .25s;
}

/* ═══════════════════════════════════════════
       SECTION 1 — Our Values  (light bg)
    ═══════════════════════════════════════════ */
.values-text h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.2;
}

.values-text p {
    font-size: 14.5px;
    line-height: 1.8;
}

.vm-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 28px 22px;
    height: 100%;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.vm-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 28px rgba(47, 54, 128, 0.11);
    transform: translateY(-4px);
}

.vm-card-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #fff3e8, #ffe0c2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 19px;
    margin-bottom: 16px;
}

.vm-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.vm-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
}

/* ═══════════════════════════════════════════
       SECTION 2 — Advantages (dark bg)
    ═══════════════════════════════════════════ */
.adv-head h3 {
    color: var(--dark-blue);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    line-height: 1.2;
}

.adv-head p {
    color: var(--muted);
    font-size: 14px;
}

.adv-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 28px 22px;
    height: 100%;
    box-shadow: 0 2px 12px rgba(47, 54, 128, 0.06);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    position: relative;
    z-index: 1;
}

.adv-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 28px rgba(47, 54, 128, 0.11);
    transform: translateY(-4px);
}

.adv-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--primary-color);
    border-radius: 9px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
}

.adv-card h4 {
    color: var(--dark-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.adv-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.72;
}

/* ═══════════════════════════════════════════
       SECTION 3 — Features (light bg)
    ═══════════════════════════════════════════ */
.feat-head h3 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    line-height: 1.2;
}

.feat-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    height: 100%;
    text-align: center;
    box-shadow: 0 2px 12px rgba(47, 54, 128, 0.06);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.feat-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 28px rgba(47, 54, 128, 0.12);
    transform: translateY(-4px);
}

.feat-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, var(--dark-blue), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: #fff;
    font-size: 22px;
}

.feat-card h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feat-card p {
    font-size: 14px;
    line-height: 1.8;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.fu {
    animation: fadeUp .45s ease both;
}

.fu-1 {
    animation-delay: .06s;
}

.fu-2 {
    animation-delay: .13s;
}

.fu-3 {
    animation-delay: .20s;
}

.fu-4 {
    animation-delay: .27s;
}


/* ════════════════════════════
       BANNER — split diagonal
    ════════════════════════════ */
.banner {
    min-height: 400px;
    background: var(--dark-blue);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

/* diagonal divider */
.banner-bg-left {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1e2560 100%);
    clip-path: polygon(0 0, 62% 0, 52% 100%, 0 100%);
    z-index: 0;
}

.banner-bg-right {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--secondary-color) 0%, var(--dark-blue) 100%);
    clip-path: polygon(55% 0, 100% 0, 100% 100%, 45% 100%);
    z-index: 0;
}

/* dot grid overlay */
.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.banner-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.banner-left h1 {
    font-size: clamp(22px, 3vw, 40px);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
}

.banner-left h1 em {
    font-style: normal;
    color: var(--primary-color);
}

.banner-left p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    line-height: 1.72;
    max-width: 440px;
}

/* orange accent line */
.accent-line {
    width: 36px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* breadcrumb */
.bc-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.75);
}

.bc-pill a {
    color: var(--primary-color);
    font-weight: 600;
}

.bc-pill .sep {
    color: rgba(255, 255, 255, 0.3);
}

/* trust chips */
.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.trust-chip i {
    color: var(--primary-color);
    font-size: 11px;
}

/* Form card */
.form-float {
    background: #fff;
    border-radius: 12px;
    padding: 24px 22px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.form-head-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 16px;
    font-weight: 700;
    color: #e06510;
    margin-bottom: 14px;
}

label.lbl {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--dark-blue);
    margin-bottom: 3px;
    display: block;
}

.fi {
    background: #f8f9fb;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-size: 12.5px;
    color: var(--text-color);
    padding: 6px 10px;
    width: 100%;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.fi:focus {
    border-color: var(--secondary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(56, 101, 174, 0.10);
    outline: none;
}

.fi::placeholder {
    color: #b0b7c3;
}

.error {
    color: #e53e3e;
    font-size: 10px;
    display: block;
    margin-top: 2px;
}

.captchacodebox {
    width: 34px !important;
    text-align: center;
    font-weight: 700;
    padding: 5px 0 !important;
    border-radius: 6px !important;
}

.captcha-num {
    background: linear-gradient(135deg, var(--dark-blue), var(--secondary-color));
    border-radius: 6px;
    letter-spacing: .14em;
}

.btn-go {
    background: linear-gradient(135deg, var(--primary-color), #e06510);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 700;
    width: 100%;
    box-shadow: 0 4px 14px rgba(245, 124, 32, 0.35);
    transition: opacity var(--transition), transform var(--transition);
}

.btn-go:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.intro-wrap h2 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
}

.intro-wrap p {
    font-size: 14.5px;
    line-height: 1.82;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 124, 32, 0.09);
    border: 1px solid rgba(245, 124, 32, 0.22);
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark-blue);
    color: #fff;
    border-radius: var(--border-radius);
    padding: 11px 26px;
    font-family: "Syne", sans-serif;
    font-size: 14px;
    font-weight: 700;
    transition: background var(--transition), transform var(--transition);
    border: none;
}

.btn-quote:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-1px);
}

.stat-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 18px 14px;
    text-align: center;
}

.stat-box .num {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1;
}

.stat-box .num span {
    color: var(--primary-color);
}

.stat-box small {
    font-size: 11px;
    color: var(--muted);
    display: block;
    margin-top: 4px;
}

.services-sec {
    background: #f5f5f5;
}

.timeline-line {
    width: 2px;
    background: var(--border);
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    z-index: 0;
}

.timeline-wrap {
    position: relative;
    padding-left: 60px;
}

.tl-dot {
    position: absolute;
    left: 0;
    top: 4px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--dark-blue), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Syne", sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(47, 54, 128, 0.25);
}

.tl-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 20px 22px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.tl-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 6px 24px rgba(47, 54, 128, 0.10);
}

.tl-card h4 {
    font-size: 18px;
    font-weight: 700;
    /* text-transform: uppercase; */
    letter-spacing: .05em;
    margin-bottom: 13px;
}

.tl-card p {
    font-size: 14px;
}

/* Left panel */
.services-panel {
    background: linear-gradient(160deg, var(--dark-blue) 0%, var(--secondary-color) 100%);
    border-radius: var(--border-radius);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
}

.services-panel::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: rgba(245, 124, 32, 0.12);
    border-radius: 50%;
}

.services-panel h2 {
    color: #fff;
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 800;
    line-height: 1.25;
}

.services-panel h2 em {
    font-style: normal;
    color: var(--primary-color);
}

.services-panel p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

/* ════════════════════════════
       SEC 3 — Products: horizontal scrolling cards
════════════════════════════ */

.product-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    flex: 0 0 180px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.product-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(47, 54, 128, 0.12);
}

.product-card:hover .p-icon {
    background: linear-gradient(135deg, var(--primary-color), #e06510);
}

.p-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, var(--dark-blue), var(--secondary-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: background var(--transition);
}

.product-card h6 {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0;
}


/* ══════════════════════════════════════
       SEC 2 — SERVICES
    ══════════════════════════════════════ */
.services-sec {
    background: var(--bg);
}

.sec-title-wrap h2 {
    font-size: clamp(20px, 2.6vw, 30px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
}

.svc-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 24px 22px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.svc-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 28px rgba(47, 54, 128, 0.10);
    transform: translateY(-4px);
}

.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity var(--transition);
}

.svc-card:hover::after {
    opacity: 1;
}

.svc-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    margin-bottom: 12px;
    display: block;
    transition: color var(--transition);
    position: absolute;
    right: 20px;
}

.svc-card:hover .svc-num {
    color: var(--primary-color);
}

.svc-icon {
    width: 44px;
    height: 44px;
    background: var(--bg);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 14px;
    transition: background var(--transition), color var(--transition);
}

.svc-card:hover .svc-icon {
    background: var(--primary-color);
    color: var(--white);
}

.svc-card h4 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.svc-card p {
    font-size: 14px;
    color: var(--muted);
}

/* ══════════════════════════════════════
       SEC 3 — PRODUCTS
    ══════════════════════════════════════ */


.products-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.products-sec::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 320px;
    height: 320px;
    background: rgba(56, 101, 174, 0.25);
    border-radius: 50%;
    pointer-events: none;
}

.products-sec h2 {
    font-size: clamp(20px, 2.6vw, 30px);
    font-weight: 700;
}

.prod-sub {
    color: rgba(255, 255, 255, 0.60);
    font-size: 14px;
}

.prod-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius);
    padding: 22px 16px;
    text-align: center;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    cursor: pointer;
    height: 100%;
}

.prod-card:hover {
    background: rgba(245, 124, 32, 0.14);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.prod-card:hover .prod-icon {
    background: var(--primary-color);
}

.prod-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    margin: 0 auto 12px;
    transition: background var(--transition);
}

.prod-card span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

/* ══════════════════════════════════════
       SEC 4 — CTA STRIP
    ══════════════════════════════════════ */
.cta-sec {
    background: var(--card-bg);
}

.cta-inner {
    background: var(--bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-inner h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cta-inner p {
    font-size: 14px;
    color: var(--muted);
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition);
}

.btn-contact:hover {
    background: var(--dark-blue);
    color: var(--white);
    transform: translateY(-1px);
}

/* ── New: training-specific ── */
.sec-intro {
    background: var(--card-bg);
}

.sec-points {
    background: var(--bg);
}

.sec-mistakes {
    background: var(--card-bg);
}

.sec-benefits {
    background: var(--dark-blue);
    position: relative;
    overflow: hidden;
}

.sec-benefits::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.sec-benefits::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 320px;
    height: 320px;
    background: rgba(56, 101, 174, 0.25);
    border-radius: 50%;
    pointer-events: none;
}

.sec-benefits h2 {
    color: var(--white);
}

.sec-benefits .tag-label {
    background: rgba(245, 124, 32, 0.15);
    border-color: rgba(245, 124, 32, 0.30);
}

.sec-benefits .prod-card span {
    font-size: 14px;
    font-weight: 700;
}

.sec-benefits .prod-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    margin-top: 8px;
}

.svc-card p {
    font-size: 14px;
    color: var(--muted);
}

.stat-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 20px 16px;
    text-align: center;
    transition: border-color var(--transition), transform var(--transition);
}

.stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.stat-card .val {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1;
}

.stat-card .val span {
    color: var(--primary-color);
}

.stat-card small {
    color: var(--muted);
    display: block;
    margin-top: 5px;
}


.five-col{
  width:16.66%;
}

@media (max-width:991px){
  .five-col{
    width:30%;
  }
}

@media (max-width:576px){
  .five-col{
    width:50%;
  }
}

@media (max-width:420px){
  .five-col{
    width:100%; 
  } 
} 


.industries-icon{
  font-size:38px;
  margin-bottom:12px;
  color: var(--dark-blue); 
}

.svc-card{ 
  background:#fff;
  padding:30px 20px;
  border-radius:10px;
  text-align:center;
  box-shadow:0 4px 15px rgba(0,0,0,0.05);
  height:100%;
}

.svc-card h4{
  font-size:16px;
  font-weight:600;
  margin:0;
}
