﻿/* ================================================================
   XPERT CLOUDIFY ERP
   CLEAN RESPONSIVE MASTER CSS
   ---------------------------------------------------------------
   Designed for:
   320px / 375px / 425px
   576px / 768px / 992px / 1200px / 1400px+
   Bootstrap-compatible
   ================================================================ */

/* =========================
   1. GLOBAL / RESET
   ========================= */
html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-family: 'Mulish', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*, *::before, *::after {
    box-sizing: border-box;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

img {
    height: auto;
}

button,
input,
select,
textarea {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: anywhere;
}

a {
    overflow-wrap: anywhere;
}

[class*="bi"],
[class*="fa-"],
[class*="icon-"],
i.bi,
i.fa {
    font-family: inherit !important;
}

.container,
.container-fluid {
    width: 100%;
}

.row {
    --bs-gutter-x: 1.5rem;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.dark-text {
    color: #1a1e2b;
}

.grey-text {
    color: #5d6470;
}

.px18 {
    font-size: 18px;
}

.services-section {
    padding-top: 4rem;
}

/* =========================
   2. BUTTONS
   ========================= */
.btn-primary {
    background: #635BFF;
    border-color: #635BFF;
    padding: .6rem 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s ease;
}

    .btn-primary:hover {
        background: #4a42e0;
        border-color: #4a42e0;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(99,91,255,.35);
    }

.btn-outline-light {
    padding: .6rem 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s ease;
}

    .btn-outline-light:hover {
        transform: translateY(-2px);
    }

/* =========================
   3. NAVBAR
   ========================= */
.navbar {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 1050;
    width: 100%;
    min-height: 80px;
    padding: 12px 0;
    background: transparent !important;
    transition: .35s ease;
}

    .navbar.scrolled {
        position: fixed;
        background: #fff !important;
        box-shadow: 0 15px 35px rgba(0,0,0,.08);
    }

    .navbar .container,
    .navbar .container-fluid {
        width: 100%;
        min-width: 0;
    }

    .navbar .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }

.navbar-brand {
    min-width: 0;
    padding: 0;
    margin-right: 1.5rem;
}

    .navbar-brand img {
        display: block;
        max-height: 52px; /* limits height, width adjusts automatically */
        width: auto;
        max-width: 100%;
        transition: .3s;
        object-fit: contain; /* ensures the image keeps its aspect ratio */
    }

    .navbar-brand:hover img {
        transform: scale(1.03);
    }

.navbar-nav {
    align-items: center;
    gap: 6px;
    min-width: 0;
}

    .navbar-nav .nav-item {
        position: relative;
    }

    .navbar-nav .nav-link {
        position: relative;
        color: #fff !important;
        padding: 12px 15px !important;
        font-size: 15px;
        font-weight: 600;
        white-space: nowrap;
        transition: .3s ease;
    }

.navbar.scrolled .nav-link {
    color: #1f2937 !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #E53935 !important;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 5px;
    height: 2px;
    background: #E53935;
    transform: scaleX(0);
    transform-origin: left;
    transition: .3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar .btn-primary {
    background: #E53935;
    border: 0;
    border-radius: 40px;
    padding: 11px 25px;
    font-weight: 700;
    white-space: nowrap;
}

    .navbar .btn-primary:hover {
        background: #C62828;
    }

.navbar-toggler {
    border: 0;
    padding: 7px 9px;
    box-shadow: none !important;
}

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

.navbar-collapse {
    min-width: 0;
}

.embossed-logo {
    display: inline-block;
    padding: 5px;
    border-bottom: 3px solid #0d6efd;
    border-radius: 8px;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,.3));
    transition: .2s ease;
}

/* =========================
   4. GENERIC HERO
   ========================= */
#hero,
#heroContact {
    width: 100%;
    min-height: 720px;
    padding: 110px 0 70px;
    background-image: url('../images/hero-bg.svg');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

#heroContact {
    padding-top: 100px;
}

#hero-img {
    margin-top: 40px;
}

    #hero-img img {
        display: block;
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }

/* =========================
   5. MAIN HERO
   ========================= */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 780px;
    padding: 150px 0 110px;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(135deg,#073763 0%,#005BAC 45%,#1976D2 100%);
}

    .hero-section::before,
    .hero-section::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
    }

    .hero-section::before {
        width: 620px;
        height: 620px;
        right: -220px;
        top: -220px;
        background: rgba(255,255,255,.08);
    }

    .hero-section::after {
        width: 450px;
        height: 450px;
        left: -170px;
        bottom: -170px;
        background: rgba(255,255,255,.05);
    }

    .hero-section > .container,
    .hero-section > .container-fluid {
        position: relative;
        z-index: 2;
    }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 40px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
}

