/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #38a169;
    --primary-dark: #276749;
    --primary-light: #48bb78;
    --accent: #68d391;
    --accent-light: #9ae6b4;
    --text: #2d3748;
    --text-light: #718096;
    --bg: #ffffff;
    --bg-alt: #f0fff4;
    --border: #c6f6d5;
    --shadow: 0 4px 24px rgba(56, 161, 105, 0.10);
    --radius: 8px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

.site-header .container {
    max-width: 100%;
    padding: 0;
}

.site-footer .container {
    max-width: 100%;
    padding: 0 48px;
}

/* ===== Header & Nav — fixed brand colors ===== */
.site-header {
    --primary: #38a169;
    --primary-dark: #276749;
    --accent: #68d391;
    --accent-light: #9ae6b4;
    --bg-alt: #f0fff4;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 48px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    flex: 1;
    margin: 0;
}

.main-nav {
    margin-left: auto;
}

.main-nav .nav-list {
    margin: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #38a169 0%, #48bb78 50%, #68d391 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: transparent;
    color: #fff;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 700;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #f0fff4;
    border: 1px solid rgba(56, 161, 105, 0.18);
    border-radius: 8px;
    color: var(--primary);
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.nav-toggle .icon-close {
    display: none;
}

.nav-toggle.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.nav-toggle.active .icon-burger {
    display: none;
}

.nav-toggle.active .icon-close {
    display: block;
    font-size: 1.25rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-list>li>a {
    display: block;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-list>li>a:hover,
.nav-list>li>a.active {
    color: var(--primary);
    background: var(--bg-alt);
}

.nav-link-btn {
    background: var(--primary) !important;
    color: #fff !important;
}

.nav-link-btn:hover,
.nav-link-btn.active {
    background: var(--primary-dark) !important;
    color: #fff !important;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex !important;
    align-items: center;
    gap: 4px;
}

.dropdown-toggle .nav-icon {
    margin-right: 2px;
}

.logo-icon i {
    font-size: 1rem;
}

.nav-icon {
    margin-right: 6px;
    font-size: 0.85rem;
    opacity: 0.85;
}

.dropdown-toggle .chevron {
    font-size: 0.65rem;
    margin-left: 4px;
    transition: transform var(--transition);
}

.has-dropdown.open .chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text);
    transition: var(--transition);
}

.dropdown-menu li a i {
    width: 18px;
    color: var(--primary);
    font-size: 0.85rem;
}

.dropdown-menu li a:hover {
    background: var(--bg-alt);
    color: var(--primary);
}

/* ===== Hero (Home banner only) ===== */
.hero-banner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 520px;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background: url('../images/hero-bg-1.jpeg') center / cover no-repeat;
}

.hero-banner::before,
.hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-banner::before {
    background-image: url('../images/hero-bg-1.jpeg');
    animation: heroSlideOne 12s infinite ease-in-out;
}

.hero-banner::after {
    background-image: url('../images/hero-bg-2.jpeg');
    animation: heroSlideTwo 12s infinite ease-in-out;
}

@keyframes heroSlideOne {

    0%,
    45% {
        opacity: 1;
    }

    50%,
    95% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes heroSlideTwo {

    0%,
    45% {
        opacity: 0;
    }

    50%,
    95% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 70, 35, 0.35) 0%, rgba(38, 110, 60, 0.25) 50%, rgba(56, 161, 105, 0.18) 100%);
    z-index: 1;
}


.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    color: #ffffff !important;
}

.hero-desc {
    font-size: clamp(0.88rem, 1.8vw, 0.98rem);
    opacity: 0.95;
    max-width: 820px;
    margin: 0 auto 24px;
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 16px 24px;
    border-radius: 8px;
    line-height: 1.6;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.hero-buttons .btn-outline {
    background: #2563eb !important;
    border-color: #2563eb !important;
    color: #ffffff !important;
}

.hero-buttons .btn-outline:hover {
    background: #1d4ed8 !important;
    border-color: #1d4ed8 !important;
    transform: translateY(-2px);
}

/* ===== Inner Page Head (gradient + canvas network) ===== */
.page-head {
    position: relative;
    padding: 48px 0 52px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background: radial-gradient(ellipse at top, var(--primary-light) 0%, var(--primary) 35%, var(--primary-dark) 100%);
}

.page-head-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.page-head-inner {
    position: relative;
    z-index: 1;
}

.page-head-title-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
}

.page-head-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page-head-icon i {
    font-size: 1.3rem;
}

.page-head h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 0;
}

.page-head-subtitle {
    opacity: 0.92;
    font-size: 0.82rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-gradient {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 60%, var(--bg-alt) 100%);
}

.section-gradient::before {
    content: '\f0c0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.04;
    pointer-events: none;
}


.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 400;
    border-radius: var(--radius);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    margin-left: 12px;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 0.85rem;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ===== Sections ===== */
.section {
    padding: 32px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 18px;
}

.section-header h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: var(--primary);
    margin-bottom: 4px;
}

.section-header p {
    color: var(--text-light);
    max-width: 100%;
    margin: 0 auto;
}

.section-header .underline {
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin: 6px auto 0;
    border-radius: 2px;
}

/* ===== Solutions Tab Layout ===== */
.sol-tabs {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: start;
}

.sol-tab-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sol-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    text-align: left;
    transition: all 0.25s ease;
    width: 100%;
}

.sol-tab:hover {
    background: #f0f4ff;
    border-color: #3b82f6;
}

.sol-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(56, 161, 105, 0.25);
}

.sol-tab-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    font-size: 1rem;
}

.sol-tab-label {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text);
    flex-grow: 1;
}

.sol-tab.active .sol-tab-label {
    color: #ffffff;
}

.sol-tab-arrow {
    font-size: 0.7rem;
    color: var(--text-light);
    transition: transform 0.25s ease;
}

.sol-tab.active .sol-tab-arrow {
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(3px);
}

/* Panel */
.sol-tab-content {
    position: relative;
    min-height: 320px;
}

.sol-panel {
    display: none;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 20px 20px;
    box-shadow: 0 4px 24px rgba(56, 161, 105, 0.08);
    animation: panel-fade 0.3s ease;
}

.sol-panel.active {
    display: block;
}

@keyframes panel-fade {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sol-panel-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sol-panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.sol-panel-header h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0;
}

.sol-panel p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.sol-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    margin-bottom: 24px;
}

.sol-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text);
}

