    .it-solution-box {
        margin: 0 auto;
        background: linear-gradient(135deg, #ffffff 0%, #f7fafd 100%);
        border: 1px solid #e6edf5;
        padding: 30px;
        box-shadow: 0 18px 42px rgba(16, 18, 66, 0.09);
        position: relative;
        overflow: hidden;
    }
    .it-solution-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(180deg, #101242, #6d1210);
    }
    .icon-circle-shape {
        background: #f3f5ff;
        color: #101242;
        width: 68px;
        height: 68px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        font-size: 26px;
        margin: 0 auto;
        box-shadow: inset 0 0 0 1px rgba(16, 18, 66, 0.08);
    }
    .title-text-style { font-weight: 800; color: #101242; margin-bottom: 6px; font-size: 1.35rem; }
    .highlight-color { color: #6d1210; }
    .subtitle-text-style { color: #64748b; margin-bottom: 15px; font-size: 0.96rem; line-height: 1.6; }
    .feature-group { gap: 10px; font-size: 0.82rem; color: #555; }
    .feature-label {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 7px 11px;
        border-radius: 999px;
        background: #ffffff;
        border: 1px solid #e6edf5;
        color: #172033;
        font-weight: 800;
        box-shadow: 0 8px 18px rgba(16, 18, 66, 0.05);
    }
    .feature-label i { color: #6d1210; font-size: 1rem; font-weight: 500; }
    .quote-action-group {
        display: grid;
        gap: 10px;
        justify-items: end;
    }
    .btn-quote-action,
    .btn-quote-call {
        min-height: 44px;
        min-width: 155px;
        padding: 11px 18px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 800;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: 0.3s;
    }
    .btn-quote-action {
        background: #101242;
        color: #fff;
        box-shadow: 0 12px 24px rgba(16, 18, 66, 0.16);
    }
    .btn-quote-action:hover { background: #6d1210; color: #fff; transform: translateY(-2px); }
    .btn-quote-call {
        background: #ffffff;
        color: #101242;
        border: 1px solid #dbe4ef;
    }
    .btn-quote-call:hover { border-color: #101242; color: #101242; transform: translateY(-2px); }
    @media (max-width: 767px) {
        .it-solution-box {
            padding: 24px 18px;
        }
        .quote-action-group {
            justify-items: stretch;
        }
        .btn-quote-action,
        .btn-quote-call {
            width: 100%;
        }
    }

        .logos {
            width: 90%;
            height: 65px;
            padding: 2px;
        }
        /* Header */
        .header-section {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            height: auto;
        }

        /* Top Bar */
        .header-top {
            transform: translateY(0);
            opacity: 1;
            overflow: hidden;
        }

        .header-top {
            max-height: 45px;
            opacity: 1;
            overflow: hidden;
            transform: translateY(0);
            /* transition:all .4s ease; */
        }

        .header-section.hide-top .header-top {
            max-height: 0;
            opacity: 0;
            transform: translateY(-100%);
        }

/* Trust Features */
.features-container-wrap {
    padding: 0px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafd 100%);
    border-bottom: 1px solid #e6edf5;
}
            .section-sub {
                font-size: 1.3rem ;
            }
.features-head {
    max-width: 720px;
    margin: 0 auto 28px;
    text-align: center;
}

.features-head h2 {
    color: #172033;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.features-head h2 span {
    color: #2563eb;
}

.features-head p {
    color: #64748b;
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0;
}

.features-grid {
    row-gap: 18px;
}

.feat-item-box {
    padding: 10px;
    display: flex;
    align-items: stretch;
}

.feat-content-wrapper {
    width: 100%;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #e6edf5;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feat-content-wrapper:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feat-content-wrapper:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.12);
}

.feat-content-wrapper:hover:before {
    opacity: 1;
}

/* Icons Styling */
.feat-icon-truck, .feat-icon-badge, .feat-icon-support, .feat-icon-shield {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #eef5ff;
    font-size: 1.45rem;
    color: #2563eb;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feat-content-wrapper:hover .feat-icon-truck,
.feat-content-wrapper:hover .feat-icon-badge,
.feat-content-wrapper:hover .feat-icon-support,
.feat-content-wrapper:hover .feat-icon-shield {
    background: #2563eb;
    color: #ffffff;
    transform: scale(1.05);
}

.feat-text-group {
    position: relative;
    z-index: 1;
}

/* Text Styling */
.feat-main-title {
    font-size: 1rem;
    font-weight: 800;
    color: #172033;
    margin: 0 0 6px;
}

.feat-sub-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 767px) {
    .features-container-wrap {
        padding: 22px 0;
    }
    .features-head h2 {
        font-size: 1.55rem;
    }
    .feat-content-wrapper {
        min-height: auto;
        padding: 18px;
    }
}
.shop-category-image{
    width: 100%;
    height: 450px;
}
.enterprise-about-section { padding: 30px 20px; background: #ffffff; font-family: 'Segoe UI', sans-serif; }
.enterprise-container { max-width: 1200px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.enterprise-subtitle { color: #1e293b; font-weight: 700; letter-spacing: 1px; font-size: 0.9rem; }
.enterprise-title { font-size: 2.09rem; margin: 10px 0; color: #1e293b; }
.enterprise-title span { color: #75777a; }
.enterprise-description { color: #64748b; line-height: 1.6; margin-bottom: 30px; font-size: 17px;}

.enterprise-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feat-item { display: flex; align-items: flex-start; gap: 15px; }
.feat-icon { background: #eff6ff; color: #101242; padding: 12px; border-radius: 12px; font-size: 1.5rem; }

.enterprise-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.enterprise-cta-btn {
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 0.94rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.enterprise-call-btn {
    background: #101242;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(16, 18, 66, 0.16);
}

.enterprise-call-btn:hover {
    background: #1f214e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(16, 18, 66, 0.22);
}

.enterprise-whatsapp-btn {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.18);
}

.enterprise-whatsapp-btn:hover {
    background: #128c7e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.22);
}

.enterprise-visuals { position: relative; }
.main-image-card { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.secondary-image-card { margin-top: -80px; margin-left: 40px; border-radius: 24px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }

.floating-badge { position: absolute; background: white; padding: 15px; border-radius: 16px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.years-badge { bottom: 4px; right: 4px; background: #101242; color: white; border-radius: 50%; width: 120px; height: 120px; display: flex; align-items: center; justify-content: center; text-align: center; }

@media (max-width: 768px) {
    .enterprise-about-section {
        padding: 46px 16px;
    }
    .enterprise-container {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .enterprise-title {
        font-size: 2.1rem;
    }
    .enterprise-description {
        font-size: 15px;
        margin-bottom: 24px;
    }
    .enterprise-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .enterprise-cta-actions {
        margin-top: 24px;
    }
    .enterprise-cta-btn {
        flex: 1 1 100%;
        width: 100%;
    }
    .secondary-image-card {
        margin-top: 16px;
        margin-left: 0;
    }
    .years-badge {
        right: 12px;
        bottom: 12px;
        width: 104px;
        height: 104px;
    }
}
.feat-text {
font-size: 14px ; 
font-weight: 500;
} 
.client-badge i {
   font-size: 16px; 
}
.client-badge span {
    font-size: 16px;
    font-weight: 500;
}

.years-badge span {
    font-size: 15px;
    font-weight: 500;
}
/* CTA Section */
.cta-section {
    padding: 30px 0;
    background: linear-gradient(180deg, #f7fafd 0%, #ffffff 100%);
}

.cta-box {
    margin: 0 auto;
    padding: 38px;
    background: #172033;
    border-radius: 8px;
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.18);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
    position: relative;
    overflow: hidden;
    animation: ctaFadeUp 0.75s ease both;
}

.cta-box::before,
.cta-box::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    animation: ctaFloat 7s ease-in-out infinite;
}

.cta-box::before {
    width: 210px;
    height: 210px;
    right: -80px;
    top: -100px;
    background: rgba(37, 99, 235, 0.34);
}

.cta-box::after {
    width: 150px;
    height: 150px;
    left: 48%;
    bottom: -92px;
    background: rgba(37, 211, 102, 0.2);
    animation-delay: 1.2s;
}

.cta-textt,
.cta-buttons {
    position: relative;
    z-index: 1;
}

.cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #93c5fd;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cta-textt h2 {
    max-width: 620px;
    font-size: 2.15rem;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.18;
    font-weight: 800;
}

.cta-textt p {
    max-width: 620px;
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
}

.cta-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.cta-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    font-size: 0.82rem;
    font-weight: 700;
}

.cta-points i {
    color: #22c55e;
}

.cta-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-width: 230px;
}

.cta-buttons a {
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.94rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.btn-secondary:hover {
    background: #ffffff;
    color: #172033;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
     color: white;
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .cta-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px;
    }
    .cta-textt h2,
    .cta-textt p {
        margin-left: auto;
        margin-right: auto;
    }
    .cta-points {
        justify-content: center;
    }
    .cta-buttons {
        width: 100%;
        min-width: 0;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .cta-section {
        padding: 46px 0;
    }
    .cta-box {
        padding: 26px 20px;
        gap: 26px;
    }
    .cta-textt h2 {
        font-size: 1.55rem;
    }
    .cta-points {
        align-items: stretch;
    }
    .cta-points span {
        width: 100%;
        justify-content: center;
    }
}

@keyframes ctaFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ctaFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, 14px, 0);
    }
}  
/* Section Wrapper */
.process-wrapper-section {
    padding: 30px 0;
    background-color: #ffffff;
}

/* Heading Styling */
.sub-heading-text {
    color: #0d6efd;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.main-title-header {
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 50px;
}

/* Card Wrapper & Dash Line Logic */
.process-card-container {
    position: relative;
}

/* Dash Line: Sirf desktop ke liye */
@media (min-width: 992px) {
    .process-card-container:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 60px; /* Icon ke center level par */
        right: -25px; /* Cards ke beech ki gap */
        width: 50px;
        height: 2px;
        border-top: 2px dashed #0d6efd;
        z-index: 1;
    }
}

/* Individual Card Styling */
.process-card-item {
    background: #fff;
    padding: 30px 15px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.process-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Step Badge (01, 02, etc.) */
.step-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #fff;
    font-weight: 600;
}

/* Icon Container */
.icon-circle-bg {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #f4f8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0d6efd;
}

/* Text Styling */
.step-title-text {
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.step-desc-text {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}
/* Custom Styling for Premium Feel */
.glass-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: #0d6efd; /* Bootstrap Primary */
    border-radius: 2px;
}

.icon-box {
    background: #f0f4ff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
}
.icon-box i {
    color: #1a1a1a;
}

/* Vision, Mission & Values */
.vmv-section {
    padding: 64px 0;
    background: #f6f9fc;
}

.vmv-header {
    max-width: 720px;
    margin: 0 auto 34px;
    text-align: center;
}

.vmv-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #0d6efd;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vmv-title {
    margin-bottom: 12px;
    color: #172033;
    font-size: 2rem;
    font-weight: 800;
}

.vmv-title span {
    color: #0d6efd;
}

.vmv-subtitle {
    color: #64748b;
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.vmv-card {
    height: 100%;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e6edf5;
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vmv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #20c997);
}

.vmv-card:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 110, 253, 0.28);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

.vmv-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #eef5ff;
    color: #0d6efd;
    font-size: 1.55rem;
}

.vmv-card h4 {
    margin-bottom: 12px;
    color: #172033;
    font-size: 1.16rem;
    font-weight: 800;
}

.vmv-card p,
.vmv-values li {
    color: #64748b;
    font-size: 0.94rem;
    line-height: 1.65;
}

.vmv-card p {
    margin-bottom: 0;
}

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

.vmv-values li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.vmv-values i {
    color: #198754;
    font-size: 1rem;
}

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

@media (max-width: 575px) {
    .vmv-section {
        padding: 46px 0;
    }
    .vmv-title {
        font-size: 1.55rem;
    }
    .vmv-card {
        padding: 22px;
    }
}

        /* ============================================================
               CSS CUSTOM PROPERTIES & RESET
               ============================================================ */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-light: #dbeafe;
            --secondary: #0f172a;
            --accent: #8b5cf6;
            --gradient-1: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
            --gradient-2: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            --text-dark: #0f172a;
            --text-muted: #475569;
            --bg-white: #ffffff;
            --bg-light: #f1f5f9;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.16);
            --radius: 16px;
            --radius-sm: 8px;
            --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font);
            background: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            display: block;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ============================================================
               BUTTONS
               ============================================================ */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient-1);
            color: #fff;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: 50px;
            border: none;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(37, 99, 235, 0.45);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 50px;
            border: 2px solid var(--primary);
            transition: var(--transition);
            font-size: 0.9rem;
        }
        .btn-outline:hover {
            background: var(--primary);
            color: #fff;
        }

        .text-center {
            text-align: center;
        }

        /* ============================================================
               HEADER / NAV
               ============================================================ */
        .top-bar {
            background: var(--secondary);
            color: #cbd5e1;
            font-size: 0.85rem;
            padding: 8px 0;
            border-bottom: 1px solid #1e293b;
        }
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
        }
        .top-bar a {
            color: #e2e8f0;
            transition: var(--transition);
        }
        .top-bar a:hover {
            color: #fff;
        }
        .top-bar i {
            margin-right: 6px;
            color: var(--primary-light);
        }

        .navbar {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 12px;
            padding-bottom: 12px;
            flex-wrap: wrap;
            gap: 12px;
        }
        .logo img {
            height: 48px;
            width: auto;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-dark);
            transition: var(--transition);
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 2.5px;
            background: var(--gradient-1);
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-links a:hover {
            color: var(--primary);
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .nav-actions .phone-link {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--primary);
        }
        .nav-actions .phone-link i {
            font-size: 1.2rem;
        }
        .hamburger {
            display: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: var(--secondary);
        }

        
        /* ============================================================
               CATEGORIES
               ============================================================ */
        .categories-section {
            padding: 42px 0 52px;
            background: linear-gradient(180deg, #ffffff 0%, #f7fafd 100%);
        }
        .categories-head {
            max-width: 720px;
            margin: 0 auto;
        }
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 18px;
            margin-top: 34px;
        }
        .category-card {
            background: var(--bg-white);
            border-radius: 8px;
            padding: 20px;
            min-height: 156px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: space-between;
            gap: 18px;
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
            transition: var(--transition);
            border: 1px solid #e7edf4;
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }
        .category-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 123, 255, 0.08), rgba(255, 255, 255, 0));
            opacity: 0;
            transition: var(--transition);
        }
        .category-card:focus-visible {
            outline: 3px solid rgba(0, 123, 255, 0.22);
            outline-offset: 3px;
        }
        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 42px rgba(15, 23, 42, 0.11);
            border-color: rgba(0, 123, 255, 0.34);
        }
        .category-card:hover::before {
            opacity: 1;
        }
        .category-icon {
            width: 58px;
            height: 58px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #f0f6ff;
            position: relative;
            z-index: 1;
        }
        .category-icon img {
            max-height: 34px;
            max-width: 36px;
            width: auto;
        }
        .category-icon i {
            color: #6d1210;
            font-size: 1.7rem;
        }
                .category-icon i:hover {
            color: #ffff;
            font-size: 1.7rem;
        }
        .category-content {
            width: 100%;
            position: relative;
            z-index: 1;
        }
        .category-content h5 {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-dark);
            margin-bottom: 6px;
        }
        .category-content p {
            color: var(--text-light);
            font-size: 0.82rem;
            line-height: 1.45;
            margin-bottom: 14px;
        }
            .category-link p:hover {
                color: #fff;
            }
        .category-link {
            color: var(--primary);
            font-size: 0.82rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .category-link i {
            font-size: 0.72rem;
            transition: var(--transition);
        }
        .category-card:hover .category-link i {
            transform: translateX(4px);
        }

        /* ============================================================
               WHY US
               ============================================================ */
        .why-us-section {
            padding: 64px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f7fafd 100%);
            position: relative;
            overflow: hidden;
        }
        .why-us-section::before {
            content: "";
            position: absolute;
            width: 260px;
            height: 260px;
            right: -110px;
            top: -140px;
            border-radius: 50%;
            background: rgba(37, 99, 235, 0.1);
            pointer-events: none;
        }
        .why-head {
            max-width: 760px;
            margin: 0 auto 34px;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .why-head .section-sub {
            margin-bottom: 0;
        }
        .why-trust-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 18px;
        }
        .why-trust-row span {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 7px 13px;
            border-radius: 999px;
            background: #eef5ff;
            color: var(--primary);
            font-size: 0.78rem;
            font-weight: 800;
        }
        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
            margin-top: 0;
            position: relative;
            z-index: 1;
            perspective: 1200px;
        }
        .why-card {
            min-height: 238px;
            background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
            padding: 30px 22px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
            border: 1px solid #e6edf5;
            box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.85);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
        }
        .why-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(255, 255, 255, 0));
            opacity: 0;
            transition: opacity 0.35s ease;
        }
        .why-card::after {
            content: "";
            position: absolute;
            left: 18px;
            right: 18px;
            top: 0;
            height: 4px;
            border-radius: 0 0 999px 999px;
            background: linear-gradient(90deg, #2563eb, #22c55e);
        }
        .why-card:hover {
            border-color: rgba(37, 99, 235, 0.35);
            box-shadow: 0 28px 58px rgba(15, 23, 42, 0.16), 0 12px 24px rgba(37, 99, 235, 0.1);
            transform: translateY(-10px) rotateX(4deg) rotateY(-3deg);
        }
        .why-card:hover::before {
            opacity: 1;
        }
        .why-icon {
            width: 68px;
            height: 68px;
            margin: 0 auto 20px;
            background: #eef5ff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.85rem;
            position: relative;
            z-index: 1;
            transform: translateZ(24px);
            transition: var(--transition);
            box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
        }
        .why-card:hover .why-icon {
            background: #fff;
            color: var(--primary);
            transform: translateZ(34px) scale(1.06);
        }
        .why-icon img {
            height: 32px;
            width: auto;
            filter: invert(27%) sepia(93%) saturate(1358%) hue-rotate(213deg) brightness(95%) contrast(97%);
        }
        .why-card h4 {
            position: relative;
            z-index: 1;
            color: #172033;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .why-card p {
            position: relative;
            z-index: 1;
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* ============================================================
               STATS — IMPROVED UI + COUNTER
               ============================================================ */
       .stats-section {
    background: #ffffff; /* White background */
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

/* Optional: Subtle background pattern/glow for depth */
.stats-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, 0.03);
    filter: blur(60px);
    border-radius: 50%;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.stat-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 10px;
    /* Soft shadow for depth */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.stat-item .stat-icon {
    font-size: 2.5rem;
    color: #101242; /* Use your primary theme color */
    display: block;
}

.stat-item .stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1e293b; /* Dark text for readability */
    line-height: 1;
}

.stat-item .stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-item .stat-label {
    color: #64748b; /* Medium grey for text */
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive adjustment */
@media (max-width: 992px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .stats-grid { grid-template-columns: 1fr; }
}
        /* ============================================================
               TESTIMONIALS — SLIDER
               ============================================================ */
        .testimonial-section {
            padding: 20px 0;
            background: var(--bg-light);
            overflow: hidden;
        }

        .testimonial-slider-wrapper {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: var(--radius);
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }

        .testimonial-card {
            flex: 0 0 100%;
            background: var(--bg-white);
            padding: 40px 48px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            border-left: 4px solid var(--primary);
            margin: 0 4px;
        }
        .testimonial-card .stars {
            color: #f59e0b;
            margin-bottom: 14px;
            font-size: 1rem;
        }
        .testimonial-card p {
            font-style: italic;
            color: var(--text-dark);
            margin-bottom: 18px;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        .testimonial-card h5 {
            font-weight: 600;
            color: var(--primary);
            font-size: 0.95rem;
        }

        /* Slider Dots */
        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 28px;
        }
        .testimonial-dots button {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            border: 2px solid var(--primary);
            background: transparent;
            cursor: pointer;
            transition: var(--transition);
            padding: 0;
        }
        .testimonial-dots button.active {
            background: var(--primary);
            transform: scale(1.15);
        }
        .testimonial-dots button:hover {
            background: var(--primary-light);
        }

        /* Slider Arrows */
        .testimonial-arrows {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 16px;
        }
        .testimonial-arrows button {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid var(--primary);
            background: transparent;
            color: var(--primary);
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .testimonial-arrows button:hover {
            background: var(--primary);
            color: #fff;
        }
        .testimonial-arrows button:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        /* ============================================================
               PRODUCTS — with WhatsApp & Email Buttons
               ============================================================ */
        .products-section {
            padding: 30px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f7fafd 100%);
        }
        .products-head {
            max-width: 740px;
            margin: 0 auto 34px;
            text-align: center;
        }
        .products-head .section-sub {
            margin-bottom: 0;
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 22px;
            margin-top: 0;
        }
        .product-card {
            background: var(--bg-white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
            transition: var(--transition);
            border: 1px solid #e6edf5;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
            border-color: rgba(37, 99, 235, 0.28);
        }
        .product-card .img-wrap {
            background: #f0f6ff;
            padding: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            aspect-ratio: 4 / 3;
            overflow: hidden;
        }
        .product-card .img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.45s ease;
        }
        .product-card:hover .img-wrap img {
            transform: scale(1.05);
        }
        .product-card .info {
            padding: 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .product-card .info h4 {
            color: #172033;
            font-size: 1.05rem;
            font-weight: 800;
            margin-bottom: 6px;
        }
        .product-card .info p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 12px;
        }
        .product-card .info .tag {
            display: inline-flex;
            align-items: center;
            width: fit-content;
            background: #eef5ff;
            color: var(--primary);
            font-size: 0.72rem;
            font-weight: 800;
            padding: 4px 11px;
            border-radius: 999px;
            margin-bottom: 14px;
        }
        .products-section .product-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: auto;
            align-items: stretch;
        }
        .products-section .action-btn {
            width: 100%;
            height: 42px;
            border-radius: 8px;
            gap: 8px;
            font-size: 0.86rem;
            font-weight: 800;
        }
        .products-section .whatsapp-btn:hover,
        .products-section .email-btn:hover {
            transform: translateY(-2px);
        }
        .products-cta {
            text-align: center;
            margin-top: 36px;
        }

        /* Product Action Buttons (WhatsApp & Email) */
        .product-actions {
            display: flex;
            gap: 75px;
            margin-top: 10px;
            align-items: center;
        }
        .action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            transition: var(--transition);
            font-size: 1rem;
            text-decoration: none;
            border: 1.5px solid #e2e8f0;
            background: var(--bg-white);
        }
        .action-btn.whatsapp-btn {
            color: #25D366;
            border-color: #25D366;
        }
        .action-btn.whatsapp-btn:hover {
            background: #25D366;
            color: #fff;
            transform: scale(1.08);
        }
        .action-btn.email-btn {
            color: var(--primary);
            border-color: var(--primary);
        }
        .action-btn.email-btn:hover {
            background: var(--primary);
            color: #fff;
            transform: scale(1.08);
        }

        /* ============================================================
               BRANDS
               ============================================================ */
        .brands-section {
            padding: 30px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f7fafd 100%);
        }
        .brands-head {
            max-width: 740px;
            margin: 0 auto 30px;
            text-align: center;
        }
        .brands-head .section-sub {
            margin-bottom: 0;
        }
        .brands-meta {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 18px;
        }
        .brands-meta span {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 7px 13px;
            border-radius: 999px;
            background: #eef5ff;
            color: var(--primary);
            font-size: 0.78rem;
            font-weight: 700;
        }
        .brands-scroll {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            gap: 16px;
            margin-top: 0;
        }
        .brand-tile {
            min-height: 104px;
            padding: 18px;
            border-radius: 8px;
            background: #ffffff;
            border: 1px solid #e6edf5;
            box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        .brand-tile:hover {
            transform: translateY(-5px);
            border-color: rgba(37, 99, 235, 0.28);
            box-shadow: 0 18px 42px rgba(15, 23, 42, 0.11);
        }
        .brand-tile img {
            max-height: 58px;
            max-width: 100%;
            width: auto;
            object-fit: contain;
            filter: grayscale(1);
            opacity: 0.82;
            transition: var(--transition);
        }
        .brand-tile:hover img {
            opacity: 1;
            filter: grayscale(0);
            transform: scale(1.04);
        }
        @media (max-width: 1199px) {
            .brands-scroll {
                grid-template-columns: repeat(5, minmax(0, 1fr));
            }
        }
        @media (max-width: 991px) {
            .brands-scroll {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
        }
        @media (max-width: 767px) {
            .brands-section {
                padding: 48px 0;
            }
            .brands-scroll {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 12px;
            }
            .brand-tile {
                min-height: 88px;
                padding: 14px;
            }
            .brand-tile img {
                max-height: 48px;
            }
        }
        @media (max-width: 480px) {
            .brands-scroll {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        /* ============================================================
               FAQ
               ============================================================ */
        .faq-section {
            padding: 60px 0;
            background: var(--bg-white);
        }
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: #fff;
            margin-bottom: 12px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }
        .faq-question {
            width: 100%;
            padding: 18px 24px;
            background: transparent;
            border: none;
            text-align: left;
            font-weight: 600;
            font-size: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font);
            color: var(--text-dark);
        }
        .faq-question:hover {
            background: rgba(37, 99, 235, 0.05);
        }
        .faq-question i {
            transition: transform 0.3s;
            color: var(--primary);
        }
        .faq-answer {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        .faq-answer p {
            padding-bottom: 18px;
            color: var(--text-muted);
            margin: 0;
        }
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 0 24px;
        }

        .faq-enquiry-section {
            padding: 30px 0;
            background: linear-gradient(180deg, #f7fafd 0%, #ffffff 100%);
        }
        .faq-enquiry-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 430px;
            gap: 36px;
            align-items: start;
        }
        .faq-wrapper {
            min-width: 0;
        }
        .faq-wrapper .section-title {
            margin-bottom: 10px;
        }
        .faq-wrapper .section-sub {
            margin-bottom: 28px;
        }
        .faq-enquiry-section .faq-list {
            max-width: none;
            margin: 0;
        }
        .faq-enquiry-section .faq-item {
            border-radius: 8px;
            border-color: #e6edf5;
            box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
        }
        .faq-enquiry-section .faq-question {
            gap: 18px;
            line-height: 1.45;
        }
        .faq-support-card {
            margin-top: 18px;
            padding: 18px;
            border-radius: 8px;
            background: #eef5ff;
            color: #172033;
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }
        .faq-support-card i {
            color: var(--primary);
            font-size: 1.25rem;
            margin-top: 2px;
        }
        .faq-support-card strong {
            display: block;
            margin-bottom: 4px;
        }
        .faq-support-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.5;
            margin: 0;
        }
        .enquiry-form-container {
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
            overflow: hidden;
            border: 1px solid #e6edf5;
            position: sticky;
            top: 92px;
        }
        .enquiry-form-header {
            background: #172033;
            padding: 26px;
            color: #ffffff;
        }
        .enquiry-form-header h3 {
            margin: 0;
            font-size: 1.25rem;
            font-weight: 800;
        }
        .enquiry-form-header p {
            margin: 6px 0 0;
            font-size: 0.88rem;
            opacity: 0.86;
        }
        .enquiry-form {
            padding: 26px;
        }
        .form-row {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            margin-bottom: 7px;
            color: #172033;
            font-size: 0.9rem;
            font-weight: 700;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            border: 1px solid #dbe4ef;
            border-radius: 8px;
            padding: 11px 12px;
            color: #172033;
            font-size: 0.92rem;
            font-family: var(--font);
            background: #ffffff;
            transition: var(--transition);
        }
        .form-group textarea {
            min-height: 108px;
            resize: vertical;
        }
        .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(37, 99, 235, 0.12);
        }
        .enquiry-submit {
            width: 100%;
            border: none;
            border-radius: 8px;
            background: var(--primary);
            color: #ffffff;
            padding: 13px 16px;
            font-weight: 800;
            cursor: pointer;
            transition: var(--transition);
        }
        .enquiry-submit:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(37, 99, 235, 0.26);
        }
        .enquiry-secure-note {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.78rem;
            line-height: 1.5;
            margin: 14px 0 0;
        }
        .enquiry-secure-note i {
            color: #198754;
        }

        @media (max-width: 991px) {
            .faq-enquiry-grid {
                grid-template-columns: 1fr;
            }
            .enquiry-form-container {
                position: static;
            }
        }

        @media (max-width: 575px) {
            .faq-enquiry-section {
                padding: 48px 0;
            }
            .faq-question {
                padding: 16px 18px;
                font-size: 0.94rem;
            }
            .faq-answer,
            .faq-item.active .faq-answer {
                padding-left: 18px;
                padding-right: 18px;
            }
            .enquiry-form-header,
            .enquiry-form {
                padding: 22px;
            }
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
        }

        /* ============================================================
               CTA BANNER
               ============================================================ */
        .cta-banner {
            padding: 52px 0;
            background:
                radial-gradient(circle at 8% 18%, rgba(109, 18, 16, 0.34), transparent 30%),
                linear-gradient(135deg, #101242 0%, #1f214e 100%);
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(255,255,255,0.08), transparent 42%);
            pointer-events: none;
        }
        .cta-wrapper {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            align-items: center;
            gap: 34px;
            position: relative;
            z-index: 1;
        }
        .cta-text h2 {
            color: #fff;
            font-weight: 800;
            font-size: 2rem;
            margin-bottom: 10px;
        }
        .cta-text p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.04rem;
            line-height: 1.65;
            margin-bottom: 0;
        }
        .cta-benefits {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 18px;
        }
        .cta-benefits span {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 7px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.1);
            color: #eef2ff;
            font-size: 0.8rem;
            font-weight: 800;
            border: 1px solid rgba(255, 255, 255, 0.12);
        }
        .cta-benefits i {
            color: #93c5fd;
        }
        .cta-sales-actions {
            display: grid;
            gap: 12px;
            min-width: 220px;
        }
        .cta-wrapper .btn-primary {
            background: #fff;
            color: #101242;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            justify-content: center;
        }
        .cta-wrapper .btn-primary:hover {
            background: #f0f4ff;
            transform: translateY(-2px);
        }
        .cta-whatsapp-link {
            min-height: 46px;
            padding: 12px 18px;
            border-radius: 8px;
            background: rgba(37, 211, 102, 0.14);
            border: 1px solid rgba(37, 211, 102, 0.5);
            color: #ffffff;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            text-decoration: none;
            transition: 0.3s;
        }
        .cta-whatsapp-link:hover {
            background: #25d366;
            color: #ffffff;
            transform: translateY(-2px);
        }
        @media (max-width: 767px) {
            .cta-banner {
                padding: 42px 0;
            }
            .cta-wrapper {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .cta-text h2 {
                font-size: 1.55rem;
            }
            .cta-benefits {
                justify-content: center;
            }
            .cta-sales-actions {
                width: 100%;
                min-width: 0;
            }
        }

        /* ============================================================
               NEWSLETTER
               ============================================================ */
        .newsletter-section {
            padding: 50px 0;
            background: var(--bg-light);
        }
        .newsletter-box {
            background: var(--bg-white);
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            border: 1px solid #eef2f6;
        }
        .newsletter-box h3 {
            font-size: 1.5rem;
            font-weight: 700;
        }
        .newsletter-box p {
            color: var(--text-muted);
        }
        .newsletter-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .newsletter-form input {
            padding: 14px 20px;
            border: 1px solid #e2e8f0;
            border-radius: 50px;
            min-width: 280px;
            font-size: 0.95rem;
            outline: none;
            transition: var(--transition);
            background: var(--bg-light);
        }
        .newsletter-form input:focus {
            border-color: var(--primary);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
        }
        .newsletter-form button {
            padding: 14px 32px;
        }

        /* ============================================================
               FOOTER
               ============================================================ */
        .footer {
            background: #111827;
            color: #cbd5e1;
            padding: 64px 0 0px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
            overflow: hidden;
        }
        .footer::before {
            content: "";
            position: absolute;
            top: -140px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(37, 99, 235, 0.16);
            pointer-events: none;
        }
        .footer .container {
            position: relative;
            z-index: 1;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: minmax(260px, 1.6fr) 1fr 1fr minmax(220px, 1.1fr);
            gap: 34px;
            margin-bottom: 34px;
        }
        .footer h4 {
            color: #fff;
            font-weight: 800;
            font-size: 1.1rem;
            margin-bottom: 18px;
            position: relative;
        }
        .footer h4::after {
            content: "";
            display: block;
            width: 36px;
            height: 3px;
            margin-top: 10px;
            border-radius: 999px;
            background: var(--primary);
        }
        .footer p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #b6c2d2;
            margin-bottom: 10px;
        }
        .footer-about {
            max-width: 340px;
        }
        .footer-contact {
            display: grid;
            gap: 11px;
            margin-top: 18px;
        }
        .footer-contact p {
            display: grid;
            grid-template-columns: 24px minmax(0, 1fr);
            gap: 9px;
            align-items: start;
            margin: 0;
        }
        .footer-contact i {
            color: var(--primary);
            margin-top: 4px;
        }
        .footer a {
            transition: var(--transition);
            display: inline-block;
            color: #cbd5e1;
        }
        .footer a:hover {
            color: #fff;
        }
        .footer ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer ul li {
            margin-bottom: 10px;
        }
        .footer ul li a {
            font-size: 0.95rem;
            position: relative;
            padding-left: 0;
        }
        .footer ul li a:hover {
            color: #93c5fd;
            transform: translateX(4px);
        }
        .footer .social {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }
        .footer .social a {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            color: #cbd5e1;
            font-size: 1.1rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer .social a:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-3px);
        }
        .footer-gem-card {
            padding: 18px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-gem-card img {
            height: 52px;
            width: auto;
            margin-bottom: 12px;
            padding: 8px;
            border-radius: 8px;
            background: #fff;
        }
        .footer-gem-card p {
            font-size: 0.9rem;
            color: #b6c2d2;
            margin-bottom: 6px;
        }
        .footer-gem-card .gem-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            margin-top: 8px;
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(37, 99, 235, 0.18);
            color: #bfdbfe;
            font-size: 0.78rem;
            font-weight: 800;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .footer-bottom a {
            color: #eceef1;
        }
        .footer-bottom a:hover {
            color: #fff;
        }
        .footer-policy-links {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
        }

        /* ============================================================
               RESPONSIVE
               ============================================================ */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-text p {
                margin-left: auto;
                margin-right: auto;
            }
            .hero-badges {
                justify-content: center;
            }
            .hero-slider {
                grid-template-columns: repeat(3, 1fr);
            }
            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--bg-white);
                padding: 20px 0;
                border-radius: var(--radius-sm);
                box-shadow: var(--shadow-md);
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                gap: 12px;
                text-align: center;
            }
            .nav-links.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .nav-actions .phone-link span {
                display: none;
            }

            .hero {
                padding: 48px 0 56px;
            }
            .hero-text h1 {
                font-size: 2.2rem;
            }
            .hero-slider {
                grid-template-columns: 1fr 1fr;
            }
            .section-title {
                font-size: 1.6rem ;
            }
            .categories-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 14px;
            }
            .category-card {
                min-height: 170px;
                padding: 16px;
            }
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            }
            .why-grid {
                grid-template-columns: 1fr 1fr;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .stat-item .stat-number {
                font-size: 2.4rem;
            }
            .cta-wrapper {
                flex-direction: column;
                text-align: center;
            }
            .footer-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .newsletter-box {
                flex-direction: column;
                text-align: center;
            }
            .newsletter-form input {
                min-width: 200px;
                width: 100%;
            }
            .newsletter-form {
                width: 100%;
                justify-content: center;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .footer-about {
                max-width: none;
            }
            .footer-contact p {
                grid-template-columns: 22px minmax(0, 1fr);
            }
            .testimonial-card {
                padding: 28px 20px;
            }
            .testimonial-card p {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .hero-slider {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .hero-slider .slide-card {
                padding: 12px;
            }
            .hero-slider .slide-card img {
                height: 48px;
            }
            .hero-text h1 {
                font-size: 1.8rem;
            }
            .product-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .why-grid {
                grid-template-columns: 1fr;
            }
            .categories-grid {
                grid-template-columns: 1fr;
            }
            .category-card {
                min-height: auto;
            }
            .category-content p {
                margin-bottom: 10px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .stat-item {
                padding: 20px 12px;
            }
            .stat-item .stat-number {
                font-size: 2rem;
            }
            .stat-item .stat-icon {
                font-size: 1.6rem;
            }
            .action-btn {
                width: 34px;
                height: 34px;
                font-size: 0.9rem;
            }
        }
        /* Card Container */
.singel-product {
  background: #ffffff;
  border-radius: 16px;
  padding: 15px;
  border: 1px solid #f0f0f0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

/* Hover Effect for Card */
.singel-product:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Image Container */
.single-product-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
}

.single-product-img img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
  display: block;
}

/* Hover effect on image */
.singel-product:hover .single-product-img img {
  transform: scale(1.08);
}

/* Content Area */
.single-product-content {
  padding: 5px 0;
}

.product-name a {
  font-family: sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.product-name a:hover {
  color: #007bff; 
}
.why-icon i:hover {
  color:#007bff ; 
}
.why-icon i {
    font-size: 40px; 
    color: #007bff;  
    display: inline-block;
}


.why-card {
    text-align: center;
    padding: 20px;
}

/* Featured Products Section */
.product-area-blk {
    padding: 64px 0;
    background: #ffffff;
}

.product-area-blk .head-title {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.product-area-blk .head-title h2 {
    color: #172033;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.product-area-blk .product-text {
    color: #64748b;
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.product-area-blk .single-product-blk {
    height: 100%;
    padding: 0;
    border-radius: 8px;
    border: 1px solid #e6edf5;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-area-blk .single-product-blk:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 110, 253, 0.28);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

.product-area-blk .single-product-img {
    margin: 0;
    border-radius: 0;
    background: #f7fafd;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-area-blk .single-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
}

.product-area-blk .single-product-content {
    padding: 18px 18px 8px;
    flex: 1;
}

.product-chip {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eef5ff;
    color: #0d6efd;
    font-size: 0.72rem;
    font-weight: 700;
}

.product-area-blk .product-name {
    margin: 0;
    line-height: 1.35;
}

.product-area-blk .product-name a {
    color: #cddcfb;
    font-size: 1rem;
    font-weight: 800;
}

.product-area-blk .product-name a:hover {
    color: #0d6efd;
}

.product-area-blk .product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 12px 18px 18px;
}

.product-area-blk .action-btn {
    width: 100%;
    height: 42px;
    border-radius: 8px;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
}

.product-area-blk .call-btn {
    color: #0d6efd;
    border-color: #0d6efd;
}

.product-area-blk .call-btn:hover {
    background: #0d6efd;
    color: #ffffff;
    transform: translateY(-2px);
}

.product-area-blk .whatsapp-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 1199px) {
    .featured-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

        @media (max-width: 767px) {
            .product-area-blk {
                padding: 46px 0;
            }
            .product-area-blk .head-title h2 {
        font-size: 1.55rem;
    }
    .featured-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .product-area-blk .single-product-content {
        padding: 14px 14px 6px;
    }
    .product-area-blk .product-actions {
        grid-template-columns: 1fr;
        margin: 10px 14px 14px;
    }
}

        @media (max-width: 480px) {
            .featured-products-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 991px) {
            .products-section {
                padding: 54px 0;
            }
            .product-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 575px) {
            .products-section {
                padding: 46px 0;
            }
            .products-head {
                margin-bottom: 24px;
            }
            .product-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .product-card .info {
                padding: 16px;
            }
            .products-section .product-actions {
                grid-template-columns: 1fr;
            }
        }

/* Industries We Serve */
.industries-section {
    padding: 64px 0;
    background: linear-gradient(180deg, #f7fafd 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -130px;
    top: -120px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    pointer-events: none;
}

.industries-head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.industries-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #0d6efd;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.industries-title {
    margin-bottom: 12px;
    color: #172033;
    font-size: 2rem;
    font-weight: 800;
}

.industries-title span {
    color: #0d6efd;
}

.industries-subtitle {
    color: #64748b;
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.industry-card {
    min-height: 236px;
    padding: 24px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e6edf5;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-7px);
    border-color: rgba(37, 99, 235, 0.32);
    box-shadow: 0 24px 52px rgba(15, 23, 42, 0.13);
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: #eef5ff;
    color: #0d6efd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    background: #0d6efd;
    color: #ffffff;
    transform: scale(1.05);
}

.industry-card h4,
.industry-card p,
.industry-tags {
    position: relative;
    z-index: 1;
}

.industry-card h4 {
    color: #172033;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 9px;
}

.industry-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.industry-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f0f6ff;
    color: #2563eb;
    font-size: 0.74rem;
    font-weight: 800;
}

.industry-tags i {
    font-size: 0.72rem;
}

@media (max-width: 1199px) {
    .industries-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .industries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .industries-section {
        padding: 46px 0;
    }
    .industries-title {
        font-size: 1.55rem;
    }
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .industry-card {
        min-height: auto;
        padding: 20px;
    }
}

/* Brand Theme & Page Animations */
:root {
    --brand-navy: #101242;
    --brand-navy-soft: #1f214e;
    --brand-red: #6d1210;
    --brand-red-soft: #8b1b18;
    --brand-blue: #2563eb;
    --brand-ink: #172033;
    --brand-muted: #64748b;
    --brand-line: #e6edf5;
    --brand-surface: #ffffff;
    --brand-wash: #f7fafd;
}

body {
    background: #f6f9fc;
}

.header-top {
    background: var(--brand-navy);
    color: #e2e8f0;
}

.header-top a,
.header-top span {
    color: #e2e8f0;
}

.header-top i {
    color: #ffffff;
}

.header-bottom {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(16, 18, 66, 0.08);
    box-shadow: 0 10px 28px rgba(16, 18, 66, 0.08);
    backdrop-filter: blur(12px);
}

.header-bottom .menu ul li a {
    color: var(--brand-navy);
    font-weight: 800;
    position: relative;
}

.header-bottom .menu ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-blue));
    transform: translateX(-50%);
    transition: width 0.28s ease;
}

.header-bottom .menu ul li:hover a,
.header-bottom .menu ul li a:hover {
    color: var(--brand-red);
}

.header-bottom .menu ul li:hover a::after,
.header-bottom .menu ul li a:hover::after {
    width: 70%;
}

.section-title,
.categories-head .section-title,
.products-head .section-title,
.brands-head .section-title,
.faq-wrapper .section-title {
    color: var(--brand-navy);
    font-weight: 800;
}

.section-title span,
.categories-head .section-title span,
.products-head .section-title span,
.brands-head .section-title span,
.faq-wrapper .section-title span {
    color: var(--brand-red);
}

.section-sub,
.industries-subtitle,
.vmv-subtitle,
.product-area-blk .product-text,
.products-head .section-sub,
.brands-head .section-sub {
    color: var(--brand-muted);
}

.features-container-wrap,
.categories-section,
.industries-section,
.products-section,
.brands-section,
.faq-enquiry-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--brand-wash) 100%);
}