.hero-title {
    margin-top: 25px;
    color: #fff;
    font-size: clamp(2.1rem, 5vw, 4rem);
    line-height: 1.12;
    font-weight: 800;
}

    .hero-title span {
        color: #FFD54F;
    }

.hero-description {
    max-width: 650px;
    margin-top: 24px;
    color: rgba(255,255,255,.9);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    margin-top: 28px;
}

    .hero-features div {
        display: flex;
        align-items: center;
        gap: 8px;
        min-width: 0;
        font-weight: 600;
    }

    .hero-features i {
        flex: 0 0 auto;
        color: #FFD54F;
    }

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline-light {
        min-height: 52px;
        padding: 14px 28px;
        border-radius: 50px;
        font-weight: 700;
    }

    .hero-buttons .btn-primary {
        background: #E53935;
        border: 0;
    }

    .hero-buttons .btn-outline-light {
        border-width: 2px;
    }

.hero-dashboard {
    position: relative;
    z-index: 2;
    width: 100%;
    min-width: 0;
}

    .hero-dashboard img {
        display: block;
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
        border-radius: 24px;
        box-shadow: 0 35px 70px rgba(0,0,0,.35);
        transition: .35s;
    }

        .hero-dashboard img:hover {
            transform: translateY(-8px);
        }

.hero-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: min(260px,45%);
    padding: 15px 18px;
    border-radius: 16px;
    background: #fff;
    color: #073763;
    box-shadow: 0 20px 45px rgba(0,0,0,.18);
    animation: floatCard 4s ease-in-out infinite;
}

    .hero-card i {
        flex: 0 0 auto;
        color: #E53935;
        font-size: 26px;
    }

    .hero-card h4 {
        margin: 0;
        font-size: 18px;
        font-weight: 800;
    }

    .hero-card span {
        color: #6b7280;
        font-size: 13px;
    }

    .hero-card.revenue {
        top: 10%;
        right: 2%;
    }

    .hero-card.orders {
        left: 2%;
        bottom: 10%;
    }

    .hero-card.users {
        right: 2%;
        bottom: 8%;
    }

@keyframes floatCard {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* =========================
   6. SECTION COMMON
   ========================= */
.section-padding {
    padding: 100px 0;
}

.section-light {
    padding: 100px 0;
    background: #f5f8fd;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 9px 18px;
    border-radius: 50px;
    background: #EAF4FF;
    color: #005BAC;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    margin-top: 20px;
    margin-bottom: 20px;
    color: #073763;
    font-size: clamp(2rem,4vw,3rem);
    line-height: 1.2;
    font-weight: 800;
}

    .section-title span {
        color: #E53935;
    }

.section-description,
.section-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: #64748B;
    font-size: 18px;
    line-height: 1.8;
}

.section-text {
    color: #5d6b80;
    line-height: 1.9;
}

.about-image {
    display: block;
    width: 100%;
    max-width: 100%;
}

/* =========================
   7. TRUSTED / STATISTICS
   ========================= */
.trusted-section {
    position: relative;
    padding: 110px 0;
    background: #fff;
    overflow: hidden;
}

    .trusted-section::before,
    .trusted-section::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
    }

    .trusted-section::before {
        width: 520px;
        height: 520px;
        top: -260px;
        right: -220px;
        background: #EAF4FF;
    }

    .trusted-section::after {
        width: 420px;
        height: 420px;
        left: -180px;
        bottom: -220px;
        background: #F5F9FF;
    }

    .trusted-section .container {
        position: relative;
        z-index: 2;
    }

.stat-box {
    position: relative;
    height: 100%;
    padding: 32px 24px;
    border: 1px solid #E5EAF2;
    border-radius: 22px;
    background: #fff;
    text-align: center;
    overflow: hidden;
    transition: .35s;
}

    .stat-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,91,172,.12);
    }

    .stat-box i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 74px;
        height: 74px;
        margin: 0 auto 20px;
        border-radius: 20px;
        background: linear-gradient(135deg,#005BAC,#1976D2);
        color: #fff;
        font-size: 32px;
    }

    .stat-box h3 {
        margin: 0 0 8px;
        color: #073763;
        font-size: clamp(2rem,4vw,2.75rem);
        font-weight: 800;
    }

    .stat-box p {
        margin: 0;
        color: #64748B;
    }