.sol-features li i {
    color: var(--primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .sol-tabs {
        grid-template-columns: 1fr;
    }

    .sol-tab-list {
        flex-direction: row;
        overflow-x: auto;
        gap: 6px;
    }

    .sol-tab {
        flex-direction: column;
        text-align: center;
        min-width: 120px;
        padding: 10px 8px;
    }

    .sol-tab-arrow {
        display: none;
    }

    .sol-features {
        grid-template-columns: 1fr;
    }
}

.solutions-section {
    background: #ffffff;
    overflow: hidden;
}

.solutions-section .section-header h2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.solutions-section .section-header h2 i {
    color: var(--accent);
    font-size: 1.1rem;
}

.solutions-section .section-header .underline {
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b, #8b5cf6);
}

.solutions-grid {
    gap: 20px;
}

.solution-card {
    border: 1px solid var(--solution-border);
    border-top: 3px solid var(--solution-accent);
    background: linear-gradient(145deg, var(--solution-bg) 0%, var(--solution-bg) 70%, #ffffff 100%);
    color: var(--text);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.solution-card h3 {
    color: var(--solution-heading);
}

.solution-card p {
    color: var(--text-light);
    font-size: 0.82rem;
    text-align: justify;
    flex-grow: 1;
    margin-bottom: 16px;
}

.solution-card .card-icon {
    background: var(--solution-icon-bg);
    color: var(--solution-accent);
}

.solution-card .card-link {
    color: var(--solution-accent);
    background: rgba(255, 255, 255, 0.72);
    padding: 8px 14px;
    border-radius: var(--radius);
    border: 1px solid var(--solution-border);
}

.solution-card .card-link:hover {
    color: var(--solution-heading);
    background: #fff;
    opacity: 1;
}

.solution-card--blue {
    --solution-accent: #2563eb;
    --solution-heading: #1e40af;
    --solution-bg: #dbeafe;
    --solution-icon-bg: #bfdbfe;
    --solution-border: #93c5fd;
    --solution-shadow: rgba(37, 99, 235, 0.16);
}

.solution-card--green {
    --solution-accent: #059669;
    --solution-heading: #065f46;
    --solution-bg: #d1fae5;
    --solution-icon-bg: #a7f3d0;
    --solution-border: #6ee7b7;
    --solution-shadow: rgba(5, 150, 105, 0.16);
}

.solution-card--amber {
    --solution-accent: #d97706;
    --solution-heading: #92400e;
    --solution-bg: #fef3c7;
    --solution-icon-bg: #fde68a;
    --solution-border: #fcd34d;
    --solution-shadow: rgba(217, 119, 6, 0.16);
}

.solution-card--violet {
    --solution-accent: #7c3aed;
    --solution-heading: #5b21b6;
    --solution-bg: #ede9fe;
    --solution-icon-bg: #ddd6fe;
    --solution-border: #c4b5fd;
    --solution-shadow: rgba(124, 58, 237, 0.16);
}

/* ===== Solution Cards — Floating Animation ===== */
@keyframes float-card {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.solution-card--blue {
    animation: float-card 4s ease-in-out infinite;
}

.solution-card--green {
    animation: float-card 4.5s ease-in-out infinite 0.3s;
}

.solution-card--amber {
    animation: float-card 4.2s ease-in-out infinite 0.6s;
}

.solution-card--violet {
    animation: float-card 4.7s ease-in-out infinite 0.9s;
}

.solution-card:hover {
    animation-play-state: paused;
}

/* ===== Cards Grid ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 14px;
}

.card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 14px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(26, 58, 92, 0.12);
}

.card-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--primary);
}

.card-icon i,
.info-icon i,
.stat-icon i,
.feature-list i,
.footer-contact i {
    display: inline-block;
    line-height: 1;
}

.card h3 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.card-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-tagline {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.85;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ffffff;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 22px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(26, 58, 92, 0.12);
}

.feature-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 14px;
}

.feature-card-icon i {
    font-size: 1.35rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 14px;
}

/* ===== Home — Field Fulfillment ===== */
.fulfillment-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f2540 0%, #1a3a5c 60%, #2a5a8a 100%);
}

.fulfillment-section .section-header h2 {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.fulfillment-section .section-header h2 i {
    color: #60a5fa;
    font-size: 1.1rem;
}

.fulfillment-section .section-header p {
    color: rgba(255, 255, 255, 0.75);
}

.fulfillment-wrap {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    align-items: center;
}

.fulfillment-visual {
    position: relative;
    min-height: 300px;
    border-radius: 5px;
    padding: 34px 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(120, 53, 15, 0.15), rgba(217, 119, 6, 0.10)),
        url('../Img/Home/Field_Intelligence.jpeg') center / cover no-repeat;
    box-shadow: 0 16px 40px rgba(120, 53, 15, 0.22);
}

.fulfillment-visual::before {
    content: none;
}

.fulfillment-visual>i {
    position: absolute;
    top: 34px;
    right: 34px;
    font-size: 4.8rem;
    color: rgba(255, 255, 255, 0.18);
}

.fulfillment-visual h3,
.fulfillment-visual p {
    position: relative;
    z-index: 1;
}

.fulfillment-visual h3 {
    font-size: 1.45rem;
    margin-bottom: 8px;
}

.fulfillment-visual p {
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.7;
}

.pulse-dot {
    position: absolute;
    top: 42px;
    left: 42px;
    width: 16px;
    height: 16px;
    background: #fbbf24;
    border-radius: 50%;
    box-shadow: 0 0 0 12px rgba(251, 191, 36, 0.22);
}

.fulfillment-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fulfillment-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.fulfillment-item:last-child {
    border-bottom: none;
}

.fulfillment-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.fulfillment-icon i {
    font-size: 1.25rem;
}

.fulfillment-item h3 span {
    display: inline;
    color: #d97706;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-right: 8px;
}

.fulfillment-item h3 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.fulfillment-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.fulfillment-item a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #60a5fa;
    font-size: 0.9rem;
    font-weight: 700;
}

.fulfillment-item a i {
    font-size: 0.75rem;
    transition: transform var(--transition);
}

.fulfillment-item a:hover i {
    transform: translateX(4px);
}

/* ===== Fulfillment Animations ===== */

/* Pulse dot ping effect */
@keyframes pulse-ping {
    0% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.55);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(251, 191, 36, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
    }
}

.pulse-dot {
    animation: pulse-ping 2s ease-out infinite;
}

/* Slide-in states — hidden by default */
.fulfillment-visual,
.fulfillment-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    will-change: opacity, transform;
}