.enterprise-about-section,
.stats-section,
.product-area-blk,
.process-wrapper-section {
    background: #ffffff;
}

.cta-box,
.cta-banner,
.enquiry-form-header,
.footer {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-soft) 100%);
}

.cta-banner {
    background:
        radial-gradient(circle at 8% 18%, rgba(109, 18, 16, 0.34), transparent 30%),
        linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-soft) 100%);
}

.btn-primary,
.enquiry-submit,
.category-card:hover .category-icon,
.industry-card:hover .industry-icon {
    background: linear-gradient(135deg, #b7c3ff 0%, var(--brand-blue) 100%);
}

.btn-primary:hover,
.enquiry-submit:hover {
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-navy) 100%);
}

.enterprise-call-btn,
.product-area-blk .call-btn:hover {
    background: var(--brand-navy);
}

.enterprise-title,
.vmv-title,
.industries-title,
.product-area-blk .head-title h2,
.feat-main-title,
.why-card h4,
.product-card .info h4,
.industry-card h4 {
    color: var(--brand-navy);
}

.enterprise-title span,
.vmv-title span,
.industries-title span,
.highlight-color,
.product-chip,
.category-link,
.industries-eyebrow,
.vmv-eyebrow,
.sub-heading-text {
    color: var(--brand-red);
}