.country-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 55px;
    padding: 20px;
    border: 1px solid #E6EDF5;
    border-radius: 18px;
    background: #F7FAFD;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid #E3EBF4;
    border-radius: 40px;
    background: #fff;
    color: #073763;
    font-weight: 700;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin-top: 55px;
}

    .client-logos img {
        width: auto;
        max-width: 160px;
        max-height: 55px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: .55;
    }

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 100%;
    padding: 22px;
    border: 1px solid #E5EAF2;
    border-radius: 18px;
    background: #fff;
}

    .trust-badge i {
        color: #E53935;
        font-size: 32px;
        flex: 0 0 auto;
    }

    .trust-badge h5 {
        margin: 0;
        color: #073763;
        font-size: 19px;
        font-weight: 700;
    }

    .trust-badge p {
        margin: 5px 0 0;
        color: #64748B;
    }

/* =========================
   8. MODULES
   ========================= */
.modules-section {
    position: relative;
    padding: 110px 0;
    background: #F8FBFF;
    overflow: hidden;
}

    .modules-section::before,
    .modules-section::after,
    .industries-section::before,
    .erp-features::before,
    .erp-features::after,
    .why-xpert::before,
    .why-xpert::after,
    .erp-dashboard-showcase::before {
        content: "";
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
    }

    .modules-section::before {
        width: 500px;
        height: 500px;
        left: -220px;
        top: -220px;
        background: #EAF4FF;
    }

    .modules-section::after {
        width: 420px;
        height: 420px;
        right: -180px;
        bottom: -180px;
        background: #F1F7FD;
    }

    .modules-section .container,
    .industries-section .container,
    .erp-features .container,
    .erp-dashboard-showcase .container,
    .why-xpert .container {
        position: relative;
        z-index: 2;
    }

.module-card,
.industry-card,
.feature-box,
.benefit-card,
.feature-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    transition: .35s ease;
}

.module-card {
    padding: 34px;
    border: 1px solid #E5ECF3;
    border-radius: 24px;
    background: #fff;
}

    .module-card:hover,
    .industry-card:hover,
    .feature-box:hover,
    .benefit-card:hover,
    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 55px rgba(0,91,172,.12);
    }

    .module-card.featured,
    .industry-card.featured {
        border: 0;
        background: linear-gradient(135deg,#073763,#005BAC);
    }

.module-icon,
.feature-icon,
.benefit-icon,
.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 20px;
}

.module-icon {
    width: 78px;
    height: 78px;
    margin-bottom: 24px;
    background: linear-gradient(135deg,#005BAC,#1976D2);
    color: #fff;
    font-size: 32px;
}

.module-card h4 {
    margin-bottom: 14px;
    color: #073763;
    font-size: 23px;
    font-weight: 800;
}

.module-card.featured h4,
.module-card.featured p {
    color: #fff;
}

.module-card p {
    color: #64748B;
    line-height: 1.8;
}

.module-card a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: #005BAC;
    font-weight: 700;
    text-decoration: none;
}

/* =========================
   9. INDUSTRIES
   ========================= */
.industries-section {
    position: relative;
    padding: 110px 0;
    background: #fff;
    overflow: hidden;
}

    .industries-section::before {
        width: 420px;
        height: 420px;
        right: -180px;
        top: -180px;
        background: #EDF6FF;
    }

.industry-card {
    padding: 34px;
    border: 1px solid #E6EDF4;
    border-radius: 24px;
    background: #fff;
}

    .industry-card.featured h4,
    .industry-card.featured p,
    .industry-card.featured li {
        color: #fff;
    }