/* Visible state triggered by JS */
.fulfillment-visual.ff-visible,
.fulfillment-item.ff-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Icon rotate on scroll-in */
@keyframes icon-pop {
    0% {
        transform: scale(0.5) rotate(-15deg);
        opacity: 0;
    }

    60% {
        transform: scale(1.15) rotate(5deg);
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.fulfillment-item.ff-visible .fulfillment-icon {
    animation: icon-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.fulfillment-item:nth-child(2).ff-visible .fulfillment-icon {
    animation-delay: 0.15s;
}

/* Shimmer on image box */
@keyframes shimmer-border {

    0%,
    100% {
        box-shadow: 0 16px 40px rgba(120, 53, 15, 0.22);
    }

    50% {
        box-shadow: 0 16px 48px rgba(217, 119, 6, 0.38);
    }
}

.fulfillment-visual.ff-visible {
    animation: shimmer-border 3.5s ease-in-out infinite;
    animation-delay: 0.6s;
}

/* Learn More arrow — continuous back & forth */
@keyframes arrow-bounce {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(6px);
    }
}

.fulfillment-item a i {
    animation: arrow-bounce 1.2s ease-in-out infinite;
}

/* Icon scale on hover */
.fulfillment-item:hover .fulfillment-icon {
    transform: scale(1.1);
    transition: transform 0.25s ease;
}

.difference-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ===== The Resolve Edge — New Design ===== */
.edge-section {
    background: #ffffff;
}

.edge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.edge-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
    border: 1px solid var(--border);
    border-radius: 0;
    background: #fff;
    transition: all 0.3s ease;
    position: relative;
}

.edge-item:hover {
    background: var(--bg-alt);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(56, 161, 105, 0.1);
    z-index: 1;
}

/* Remove double borders */
.edge-item:nth-child(n+2) {
    margin-left: -1px;
}

.edge-item:nth-child(n+4) {
    margin-top: -1px;
}

.edge-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--ei-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
    flex-shrink: 0;
    animation: icon-scale 2s ease-in-out infinite;
}

.edge-item:nth-child(1) .edge-item-icon {
    animation-delay: 0s;
}

.edge-item:nth-child(2) .edge-item-icon {
    animation-delay: 0.3s;
}

.edge-item:nth-child(3) .edge-item-icon {
    animation-delay: 0.6s;
}

.edge-item:nth-child(4) .edge-item-icon {
    animation-delay: 0.9s;
}

.edge-item:nth-child(5) .edge-item-icon {
    animation-delay: 1.2s;
}

.edge-item:nth-child(6) .edge-item-icon {
    animation-delay: 1.5s;
}

.edge-num {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--ei-color);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.edge-item-body h3 {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 6px;
    font-weight: 700;
}

.edge-item-body p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.65;
    text-align: justify;
}

@media (max-width: 992px) {
    .edge-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .edge-item:nth-child(n+2) {
        margin-left: 0;
    }

    .edge-item:nth-child(n+3) {
        margin-top: -1px;
    }
}

@media (max-width: 576px) {
    .edge-grid {
        grid-template-columns: 1fr;
    }

    .edge-item:nth-child(n+4) {
        margin-top: 0;
    }
}

/* The Resolve Edge Section Styling */
.page-index section:nth-of-type(4) .section-header h2 {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.page-index section:nth-of-type(4) .section-header h2 i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* Partner With Confidence Section Styling */
.page-index section:nth-of-type(5) .section-header h2 {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.page-index section:nth-of-type(5) .section-header h2 i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* Edge Cards - Colored Variants */
.edge-card {
    border-top: 3px solid var(--edge-accent);
    background: var(--edge-bg) !important;
}

.edge-card .card-icon {
    background: var(--edge-accent) !important;
    color: #ffffff !important;
}

.edge-card .card-icon i {
    animation: icon-scale 2s ease-in-out infinite;
}

@keyframes icon-scale {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.35);
    }
}

.edge-card h3 {
    color: var(--edge-heading) !important;
}

.edge-card--blue .card-icon i {
    animation-delay: 0s;
}

.edge-card--green .card-icon i {
    animation-delay: 0.3s;
}

.edge-card--amber .card-icon i {
    animation-delay: 0.6s;
}

.edge-card--purple .card-icon i {
    animation-delay: 0.9s;
}

.edge-card--rose .card-icon i {
    animation-delay: 1.2s;
}

.edge-card--teal .card-icon i {
    animation-delay: 1.5s;
}

.edge-card--blue {
    --edge-accent: #3b82f6;
    --edge-heading: #1e40af;
    --edge-bg: #bfdbfe;
}

.edge-card--green {
    --edge-accent: #10b981;
    --edge-heading: #065f46;
    --edge-bg: #a7f3d0;
}

.edge-card--amber {
    --edge-accent: #f59e0b;
    --edge-heading: #92400e;
    --edge-bg: #fde68a;
}

.edge-card--purple {
    --edge-accent: #8b5cf6;
    --edge-heading: #5b21b6;
    --edge-bg: #ddd6fe;
}

.edge-card--rose {
    --edge-accent: #f43f5e;
    --edge-heading: #9f1239;
    --edge-bg: #fecdd3;
}

.edge-card--teal {
    --edge-accent: #14b8a6;
    --edge-heading: #0f766e;
    --edge-bg: #99f6e4;
}

/* ===== About/Service Cards — Colored Variants ===== */
.about-card {
    border-top: 3px solid var(--about-accent);
    background: var(--about-bg) !important;
    display: flex;
    flex-direction: column;
}

.about-card .card-icon {
    background: var(--about-accent) !important;
    color: #ffffff !important;
}

.about-card h3 {
    color: var(--about-heading) !important;
}

.about-card p {
    color: var(--text) !important;
    font-size: 0.88rem;
    text-align: justify;
    flex-grow: 1;
}

.about-card--blue {
    --about-accent: #3b82f6;
    --about-heading: #1e40af;
    --about-bg: #dbeafe;
}

.about-card--green {
    --about-accent: #10b981;
    --about-heading: #065f46;
    --about-bg: #d1fae5;
}

.about-card--amber {
    --about-accent: #f59e0b;
    --about-heading: #92400e;
    --about-bg: #fef3c7;
}

.about-card--purple {
    --about-accent: #8b5cf6;
    --about-heading: #5b21b6;
    --about-bg: #ede9fe;
}

.about-card--rose {
    --about-accent: #f43f5e;
    --about-heading: #9f1239;
    --about-bg: #ffe4e6;
}

.about-card--teal {
    --about-accent: #14b8a6;
    --about-heading: #0f766e;
    --about-bg: #ccfbf1;
}