.feat-icon,
.vmv-icon,
.industry-icon,
.category-icon,
.why-icon,
.icon-circle-bg,
.icon-circle-shape {
    background: #f3f5ff;
    color: var(--brand-navy);
}

.feat-content-wrapper,
.category-card,
.industry-card,
.vmv-card,
.why-card,
.process-card-item,
.product-card,
.product-area-blk .single-product-blk,
.brand-tile,
.faq-enquiry-section .faq-item,
.enquiry-form-container,
.it-solution-box,
.stat-item {
    border-color: var(--brand-line);
    box-shadow: 0 14px 34px rgba(16, 18, 66, 0.07);
}

.feat-content-wrapper:hover,
.category-card:hover,
.industry-card:hover,
.vmv-card:hover,
.why-card:hover,
.process-card-item:hover,
.product-card:hover,
.product-area-blk .single-product-blk:hover,
.brand-tile:hover,
.stat-item:hover {
    border-color: rgba(109, 18, 16, 0.22);
    box-shadow: 0 24px 52px rgba(16, 18, 66, 0.14);
}

.vmv-card::before,
.why-card::after {
    background: linear-gradient(90deg, var(--brand-red), var(--brand-blue));
}

.footer h4::after,
.divider {
    background: #fff;
}
.brands-meta span{
    color: #6d1210;
}
.footer-contact i,
.why-trust-row span {
    color: #fff;
}
.footer-gem-card .gem-badge{
    color: #fff;
}
.product-area-blk .product-name a {
    color: #b9bcff;
}