.icon-box {
    width: 78px;
    height: 78px;
    margin-bottom: 24px;
    border-radius: 22px;
    background: linear-gradient(135deg,#EEF6FF,#DDEEFF);
    color: #005BAC;
    font-size: 32px;
}

.industry-card h4 {
    margin-bottom: 14px;
    color: #073763;
    font-size: 23px;
    font-weight: 800;
}

.industry-card p,
.industry-card li {
    color: #64748B;
    line-height: 1.8;
}

.industry-card ul {
    padding-left: 20px;
}

/* =========================
   10. FEATURES
   ========================= */
.erp-features {
    position: relative;
    padding: 110px 0;
    background: #F8FBFF;
    overflow: hidden;
}

    .erp-features::before {
        width: 520px;
        height: 520px;
        left: -250px;
        top: -220px;
        background: #EAF4FF;
    }

    .erp-features::after {
        width: 420px;
        height: 420px;
        right: -180px;
        bottom: -180px;
        background: #F2F8FD;
    }

.feature-box {
    padding: 36px;
    border: 1px solid #E5ECF3;
    border-radius: 24px;
    background: #fff;
}

.feature-icon {
    width: 78px;
    height: 78px;
    margin-bottom: 24px;
    border-radius: 22px;
    background: linear-gradient(135deg,#005BAC,#1976D2);
    color: #fff;
    font-size: 32px;
}

.feature-box h5 {
    margin-bottom: 14px;
    color: #073763;
    font-size: 23px;
    font-weight: 800;
}

.feature-box p {
    margin: 0;
    color: #64748B;
    line-height: 1.8;
}

/* =========================
   11. DASHBOARD
   ========================= */
.erp-dashboard-showcase {
    position: relative;
    padding: 110px 0;
    background: #fff;
    overflow: hidden;
}

    .erp-dashboard-showcase::before {
        width: 650px;
        height: 650px;
        right: -260px;
        top: -260px;
        background: #EDF7FF;
    }

.badge-text {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 9px 18px;
    border-radius: 40px;
    background: #EAF4FF;
    color: #005BAC;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dashboard-points {
    margin-top: 30px;
}

    .dashboard-points .point-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
        color: #073763;
        font-weight: 600;
    }

        .dashboard-points .point-item span {
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 34px;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: #005BAC;
            color: #fff;
        }

.dashboard-window {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #E5ECF3;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 35px 80px rgba(0,91,172,.15);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 12px 24px;
    background: linear-gradient(90deg,#073763,#005BAC);
    color: #fff;
    font-weight: 700;
}

.dots {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
}

    .dots span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #fff;
        opacity: .85;
    }

.dashboard-body {
    padding: 28px;
    min-width: 0;
}

.kpi-card {
    height: 100%;
    padding: 22px;
    border: 1px solid #E5ECF3;
    border-radius: 18px;
    background: #F8FBFF;
}

    .kpi-card h6 {
        color: #64748B;
        font-size: 14px;
    }

    .kpi-card h3 {
        margin: 8px 0;
        color: #073763;
        font-size: 30px;
        font-weight: 800;
    }

    .kpi-card small {
        color: #16A34A;
        font-weight: 600;
    }

.chart-box {
    width: 100%;
    margin-top: 25px;
    padding: 24px;
    border: 1px solid #E5ECF3;
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
}

.chart-title {
    margin-bottom: 20px;
    color: #073763;
    font-weight: 700;
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    width: 100%;
    height: 180px;
}

    .bars span {
        flex: 1 1 0;
        min-width: 0;
        border-radius: 8px 8px 0 0;
        background: linear-gradient(180deg,#1976D2,#005BAC);
    }

.dashboard-window img {
    display: block;
    width: 100%;
    height: auto;
}

/* =========================
   12. WHY XPERT
   ========================= */
.why-xpert {
    position: relative;
    padding: 110px 0;
    background: #F8FBFF;
    overflow: hidden;
}

    .why-xpert::before {
        width: 550px;
        height: 550px;
        left: -260px;
        top: -240px;
        background: #EAF4FF;
    }

    .why-xpert::after {
        width: 420px;
        height: 420px;
        right: -180px;
        bottom: -180px;
        background: #F3F8FD;
    }

.benefit-card {
    padding: 36px;
    border: 1px solid #E5ECF3;
    border-radius: 24px;
    background: #fff;
}

.benefit-icon {
    width: 78px;
    height: 78px;
    margin-bottom: 24px;
    background: linear-gradient(135deg,#005BAC,#1976D2);
    color: #fff;
    font-size: 32px;
}

.benefit-card h4 {
    color: #073763;
    font-size: 23px;
    font-weight: 800;
}

.benefit-card p {
    color: #64748B;
    line-height: 1.8;
}

/* =========================
   13. CONTACT FORM
   ========================= */
.contact-form-wrapper,
.contact-card {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0,91,172,.10);
}

.contact-form-wrapper {
    padding: 55px;
    border: 1px solid #E5ECF3;
}

    .contact-form-wrapper > * {
        position: relative;
        z-index: 2;
    }

.contact-tag {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 9px 18px;
    border-radius: 40px;
    background: #EAF4FF;
    color: #005BAC;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-title {
    margin-top: 20px;
    color: #073763;
    font-size: clamp(1rem,3vw,2rem);
    line-height: 1.2;
    font-weight: 800;
}

    .contact-title span {
        color: #E53935;
    }

.contact-subtitle {
    max-width: 560px;
    margin-top: 20px;
    color: #64748B;
    font-size: 17px;
    line-height: 1.8;
}

.contact-features {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 14px;
    margin-top: 30px;
}

    .contact-features span {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
        padding: 14px 16px;
        border: 1px solid #E5ECF3;
        border-radius: 14px;
        background: #F8FBFF;
        color: #073763;
        font-size: 14px;
        font-weight: 700;
    }

.modern-input {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    border: 1px solid #D8E2EE;
    border-radius: 14px;
    padding: 14px 18px;
    color: #073763;
    font-size: 15px;
    box-shadow: none;
}

    .modern-input:focus {
        border-color: #005BAC;
        box-shadow: 0 0 0 4px rgba(0,91,172,.1);
    }

textarea.modern-input {
    min-height: 160px;
    resize: vertical;
}

.contact-form-wrapper .form-control {
    margin-bottom: 16px;
}

.contact-form-wrapper form {
    width: 100%;
}

.btn-demo {
    width: 100%;
    min-height: 58px;
    border: 0;
    border-radius: 50px;
    background: linear-gradient(135deg,#005BAC,#1976D2);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.btn-submit {
    max-width: 100%;
}

/* =========================
   14. GENERIC ABOUT / FEATURE CARD
   ========================= */
.feature-card {
    padding: 34px 30px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
}

    .feature-card h4 {
        color: #0B2946;
        font-weight: 700;
    }

    .feature-card p {
        color: #666;
        line-height: 1.8;
    }

/* =========================
   15. PAGE HERO
   ========================= */
header {
    width: 100%;
    background: linear-gradient(90deg,#0b2946 0%,#11497d 55%,#1d6cb4 100%);
}

.page-hero {
    padding: 110px 0 90px;
    background: linear-gradient(135deg,#0B2946,#155897,#1D6CB4);
    color: #fff;
    text-align: center;
}

    .page-hero h1 {
        margin: 0;
        font-size: clamp(2.2rem,5vw,3.4rem);
        font-weight: 800;
    }

        .page-hero h1 span {
            color: #64b5f6;
        }

    .page-hero p {
        max-width: 760px;
        margin: 20px auto 0;
        color: #dbe9ff;
        font-size: 18px;
        line-height: 1.8;
    }

/* =========================
   16. CONTACT HERO
   ========================= */
.contact-hero {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg,#0B2946 0%,#143B74 55%,#6E63F6 100%);
    overflow: hidden;
}

    .contact-hero::before {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        right: -150px;
        top: -120px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
    }

    .contact-hero > .container {
        position: relative;
        z-index: 2;
    }

.contact-card {
    padding: 40px;
}

    .contact-card h3 {
        color: #0B2946;
        font-weight: 700;
    }

    .contact-card p {
        color: #6c757d;
    }

.hero-highlights {
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #fff;
}

    .highlight-item i {
        color: #64B5F6;
        flex: 0 0 auto;
    }

/* =========================
   17. WHY REALTIME
   ========================= */
.why-realtime-section {
    padding: 100px 0;
    background: #F7F9FD;
}

.section-tag-dark {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: #E9F2FF;
    color: #0B2946;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.feature-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 22px;
    background: linear-gradient(135deg,#6E63F6,#64B5F6);
}

    .feature-icon-box i {
        color: #fff;
        font-size: 34px;
    }

/* =========================
   18. MAP / VIDEO
   ========================= */
.map-section {
    padding: 90px 0;
    background: #fff;
}

.map-card {
    overflow: hidden;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.map-header {
    padding: 35px 25px;
    text-align: center;
}

    .map-header h2 {
        color: #0B2946;
        font-weight: 800;
    }

    .map-header p {
        max-width: 700px;
        margin: 15px auto 0;
        color: #666;
    }

.map-card iframe {
    display: block;
    width: 100%;
    height: 520px;
    border: 0;
}

.youtube-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

    .youtube-wrapper iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

/* =========================
   19. FUN FACTS
   ========================= */
#funfacts {
    position: relative;
    padding: 150px 0 100px;
    color: #fff;
    background: linear-gradient(135deg,#073763,#005BAC);
    overflow: hidden;
}

    #funfacts::before,
    #funfacts::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
    }

    #funfacts::before {
        width: 650px;
        height: 650px;
        right: -230px;
        top: -230px;
        background: rgba(255,255,255,.05);
    }

    #funfacts::after {
        width: 450px;
        height: 450px;
        left: -180px;
        bottom: -180px;
        background: rgba(255,255,255,.04);
    }

    #funfacts .container,
    #funfacts .container-fluid,
    #ff-content {
        position: relative;
        z-index: 2;
    }

    #funfacts h1 {
        font-size: clamp(2rem,4vw,3.25rem);
        line-height: 1.25;
    }

    #funfacts p {
        max-width: 900px;
        margin: auto;
        color: rgba(255,255,255,.88);
        font-size: 18px;
        line-height: 1.8;
    }

#ff-content {
    padding: 20px 0;
    border-radius: 30px;
}