.card-link:hover {
    color: var(--accent-light);
}

.card-link i {
    font-size: 0.8rem;
    transition: transform var(--transition);
}

.card-link:hover i {
    transform: translateX(3px);
}

/* ===== Content Block ===== */
.content-block {
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.content-block h2 {
    color: var(--primary);
    font-size: 1.35rem;
    margin: 24px 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-block h2 i {
    color: var(--accent);
    font-size: 1.1rem;
}

.content-block h2:first-child {
    margin-top: 0;
}

.content-block p {
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

.card-icon i {
    font-size: 1.4rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.feature-list li i {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
}

/* ===== Two Column ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}

.two-col .placeholder-img {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
}

.two-col .placeholder-img i {
    font-size: 4rem;
}

.partner-img {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 32px rgba(26, 58, 92, 0.15);
}

.partner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.partner-img:hover img {
    transform: scale(1.04);
}

/* ===== Partner Section Animations ===== */

/* Scroll-in: text from left, image from right */
.partner-text-col {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.partner-img-col {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.15s;
    will-change: opacity, transform;
}

.partner-text-col.pw-visible,
.partner-img-col.pw-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Subtle float animation on image */
@keyframes partner-float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-6px) scale(1.01);
    }
}

.partner-img-col.pw-visible .partner-img {
    animation: partner-float 5s ease-in-out infinite;
    animation-delay: 0.8s;
}

.partner-img-col.pw-visible .partner-img:hover {
    animation-play-state: paused;
}

/* Heading underline draw animation */
@keyframes underline-draw {
    from {
        width: 0;
    }

    to {
        width: 50px;
    }
}

.partner-text-col.pw-visible~* .underline,
.pw-visible .underline {
    animation: underline-draw 0.5s ease 0.4s both;
}

/* ===== Partner With Confidence — Redesign ===== */
.pwc-section {
    background: linear-gradient(135deg, #0f2540 0%, #1a3a5c 50%, #2a5a8a 100%);
    overflow: hidden;
}

.pwc-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.pwc-img-side .partner-img {
    border-radius: 16px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pwc-content-side {
    color: #fff;
}

.pwc-tagline {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #60a5fa;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pwc-content-side h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.pwc-content-side h2 span {
    color: #60a5fa;
}

.pwc-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 24px;
    text-align: justify;
}

.pwc-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pwc-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 12px 16px;
}

.pwc-point-icon {
    color: #60a5fa;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.pwc-point strong {
    display: block;
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 2px;
}

.pwc-point p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.pwc-content-side .btn-primary {
    background: #3b82f6 !important;
    color: #fff !important;
}

.pwc-content-side .btn-primary:hover {
    background: #2563eb !important;
}

@media (max-width: 768px) {
    .pwc-wrap {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.client-logo {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 16px;
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.client-logo i {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.4;
}

.client-logo:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== Contact Form ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 28px;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.info-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.1rem;
}

.info-item h4 {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.info-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.form-alert.success {
    background: #f0fff4;
    color: #276749;
    border: 1px solid #c6f6d5;
}

.form-alert.error {
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #fed7d7;
}

/* ===== Stats ===== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    text-align: center;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: var(--primary);
}

.stat-icon i {
    font-size: 1.15rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p i {
    color: var(--accent-light);
    width: 16px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
}

.stat-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 4px;
}

/* ===== Stats — Colorful No-Box Style ===== */
.stats-section {
    background: #ffffff !important;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    text-align: center;
}

.stat-item {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 20px 10px;
    position: relative;
    transition: transform 0.3s ease;
    text-align: center;
    animation: stat-float 3s ease-in-out infinite;
}

@keyframes stat-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.stat-item:nth-child(1) {
    animation-delay: 0s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.6s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.9s;
}

.stat-item:nth-child(5) {
    animation-delay: 1.2s;
}

.stat-item:nth-child(6) {
    animation-delay: 1.5s;
}

.stat-item:hover {
    animation-play-state: paused;
}

/* Icon + number on same line */
.stat-item .stat-number-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}

.stat-item .stat-icon {
    background: transparent !important;
    color: var(--stat-accent) !important;
    border-radius: 0 !important;
    box-shadow: none;
    width: auto;
    height: auto;
    font-size: 1.3rem;
    margin: 0;
    display: inline-flex;
}

.stat-item h3 {
    color: var(--stat-accent) !important;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.stat-item p {
    color: var(--text-light);
    font-size: 0.78rem;
    margin-top: 2px;
    line-height: 1.4;
}

.stats-section .stat-item p {
    color: #4a5568;
    font-size: 0.78rem;
    margin-top: 2px;
    line-height: 1.4;
}

.stats-section .stat-item+.stat-item::before {
    background: #e2e8f0;
}

.stat-item--blue {
    --stat-accent: #276749;
}

.stat-item--green {
    --stat-accent: #38a169;
}

.stat-item--amber {
    --stat-accent: #2d9e6b;
}

.stat-item--purple {
    --stat-accent: #276749;
}

.stat-item--rose {
    --stat-accent: #38a169;
}

.stat-item--teal {
    --stat-accent: #2d9e6b;
}

@media (max-width: 768px) {
    .stat-item+.stat-item::before {
        display: none;
    }
}

/* ===== Footer — fixed brand colors ===== */
.site-footer {
    --primary: #38a169;
    --primary-dark: #276749;
    --accent: #68d391;
    --accent-light: #9ae6b4;
    background: #111827;
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 0 0;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 0.7fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand .logo .logo-icon {
    width: 42px;
    height: 42px;
    padding: 6px;
    border-radius: 50%;
    background: #ffffff;
}

.footer-brand .logo .logo-text {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #ffffff;
    background-clip: unset;
    color: #ffffff;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: justify;
    color: rgba(255, 255, 255, 0.85);
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--accent-light);
    margin-top: 4px;
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-credit {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-credit:hover {
    color: #ffffff;
    text-decoration-thickness: 2px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .fulfillment-wrap {
        grid-template-columns: 1fr;
    }

    .fulfillment-visual {
        min-height: 240px;
    }
}

@media (max-width: 991px) {

    .site-footer .container {
        padding: 0 20px !important;
    }

    html,
    body {
        background: #ffffff !important;
        background-color: #ffffff !important;
        margin: 0 !important;
    }

    .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 70px !important;
        margin: 0 !important;
        padding: 0 !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
        border: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        background: #ffffff !important;
        background-color: #ffffff !important;
        z-index: 10000 !important;
        transform: none !important;
    }

    /* Solid white block extending 300px above viewport to block any top overscroll/background bleed */
    .site-header::before {
        content: '' !important;
        position: fixed !important;
        top: -300px !important;
        left: 0 !important;
        right: 0 !important;
        height: 300px !important;
        background: #ffffff !important;
        background-color: #ffffff !important;
        z-index: 10001 !important;
        pointer-events: none !important;
    }

    .site-header .container {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 20px !important;
        background: #ffffff !important;
        background-color: #ffffff !important;
    }

    .site-header .header-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        background: #ffffff !important;
        background-color: #ffffff !important;
    }

    .site-header .logo-icon {
        width: auto !important;
        height: 40px !important;
        max-width: 150px !important;
    }

    body {
        padding-top: 70px !important;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed !important;
        top: 69px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: #ffffff !important;
        background-color: #ffffff !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition);
        box-shadow: none !important;
        border: none !important;
        border-top: none !important;
        z-index: 9999 !important;
    }

    .main-nav.open {
        max-height: calc(100vh - 69px) !important;
        overflow-y: auto !important;
        background: #ffffff !important;
        background-color: #ffffff !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: 10px 16px !important;
        gap: 0;
        background: #ffffff !important;
        background-color: #ffffff !important;
    }

    .nav-list>li>a {
        padding: 8px 12px;
        border-radius: 0;
    }

    .nav-list>li>a:hover,
    .nav-list>li>a.active {
        background: transparent;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 0 0 16px;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition);
        background: #ffffff !important;
        background-color: #ffffff !important;
    }

    .has-dropdown.open .dropdown-menu {
        max-height: 300px;
    }

    .has-dropdown:hover .dropdown-menu {
        transform: none;
    }

    .dropdown-menu li a:hover {
        background: transparent;
    }

    .hero-banner {
        min-height: 380px;
        padding: 44px 0;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .fulfillment-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .fulfillment-icon {
        width: 48px;
        height: 48px;
    }

    .section {
        padding: 24px 0;
    }

    .btn-outline {
        margin-left: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {

    .site-header .container,
    .site-footer .container {
        padding: 0 16px !important;
    }

    .nav-list {
        padding: 8px 12px !important;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* ===== Page Color Themes (main content only) ===== */

/* Home — Light Green */
main.page-index {
    --primary: #38a169;
    --primary-dark: #276749;
    --primary-light: #48bb78;
    --accent: #68d391;
    --accent-light: #9ae6b4;
    --bg-alt: #f0fff4;
    --shadow: 0 4px 24px rgba(56, 161, 105, 0.10);
}

/* Who We Are — Teal */
main.page-about {
    --primary: #0f5c5c;
    --primary-dark: #064e3b;
    --primary-light: #14b8a6;
    --accent: #0d9488;
    --accent-light: #2dd4bf;
    --bg-alt: #f0fdfa;
    --shadow: 0 4px 24px rgba(13, 148, 136, 0.1);
}

/* Clients & Industries — Indigo */
main.page-key-clients {
    --primary: #3730a3;
    --primary-dark: #1e1b4b;
    --primary-light: #6366f1;
    --accent: #7c3aed;
    --accent-light: #a78bfa;
    --bg-alt: #f5f3ff;
    --shadow: 0 4px 24px rgba(99, 102, 241, 0.1);
}

/* Contact — Royal Blue */
main.page-contact {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --accent: #2563eb;
    --accent-light: #60a5fa;
    --bg-alt: #eff6ff;
    --shadow: 0 4px 24px rgba(37, 99, 235, 0.1);
}

/* Contact Centers — Royal Blue */
main.page-contact-centers {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --accent: #2563eb;
    --accent-light: #60a5fa;
    --bg-alt: #eff6ff;
    --shadow: 0 4px 24px rgba(37, 99, 235, 0.1);
}

/* Document Management — Emerald */
main.page-document-management {
    --primary: #065f46;
    --primary-dark: #064e3b;
    --primary-light: #059669;
    --accent: #10b981;
    --accent-light: #34d399;
    --bg-alt: #ecfdf5;
    --shadow: 0 4px 24px rgba(16, 185, 129, 0.1);
}

/* Field Fulfillment — Light Green */
main.page-field-fulfillment {
    --primary: #38a169;
    --primary-dark: #276749;
    --primary-light: #48bb78;
    --accent: #68d391;
    --accent-light: #9ae6b4;
    --bg-alt: #f0fff4;
    --shadow: 0 4px 24px rgba(56, 161, 105, 0.10);
}

/* Scanning Solutions — Slate Purple */
main.page-scanning-solutions {
    --primary: #475569;
    --primary-dark: #334155;
    --primary-light: #64748b;
    --accent: #6366f1;
    --accent-light: #818cf8;
    --bg-alt: #f8fafc;
    --shadow: 0 4px 24px rgba(100, 116, 139, 0.12);
}


/* ===== Why Choose Us — List Design ===== */
.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.why-item {
    display: grid;
    grid-template-columns: 50px 70px 1fr;
    gap: 18px;
    align-items: center;
    padding: 24px 20px;
    border-left: 3px solid transparent;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.why-item:last-child {
    border-bottom: none;
}

.why-item:hover {
    background: var(--bg-alt);
    border-left-color: var(--primary);
    padding-left: 28px;
}

.why-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.25;
    line-height: 1;
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(56, 161, 105, 0.2);
    transition: transform 0.3s ease;
}

.why-item:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-content h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 6px;
    font-weight: 700;
}

.why-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 768px) {
    .why-item {
        grid-template-columns: 40px 60px 1fr;
        gap: 12px;
        padding: 18px 14px;
    }

    .why-number {
        font-size: 1.4rem;
    }

    .why-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .why-content h3 {
        font-size: 1rem;
    }

    .why-content p {
        font-size: 0.85rem;
    }
}


/* ===== Industries We Serve — New Design ===== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.industry-item {
    display: grid;
    grid-template-columns: 60px 80px 1fr;
    gap: 18px;
    align-items: center;
    padding: 28px 24px;
    background: var(--industry-bg);
    border: 2px solid var(--industry-border);
    border-radius: 12px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.industry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--industry-accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s ease;
}

.industry-item:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.industry-item:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 32px var(--industry-shadow);
    border-color: var(--industry-accent);
}

.industry-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--industry-accent);
    opacity: 0.2;
    line-height: 1;
}

.industry-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--industry-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px var(--industry-shadow);
    transition: all 0.35s ease;
}

.industry-item:hover .industry-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 28px var(--industry-shadow);
}

.industry-content h3 {
    font-size: 1.2rem;
    color: var(--industry-heading);
    margin-bottom: 8px;
    font-weight: 700;
}

.industry-content p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

/* Industry Color Variants */
.industry-item--banking {
    --industry-accent: #0ea5e9;
    --industry-heading: #0c4a6e;
    --industry-bg: #f0f9ff;
    --industry-border: #bae6fd;
    --industry-shadow: rgba(14, 165, 233, 0.25);
}

.industry-item--corporate {
    --industry-accent: #8b5cf6;
    --industry-heading: #5b21b6;
    --industry-bg: #faf5ff;
    --industry-border: #d8b4fe;
    --industry-shadow: rgba(139, 92, 246, 0.25);
}

.industry-item--telecom {
    --industry-accent: #f97316;
    --industry-heading: #9a3412;
    --industry-bg: #fff7ed;
    --industry-border: #fed7aa;
    --industry-shadow: rgba(249, 115, 22, 0.25);
}

.industry-item--healthcare {
    --industry-accent: #ec4899;
    --industry-heading: #9f1239;
    --industry-bg: #fdf2f8;
    --industry-border: #fbcfe8;
    --industry-shadow: rgba(236, 72, 153, 0.25);
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .industry-item {
        grid-template-columns: 50px 70px 1fr;
        gap: 14px;
        padding: 20px 18px;
    }

    .industry-number {
        font-size: 1.8rem;
    }

    .industry-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .industry-content h3 {
        font-size: 1.05rem;
    }

    .industry-content p {
        font-size: 0.85rem;
    }
}


/* ===== Colorful Client Logos ===== */
.client-logo {
    transition: all 0.3s ease;
}

.client-logo--blue {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%) !important;
    border: 2px solid #93c5fd !important;
    color: #1e40af !important;
}

.client-logo--blue:hover {
    background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%) !important;
    border-color: #3b82f6 !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.client-logo--blue i {
    color: #3b82f6;
}

.client-logo--purple {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%) !important;
    border: 2px solid #c4b5fd !important;
    color: #5b21b6 !important;
}

.client-logo--purple:hover {
    background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%) !important;
    border-color: #8b5cf6 !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.client-logo--purple i {
    color: #8b5cf6;
}

.client-logo--orange {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%) !important;
    border: 2px solid #fdba74 !important;
    color: #9a3412 !important;
}

.client-logo--orange:hover {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%) !important;
    border-color: #f97316 !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.client-logo--orange i {
    color: #f97316;
}

.client-logo--green {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%) !important;
    border: 2px solid #6ee7b7 !important;
    color: #065f46 !important;
}