.product-area-blk .product-name a:hover,
.product-name a:hover {
    color: var(--brand-red);
}

.theme-animate {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.theme-animate.theme-in-view {
    opacity: 1;
    transform: translateY(0);
}

.theme-animate:nth-child(2) { transition-delay: 0.06s; }
.theme-animate:nth-child(3) { transition-delay: 0.12s; }
.theme-animate:nth-child(4) { transition-delay: 0.18s; }
.theme-animate:nth-child(5) { transition-delay: 0.24s; }
.theme-animate:nth-child(6) { transition-delay: 0.3s; }

.main-slider,
.cta-box {
    animation: themeFadeUp 0.8s ease both;
}

.main-image-card,
.secondary-image-card {
    animation: themeSoftFloat 6s ease-in-out infinite;
}

.secondary-image-card {
    animation-delay: 0.8s;
}

.floating-badge {
    animation: themeBadgePulse 3.5s ease-in-out infinite;
}

.brand-tile img,
.brand-logo a img {
    transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
}

.brand-tile:hover img,
.brand-logo a:hover img {
    transform: scale(1.06);
}

.nivoSlider img,
.shop-category-image {
    filter: saturate(1.05) contrast(1.02);
}

@keyframes themeFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes themeSoftFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes themeBadgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
    .theme-animate {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 768px) {
    .header-bottom .menu ul li a::after {
        bottom: -4px;
    }
    .main-image-card,
    .secondary-image-card {
        animation: none;
    }
}

/* ==========================================================================
   Page Generator (pagegen) components — bulk brand/product/location pages.
   Prefixed .pg- to avoid colliding with the hand-built brand-page classes
   above; reuses the same design tokens (--primary/--brand-navy/--radius)
   and existing .btn-primary/.btn-whatsapp/.btn-secondary button classes.
   ========================================================================== */

.pg-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.pg-breadcrumb { max-width: 1200px; margin: 18px auto 0; padding: 0 20px; font-size: .88rem; color: var(--text-muted); }
.pg-breadcrumb a { color: var(--primary); text-decoration: none; }
.pg-breadcrumb a:hover { text-decoration: underline; }

/* --- Hero: clean full banner (same convention as the site's own .main-slider
   nivoSlider banners — no crop, no dimming, no text overlay on the image),
   then a normal-flow heading/CTA section below it (mirrors .enterprise-about-section). --- */
.pg-hero-banner-wrap { margin-top: 50px; overflow: hidden; border-radius: var(--radius); }
.pg-hero-banner-wrap .owl-carousel .item img,
.pg-hero-banner-wrap > img { width: 100%; height: auto; object-fit: cover; display: block; }
.pg-hero-below { padding: 26px 0 6px; }
.pg-hero-heading { color: var(--secondary); font-size: 1.7rem; font-weight: 700; line-height: 1.25; margin: 0 0 14px; }
.pg-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.pg-hero-badges span { display: inline-flex; align-items: center; gap: 6px; background: #f1f5f9; border: 1px solid #e2e8f0; color: #1e293b; padding: 7px 14px; border-radius: 999px; font-size: .82rem; font-weight: 600; }
.pg-hero-badges i { color: var(--primary); }
@media (max-width: 767px) {
    .pg-hero-heading { font-size: 1.35rem; }
}

/* --- CTA tape (repeated top/middle/bottom band) --- */
.pg-cta-tape { background: var(--gradient-1); padding: 26px 0; }
.pg-cta-tape .pg-wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.pg-cta-tape-text { color: #fff; font-weight: 700; font-size: 1.15rem; }
.pg-cta-tape-text small { display: block; font-weight: 400; opacity: .85; font-size: .85rem; margin-top: 4px; }
.pg-cta-tape-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.pg-cta-tape-actions a { white-space: nowrap; }

/* --- Sticky bottom CTA tape (mobile-first bar, desktop keeps it too) --- */
.pg-sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 999; background: var(--secondary); box-shadow: 0 -6px 24px rgba(0,0,0,.18); padding: 10px 14px; display: flex; gap: 10px; justify-content: center; }
.pg-sticky-cta a { flex: 1; max-width: 220px; text-align: center; padding: 12px 10px; border-radius: 10px; font-weight: 700; font-size: .92rem; }

/* --- Intro / body copy --- */
.pg-section { padding: 54px 0; }
.pg-section--light { background: var(--bg-light); }
.pg-intro, .pg-body-copy { color: var(--text-dark); font-size: 1.02rem; line-height: 1.85; }
.pg-body-copy h2 { font-size: 1.7rem; margin: 40px 0 16px; color: var(--secondary); }
.pg-body-copy h3 { font-size: 1.28rem; margin: 28px 0 12px; color: var(--secondary); }
.pg-body-copy ul { padding-left: 22px; margin-bottom: 16px; }
.pg-body-copy li { margin-bottom: 8px; }
.pg-body-copy p { margin-bottom: 16px; }

/* --- Quick enquiry lead form --- */
.pg-quick-enquiry { background: #fff; border: 1px solid var(--brand-line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 32px; margin: 36px 0; }
.pg-quick-enquiry h3 { margin: 0 0 6px; font-size: 1.35rem; color: var(--secondary); }
.pg-quick-enquiry p.pg-qe-sub { color: var(--text-muted); margin-bottom: 20px; }
.pg-quick-enquiry .pg-qe-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pg-quick-enquiry .pg-qe-grid .pg-qe-full { grid-column: 1 / -1; }
.pg-quick-enquiry input, .pg-quick-enquiry textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--brand-line); border-radius: var(--radius-sm); font-family: var(--font); font-size: .95rem; }
.pg-quick-enquiry textarea { min-height: 100px; resize: vertical; }
.pg-quick-enquiry button { margin-top: 18px; border: none; cursor: pointer; }
.pg-qe-status { margin-top: 12px; font-weight: 600; font-size: .9rem; }
.pg-qe-status.ok { color: #16a34a; }
.pg-qe-status.err { color: #dc2626; }
@media (max-width: 640px) { .pg-quick-enquiry .pg-qe-grid { grid-template-columns: 1fr; } }

/* --- Perks / USP grid --- */
.pg-perks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 30px; }
.pg-perk-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 26px 20px; text-align: center; transition: var(--transition); }
.pg-perk-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pg-perk-card i { font-size: 1.8rem; color: var(--primary); background: var(--primary-light); width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.pg-perk-card h4 { font-size: 1.02rem; margin: 0 0 6px; color: var(--secondary); }
.pg-perk-card p { font-size: .88rem; color: var(--text-muted); margin: 0; }
@media (max-width: 991px) { .pg-perks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pg-perks-grid { grid-template-columns: 1fr; } }

/* --- Feature blocks (product photo + copy, alternating) --- */
.pg-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin: 46px 0; }
.pg-feature.pg-feature--reverse .pg-feature-media { order: 2; }
.pg-feature-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.pg-feature-copy h3 { font-size: 1.5rem; margin: 0 0 14px; color: var(--secondary); }
.pg-feature-copy p { color: var(--text-muted); line-height: 1.75; }
@media (max-width: 767px) { .pg-feature, .pg-feature.pg-feature--reverse .pg-feature-media { grid-template-columns: 1fr; order: initial; } }

/* --- Internal link box --- */
.pg-linkbox { background: #fff; border: 1px dashed var(--brand-line); border-radius: var(--radius); padding: 28px; margin: 36px 0; }
.pg-linkbox h4 { margin: 0 0 14px; color: var(--secondary); }
.pg-linkbox ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.pg-linkbox a { color: var(--primary); text-decoration: none; font-weight: 600; }
.pg-linkbox a:hover { text-decoration: underline; }
@media (max-width: 640px) { .pg-linkbox ul { grid-template-columns: 1fr; } }

/* --- FAQ accordion --- */
.pg-faq-item { background: #fff; border: 1px solid var(--brand-line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; }
.pg-faq-q { padding: 18px 22px; font-weight: 700; color: var(--secondary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.pg-faq-q i { transition: transform .25s; }
.pg-faq-item.active .pg-faq-q i { transform: rotate(180deg); }
.pg-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 22px; color: var(--text-muted); line-height: 1.7; }
.pg-faq-item.active .pg-faq-a { max-height: 500px; padding-bottom: 20px; }

/* --- Brand/product logo strip reuse note: existing #logo-carousel owl-carousel is reused as-is --- */
body.pg-generated-page { scroll-padding-top: 90px; }
@media (max-width: 991px) { .pg-perks-grid, .pg-feature { grid-template-columns: 1fr 1fr; } }