/* =========================
   20. FOOTER
   ========================= */
#footer {
    position: relative;
    width: 100%;
    padding: 80px 0 25px;
    color: #fff;
    background-color: #041F3A;
    background-image: url('../images/footer-bg.svg');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

    #footer::before,
    #footer::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        background: rgba(255,255,255,.03);
    }

    #footer::before {
        width: 500px;
        height: 500px;
        right: -220px;
        top: -220px;
    }

    #footer::after {
        width: 380px;
        height: 380px;
        left: -180px;
        bottom: -180px;
    }

    #footer .container,
    #footer-link {
        position: relative;
        z-index: 2;
        width: 100%;
        min-width: 0;
    }

        #footer-link.row {
            width: 100%;
            margin-left: 0;
            margin-right: 0;
        }

        #footer-link > [class*="col-"] {
            min-width: 0;
        }

        #footer-link .list-group {
            background: transparent;
        }

        #footer .list-group-item,
        #footer-link .list-group-item {
            padding: 7px 0;
            border: 0;
            background: transparent;
            color: rgba(255,255,255,.78);
        }

            #footer .list-group-item a,
            #footer-link .list-group-item a {
                display: inline-block;
                max-width: 100%;
                color: rgba(255,255,255,.86);
                text-decoration: none;
                transition: .25s;
            }

                #footer .list-group-item a:hover,
                #footer-link .list-group-item a:hover {
                    color: #fff;
                    transform: translateX(4px);
                }