.client-logo--green:hover {
    background: linear-gradient(135deg, #a7f3d0 0%, #6ee7b7 100%) !important;
    border-color: #10b981 !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.client-logo--green i {
    color: #10b981;
}

.client-logo--pink {
    background: linear-gradient(135deg, #fdf2f8 0%, #fbcfe8 100%) !important;
    border: 2px solid #f9a8d4 !important;
    color: #9f1239 !important;
}

.client-logo--pink:hover {
    background: linear-gradient(135deg, #fbcfe8 0%, #f9a8d4 100%) !important;
    border-color: #ec4899 !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3);
}

.client-logo--pink i {
    color: #ec4899;
}

.client-logo--cyan {
    background: linear-gradient(135deg, #cffafe 0%, #a5f3fc 100%) !important;
    border: 2px solid #67e8f9 !important;
    color: #164e63 !important;
}

.client-logo--cyan:hover {
    background: linear-gradient(135deg, #a5f3fc 0%, #67e8f9 100%) !important;
    border-color: #06b6d4 !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.client-logo--cyan i {
    color: #06b6d4;
}


/* ===== Dark CTA Section ===== */
.cta-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
    position: relative;
    overflow: hidden;
}

.cta-dark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-dark .container {
    position: relative;
    z-index: 1;
}


/* ===== Modern Features List (Timeline Style) ===== */
.features-list-modern {
    max-width: 800px;
    margin: 0 auto;
}

.feature-modern-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    margin-bottom: 28px;
    position: relative;
}

.feature-modern-item:last-child {
    margin-bottom: 0;
}

.feature-modern-item:last-child .feature-modern-line {
    display: none;
}

.feature-modern-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.feature-modern-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(56, 161, 105, 0.3);
    transition: all 0.35s ease;
    position: relative;
    z-index: 2;
}

.feature-modern-item:hover .feature-modern-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 8px 28px rgba(56, 161, 105, 0.45);
}

.feature-modern-line {
    width: 3px;
    flex: 1;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--border) 100%);
    margin-top: 8px;
    position: relative;
}

.feature-modern-content {
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 12px;
    border: 2px solid var(--border);
    transition: all 0.35s ease;
    position: relative;
}

.feature-modern-content::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 24px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 12px solid var(--border);
    transition: all 0.35s ease;
}

.feature-modern-content::after {
    content: '';
    position: absolute;
    left: -9px;
    top: 25px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 11px solid #ffffff;
    transition: all 0.35s ease;
}

.feature-modern-item:hover .feature-modern-content {
    background: var(--bg-alt);
    border-color: var(--primary);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(56, 161, 105, 0.12);
}

.feature-modern-item:hover .feature-modern-content::before {
    border-right-color: var(--primary);
}

.feature-modern-item:hover .feature-modern-content::after {
    border-right-color: var(--bg-alt);
}

.feature-modern-content h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-modern-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 768px) {
    .feature-modern-item {
        grid-template-columns: 60px 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }

    .feature-modern-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .feature-modern-content {
        padding: 16px 18px;
    }

    .feature-modern-content h3 {
        font-size: 1rem;
    }

    .feature-modern-content p {
        font-size: 0.85rem;
    }
}


/* ===== Alternating Features Grid ===== */
.features-alternate-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-alt-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 28px;
    align-items: center;
    position: relative;
}

.feature-alt-item.feature-alt-right {
    grid-template-columns: 1fr 120px;
}

.feature-alt-icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.feature-alt-icon-wrap::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.2;
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.35;
    }
}