.embossed-logo img {
    display: block;
    width: auto;
    max-width: 170px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    min-height: 55px;
    margin-bottom: 18px;
}

.logo-transparent {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    text-decoration: none;
}

    .logo-transparent img {
        width: auto;
        max-width: 160px;
        max-height: 50px;
    }

.footer-description {
    max-width: 360px;
    margin-top: 18px;
    color: rgba(255,255,255,.78);
    font-size: 15px;
    line-height: 1.8;
}

.footer-heading {
    position: relative;
    margin-bottom: 22px;
    padding-bottom: 10px;
    color: #fff;
    font-size: 19px;
    font-weight: 800;
}

    .footer-heading::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 3px;
        border-radius: 10px;
        background: #E53935;
    }

#footer-link h5.footer-heading {
    width: auto;
    min-width: 0;
    height: auto;
    min-height: 0;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    display: block;
    padding: 0 0 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.badge-address {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.badge-uae {
    background: #005BAC;
    color: #fff;
}

.badge-india {
    background: #E53935;
    color: #fff;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 7px 7px 0;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    transition: .3s;
}

    .social-icon img {
        width: 21px;
        height: 21px;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

    .social-icon:hover {
        background: #005BAC;
        transform: translateY(-3px);
    }

.footer-bottom {
    margin-top: 45px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
}

    .footer-bottom p {
        margin: 0;
        color: rgba(255,255,255,.7);
        font-size: 14px;
    }

/* =========================
   21. WHATSAPP
   ========================= */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 80px;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-size: 29px;
    box-shadow: 0 5px 18px rgba(0,0,0,.25);
    transition: .3s;
}

    .whatsapp-float:hover {
        color: #fff;
        transform: scale(1.08);
    }

/* =========================
   22. SMALL UTILITIES
   ========================= */
.card img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.list-group-flush > .list-group-item {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.text-center-xs {
    text-align: center !important;
}

.w-xs-100 {
    width: 100% !important;
}

/* =========================
   23. TABLET / SMALL LAPTOP
   ========================= */
@media (max-width: 1199.98px) {
    .navbar-brand img {
        width: 130px;
    }

    .navbar-nav .nav-link {
        padding-left: 11px !important;
        padding-right: 11px !important;
        font-size: 14px;
    }

    .navbar .btn-primary {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-section {
        min-height: 720px;
    }

    .hero-title {
        font-size: clamp(2.1rem,5vw,3.4rem);
    }
}

@media (max-width: 991.98px) {
    .navbar {
        min-height: 70px;
        padding: 10px 0;
    }

        .navbar .container-fluid {
            padding-left: 20px;
            padding-right: 20px;
        }

    .navbar-collapse {
        width: 100%;
        margin-top: 10px;
        padding: 12px;
        border-radius: 14px;
        background: rgba(20,40,70,.97);
        box-shadow: 0 20px 50px rgba(0,0,0,.25);
    }

    .navbar.scrolled .navbar-collapse {
        background: #fff;
    }

    .navbar-nav {
        align-items: stretch;
        gap: 2px;
        width: 100%;
    }

        .navbar-nav .nav-link {
            padding: 10px 14px !important;
            border-radius: 8px;
            white-space: normal;
        }

            .navbar-nav .nav-link::after {
                display: none;
            }

    .navbar .btn-primary {
        width: 100%;
        margin-top: 6px;
    }

    .navbar-nav .dropdown-menu {
        width: 100%;
        margin: 4px 0;
    }

    .hero-section {
        min-height: auto;
        padding: 130px 0 90px;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features,
    .hero-buttons {
        justify-content: center;
    }

    .hero-dashboard {
        margin-top: 50px;
    }

    .hero-card {
        display: none;
    }

    .contact-form-wrapper {
        padding: 40px;
    }

    .section-padding,
    .section-light,
    .trusted-section,
    .modules-section,
    .industries-section,
    .erp-features,
    .erp-dashboard-showcase,
    .why-xpert {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    #funfacts {
        padding-top: 110px;
        padding-bottom: 80px;
    }
}

/* =========================
   24. TABLET
   ========================= */
@media (min-width: 768px) and (max-width: 991.98px) {
    .footer-heading {
        margin-top: 15px;
    }

    .map-card iframe {
        height: 420px;
    }
}

/* =========================
   25. MOBILE
   ========================= */
@media (max-width: 767.98px) {
    .container,
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    .row {
        --bs-gutter-x: 1rem;
    }

    .hero-section {
        padding: 110px 0 70px;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2rem,9vw,2.5rem);
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-features {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

        .hero-buttons .btn {
            width: 100%;
        }

    .hero-dashboard {
        margin-top: 35px;
    }

        .hero-dashboard img {
            max-width: 100%;
            border-radius: 16px;
            transform: none !important;
        }

    #hero,
    #heroContact {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .section-title,
    .contact-title {
        font-size: clamp(1.8rem,7vw,2.2rem);
    }

    .section-description,
    .section-subtitle {
        font-size: 16px;
    }

    .module-card,
    .industry-card,
    .feature-box,
    .benefit-card {
        padding: 26px 22px;
    }

    .module-icon,
    .feature-icon,
    .benefit-icon,
    .icon-box {
        width: 68px;
        height: 68px;
        font-size: 28px;
        border-radius: 18px;
    }

    .module-card h4,
    .industry-card h4,
    .feature-box h5,
    .benefit-card h4 {
        font-size: 20px;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .contact-features {
        grid-template-columns: 1fr;
    }

    .modern-input {
        min-height: 54px;
        padding-left: 15px;
        padding-right: 15px;
    }

    textarea.modern-input {
        min-height: 140px;
    }

    .dashboard-header {
        min-height: 55px;
        padding: 10px 15px;
        font-size: 13px;
    }

    .dashboard-body {
        padding: 16px;
    }

    .kpi-card {
        padding: 17px;
    }

        .kpi-card h3 {
            font-size: 24px;
        }

    .chart-box {
        padding: 16px;
    }

    .bars {
        height: 140px;
        gap: 7px;
    }

    .map-section {
        padding: 60px 0;
    }

    .map-header {
        padding: 28px 18px;
    }

    .map-card iframe {
        height: 320px;
    }

    .page-hero,
    .contact-hero {
        padding: 85px 0 65px;
    }

        .page-hero p {
            font-size: 16px;
        }

    .contact-card {
        padding: 28px 20px;
    }

    #footer {
        padding: 65px 0 20px;
    }

    #footer-link > [class*="col-"] {
        width: 100%;
        margin-bottom: 28px;
    }

        #footer-link > [class*="col-"]:last-child {
            margin-bottom: 0;
        }

    .footer-heading {
        margin-top: 10px;
        margin-bottom: 18px;
    }

    .logo-wrapper {
        min-height: 45px;
    }

    .logo-transparent img {
        max-width: 145px;
        max-height: 42px;
    }

    .footer-description {
        max-width: none;
        font-size: 14px;
    }

    .footer-bottom {
        margin-top: 35px;
        text-align: center;
    }

        .footer-bottom .row > * {
            text-align: center !important;
        }

    #funfacts {
        padding: 80px 0 65px;
    }

        #funfacts h1 {
            font-size: clamp(1.8rem,7vw,2.3rem);
        }

        #funfacts p {
            font-size: 15px;
        }

    .whatsapp-float {
        right: 16px;
        bottom: 72px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
}

/* =========================
   26. SMALL MOBILE
   ========================= */
@media (max-width: 575.98px) {
    .navbar .container-fluid {
        padding-left: 14px;
        padding-right: 14px;
    }

    .navbar-brand img {
        width: 105px;
    }

    .navbar-collapse {
        max-height: calc(100vh - 90px);
        overflow-y: auto;
    }

    #hero,
    #heroContact {
        padding-top: 90px;
    }

    .hero-badge {
        padding: 8px 14px;
        font-size: 11px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline-light {
        min-height: 50px;
        padding: 13px 20px;
    }

    .section-padding,
    .section-light,
    .trusted-section,
    .modules-section,
    .industries-section,
    .erp-features,
    .erp-dashboard-showcase,
    .why-xpert {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .stat-box {
        padding: 26px 18px;
    }

        .stat-box i {
            width: 64px;
            height: 64px;
            font-size: 27px;
        }

    .country-strip {
        padding: 14px;
        gap: 8px;
    }

    .country-item {
        width: 100%;
        justify-content: center;
        padding: 9px 12px;
        font-size: 14px;
    }

    .client-logos {
        gap: 22px;
        margin-top: 35px;
    }

        .client-logos img {
            max-width: 125px;
            max-height: 42px;
        }

    .contact-form-wrapper {
        padding: 22px 16px;
    }

    .contact-features span {
        padding: 12px;
        font-size: 13px;
    }

    .dashboard-window {
        border-radius: 16px;
    }

    .dashboard-header {
        min-height: 48px;
        font-size: 12px;
    }

    .dots span {
        width: 8px;
        height: 8px;
    }

    .dashboard-body {
        padding: 12px;
    }

    .kpi-card {
        padding: 14px;
        border-radius: 14px;
    }

    .chart-box {
        padding: 13px;
        border-radius: 14px;
    }

    .bars {
        height: 115px;
    }

    .map-card iframe {
        height: 280px;
    }

    .footer-description,
    #footer .list-group-item,
    #footer-link .list-group-item {
        font-size: 13px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

        .social-icon img {
            width: 19px;
            height: 19px;
        }

    .footer-bottom p {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* =========================
   27. VERY SMALL PHONES
   ========================= */
@media (max-width: 359.98px) {
    .navbar-brand img {
        width: 95px;
    }

    .navbar-toggler {
        padding: 5px 7px;
    }

    .hero-title {
        font-size: 27px;
    }

    .hero-buttons .btn {
        font-size: 13px;
    }

    .module-card,
    .industry-card,
    .feature-box,
    .benefit-card {
        padding: 22px 17px;
    }

    .contact-form-wrapper {
        padding: 18px 13px;
    }
}

/* =========================
   28. LARGE DESKTOP
   ========================= */
@media (min-width: 1200px) {
    .hero-section {
        min-height: 820px;
    }

    .hero-dashboard img {
        max-width: 720px;
    }

    .section-padding,
    .section-light,
    .trusted-section,
    .modules-section,
    .industries-section,
    .erp-features,
    .erp-dashboard-showcase,
    .why-xpert {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

/* =========================
   29. ACCESSIBILITY / MOTION
   ========================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* =========================
   30. PRINT
   ========================= */
@media print {
    .navbar,
    #footer,
    .whatsapp-float,
    .btn {
        display: none !important;
    }

    body {
        overflow: visible;
        background: #fff;
        color: #000;
    }

    #hero,
    #heroContact {
        min-height: auto;
        padding: 20px 0;
        background: #fff !important;
    }
}
/* Tablet (≤991.98px) */
@media (max-width: 991.98px) {
    .navbar-brand img {
        max-height: 46px;
    }
}

/* Mobile (≤767.98px) */
@media (max-width: 767.98px) {
    .navbar-brand img {
        max-height: 40px;
    }
}

/* Small mobile (≤575.98px) */
@media (max-width: 575.98px) {
    .navbar-brand img {
        max-height: 34px;
    }
}

/* Very small phones (≤359.98px) */
@media (max-width: 359.98px) {
    .navbar-brand img {
        max-height: 28px;
    }
}

/* Large desktop (≥1200px) – optional */
@media (min-width: 1200px) {
    .navbar-brand img {
        max-height: 56px;
    }
}

.xpert-erp-visual {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: #071f3d;
    box-shadow: 0 12px 30px rgba(7, 31, 61, 0.22);
}

.xpert-erp-svg {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.45s ease;
}

.xpert-erp-visual:hover .xpert-erp-svg {
    transform: scale(1.025);
}