.feature-alt-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(56, 161, 105, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-alt-item:hover .feature-alt-icon {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: 0 12px 36px rgba(56, 161, 105, 0.45);
}

.feature-alt-text {
    background: #ffffff;
    padding: 24px 28px;
    border-radius: 16px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.feature-alt-item.feature-alt-right .feature-alt-text {
    border-left: none;
    border-right: 4px solid var(--primary);
    text-align: right;
}

.feature-alt-item:hover .feature-alt-text {
    box-shadow: 0 8px 28px rgba(56, 161, 105, 0.15);
    transform: translateY(-4px);
}

.feature-alt-text h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-alt-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

/* Connecting line between items */
.feature-alt-item::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -32px;
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
    transform: translateX(-50%);
}

.feature-alt-item:last-child::after {
    display: none;
}

@media (max-width: 768px) {
    .features-alternate-grid {
        gap: 24px;
    }

    .feature-alt-item,
    .feature-alt-item.feature-alt-right {
        grid-template-columns: 80px 1fr;
        gap: 16px;
    }

    .feature-alt-icon-wrap::before {
        width: 70px;
        height: 70px;
    }

    .feature-alt-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        border-radius: 14px;
    }

    .feature-alt-text {
        padding: 18px 20px;
        border-radius: 12px;
    }

    .feature-alt-item.feature-alt-right .feature-alt-text {
        text-align: left;
        border-right: none;
        border-left: 4px solid var(--primary);
    }

    .feature-alt-text h3 {
        font-size: 1.05rem;
    }

    .feature-alt-text p {
        font-size: 0.85rem;
    }

    .feature-alt-item::after {
        bottom: -24px;
        height: 24px;
    }
}


/* ===== Modern 3-Column Feature Cards ===== */
.features-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card-modern {
    position: relative;
    perspective: 1000px;
    min-height: 280px;
}

.feature-card-modern-inner {
    background: var(--fcard-bg);
    border: 3px solid var(--fcard-border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.feature-card-modern-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--fcard-accent) 0%, transparent 60%);
    opacity: 0;
    transition: all 0.6s ease;
}

.feature-card-modern:hover .feature-card-modern-inner::before {
    opacity: 0.15;
    top: -20%;
    right: -20%;
}

.feature-card-modern:hover .feature-card-modern-inner {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px var(--fcard-shadow);
    border-color: var(--fcard-accent);
}

.feature-card-modern-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--fcard-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 24px var(--fcard-shadow);
    transition: all 0.4s ease;
}

.feature-card-modern:hover .feature-card-modern-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 12px 36px var(--fcard-shadow);
}

.feature-card-modern-inner h3 {
    font-size: 1.15rem;
    color: var(--fcard-heading);
    margin-bottom: 12px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.feature-card-modern-inner p {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.65;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Color Variants */
.feature-card-modern--amber {
    --fcard-accent: #f59e0b;
    --fcard-heading: #92400e;
    --fcard-bg: #fffbeb;
    --fcard-border: #fde68a;
    --fcard-shadow: rgba(245, 158, 11, 0.25);
}

.feature-card-modern--blue {
    --fcard-accent: #3b82f6;
    --fcard-heading: #1e40af;
    --fcard-bg: #eff6ff;
    --fcard-border: #bfdbfe;
    --fcard-shadow: rgba(59, 130, 246, 0.25);
}

.feature-card-modern--green {
    --fcard-accent: #10b981;
    --fcard-heading: #065f46;
    --fcard-bg: #f0fdf4;
    --fcard-border: #a7f3d0;
    --fcard-shadow: rgba(16, 185, 129, 0.25);
}

.feature-card-modern--purple {
    --fcard-accent: #8b5cf6;
    --fcard-heading: #5b21b6;
    --fcard-bg: #faf5ff;
    --fcard-border: #ddd6fe;
    --fcard-shadow: rgba(139, 92, 246, 0.25);
}

.feature-card-modern--pink {
    --fcard-accent: #ec4899;
    --fcard-heading: #9f1239;
    --fcard-bg: #fdf2f8;
    --fcard-border: #fbcfe8;
    --fcard-shadow: rgba(236, 72, 153, 0.25);
}

.feature-card-modern--cyan {
    --fcard-accent: #06b6d4;
    --fcard-heading: #164e63;
    --fcard-bg: #f0fdfa;
    --fcard-border: #a5f3fc;
    --fcard-shadow: rgba(6, 182, 212, 0.25);
}

@media (max-width: 992px) {
    .features-grid-3col {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .features-grid-3col {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature-card-modern {
        min-height: auto;
    }

    .feature-card-modern-inner {
        padding: 24px 20px;
    }

    .feature-card-modern-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .feature-card-modern-inner h3 {
        font-size: 1.05rem;
    }

    .feature-card-modern-inner p {
        font-size: 0.85rem;
    }
}


/* ===== Staggered Features with Badge Numbers ===== */
.features-staggered {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-stagger-item {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 28px;
    position: relative;
    border: 3px solid var(--stagger-border);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: visible;
}

.feature-stagger-item:nth-child(odd) {
    transform: translateY(-12px);
}

.feature-stagger-item:nth-child(even) {
    transform: translateY(12px);
}

.feature-stagger-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px var(--stagger-shadow);
    border-color: var(--stagger-accent);
}

.feature-stagger-badge {
    position: absolute;
    top: -16px;
    right: 24px;
    width: 42px;
    height: 42px;
    background: var(--stagger-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 4px 12px var(--stagger-shadow);
    transition: all 0.4s ease;
}

.feature-stagger-item:hover .feature-stagger-badge {
    transform: rotate(360deg) scale(1.15);
}

.feature-stagger-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--stagger-accent) 0%, var(--stagger-accent-light) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.7rem;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px var(--stagger-shadow);
    transition: all 0.4s ease;
}

.feature-stagger-item:hover .feature-stagger-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px var(--stagger-shadow);
}

.feature-stagger-item h3 {
    font-size: 1.2rem;
    color: var(--stagger-heading);
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-stagger-item p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

/* Color Variants */
.feature-stagger--purple {
    --stagger-accent: #8b5cf6;
    --stagger-accent-light: #a78bfa;
    --stagger-heading: #5b21b6;
    --stagger-border: #ddd6fe;
    --stagger-shadow: rgba(139, 92, 246, 0.3);
}

.feature-stagger--blue {
    --stagger-accent: #3b82f6;
    --stagger-accent-light: #60a5fa;
    --stagger-heading: #1e40af;
    --stagger-border: #bfdbfe;
    --stagger-shadow: rgba(59, 130, 246, 0.3);
}

.feature-stagger--green {
    --stagger-accent: #10b981;
    --stagger-accent-light: #34d399;
    --stagger-heading: #065f46;
    --stagger-border: #a7f3d0;
    --stagger-shadow: rgba(16, 185, 129, 0.3);
}

.feature-stagger--amber {
    --stagger-accent: #f59e0b;
    --stagger-accent-light: #fbbf24;
    --stagger-heading: #92400e;
    --stagger-border: #fde68a;
    --stagger-shadow: rgba(245, 158, 11, 0.3);
}

.feature-stagger--pink {
    --stagger-accent: #ec4899;
    --stagger-accent-light: #f472b6;
    --stagger-heading: #9f1239;
    --stagger-border: #fbcfe8;
    --stagger-shadow: rgba(236, 72, 153, 0.3);
}

.feature-stagger--cyan {
    --stagger-accent: #06b6d4;
    --stagger-accent-light: #22d3ee;
    --stagger-heading: #164e63;
    --stagger-border: #a5f3fc;
    --stagger-shadow: rgba(6, 182, 212, 0.3);
}

@media (max-width: 768px) {
    .features-staggered {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-stagger-item:nth-child(odd),
    .feature-stagger-item:nth-child(even) {
        transform: translateY(0);
    }

    .feature-stagger-item {
        padding: 28px 24px;
    }

    .feature-stagger-badge {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
        top: -14px;
        right: 20px;
    }

    .feature-stagger-icon {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .feature-stagger-item h3 {
        font-size: 1.05rem;
    }

    .feature-stagger-item p {
        font-size: 0.85rem;
    }
}


/* ===== Contact Section - Improved Design ===== */
.contact-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Contact Info Sidebar */
.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 40px 32px;
    border-radius: 4px;
    color: #fff;
    box-shadow: 0 12px 40px rgba(56, 161, 105, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.contact-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-info-header i {
    font-size: 1.8rem;
    color: #60a5fa;
}

.contact-info-header h3 {
    font-size: 1.6rem;
    margin: 0;
    color: #fff;
}

.info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-icon i {
    font-size: 1.2rem;
    color: #60a5fa;
}

.info-item:hover .info-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(5deg);
}

.info-content h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.info-content p {
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: #ffffff;
    padding: 40px 36px;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border);
}

.contact-form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.contact-form-header i {
    font-size: 1.6rem;
    color: var(--primary);
}

.contact-form-header h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(56, 161, 105, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 8px;
    justify-content: center;
}

.form-alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-alert.success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #6ee7b7;
}

.form-alert.success::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
    color: #10b981;
}

.form-alert.error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #fca5a5;
}

.form-alert.error::before {
    content: '\f06a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
    color: #ef4444;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Reverse order on mobile - form first, then info */
    .contact-form {
        order: 1;
    }

    .contact-info {
        order: 2;
        padding: 32px 28px;
    }

    .contact-form {
        padding: 32px 28px;
    }
}

@media (max-width: 576px) {
    .contact-info {
        padding: 28px 24px;
    }

    .contact-info-header h3 {
        font-size: 1.3rem;
    }

    .contact-form {
        padding: 28px 24px;
    }

    .contact-form-header h3 {
        font-size: 1.3rem;
    }

    .info-icon {
        width: 45px;
        height: 45px;
    }

    .info-content h4 {
        font-size: 0.9rem;
    }

    .info-content p {
        font-size: 0.88rem;
    }
}


/* ===== Center Modal Popup ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.fade-out {
    animation: fadeOut 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.modal-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 36px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.7) translateY(-50px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text);
}

.modal-close-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.modal-close-btn i {
    font-size: 1.3rem;
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: iconBounce 0.6s ease 0.3s both;
}

@keyframes iconBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-box.success .modal-icon {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.modal-box.error .modal-icon {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
}

.modal-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.modal-box h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text);
    font-weight: 700;
}

.modal-box.success h3 {
    color: #065f46;
}

.modal-box.error h3 {
    color: #991b1b;
}

.modal-box p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 576px) {
    .modal-box {
        padding: 32px 24px;
        width: 95%;
    }

    .modal-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .modal-icon i {
        font-size: 2rem;
    }

    .modal-box h3 {
        font-size: 1.3rem;
    }

    .modal-box p {
        font-size: 0.9rem;
    }
}


/* ===== 404 Error Page ===== */
.error-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
}

.error-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
}

.error-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: errorPulse 2s ease-in-out infinite;
}

@keyframes errorPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(239, 68, 68, 0);
    }
}

.error-icon i {
    font-size: 3.5rem;
    color: #ffffff;
}

.error-code {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1;
    text-shadow: 2px 2px 0 rgba(56, 161, 105, 0.1);
}

.error-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--text);
    margin-bottom: 16px;
    font-weight: 700;
}

.error-message {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.error-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.error-buttons .btn {
    font-weight: 400;
    padding: 10px 28px;
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.error-suggestions {
    background: #ffffff;
    padding: 28px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border);
}

.error-suggestions h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.error-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
}

.error-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-alt);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.error-links li a:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateX(4px);
}

.error-links li a i {
    color: var(--primary);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.error-links li a:hover i {
    color: #ffffff;
}

@media (max-width: 768px) {
    .error-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

    .error-icon i {
        font-size: 2.8rem;
    }

    .error-message {
        font-size: 1rem;
    }

    .error-buttons {
        flex-direction: column;
    }

    .error-suggestions {
        padding: 24px 20px;
    }

    .error-links {
        grid-template-columns: 1fr;
    }
}

/* Remove hover visual artifacts on touch devices */
@media (hover: none) and (pointer: coarse) {

    .sol-tab:hover,
    .edge-item:hover,
    .card:hover,
    .feature-card:hover,
    .solution-card:hover,
    .why-item:hover,
    .industry-item:hover,
    .client-logo:hover,
    .info-item:hover .info-icon,
    .nav-list>li>a:hover,
    .dropdown-menu li a:hover,
    .btn-primary:hover,
    .btn-outline:hover,
    .btn-outline-primary:hover,
    .fulfillment-item:hover .fulfillment-icon,
    .feature-modern-item:hover .feature-modern-icon,
    .feature-modern-item:hover .feature-modern-content,
    .feature-alt-item:hover .feature-alt-icon,
    .feature-alt-item:hover .feature-alt-text,
    .feature-card-modern:hover .feature-card-modern-inner,
    .feature-stagger-item:hover,
    .pwc-point:hover,
    .partner-img:hover img {
        background: none !important;
        background-color: transparent !important;
        border-color: inherit !important;
        transform: none !important;
        box-shadow: none !important;
        animation: none !important;
    }

    /* Keep active state highlight */
    .sol-tab.active {
        background: var(--primary) !important;
        border-color: var(--primary) !important;
    }
}