:root {
    --color-bg: #f4f6f9;
    --color-surface: #ffffff;
    --color-primary: #0056d2;
    --color-primary-dark: #003d95;
    --color-accent: #e6b800;
    --color-accent-bright: #ffd700;
    --color-text: #111827;
    --color-muted: #6b7280;
    --radius-card: 10px;
    --shadow-card: 0 4px 18px rgba(15, 23, 42, 0.07), 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow-card-hover: 0 12px 32px rgba(15, 23, 42, 0.12), 0 4px 10px rgba(15, 23, 42, 0.06);
}

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

body {
    background: var(--color-bg);
    margin: 0px;
    padding: 0px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--color-text);
}

/* Limit main content width */
@media (min-width: 1200px) {
    .container {
        max-width: 1180px;
    }
}

/* Remove inner horizontal padding for main site content */
.show_body .container {
    padding-left: 0;
    padding-right: 0;
}



/* ============================
   Modern About Section
   ============================ */


.modal .form-group {
    margin-bottom: 0px !important;
}

.about-section-modern {
    background: #ffffff;
}

.about-page-hero {
    background: linear-gradient(160deg, #eaf2ff 0%, #f0f4fc 50%, #e4ecfa 100%);
    color: var(--color-text);
    padding-top: 56px;
    padding-bottom: 56px;
    position: relative;
    overflow: hidden;
}

.about-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 70% at 80% 30%, rgba(0, 86, 210, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 15% 80%, rgba(0, 86, 210, 0.04) 0%, transparent 55%);
    pointer-events: none;
}

.about-page-hero h1 {
    color: #183d8d;
    font-size: 2.4rem;
    margin-top: 15px;
    font-weight: 900;
    position: relative;
}

.about-page-hero h1 span{
    color: #ffd700;
    font-size: 2.4rem;
    margin-top: 15px;
    font-weight: 900;
    position: relative;
}

.about-page-hero .lead,
.about-page-hero p {
    color: #4b5e82;
    position: relative;
}

.about-page-hero-image {
    background: #ffffff;
    border: 1px solid #dce5f5;
    border-radius: 16px;
    padding: 10px;
    display: inline-block;
    position: relative;
    box-shadow: 0 16px 48px rgba(15, 35, 70, 0.1);
}

.about-page-hero-image img {
    border-radius: 12px;
}

.about-page-content {
    background: var(--color-bg);
}

/* ============================
   About - Enterprise Hero
   ============================ */
.about-hero-enterprise {
    padding-top: 56px;
    padding-bottom: 56px;
}

.about-hero-enterprise-card {
    border-radius: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.about-hero-enterprise-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(0, 86, 210, 0.08);
    border: 1px solid rgba(0, 86, 210, 0.15);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-hero-enterprise-title {
    color: var(--color-text);
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.1;
}

.about-hero-enterprise-lead {
    color: #4b5e82;
    font-size: 14px;
    line-height: 1.75;
    max-width: 70ch;
}

.about-hero-enterprise-sublead {
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.75;
    max-width: 70ch;
}

.about-hero-enterprise-actions .btn {
    border-radius: 6px;
    padding: 10px 18px;
    font-weight: 700;
}

.about-hero-enterprise-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.about-hero-enterprise-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dce5f5;
    color: var(--color-text);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.about-hero-enterprise-image-card {
    position: relative;
    background: #ffffff;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid #dce5f5;
    box-shadow: 0 16px 48px rgba(15, 35, 70, 0.1);
    overflow: hidden;
}

.about-hero-enterprise-image-card img {
    width: 100%;
    
    
    border-radius: 12px;
    display: block;
}

.about-hero-floating-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(227, 237, 255, 1);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.14);
    color: #132244;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(6px);
    white-space: nowrap;
}

.about-hero-floating-badge--1 {
    left: 14px;
    top: 14px;
}

.about-hero-floating-badge--2 {
    right: 14px;
    bottom: 14px;
}

@media (max-width: 991.98px) {
    .about-hero-enterprise-title {
        font-size: 2.1rem;
    }

    .about-hero-enterprise-image-card img {
        height: 320px;
    }
    .home-whyus-feature-card{
        margin-bottom: 10px;
    }
}

@media (max-width: 767.98px) {
     
    .about-hero-enterprise-card {
        padding: 18px 16px;
        border-radius: 22px;
    }

    .about-hero-enterprise-title {
        font-size: 1.9rem;
    }

    .about-hero-enterprise-trust-row {
        justify-content: center;
    }

    .about-hero-enterprise-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .about-hero-floating-badge {
        font-size: 11px;
        padding: 9px 11px;
    }

    .about-hero-enterprise-image-card img {
        height: 240px;
    }
}



.who-we-are-section {
    background: #fafafa;
    padding-top: 72px;
    padding-bottom: 72px;
}

.who-we-are-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
}

.who-we-are-image-wrap {
    position: relative;
    border-radius: 28px;
    background: #ffffff;
    padding: 14px;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.20);
    /* overflow: hidden; */
    width: 95%;
}

.who-we-are-img-primary {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 18px;
}

.who-we-are-img-secondary {
    position: absolute;
    right: -30px;
    bottom: -40px;
    width: 50%;

    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
    padding: 14px;
}

.who-we-are-years-pill {
    position: absolute;
    width: 150px;
    left: -20px;
    top: 58px;
    padding: 8px 18px;
    border-radius: 14px;
    background: var(--color-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.28);
}

.who-we-are-years-number {
    display: block;
    font-size: 40px;
    font-weight: 800;
    text-align: center;
}

.who-we-are-years-label {
    font-size: 20px;
    font-weight: 700;
}

.who-we-are-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
}

.who-we-are-feature {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 10px 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.who-we-are-check {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #e0f2fe;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

.who-we-are-feature-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
}

.who-we-are-stats {
    margin-top: 18px;
    gap: 32px;
}

.who-we-are-stat-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-accent);
}

.who-we-are-stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
}

@media (max-width: 767.98px) {
    .who-we-are-feature-grid {
        grid-template-columns: 1fr;
    }
}

.about-main-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(15, 35, 52, 0.08);
    padding: 24px 26px 26px;
}

/* ============================
   About - Enterprise Content Card
   ============================ */
.about-content-enterprise-card {
    position: relative;
    overflow: hidden;
}

.about-content-enterprise-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(900px 360px at 10% 0%, rgba(31, 111, 209, 0.12), transparent 55%),
        radial-gradient(700px 280px at 90% 20%, rgba(12, 188, 136, 0.10), transparent 60%);
}

.about-content-enterprise-card>* {
    position: relative;
    z-index: 1;
}

.about-content-enterprise-image {
    position: relative;
}

.about-content-image-badges {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-content-image-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(227, 237, 255, 1);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.14);
    color: #132244;
    font-size: 12px;
    font-weight: 800;
}

.about-content-image-badge--accent {
    left: auto;
    right: 14px;
    top: auto;
    bottom: 14px;
    background: rgba(255, 255, 255, 0.92);
}

.about-content-enterprise-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.about-content-enterprise-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid #e4e9f2;
    background: #ffffff;
    border-radius: 8px;
    padding: 8px 16px;
    color: #223256;
    font-size: 14px;
    line-height: 1.6;
}

.about-content-enterprise-bullets li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f6fd1;
    background: rgba(31, 111, 209, 0.10);
    border: 1px solid rgba(31, 111, 209, 0.18);
    flex: 0 0 auto;
    margin-top: 1px;
}

.about-main-feature-card {
    position: relative;
}

.about-main-feature-number {
    position: absolute;
    right: 12px;
    top: -6px;
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    color: rgba(31, 111, 209, 0.10);
    pointer-events: none;
    user-select: none;
}

.about-content-enterprise-description {
    color: #4b5e82;
}

@media (max-width: 767.98px) {
    /* .about-content-image-badge {
        left: 12px;
        top: 12px;
    } */

    .about-content-image-badge--accent {
        right: 12px;
        bottom: 12px;
    }

    .about-main-feature-number {
        font-size: 34px;
        right: 10px;
    }

    .about-content-enterprise-bullets li {
        font-size: 13px;
        padding: 11px 12px;
    }
}

.about-main-image {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
}

.about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-main-badge {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-muted);
    margin-bottom: 6px;
}

.about-main-title {
    color: var(--color-text);
}

.about-main-lead {
    color: #4b5e82;
}

.about-main-cta .btn {
    margin-bottom: 8px;
}

.about-btn-primary {
    background: var(--color-primary);
    color: #ffffff !important;
    border-radius: 6px;
    padding: 10px 24px;
    font-weight: 700;
    border: none;
    box-shadow: 0 6px 18px rgba(0, 86, 210, 0.25);
    transition: background 0.18s ease, box-shadow 0.18s ease;
}

.about-btn-primary:hover,
.about-btn-primary:focus,
.about-btn-primary:active {
    background: #0068ff !important;
    color: #ffffff !important;
    opacity: 1;
    box-shadow: 0 8px 24px rgba(0, 86, 210, 0.32);
}

.about-btn-secondary {
    background: #ffffff;
    border-radius: 6px;
    padding: 9px 22px;
    font-weight: 600;
    border: 1px solid #d0daf0;
    color: var(--color-text);
}

.about-btn-secondary:hover {
    background: #f5f8ff;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.about-main-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.about-main-feature-card {
    background: #f6f8ff;
    border-radius: 14px;
    padding: 16px 12px;
    border: 1px solid #dde4f3;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.about-main-feature-card h3 {
    color: var(--color-text);
}

.about-main-feature-card p {
    color: #4b5e82;
}

.about-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    flex-shrink: 0;
}

.about-plan-section {
    margin-top: 24px;
}

.about-plan-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e1e6f5;
    box-shadow: 0 14px 36px rgba(15, 35, 52, 0.06);
    padding: 18px 18px 20px;
    text-align: left;
}

.about-plan-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 10px;
}

@media (max-width: 767.98px) {
    .about-plan-card {
        text-align: left;
    }
}

.about-extra {
    margin-top: 24px;
}

.about-extra-card {
    background: #f6f8ff;
    border-radius: 18px;
    border: 1px solid #dde4f3;
    padding: 16px 18px 18px;
    box-shadow: 0 10px 26px rgba(15, 35, 52, 0.08);
    height: 100%;
}

.about-extra-card h2 {
    color: var(--color-text);
}

.about-extra-list {
    margin: 0;
    padding-left: 18px;
}

.about-extra-list li {
    font-size: 14px;
    color: #4b5e82;
    margin-bottom: 4px;
}

.about-how-we-work {
    margin-top: 8px;
}

.about-extra-steps {
    margin: 0;
    padding-left: 20px;
}

.about-extra-steps li {
    font-size: 14px;
    color: #4b5e82;
    margin-bottom: 6px;
}

.about-split-section {
    margin-top: 16px;
}

.about-split-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(15, 35, 52, 0.16);
}

.about-split-list {
    margin: 0;
    padding-left: 18px;
}

.about-split-list li {
    font-size: 14px;
    color: #4b5e82;
    margin-bottom: 4px;
}

/* ============================
   Why Choose Us section
   ============================ */

.why-choose-section {
    background: #fafafa;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* ============================
   Home "Why Us" (enterprise layout)
   ============================ */
.home-whyus-section {
    background: #fafafa;
}

.home-whyus-top-title {
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #111827;
    margin-bottom: 10px;
}

.home-whyus-top-subtitle {
    max-width: 92ch;
    margin: 0 auto;
    color: #7a8ba5;
    font-size: 13px;
    line-height: 1.8;
}

/* .home-whyus-hero {
    margin-top: 10px;
} */

.home-whyus-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 10px;
}

.home-whyus-kicker-line {
    width: 34px;
    height: 2px;
    background: #2563eb;
    border-radius: 999px;
    display: inline-block;
}

.home-whyus-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.12;
    color: #0f172a;
    margin-bottom: 14px;
}

.home-whyus-title span {
    color: #2563eb;
    font-style: italic;
}

.home-whyus-lead {
    color: #7a8ba5;
    font-size: 13px;
    line-height: 1.9;
    max-width: 70ch;
    margin-bottom: 14px;
}

.home-whyus-link {
    color: #2563eb;
    font-weight: 800;
    font-size: 12px;
    text-decoration: none;
    border-bottom: 1px solid rgba(37, 99, 235, 0.35);
    padding-bottom: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.home-whyus-link:hover {
    border-bottom-color: rgba(37, 99, 235, 0.9);
    text-decoration: none;
}

.home-whyus-image-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
}

.home-whyus-image-border {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    pointer-events: none;
    transform: translate(10px, -10px);
    background:
        linear-gradient(rgba(37, 99, 235, 0.95), rgba(37, 99, 235, 0.95)) right top / 70px 2px no-repeat,
        linear-gradient(rgba(37, 99, 235, 0.95), rgba(37, 99, 235, 0.95)) right top / 2px 70px no-repeat,
        linear-gradient(rgba(37, 99, 235, 0.95), rgba(37, 99, 235, 0.95)) left bottom / 70px 2px no-repeat,
        linear-gradient(rgba(37, 99, 235, 0.95), rgba(37, 99, 235, 0.95)) left bottom / 2px 70px no-repeat;
}

.home-whyus-image {
    width: 100%;
  
    display: block;
}

.home-whyus-float {
    position: absolute;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 12px;
    border: 1px solid #e4e9f2;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    min-width: 120px;
}

.home-whyus-float--top {
    top: 14px;
    left: 14px;
    border-top: 3px solid #2563eb;
}

.home-whyus-float--bottom {
    bottom: 14px;
    left: 14px;
    background: linear-gradient(135deg, #9ba7b9, var(--color-primary-dark));
    border: 0;
    color: #ffffff;
}

.home-whyus-float-number {
    font-weight: 900;
    font-size: 22px;
    line-height: 1;
}

.home-whyus-float-label {
    font-size: 11px;
    opacity: 0.9;
    margin-top: 4px;
}

.home-whyus-feature-card {
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    padding: 18px 16px 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    
}

.home-whyus-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
    border-color: #cfe0ff;
}

.home-whyus-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #eef4ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.home-whyus-feature-title {
    margin-top: 12px;
    font-weight: 900;
    color: #0f172a;
    font-size: 14px;
}

.home-whyus-feature-text {
    margin-top: 8px;
    color: #7a8ba5;
    font-size: 12.5px;
    line-height: 1.7;
    max-width: 40ch;
}

.home-whyus-feature-number {
    position: absolute;
    right: 14px;
    bottom: 10px;
    font-size: 46px;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.06);
    line-height: 1;
}

@media (max-width: 991.98px) {
    .home-whyus-title {
        font-size: 32px;
    }

    .home-whyus-image {
        height: 280px;
    }
}

@media (max-width: 767.98px) {
    .home-whyus-top-title {
        font-size: 28px;
    }

    .home-whyus-title {
        font-size: 28px;
    }

    .home-whyus-image {
        height: 240px;
    }

    .home-whyus-image-border {
        transform: translate(6px, -6px);
    }
}

.why-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: #e0f2fe;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.why-stats {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.why-stat-pill {
    background: #ffffff;
    border-radius: 999px;
    padding: 8px 14px;
    border: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.why-stat-number {
    font-weight: 700;
    color: var(--color-primary);
}

.why-stat-label {
    font-size: 12px;
    color: #6b7280;
}

.why-main-card,
.why-card,
.why-method-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e4e9f2;
    padding: 16px 20px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
}

/* highlight top right card */
.why-main-card {


    margin-bottom: 12px;
}

.why-main-card p,
.why-main-card .why-link {
    color: rgba(255, 255, 255, 0.9);
}

.why-main-card .badge {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.why-card {
    background: #ffffff;
}

.why-card:hover {
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.10);
    transform: translateY(-2px);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.why-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.why-link:hover {
    text-decoration: underline;
}

.why-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    /* background: #e0f2fe; */
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
}

.why-steps {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.why-steps li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4b5e82;
}

.why-step-number {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.why-step-label {
    font-weight: 600;
    color: var(--color-text);
}

.why-step-divider {
    flex: 1 1 24px;
    height: 1px;
    background: #e5e7eb;
}

@media (max-width: 767.98px) {
    .why-steps {
        flex-direction: column;
        align-items: flex-start;
    }

    .why-step-divider {
        display: none;
    }
}

.why-table-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 14px 16px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.why-table-enterprise {
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
    border: 1px solid #dce7ff;
    border-radius: 22px;
    padding: 24px 22px 10px;
    box-shadow: 0 18px 44px rgba(9, 45, 112, 0.08);
    margin-top: 50px;
}

.why-table-enterprise-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(14, 101, 241, 0.1);
    color: var(--color-primary);
    font-size: 12px;
    letter-spacing: 0.3px;
    font-weight: 500;
   
    margin-bottom: 10px;
}

.why-table-card-enterprise {
    position: relative;
    padding: 18px 18px 16px;
    border-color: #d9e4fb;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.why-table-card-enterprise h5 {
    font-weight: 700;
}

.why-table-card-enterprise:hover {
    transform: translateY(-3px);
    border-color: rgba(14, 101, 241, 0.42);
    box-shadow: 0 22px 44px rgba(14, 101, 241, 0.16);
}

.why-table-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 20px;
    color: #ffffff;
    background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    box-shadow: 0 10px 20px rgba(14, 101, 241, 0.25);
}

@media (max-width: 991.98px) {
    .why-table-enterprise {
        padding: 20px 16px 8px;
    }
}

/* ============================
   About page - Services section
   ============================ */

.about-services-section {
    background: #f5f7fb;
}

.about-services-section .text-muted {
    color: #aab2b9 !important;
}

.about-service-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    padding: 16px 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.04);
    height: 100%;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-service-card--highlight {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

.about-service-card--highlight .badge {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.about-service-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.about-service-link--light {
    color: #ffffff;
}

.about-service-link:hover,
.about-service-link--light:hover {
    text-decoration: underline;
}

.about-service-card:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.18);
}

.about-service-card:hover .about-service-link {
    color: #ffffff;
}

/* ============================
   Product page layout + filter
   ============================ */

.product-page {
    background: var(--color-bg);
}

/* ============================
   Single-Product Breadcrumb Strip
   ============================ */
.sp-breadcrumb-strip {
    background: linear-gradient(135deg, #e8eef6 0%, #f0f4fa 50%, #e4ecf7 100%);
    border-bottom: 1px solid #d6e0ef;
    padding: 28px 0 26px;
}
.sp-breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 0;
}
.sp-breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.sp-breadcrumb-item + .sp-breadcrumb-item::before {
    content: "\f105";
    font-family: "FontAwesome";
    margin: 0 10px;
    color: #a0b1cc;
    font-size: 12px;
}
.sp-breadcrumb-item a {
    color: #5a7199;
    text-decoration: none;
    transition: color .2s;
}
.sp-breadcrumb-item a:hover {
    color: var(--color-primary);
    text-decoration: none;
}
.sp-breadcrumb-item a i {
    margin-right: 4px;
    font-size: 15px;
}
.sp-breadcrumb-item.is-current span {
    color: var(--color-primary);
    font-weight: 600;
}
.sp-breadcrumb-title {
    margin: 14px 0 0;
    font-size: 26px;
    font-weight: 800;
    color: #0f2b4e;
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.sp-breadcrumb-desc {
    margin: 6px 0 0;
    font-size: 14px;
    color: #5a7199;
    max-width: 60ch;
    line-height: 1.5;
}

@media (max-width: 767.98px) {
    .sp-breadcrumb-strip {
        padding: 20px 0 18px;
    }
    .sp-breadcrumb-title {
        font-size: 20px;
    }
    .sp-breadcrumb-item {
        font-size: 12px;
    }
}

/* Product page hero */
.product-hero {
    width: 100%;
    background: linear-gradient(135deg, #0d3b7a 0%, #0a2f64 50%, #07214a 100%);
    box-shadow: none;
}

.product-hero-card {

    border-radius: 0;
    padding: 22px 24px;
    color: #ffffff;

    width: 100%;
}

.product-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 4px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.25);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-hero-title {
    font-size: 28px;
    font-weight: 800;
    margin: 20px 0px;
    color: #ffffff;
}

.product-hero-subtitle {
    color: rgba(234, 243, 255, 0.92);

    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
}

.product-hero-breadcrumb {
    margin-top: 20px;

    color: rgba(234, 243, 255, 0.85);
}

.product-hero-breadcrumb-link {
    color: rgba(234, 243, 255, 0.95);
    font-weight: 600;
    text-decoration: none;
}

.product-hero-breadcrumb-link:hover {
    color: #50adb1;
    text-decoration: none;
}

.product-hero-breadcrumb-sep {
    margin: 0 8px;
    color: rgba(234, 243, 255, 0.6);
}

.product-hero-breadcrumb-sep a:hover {
    color: #50adb1 !important;
    text-decoration: none !important;
}


.product-hero-breadcrumb-current {
    font-weight: 600;
    color: rgba(234, 243, 255, 0.85);
}

.product-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 820px;
    margin: 0 auto;
}

.product-hero-stat {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    padding: 12px 14px;
    text-align: center;
}

.product-hero-stat-number {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.product-hero-stat-label {
    margin-top: 2px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(234, 243, 255, 0.78);
}

@media (max-width: 767.98px) {
    .product-hero-card {
        padding: 18px 18px;
        border-radius: 18px;
        text-align: center;
    }

    .product-hero-stats {
        grid-template-columns: 1fr;
    }
}

.product-page-header .site-pagination {
    font-size: 13px;
    color: #6b7280;
}

/* ============================
   PLP — Category Tabs + Toolbar
   ============================ */

.plp-cat-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-bottom: 2px solid #e4e9f2;
    margin-bottom: 0;
}

.plp-cat-tabs::-webkit-scrollbar {
    display: none;
}

.plp-cat-tab {
    flex-shrink: 0;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-muted);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.18s ease, border-color 0.18s ease;
}

.plp-cat-tab:hover {
    color: var(--color-text);
}

.plp-cat-tab.is-active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.plp-cat-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 18px;
    padding: 0 6px;
    margin-left: 6px;
    border-radius: 999px;
    background: rgba(0, 86, 210, 0.08);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
}

.plp-cat-tab.is-active .plp-cat-count {
    background: var(--color-primary);
    color: #ffffff;
}

/* Toolbar bar — matches reference image */
.plp-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #e4e9f2;
    margin-bottom: 24px;
}

.plp-toolbar-left {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.plp-toolbar-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0;
}

.plp-toolbar-count {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-muted);
}

.plp-toolbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.plp-sort-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
}

.plp-sort-select {
    border: 1px solid #d0daf0;
    border-radius: 6px;
    padding: 6px 30px 6px 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236b7280'/%3E%3C/svg%3E") no-repeat right 10px center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.15s ease;
}

.plp-sort-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 86, 210, 0.1);
}

/* Product grid full width */
.plp-grid-wrap .product-list-container .row {
    row-gap: 0;
}

@media (max-width: 767.98px) {
    .plp-cat-tabs {
        gap: 0;
        padding: 0 4px;
    }

    .plp-cat-tab {
        padding: 10px 14px;
        font-size: 12px;
    }

    .plp-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 0;
    }

    .plp-toolbar-right {
        width: 100%;
    }

    .plp-sort-select {
        flex: 1;
    }
}

/* ============================
   Breadcrumb module
   ============================ */

.page-breadcrumb {
    margin-bottom: 18px;
}

.page-breadcrumb-inner {
    background: #ffffff;
    border: 1px solid #e4e9f2;
    border-radius: 18px;
    padding: 14px 16px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.page-breadcrumb-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 6px;
}

.page-breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.page-breadcrumb-item::after {
    content: "/";
    color: #9aa4b9;
    margin-left: 8px;
}

.page-breadcrumb-item:last-child::after {
    content: "";
    margin: 0;
}

.page-breadcrumb-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.page-breadcrumb-link:hover {
    text-decoration: underline;
}

.page-breadcrumb-home-icon {
    margin-right: 6px;
    font-size: 13px;
    color: var(--color-primary);
}

.page-breadcrumb-current {
    color: #6b7280;
    font-weight: 600;
}

.product-filter-panel--enterprise .product-filter-title {
    padding: 0 0 10px;
    margin-bottom: 10px;
    border-radius: 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #eef2f7;
    color: var(--color-text);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-filter-panel--enterprise .product-filter-title-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-filter-panel--enterprise .product-filter-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid #eef2f7;
    background: #f9fbff;
    color: #4b5e82;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.category-page .category-side-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-page .category-side-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e7eefb;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.category-page .category-side-item:hover {
    border-color: #cfe0ff;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
}

.category-page .category-side-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--color-text);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-page .category-side-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.category-page .category-side-count {
    min-width: 26px;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: #eef4ff;
    border: 1px solid #dde4f3;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.category-page .category-side-arrow {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(14, 101, 241, 0.08);
    border: 1px solid rgba(14, 101, 241, 0.14);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.category-page .category-side-item.is-active {
    border-color: rgba(255, 215, 0, 0.45);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.category-page .category-side-item.is-active .category-side-arrow,
.category-page .category-side-item.is-active .category-side-count {
    background: rgba(255, 215, 0, 0.14);
    border-color: rgba(255, 215, 0, 0.32);
    color: var(--color-accent-bright);
}

.product-filter-panel--enterprise .product-filter-accordion {
    max-height: calc(100vh - 240px);
    overflow: auto;
    padding-right: 6px;
}

.product-filter-panel--enterprise .custom-card {
    border: 1px solid #eef2f7;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    margin-bottom: 10px;
    box-shadow: none;
}

.product-filter-panel--enterprise .custom-card:hover {
    border-color: #dde4f3;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.product-filter-panel--enterprise .custom-card-header {
    background: #ffffff;
    border: 0;
    height: auto;
    padding: 0;
}

.product-filter-panel--enterprise .custom-card-toggle {
    display: block;
    padding: 10px 12px;
    text-decoration: none !important;
}

.product-filter-panel--enterprise .custom-card-toggle .row {
    align-items: center;
}

.product-filter-panel--enterprise .custom-card-toggle .col-2 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.product-filter-panel--enterprise .custom-card-toggle:hover {
    background: #e4e5eb;
}

.product-filter-panel--enterprise .product-left-list {
    color: #333333;

}

.product-filter-panel--enterprise .product-left-list:hover {
    color: #333333 !important;
}

.single-blog-side-card .product-filter-panel--enterprise .custom-card-header:hover {
    color: #333333 !important;
}

.product-filter-panel--enterprise .product-filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(14, 101, 241, 0.10);
    border: 1px solid rgba(14, 101, 241, 0.22);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
}

.product-filter-panel--enterprise .custom-card:hover .product-filter-count {
    background: rgba(14, 101, 241, 0.14);
    border-color: rgba(14, 101, 241, 0.28);
}

.product-filter-panel--enterprise .expand_caret {
    color: var(--color-primary);
    font-size: 14px;
    transition: transform 0.2s ease;
}

.product-filter-panel--enterprise .custom-card-toggle[aria-expanded="true"] .expand_caret {
    transform: rotate(180deg);
}

.product-filter-panel--enterprise .custom-card .card-body {
    background: #ffffff;
    padding: 0;
}

.product-filter-panel--enterprise .card-in-list ul {
    margin: 0;
    padding: 0;
}

.product-filter-panel--enterprise .card-in-list ul li {
    list-style: none;
    border: 0;
    padding: 0;
    margin: 0;
}

.product-filter-panel--enterprise .card-in-list ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    text-decoration: none;
    color: #223256;
    font-size: 12.5px;
    font-weight: 600;
    border-top: 1px solid #f0f3f8;
    
}

.product-filter-panel--enterprise .card-in-list ul li a:hover {
    background: #eef4ff;
    color: var(--color-primary);
}

.product-filter-panel--enterprise .custom-card .card-body ul li.is-active a {
    background: transparent;
    color: var(--color-primary);
    font-weight: 500;
    border-left: 3px solid var(--color-primary);
}

.product-filter-panel--enterprise .custom-card .card-body ul li.is-active a:hover {
    color: var(--color-text);
}

/* Ensure no extra chevrons get injected by other styles */
.product-filter-panel--enterprise .custom-card-header a::after,
.product-filter-panel--enterprise .custom-card-toggle::after {
    content: none !important;
}

.product-filter-panel--enterprise .rotate-icon {
    color: var(--color-primary);
    font-weight: 800;
}

.single-product-catalog-panel {
    border: 1px solid #e3eaf8;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    padding: 16px 14px;
}

.single-product-catalog-panel .product-filter-title {
    border-bottom: 0;
    margin-bottom: 4px;
    padding-bottom: 0;
}

.single-product-catalog-panel .product-filter-title-block {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.single-product-catalog-panel .product-filter-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5f7498;
}

.single-product-catalog-panel .product-filter-main {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
    color: #132244;
}

.single-product-catalog-panel .product-filter-subtitle {
    font-size: 12px;
    line-height: 1.6;
    color: #5f7498;
}

.single-product-catalog-panel .product-filter-accordion {
    max-height: calc(100vh - 210px);
    padding-right: 2px;
}

.single-product-catalog-panel .custom-card {
    border: 1px solid #dfe7f6;
    border-radius: 14px;
    margin-bottom: 10px;
    background: #fff;
    overflow: hidden;
}

.single-product-catalog-panel .custom-card:hover {
    border-color: #cad9f5;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.single-product-catalog-panel .custom-card-toggle {
    padding: 11px 12px;
}

.single-product-catalog-panel .product-filter-category-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.single-product-catalog-panel .product-filter-category-main {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.single-product-catalog-panel .product-filter-category-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    /* background: linear-gradient(135deg, #1f6fd1, #0cbc88); */
    flex: 0 0 auto;
}

.single-product-catalog-panel .product-filter-category-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}

.single-product-catalog-panel .product-left-list {
    display: inline-block;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: #132244;
}

.single-product-catalog-panel .card-in-list ul li a {
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.45;
}

.single-product-catalog-panel .card-in-list ul li a .rotate-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 111, 209, 0.10);
    border: 1px solid rgba(31, 111, 209, 0.18);
    font-size: 12px;
    flex: 0 0 auto;
}

.single-product-catalog-panel .card-in-list ul li a .product-item-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.single-product-catalog-panel .custom-card .card-body ul li.is-active a {
    background: linear-gradient(90deg, #f1f2f3, #f6f6f7);
    border-left: 3px solid var(--color-primary);
    color: #102548;
    font-weight: 500;
}

.single-product-catalog-panel .custom-card .card-body ul li.is-active a .rotate-icon {
    background: linear-gradient(135deg, #1f6fd1, var(--color-primary-dark));
    color: #fff;
    border-color: transparent;
}

.product-filter-title {
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
}

.product-filter-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: calc(100vh - 220px);
    overflow: auto;
    padding-right: 6px;
}

.product-filter-item {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #f6f8ff;
    border: 1px solid #dde4f3;
    border-radius: 12px;
    padding: 10px 10px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    margin: 0;
}

.product-filter-item:hover {
    background: #eef4ff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}

.product-filter-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.product-filter-text {
    font-size: 13px;
    font-weight: 600;
    color: #4b5e82;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-list-container .product-page-title {
    text-transform: uppercase;
    font-size: 22px;
}

.product-list-container .product-page-subtitle {
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991.98px) {
    .product-filter-list {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }
}


.about-services-stats {
    background: #e5f0ff;
    border-radius: 18px;
    padding: 40px 18px;
    margin-top: 8px;
    gap: 16px;
}

.about-services-stat {
    flex: 1 1 0;
}

.about-services-stat-number {
    font-size: 30px;
    font-weight: 800;
    color: var(--color-primary);
}

.about-services-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4b5e82;
}

@media (max-width: 767.98px) {
    .about-services-stats {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .about-page-hero {
        text-align: center;
    }

    .about-page-hero .row.align-items-center>div {
        margin-bottom: 16px;
    }

    .about-main-card {
        padding: 18px 18px 20px;
    }

    .about-main-features {
        grid-template-columns: 1fr;
    }
}

.about-lead {
    font-size: 15px;
    color: #4b5e82;
}

.about-card {
    background: #f6f8ff;
    border-radius: 18px;
    padding: 18px 20px 18px;
    margin-top: 18px;
    border: 1px solid #dde4f3;
    box-shadow: 0 12px 30px rgba(15, 35, 52, 0.06);
}

.about-card h5,
.about-card .h5 {
    font-weight: 700;
    color: #132244;
}

.about-highlight-list {
    padding-left: 18px;
    margin-bottom: 0;
}

.about-highlight-list li {
    position: relative;
    font-size: 14px;
    color: #4b5e82;
    padding-left: 14px;
    margin-bottom: 4px;
    list-style: none;
}

.about-highlight-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}

.about-highlight-list.two-column {
    columns: 2;
    column-gap: 24px;
}

.about-highlight-list.two-column li {
    break-inside: avoid;
}

.about-aside-card {
    background: #f3f7ff;
    border-radius: 24px;
    padding: 20px 22px 22px;
    border: 1px solid #dde4f3;
    box-shadow: 0 16px 40px rgba(15, 35, 52, 0.12);
}

.about-aside-list {
    padding-left: 18px;
    margin-bottom: 0;
    font-size: 14px;
    color: #4b5e82;
}

.about-aside-list li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 4px;
    list-style: none;
}

.about-aside-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0cbc88;
}

@media (max-width: 991.98px) {
    .about-highlight-list.two-column {
        columns: 1;
    }
}

.about-wrapper {
    border-radius: 24px;
    
    padding: 24px 5px 5px;
    background: transparent;
    
    margin: 0 auto;
}

/* Generic list styling inside company overview */
.about-wrapper ul {
    margin-bottom: 10px;
    padding-left: 0;
}

.about-wrapper ul li {
    position: relative;
    list-style: none;
    padding: 0px 10px 0px 35px;
    margin-bottom: 6px;
    font-size: 14px;
    color: #4b5e82;
    border-radius: 10px;
    background: #f6f8ff;
    border: 1px solid #e1e6f5;
}

.about-wrapper ul li::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 15px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--color-primary), #0cbc88);
}

.about-wrapper h2,
.about-wrapper h3,
.about-wrapper h4 {
    color: #132244;
}

.about-wrapper h3,
.about-wrapper h4 {
    margin-top: 18px;
}

/* Homepage about enterprise add-ons */
.home-about-enterprise .about-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    font-weight: 700;
    color: #7a8ba5;
    margin-bottom: 6px;
}

.home-about-highlights {
    display: grid;
    gap: 10px;
}

.home-about-highlight {
    background: #ffffff;
    border: 1px solid #e4e9f2;
    border-radius: 16px;
    padding: 12px 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.home-about-highlight-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #eef4ff;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.home-about-highlight-title {
    font-weight: 800;
    color: var(--color-text);
    font-size: 13px;
    margin-bottom: 2px;
}

.home-about-highlight-text {
    font-size: 12.5px;
    color: #4b5e82;
}

.home-about-image-card {
    background: #ffffff;
    border: 1px solid #e4e9f2;
    border-radius: 18px;
    padding: 10px;
    margin-top: 12px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.home-about-image-card img {
    border-radius: 14px;
    width: 100%;
    
    object-fit: cover;
    display: block;
}

.home-about-aside-card {
    background: #ffffff;
    border: 1px solid #e4e9f2;
    border-radius: 18px;
    padding: 14px 14px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.home-about-aside-title {
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 8px;
    font-size: 14px;
}

.home-about-aside-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    
}

.home-about-aside-list li {
    background: #f6f8ff;
    border: 1px solid #e1e6f5;
    border-radius: 12px;
    padding: 9px 10px 9px 30px;
    position: relative;
    font-size: 13px;
    color: #4b5e82;
}

.home-about-aside-list li::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: var(--color-primary);
}

@media (max-width: 991.98px) {
    .home-about-image-card img {
        height: 240px;
    }
}

/* ============================
   New Header & Hero Styling
   ============================ */

.header-top-bar {
    background: #0a1628;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-top-bar .container,
.main-nav-bar .container {
    padding-left: 0;
    padding-right: 0;
}
.container {
    padding-left: 0;
    padding-right: 0;
}

/* ============================
   Company Stats Section
   ============================ */

.company-stats-wrapper {
    background: #f3f7ff;
    border-radius: 24px;
    padding: 24px 26px 26px;
    margin-top: 40px;
}

.stats-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    font-weight: 600;
    color: #7a8ba5;
    margin-bottom: 6px;
}

.stats-heading {
    font-size: 20px;
    font-weight: 700;
    color: #132244;
    margin: 0;
}

.company-stats-row {
    margin-top: 8px;
}

.company-stat-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(15, 35, 52, 0.12);
    height: 100%;
}

.company-stat-number {
    font-size: 26px;
    font-weight: 800;
    color: var(--color-primary);
    min-width: 70px;
}

.company-stat-text {
    font-size: 13px;
    color: #4b5e82;
}

/* Header "At a Glance" bar style */
.company-stats-bar {
    margin-top: 32px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    /* prevent grid children from widening past container */
    min-width: 0;
}

.company-stats-bar-card {
    background: linear-gradient(135deg, #0f1e36 0%, #0a1628 100%);
    border: none;
    border-radius: 14px;
    padding: 20px 20px 18px;
    box-shadow: 0 16px 44px rgba(10, 22, 40, 0.25);
    backdrop-filter: none;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.company-stats-bar-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    min-width: 0;
}

.company-stats-bar-head>div:first-child {
    min-width: 0;
    flex: 1 1 auto;
}

.company-stats-bar-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    font-weight: 700;
    color: rgba(234, 243, 255, 0.75);
    margin-bottom: 4px;
}

.company-stats-bar-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(234, 243, 255, 0.95);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    max-width: 100%;
}

.company-stats-bar-grid {
    display: grid;
    /* min() prevents minmax(180px) from forcing overflow on narrow screens */
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 12px;
    width: 100%;
    min-width: 0;
}

.company-stats-bar-grid--enterprise {
    margin-top: 6px;
}

.company-stat-bar-item {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 12px 12px;
    min-height: 70px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.06);
    min-width: 0;
    /* allow inner text to shrink/wrap */
}

.company-stat-bar-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-bright);
    flex-shrink: 0;
    margin-top: 2px;
}

.company-stat-bar-item>div:last-child {
    min-width: 0;
    /* critical for long values (GST) */
}

.company-stat-bar-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.75);
}

.company-stat-bar-value {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 767.98px) {
    .container {
    padding-left: 15px;
    padding-right: 15px;
}

    /* prevent horizontal scrollbar from stats grid / long labels */
    .hero-enterprise {
        overflow-x: hidden;
    }

    .hero-enterprise>.container {
        max-width: 100%;
        min-width: 0;
        padding-left: 15px;
        padding-right: 15px;
    }

    .company-stats-bar {
        margin-top: 24px;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
        overflow-x: hidden;
    }

    .company-stats-bar-card {
        padding: 16px 14px 14px;
        border-radius: 16px;
    }

    .company-stats-bar-head {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 16px;
    }

    .company-stats-bar-head .h2 {
        font-size: 1.5rem;
        line-height: 1.25;
        word-wrap: break-word;
    }

    .company-stats-bar-badge {
        white-space: normal;
        max-width: 100%;
        line-height: 1.35;
        align-self: flex-start;
    }

    /* Single column — no horizontal scroll */
    .company-stats-bar-grid,
    .company-stats-bar-grid--enterprise {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
        overflow-x: visible;
        padding-bottom: 0;
        margin: 0;
        width: 100%;
    }

    .company-stat-bar-item {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 12px 14px;
    }
}

/* Small tablets: 2 equal columns, still no min-width overflow */
@media (min-width: 576px) and (max-width: 767.98px) {

    .company-stats-bar-grid,
    .company-stats-bar-grid--enterprise {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

/* Global responsive tweaks */
@media (max-width: 991.98px) {

    .category-section-card,
    .company-stats-wrapper,
    .contact-card-form,
    .contact-card-info,
    .faq-card {
        border-radius: 18px;
        padding: 18px 18px 20px;
        box-shadow: 0 10px 26px rgba(15, 35, 52, 0.12);
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-enterprise .row.align-items-center>div {
        margin-bottom: 16px;
    }

    .product-card-elevated,
    .blog-card {
        border-radius: var(--radius-card);
    }

    .category-pill-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .company-stats-bar h2 {
        text-align: center;
    }
}

.header-top-link {
    color: rgba(255, 255, 255, 0.85) !important;
}

.header-top-bar .header-top-link:hover,
.header-top-bar .header-top-link:focus {
    background: transparent !important;
    background-color: transparent !important;
    text-decoration: none;
    color: #ffffff !important;
}

.header-top-link i {
    color: rgba(255, 255, 255, 0.55);
}

.main-nav-bar {
    background: #0f1e36;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    position: sticky;
    top: 0;
    z-index: 10;
}

.main-navbar {
    min-height: 64px;
}

.main-navbar .navbar-brand,
.main-navbar .my_logo {
    color: #ffffff !important;
}

.main-navbar .navbar-nav {
    align-items: center;
}

.main-navbar .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.88) !important;
    width: 100%;
    text-transform: none;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 16px;
    position: relative;
    letter-spacing: 0.01em;
    transition: color 0.18s ease;
}

.main-navbar .navbar-nav .nav-link:hover,
.main-navbar .navbar-nav .nav-link:focus,
.main-navbar .navbar-nav .active>.nav-link {
    color: #ffffff !important;
}

.main-navbar .navbar-nav .nav-link:hover {
    transform: none;
}

/* Desktop underline indicator */
@media (min-width: 992px) {
    .main-navbar .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: 6px;
        height: 2px;
        border-radius: 999px;
        background: #ffffff;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.18s ease;
        opacity: 1;
    }

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

.header-nav-action-btn {
    border: 0;
    border-radius: 8px;
    padding: 10px 12px;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    font-weight: 600;
}

.header-nav-action-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.header-nav-action-btn:focus {
    outline: none;
}

.header-logo img {
    max-height: 48px;
    width: auto;
}

.header-cta-wrapper .btn {
    font-size: 13px;
    font-weight: 600;
}

.header-cta-wrapper {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
}

.header-cta-btn {
    background: var(--color-primary);
    border-radius: 6px;
    color: #ffffff;
    padding: 8px 20px;
    border: none;
    box-shadow: none;
    font-weight: 600;
    font-size: 13px;
    transition: background 0.18s ease, opacity 0.15s ease;
}

.header-cta-btn:hover {
    color: #ffffff;
    background: #0068ff;
    opacity: 1;
    transform: none;
    box-shadow: none;
}

.header-search-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.header-search-btn i {
    font-size: 14px;
}

.header-search-btn:hover {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
    transform: none;
}

/* Enterprise header - mobile/tablet (<= 768px) */
@media (max-width: 767.98px) {
    .header-top-bar {
        background: #0a1628;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .main-nav-bar {
        background: #0f1e36;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    }

    .main-navbar {
        background: transparent;
    }

    .header-top-link,
    .header-top-bar .header-mobile,
    .header-top-bar .header-top-link {
        color: rgba(255, 255, 255, 0.85) !important;
    }

    .header-top-link i {
        color: var(--color-accent-bright) !important;
    }

    .navbar-toggler {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.12rem rgba(255, 255, 255, 0.15);
    }

    .main-navbar .navbar-nav .nav-link {
        color: #fff !important;
    }

    .main-navbar .navbar-nav .active > .nav-link {
        color: #ffffff !important;
        font-weight: 700;
    }

    .header-nav-action-btn {
        background: var(--color-primary);
        color: #ffffff !important;
        border: 0;
    }

    .header-nav-action-btn:hover {
        background: #0068ff;
        opacity: 1;
        color: #ffffff !important;
    }

    .header-top-bar .row {
        align-items: center;
    }

    .header-top-bar .container,
    .main-nav-bar .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header-top-bar .header-top-link,
    .header-top-bar .header-mobile {

        white-space: nowrap;
    }

    .main-navbar {
        padding-left: 0;
        padding-right: 0;
        min-height: 64px;
    }

    .header-logo img,
    .my_logo img {
        max-height: 44px;
        width: auto;
    }

    .navbar-toggler {
        padding: 6px 10px;
        border-radius: 6px;
        border-color: rgba(255, 255, 255, 0.2);
    }

    .main-navbar .navbar-nav {
        align-items: stretch;
        padding-top: 10px;
        padding-bottom: 10px;
        gap: 4px;
    }

    .main-navbar .navbar-nav .nav-link {
        border-radius: 6px;
        padding: 10px 12px;
        text-align: end;
    }

    .header-nav-action-btn{
        text-align: center !important;
        justify-items: center !important;
    }

    .main-navbar .navbar-nav .active>.nav-link {
        border-radius: 14px;
    }

    .header-cta-wrapper {
        gap: 8px;
        padding-left: 8px;
    }

    .header-cta-btn {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 999px;
        white-space: nowrap;
    }

    .header-search-btn {
        width: 38px;
        height: 38px;
        border-radius: 999px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Hide header buttons on mobile; show in opened menu instead */
    .header-cta-wrapper {
        display: none !important;
    }

    .header-nav-actions {
        display: none !important;
    }
}

/* Prevent layout jump on scroll:
   do not toggle display:none for header elements */
body.scrolled .my_logo,
body:not(.scrolled) .mobile_no {
    display: inline-flex;
    visibility: visible;
}

.mobile_no {
    font-size: 24px;
}

.button:active,
button:active,
.button:focus,
button:focus,
.button:hover,
button:hover {
    background: linear-gradient(135deg, var(--color-primary-dark), #002a66) !important;
    /* border: none !important; */
    /* outline: none !important; */
}

/* Restore themed CTAs (global button:hover rule above is too broad) */
.header-cta-btn:hover,
button.header-cta-btn:hover {
    background: #0068ff !important;
    color: #ffffff !important;
}

.header-search-btn:hover,
button.header-search-btn:hover {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.45) !important;
    color: #ffffff !important;
}

.hero-primary-btn:hover,
button.hero-primary-btn:hover {
    
    color: #ffffff !important;
}

.about-btn-primary:hover,
.about-btn-primary:focus,
.about-btn-primary:active,
button.about-btn-primary:hover,
button.about-btn-primary:focus,
button.about-btn-primary:active,
a.about-btn-primary:hover,
a.about-btn-primary:focus,
a.about-btn-primary:active {
    background: #0068ff !important;
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(0, 86, 210, 0.32) !important;
}

.about-btn-secondary:hover,
button.about-btn-secondary:hover {
    background: #f5f8ff !important;
    border-color: var(--color-primary) !important;
    color: var(--color-primary) !important;
}

.header-nav-action-btn:hover,
button.header-nav-action-btn:hover {
    background: #0068ff !important;
    color: #ffffff !important;
}

.product-card-btn.quote-btn:hover,
button.product-card-btn.quote-btn:hover {
    background: linear-gradient(135deg, var(--color-accent-bright), var(--color-accent)) !important;
    color: #111827 !important;
}

.product-card-btn.details-btn:hover,
button.product-card-btn.details-btn:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark)) !important;
    color: #ffffff !important;
}

.ent-footer-cta-btn:hover,
button.ent-footer-cta-btn:hover {
    background: #f0f4ff !important;
    color: var(--color-primary) !important;
}

.ent-footer-cta-call:hover,
button.ent-footer-cta-call:hover,
a.ent-footer-cta-call:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.45) !important;
    color: #ffffff !important;
}

.faq-section-modern
.button:active,
button:active,
.button:focus,
button:focus,
.button:hover,
button:hover {
    background: #fff !important;
    /* border: none !important; */
    /* outline: none !important; */
}

.show_body {
    background: var(--color-bg);
}

.header-mobile {
    padding: 10px 0;
    font-family: arial;
    font-size: 15px;
    font-weight: 600;
}

.header-mobile:hover {
    cursor: pointer;
}

img {
    width: 100%;
}

.search-btn {
    color: #fff;
    padding: 6px 7px 6px 7px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
    background-color: var(--color-primary);
    font-size: 16px;
    /*float: right;*/
    cursor: pointer;
    display: block;
}

#blog_data p {
    text-align: justify;
    line-height: 28px;
    font-size: 14px;
}

#blog_data ul {
    /*text-align:justify;*/
    line-height: 28px;
    font-size: 14px;
}

#blog_data ol {
    /*text-align:justify;*/
    line-height: 28px;
    font-size: 14px;
}

#data_align p {
    text-align: justify;
    line-height: 28px;
    font-size: 14px;
}

#data_align ul {
    text-align: justify;
    line-height: 28px;
    font-size: 14px;
}

#data_align ol {
    text-align: justify;
    line-height: 28px;
    font-size: 14px;
}

.header-nav ul {
    position: relative;
}

.header-nav ul li {
    list-style: none;
    display: inline-block;
    font-size: 14px;
    padding-top: 15px;
    font-weight: bold;
    width: 175px;
    text-align: center;
}

table tr td {
    padding: 10px;
}

.header-nav ul li a {
    color: #fff;
}

.header-nav ul li ul {
    background: #3498BB;
    list-style: none;
    position: absolute;
    top: 142%;
    left: 0;
    z-index: 1;
    display: none;
    text-align: left;
}

.header-nav ul li:hover ul {
    display: block;
    transition: display 500ms;
}

.header-nav ul li ul li {
    display: inline-block;
}

a {
    text-decoration: none;
    cursor: pointer;
}

.self-adhesive-head {
    background-color: #f1f1f1;
    padding-bottom: 6px;
    padding-top: 6px;
    font-size: 15px;
    border-top: 1px solid #ccc;
}

.self-adhesive-head a {
    text-decoration: none;
    cursor: pointer;
    color: #000 !important;
}

.adhesive-list ul li {
    list-style: none;
    display: inline-block;
    font-size: 14px;
    padding-top: 15px;
    padding-bottom: 10px;
    font-weight: bold;
    width: 254px;
    margin: 0 10px 0 10px;
    text-align: center;
    background: #50adb1;
    margin-bottom: 5px;
}

.adhesive-list ul li a {
    color: #fff;
    /*padding:100%;*/
}

/* ============================
   Merged Product Range Section
   ============================ */
.product-range-section {
    background: #ffffff;
}

.product-range-header {
    
    margin-left: auto;
    margin-right: auto;
}

.product-range-kicker {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 999px;
    background: rgba(0, 86, 210, 0.08);
    border: 1px solid rgba(0, 86, 210, 0.15);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.product-range-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 10px;
}

.product-range-lead {
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.product-range-subtitle {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-text);
}

.product-range-viewall {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.15s ease;
}

.product-range-viewall:hover {
    color: #0068ff;
    text-decoration: none;
}

.product-range-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #dce5f5 30%, #dce5f5 70%, transparent);
}

@media (max-width: 767.98px) {
    .product-range-title {
        font-size: 1.6rem;
    }

    .product-range-subtitle {
        font-size: 1rem;
    }
}

/* Modern category section & pill grid */
.category-section-modern {
    background: #fafafa;
}

.category-section-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #dde4f3;
    box-shadow: 0 14px 36px rgba(15, 35, 52, 0.08);
    padding: 20px 22px 22px;
}

.category-pill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 14px 18px;
}

.category-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: #50adb1;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.category-pill:hover {
    background: #3f9295;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(80, 173, 177, 0.4);
}

.category-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    font-weight: 700;
    color: #7a8ba5;
    margin-bottom: 6px;
}

.category-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.category-card-link {
    background: var(--color-bg);
    border: 1px solid #e4e9f2;
    border-radius: 10px;
    padding: 14px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.category-card-link:hover {
    border-color: #cfe0ff;
    transform: translateY(-2px);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.10);
}

.category-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #eef4ff;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-card-title {
    font-weight: 800;
    color: var(--color-text);
    font-size: 14px;
}

.category-card-subtitle {
    font-size: 12px;
    color: #7a8ba5;
    margin-top: 2px;
}

.category-card-arrow {
    margin-left: auto;
    color: #9aa8bf;
    font-size: 18px;
}

/* ============================
   Working section (home)
   ============================ */
.working-section-enterprise {
    background: var(--color-bg);
}

/* How It Works — Process Steps */
.hiw-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(15, 35, 70, 0.1);
}

.hiw-image-wrap img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hiw-step {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid #e4e9f2;
}

.hiw-step:last-child {
    border-bottom: none;
}

.hiw-step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 86, 210, 0.08);
    border: 1px solid rgba(0, 86, 210, 0.15);
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hiw-step-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 4px;
}

.hiw-step-text {
    font-size: 13px;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.6;
}

/* How It Works — Equipment Grid */
.hiw-equip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.hiw-equip-card {
    background: #ffffff;
    border: 1px solid #e4e9f2;
    border-radius: 10px;
    padding: 18px 16px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.hiw-equip-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(0, 86, 210, 0.2);
}

.hiw-equip-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(0, 86, 210, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 12px;
}

.hiw-equip-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.hiw-equip-desc {
    font-size: 12.5px;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.55;
}

.hiw-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.hiw-cta .btn {
    min-width: 180px;
}

.hiw-cta--full .btn {
    flex: 1;
    min-width: 0;
}

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

@media (max-width: 575.98px) {
    .hiw-equip-grid {
        grid-template-columns: 1fr;
    }

    .hiw-cta {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hiw-cta .btn {
        width: 100%;
        margin: 0 !important;
    }
}

.working-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    font-weight: 700;
    color: #7a8ba5;
    margin-bottom: 6px;
}

.working-subtitle {
    max-width: 80ch;
    margin-left: auto;
    margin-right: auto;
}

.working-card {
    background: #ffffff;
    border: 1px solid #e4e9f2;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    padding: 18px 18px;
}

.working-image-card {
    background: #ffffff;
    border: 1px solid #e4e9f2;
    border-radius: 20px;
    /* padding: 10px; */
    position: relative;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.working-image-card img {
    width: 100%;
    
    object-fit: contain;
    border-radius: 16px;
    display: block;
}

.working-image-badge {
    position: absolute;
    left: 18px;
    top: 18px;
    background: rgba(4, 14, 40, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    border-radius: 14px;
    padding: 8px 12px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

.working-image-badge span {
    display: block;
    font-weight: 800;
    font-size: 13px;
    line-height: 1.1;
}

.working-image-badge small {
    display: block;
    font-size: 11px;
    opacity: 0.9;
}

.working-steps {
    display: grid;
    gap: 10px;
}

.working-step {
    display: flex;
    gap: 10px;
    background: #f6f8ff;
    border: 1px solid #e1e6f5;
    border-radius: 16px;
    padding: 10px 10px;
}

.working-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #eef4ff;
    border: 1px solid #dde4f3;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.working-step-title {
    font-weight: 800;
    color: var(--color-text);
    font-size: 13px;
    margin-bottom: 2px;
}

.working-step-text {
    font-size: 12.5px;
    color: #4b5e82;
}

.working-equipment-head {
    margin-bottom: 12px;
}

.working-equipment-kicker{color:var(--color-primary);font-weight:800;text-transform:uppercase;letter-spacing:.12em;font-size:11px;margin-bottom:10px}

.working-equipment-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(14, 101, 241, 0.08);
    border: 1px solid rgba(14, 101, 241, 0.18);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.working-equipment-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(14, 101, 241, 0.08);
    border: 1px solid rgba(14, 101, 241, 0.18);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.working-equipment-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(14, 101, 241, 0.08);
    border: 1px solid rgba(14, 101, 241, 0.18);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.working-equipment-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(14, 101, 241, 0.08);
    border: 1px solid rgba(14, 101, 241, 0.18);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.working-equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.working-equipment-item {
    display: flex;
    gap: 10px;
    padding: 13px 13px;
    border-radius: 16px;
    border: 1px solid #e4e9f2;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.working-equipment-item:hover {
    transform: translateY(-2px);
    border-color: rgba(14, 101, 241, 0.22);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.working-equipment-icon {
    width: 40px;
    height: 40px;
    border-radius: 7px;
    background: #eef4ff;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.working-equipment-title {
    font-weight: 800;
    color: var(--color-text);
    font-size: 13px;
    margin-bottom: 2px;
}

.working-equipment-text {
    font-size: 12.5px;
    color: #4b5e82;
}

@media (max-width: 991.98px) {
    .working-image-card img {
        height: 240px;
    }
    .navbar-dark .navbar-toggler {
        background-color: #223256 !important;
    }
}

@media (max-width: 767.98px) {
    .working-card {
        border-radius: 18px;
        padding: 14px;
    }

    .working-equipment-grid {
        grid-template-columns: 1fr;
    }
}

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

@media (max-width: 767.98px) {
    .category-card-grid {
        grid-template-columns: 1fr;
    }
}

h1 {
    color: #d9dde5;
    margin-bottom: 5px;
    font: normal bold 2rem Arial, Helvetica, sans-serif;
}

h2 {
    font: normal bold 1.5rem Arial, Helvetica, sans-serif;
    color: var(--color-text);
}

ul, ol {
    padding-left: 15px;
}

ul, ol li {
    padding-left: 10px;
}

.cosmos-list ul li {
    list-style: none;
    display: inline-block;
    font-weight: 500;
    text-align: left;
    min-width: 30%;
    width: 30%;
    position: relative;
    padding-left: 35px;
    box-sizing: border-box;
    font-size: 15px;
    margin: 0 1% 10px;
}

.cosmos-list ul li .btm {
    font-size: 12px;
    font-weight: 400;
}

.side-contant {
    padding: 20px;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, .2);
    box-sizing: border-box;
    text-align: center;
    display: block;
    line-height: 20px;
}

.side-img-brdr {
    /*border: 2px solid #50adb1;*/
    padding: 3px;
    background: #50adb1;
}

.tell-us-contant {
    border: 1px solid #aaa;
    border-radius: 3px;
    width: 748px;
    /*height: 100px;*/
    margin: auto;
    background: #f1f1f1;
}

.tell-us-head {
    color: #000;
    font-size: 20px;
    font-weight: bold;
    margin-top: 4px;
    padding: 5px 5px 5px 10px;
    font-family: arial !important;
}

.footer-nav {
    margin: auto;
}

.footer-nav ul {
    /*background: #d36709;*/
    margin: 10px auto;
}

.footer-nav ul li {
    list-style: none;
    display: inline-block;
    font-size: 14px;
    /*padding-top: 15px;*/
    /*margin: 10px 0;*/
    font-weight: bold;
    width: 175px;
    text-align: center;
    line-height: 20px;
    border-right: 1px solid #000;
}

.footer-nav ul li:last-child {
    border: 0;
}

.footer-nav ul li a {
    color: #fff;
    text-decoration: none;
}

.frnt-url {
    padding: 8px;
}

.frnt-url .c17 {
    color: #000 !important;
}

.frnt-url .c17 a {
    color: #000 !important;
    text-decoration: none;
}

.main-product-head {
    background: #50adb1;
    padding: 0px 8px;
    vertical-align: middle;
    border-radius: 8px 8px 0 0;
    margin: 0 0px;
    padding-top: 9px;
}

.main-product-head h2 {
    color: #fff !important;
    float: left;
    font-size: 15px;
    font-weight: normal;
}

.main-product-head span {
    color: #fff !important;
    float: right;
    font-size: 11px;
    font-weight: bold;
}

.img-border {
    border: 2px solid #50adba;
}

.price {
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

.mobile-nav {
    display: none;
}

.latest-price {
    color: #fff;
    padding: 0px 7px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
    background-color: #d36709;
    border: 1px #b35606 solid;
    border-radius: 5px;
    font-size: 16px;
    /*float: right;*/
    cursor: pointer;
    /*display: block;*/
}

.product-detail {
    border-collapse: collapse;
    border-style: hidden;
    width: 100%;
}

.product-detail tr td {
    padding: 5px;
    border: 1px solid black;
}

.sticky {
    position: sticky;
    top: 11%;
}

/* Enterprise floating contact rail */
.sticky-container {
    position: fixed;
    right: 18px;
    bottom: 18px;
    left: auto;
    top: auto;
    transform: none;
    z-index: 1040;
}

.sticky-container .sticky {
    position: static;
    top: auto;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sticky-container .sticky li {
    margin: 0;
}

.sticky-container .sticky li+li {
    margin-top: 12px;
}

/* Right-bottom floating menu (like screenshot) */
.sticky-fab-list {display:flex;flex-direction:column;align-items:flex-end}
.sticky-fab-link{display:flex;align-items:center;gap:12px;text-decoration:none}
.sticky-fab-icon{width:50px;height:50px;border-radius:999px;background:#2f6df6;color:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 14px 30px rgba(47,109,246,.22);border:1px solid rgba(255,255,255,.20)}
.sticky-fab-icon i{font-size:20px;line-height:1}
.sticky-container .sticky-label{position:static;transform:none;background:#ffffff;color:#132244;border:0;border-radius:999px;padding:10px 14px;font-size:14px;font-weight:700;white-space:nowrap;box-shadow:0 10px 22px rgba(15,23,42,.12);opacity:1}
.sticky-fab-toggle-btn{width:56px;height:56px;border-radius:999px;background:#ffffff;border:0;box-shadow:0 14px 30px rgba(15,23,42,.16);display:flex;align-items:center;justify-content:center;cursor:pointer}
.sticky-fab-toggle-x{font-size:30px;line-height:1;color:#132244}

/* Collapse behavior */
.sticky-fab:not(.sticky-fab--open) .sticky-fab-item{display:none}
.sticky-fab--open .sticky-fab-toggle-x{transform:rotate(0deg)}

@media (max-width: 767.98px) {
    .sticky-container {
        right: 12px;
        bottom: 20px;
    }

    .sticky-container .sticky-label {
        font-size: 13px;
        padding: 9px 12px;
    }
    .sticky-fab-icon,.sticky-fab-toggle-btn{width:50px;height:50px}
    .sticky-fab-icon i{font-size:20px}
}

.product-range {
    background: #f1f1f1;
    font-weight: bold;
    cursor: pointer;
    color: #000 !important;
    font-size: 15px;
    padding: 6px 0 6px 35px;
}

.product-left-list {

    font-weight: 500;
    color: #fff;
}

.card-header {
    border-bottom: 0px !important;
}

.custom-card-header {
    background: #50adb1;
    border-radius: 0;
    /* padding: 0; */
    height: 55px;
    border: 1px solid #aaa;
    color: #fff;
    border-bottom: 1px solid #000;
    padding-top: 13px;
    padding-bottom: 0;
}

.custom-card-header:hover {
    background: #3fa6ab;
}

.custom-card-header a {
    color: #fff;
}

.custom-card-header:first-child {
    border-radius: 0;
}

.custom-card .card-body {
    padding: 0;
    background: #ccc;
}

.custom-card .card-body ul li:hover {
    color: #000;
    background: #aaa;
    cursor: pointer;
    margin: 0;
    /*padding: 5px 0 5px 5px;*/
}

.custom-card .card-body ul li a {
   
    font-size: 13px;
    margin: 0;
    
}

.custom-card .card-body ul li {
    /* border: 1px solid #aaa; */
    border-top: 0;
    /* padding: 5px 0 5px 20px; */
    margin: 0;
}

.custom-card .card-body ul li.is-active {
    background: #aaa;
}

.card-in-list ul li {
    list-style: none;
}

.card-in-list ul li a {
    text-decoration: none;
    color: #fff;
}

ul {
    list-style: inside;
}

.card {
    border-radius: 0px !important;
}

.card {
    outline: 0;
    border-radius: 8px !important;
    background: #f8f9fa;
    box-shadow: 0px 2px 16px 0px #000;
    /* transition: 500ms; */
    margin-bottom: 20px;
}

/* .card:hover {
    transform: scale(.95, 0.95);
} */

.card a {
    padding: 10px;
}

.card img {
    outline: 0;
    border: .1px solid #ccc;
    border-radius: 8px;
}

.card-body {
    background: #90b3b5;
}

.inquiry-heading {
    font-weight: 500;
    font-size: 23px;
    background: #f1f1f1;
    text-align: center;
    padding: 10px 0px;
    /*padding: 10px 0;*/
}

.form-label {
    font-weight: 500;
    color: #a0a0a0;
}

.inquiry-send {
    font-weight: 500;
    font-size: 22px;
}

div .sticky1 {
    /*position: -webkit-sticky;*/
    position: sticky;
    top: 10%;
    background-color: #fff;
}

.expand_caret {
    transform: scale(1.6);
    margin-left: 8px;
    margin-top: -4px;
}

a[aria-expanded='false'] .expand_caret {
    transform: scale(1.6) rotate(-90deg);
}

div[aria-expanded='false'] .expand_caret {
    transform: scale(1.6) rotate(-90deg);
}

/* ----------------
  Contact Page
---------------------*/

.contact-section {
    padding-top: 80px;
    padding-bottom: 0;
    position: relative;
}

.contact-info h3 {
    margin-bottom: 50px;
}

.contact-social {
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
    padding-top: 20px;
}

.contact-social a {
    display: -ms-inline-flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    color: #414141;
    font-size: 14px;
    border-radius: 50%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 12px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.contact-social a:hover {
    color: #fff;
    background: #50adb1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    height: 44px;
    border: none;
    padding: 0 18px;
    background: #f0f0f0;
    border-radius: 40px;
    margin-bottom: 17px;
    font-size: 14px;
}

.contact-form textarea {
    padding-top: 16px;
    border-radius: 18px;
    height: 175px;
    margin-bottom: 32px;
}

.map {
    /*position: absolute;*/
    /*width: calc(50% - 15px);*/
    width: 100%;
    height: 100%;
    /*right: 0;*/
    /*top: 0;*/
    background: #ddd;
}

.map iframe {
    width: 100%;
    height: 100%;
}

.page-top-info {
    background: #f8f7f7;
    padding: 30px 0 40px;
}

.site-btn {
    display: inline-block;
    border: none;
    font-size: 14px;
    font-weight: 600;
    min-width: 167px;
    padding: 18px 47px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    background: #50adb1;
    color: #fff;
    line-height: normal;
    cursor: pointer;
    text-align: center;
}

/* ============================
   Modern About Section
   ============================ */

.about-section-modern {
    background: #ffffff;
}

.about-lead {
    font-size: 15px;
    color: #455677;
}

.about-card {
    background: #f6f8ff;
    border-radius: 18px;
    padding: 16px 18px;
    margin-top: 16px;
    box-shadow: 0 10px 28px rgba(15, 35, 52, 0.08);
}

.about-card h5 {
    font-weight: 700;
    color: #132244;
    margin-bottom: 6px;
}

.about-card p {
    font-size: 14px;
    color: #4b5e82;
    margin-bottom: 10px;
}

.about-highlight-list {
    padding-left: 18px;
    margin-bottom: 0;
}

.about-highlight-list li {
    font-size: 13px;
    color: #394d70;
    margin-bottom: 4px;
}

.about-highlight-list.two-column {
    column-count: 2;
    column-gap: 24px;
}

.about-aside-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 18px 18px 20px;
    box-shadow: 0 18px 40px rgba(15, 35, 52, 0.16);
    position: sticky;
    top: 110px;
}

.about-aside-image img {
    border-radius: 16px;
}

.about-aside-list {
    list-style: disc;
    padding-left: 18px;
    margin-bottom: 0;
}

.about-aside-list li {
    font-size: 13px;
    color: #394d70;
    margin-bottom: 4px;
}

@media (max-width: 991.98px) {
    .about-highlight-list.two-column {
        column-count: 1;
    }

    .about-aside-card {
        position: static;
        margin-top: 20px;
    }
}

table tr td,
th {
    border: 1px solid #ccc;
}

.navbar {
    padding: 0;
    overflow: hidden;
    /*background-color: #333;*/
    font-family: Arial, Helvetica, sans-serif;
}

.navbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 10px 0px;
    text-decoration: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font: inherit;
    margin: 0;
}

/* .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: red;
} */

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 100%;
    left: 0;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content .header {
    background: red;
    padding: 16px;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Create three equal columns that floats next to each other */

.column {
    float: left;
    width: 33.33%;
    padding: 10px;
    background-color: #ccc;
    height: 250px;
}

.column a {
    float: none;
    color: black;
    padding: 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.column a:hover {
    background-color: #ddd;
}

/* Clear floats after the columns */

.row:after {
    content: "";
    display: table;
    clear: both;
}

/* ----------------
  Footer section
---------------------*/



.footer-logo {
    padding-bottom: 60px;
}

.footer-widget {
    margin-bottom: 0px;
    overflow: hidden;
}

.footer-widget h2 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 45px;
}

.footer-widget p {
    color: #e9dfdf;
}

.footer-widget.about-widget p {
    margin-bottom: 50px;
    letter-spacing: -0.01em;
}

.footer-widget ul {
    list-style: none;
    float: left;
    margin-right: 37px;
}

.footer-widget ul:last-child {
    margin-right: 0;
}

.footer-widget ul li a {
    display: inline-block;
    position: relative;
    /* padding-left: 20px; */
    font-size: 16px;
    color: #cfd8ea;
    margin-bottom: 6px;
}

.footer-widget ul li a:after {
    position: absolute;
    /* content: ""; */
    width: 5px;
    height: 5px;
    left: 0;
    top: 8px;
    border: 1px solid #9f9fa0;
    border-radius: 50%;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.footer-widget ul li a:hover {
    color: #fff;
}

.footer-widget ul li a:hover:after {
    width: 7px;
    height: 7px;
    top: 6px;
    background: #ec105a;
}

.fw-latest-post-widget .lp-item {
    margin-bottom: 30px;
    display: block;
    overflow: hidden;
}

.fw-latest-post-widget .lp-thumb {
    width: 64px;
    height: 64px;
    float: left;
    margin-right: 22px;
}

.fw-latest-post-widget .lp-content {
    overflow: hidden;
    padding-top: 2px;
}

.fw-latest-post-widget .lp-content h6 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 1px;
}

.fw-latest-post-widget .lp-content span {
    display: block;
    font-size: 12px;
    color: #e9dfdf;
    margin-bottom: 4px;
}

.fw-latest-post-widget .lp-content .readmore {
    font-size: 12px;
    color: #9f9fa0;
}

.contact-widget .con-info span {
    float: left;
    color: #9f9fa0;
    margin-right: 15px;
    overflow: hidden;
}

.social-links-warp {
    border-top: 2px solid #3b3535;
    padding: 46px 0;
}

.social-links a {
    margin-right: 60px;
    display: inline-block;
}

.social-links a:last-child {
    margin-right: 0;
}

.social-links a i {
    font-size: 30px;
    color: #d7d7d7;
    float: left;
    margin-right: 19px;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.social-links a span {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #9f9fa0;
    padding-top: 10px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.social-links a.instagram:hover i {
    color: #2F5D84;
}

.social-links a.google-plus:hover i {
    color: #E04B37;
}

.social-links a.twitter:hover i {
    color: #5abed6;
}

.social-links a.pinterest:hover i {
    color: #CD212D;
}

.social-links a.facebook:hover i {
    color: #39599F;
}

.social-links a.twitter:hover i {
    color: #5abed6;
}

.social-links a.youtube:hover i {
    color: #D12227;
}

.social-links a.tumblr:hover i {
    color: #37475E;
}

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

.home-view-btn {
    border: 0;
    margin-right: 10px;
    border-radius: 5px;
    width: 150px;
    font-weight: bold;
}

.text-center {
    text-align: center;
    margin: 0 auto;
}

#navbarSupportedContent {
    float: right;
}

/* mobile or only mobile */

@media (max-width: 767px) {
    #sidebar_data {
        display: none;
    }

    .remove_padding {
        padding: 0px !important;
    }

    .div_width {
        width: 100%;
    }

    .adhesive-list ul li {
        list-style: none;
        display: inline-block;
        font-size: 13px;
        padding: 5px;
        max-width: 155px;
        text-align: center;
        background: #ccc;
        margin-bottom: 5px;
    }

    .tell-us-contant {
        border: 1px solid #aaa;
        border-radius: 3px;
        width: 100%;
        margin: auto;
        background: #f1f1f1;
    }

    .navbar-collapse ul li {

        
        padding-left: 10px;
    }

    table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .card img {
        width: 100%;
    }
}

.navbar-light .navbar-brand {
    color: #fff;
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
    color: #fff;
}

.navbar a:hover,
.dropdown:hover .dropbtn {
    /* background-color: white; */
    color: #2e86c1;
}

/* .navbar-nav li:hover {
    background: #fff;
} */

.navbar-nav li a {
    text-align: center;
}

@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
/*================================================*/

@import url('https://fonts.googleapis.com/css?family=Roboto');

.carousel-item>div {
    float: left;
}

.carousel-by-item [class*="cloneditem-"] {
    display: none;
}

.navbar-light .navbar-nav .nav-link {
    color: #50adb1;
    text-align: center;
    width: 120px;
    font-size: 15px;
    font-weight: 600;
}

.font-color {
    color: var(--color-primary);
}

.popups-btn {
    background: #50adb1;
    border: 0;
    width: 150px;
    font-variant-caps: petite-caps;
}

.popups-btn:hover {
    background: #50ADC3;
}

a {
    color: #50adb1;
    text-decoration: none;
}

a:hover {
    /*color: #fff;*/
    text-decoration: none;
}

.page-item.active .page-link {
    background: #50adb1;
    color: #fff;
    border: 0;
}

.page-link {
    color: #50adb1;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 45px;
}

.other-heading {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-blog {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 0px;
}

.side-category {
    border-radius: 0;
    box-shadow: 4px 5px 19px -12px;
    transition: 500ms;
}

.side-category:hover {
    transform: scale(.95, .95);
}

.home-view {
    color: #69b3c4;
    box-shadow: 1px 0px 6px;
    text-decoration: none;
    font-weight: bold;
}

.city-links {
    margin-top: 20px;
}

.city-links a {
    margin-right: 25px;
    display: inline-block;
}

.city-links a:last-child {
    margin-right: 0;
}

.city-links a i {
    font-size: 16px;
    color: #fff;
    float: left;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.city-links a {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.city-links a:hover {
    color: rgba(0, 0, 0, .7);
}

.city-links a:hover i {
    color: rgba(0, 0, 0, .7);
}

.search-modal .modal-content {
    background: none !important;
    border: none !important;
}

.modal button:focus {
    outline: none !important;
}

input.search {
    border-radius: 2.25rem !important;
}

.search-list {
    margin-top: 7px;
}

.search-list li {
    margin-bottom: 7px;
    border-radius: 2.25rem !important;
    overflow: hidden;
    min-width: 5ch;
    /* max-width: 45ch; */
    text-overflow: ellipsis;
    white-space: nowrap;
}
.modal-header button{
    background-color: transparent !important;
}
.search-modal .modal-header {
    border: none !important;
}

.search-modal .modal-header span {
    color: #fff !important;
}

.imagegallery .row>.column {
    padding: 0 8px;
}

.imagegallery .row:after {
    content: "";
    display: table;
    clear: both;
}

/* Create four equal columns that floats next to eachother */

.imagegallery .column {
    float: left;
    width: 25%;
}

/* The Modal (background) */

.imagegallery .modal {
    display: none;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    height: 100vh;
    overflow: auto;
    background-color: black;
}

/* Modal Content */

.imagegallery .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
}

/* The Close Button */

.imagegallery .close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

.imagegallery .close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

/* Hide the slides by default */

.imagegallery .mySlides {
    display: none;
}

.imagegallery .mySlides img {
    height: calc(100vh - 20px);
}

/* Next & previous buttons */

.imagegallery .prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */

.imagegallery .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */

.imagegallery .prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* ============================
   Enterprise Product Card
   ============================ */

.product-card-elevated {
    background: var(--color-surface);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card-elevated:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(0, 86, 210, 0.2);
}

.product-card-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-card-image {
    width: 100%;
    display: block;

    border-radius: var(--radius-card) var(--radius-card) 0 0;

}

.product-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e11d48, #be123c);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-card-body {
    padding: 8px 10px 12px 8px;
}

.product-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.product-card-title a {
    color: var(--color-text);
}

.product-card-title-link {
    color: inherit;
    text-decoration: none;
}

.product-card-title-link:hover {
    color: var(--color-primary);
    text-decoration: none;
}

/* ============================
   Single product page
   ============================ */

.single-product-page {
    background: var(--color-bg);
}

/* Restore container side padding for single product main section
   (global .show_body .container sets padding-left/right: 0) */
.single-product-main-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.single-product-topbar-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b7280;
    margin-bottom: 4px;
}

.single-product-topbar-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.single-product-topbar-cta.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border: none;
    color: #ffffff;
}

.single-product-topbar-cta.btn-primary:hover {
    opacity: 0.92;
    color: #ffffff;
}

.single-product-hero-card {
    background: linear-gradient(135deg, #0d3b7a 0%, #0a2f64 50%, #07214a 100%);
    border-radius: var(--radius-card);
    padding: 22px 24px;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 15, 45, 0.2);
}

.single-product-hero-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.25);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.single-product-hero-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
}

.single-product-hero-subtitle {
    color: rgba(234, 243, 255, 0.92);
    font-size: 14px;
    max-width: 70ch;
}

.single-product-hero-actions .btn {
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
}

.single-product-hero-btn-primary {
    background: var(--color-primary);
    border: none;
    color: #ffffff;
}

.single-product-hero-btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.single-product-hero-image {
    background: transparent;
    border-radius: 12px;
    padding: 0;
}

.single-product-hero-image img {
    border-radius: 12px;
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.single-product-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.single-product-topbar-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-text);
}

.single-product-topbar-cta {
    border-radius: 999px;
    padding: 10px 20px;
    font-weight: 600;
    background: #ffffff;
    border: 1px solid #e4e9f2;
}

.single-product-sidecard {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e4e9f2;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    padding: 14px;
}

.single-product-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.single-product-trust-pill {
    background: #f4f7fd;
    border: 1px solid #e4e9f2;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #223256;
}

.single-product-sidecard-secondary {
    background: #ffffff;
    border: 1px solid #e4e9f2;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 600;
}

.single-product-sidecard-secondary:hover {
    background: #f7faff;
}

.single-product-sidecard-image img[data-gallery="1"] {
    cursor: pointer;
}

.single-product-sidecard-image img {
    width: 100%;
   
    object-fit: contain;
    border-radius: 16px;
    display: block;
}

.single-product-slider {
    border-radius: 16px;
    overflow: hidden;
    /* border: 1px solid #e4e9f2;
    background: #f7faff; */
}

/* Keep carousel height stable to avoid thumbnail "jitter" */
.single-product-slider .carousel-inner {
    min-height: 340px;
    border: 1px solid #e4e9f2;
    border-radius: 16px;
}

.single-product-slider .carousel-item {
    background: #f7faff;
}

.single-product-slider-indicators {
    margin-bottom: 8px;
}

/* Dot-style indicators only (not thumbnail strip) */
.single-product-slider-indicators:not(.single-product-thumb-indicators) li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.62);
}

.single-product-slider-indicators:not(.single-product-thumb-indicators) .active {
    background: #ffffff;
}

.single-product-thumb-indicators {
    /* override bootstrap carousel-indicators layout to prevent jump */
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    list-style: none;

    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;

    margin: 10px 0 0;
    padding: 0 4px 2px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.single-product-thumb-indicators li {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    border-radius: 10px;
    border: 2px solid transparent;
    background: #eef3fb;
    overflow: hidden;
    /* Cancel Bootstrap .carousel-indicators li text-indent (offsets thumbnail images) */
    text-indent: 0 !important;
    margin: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0;
    opacity: 1;
    line-height: 0;
    font-size: 0;
    box-sizing: border-box;
    position: relative;
    flex: 0 0 56px;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    transition: border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.single-product-thumb-indicators li img {
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    object-fit: cover;
    object-position: center;
    display: block;
    vertical-align: top;
    align-self: stretch;
}

.single-product-thumb-indicators li:hover {
    /* avoid indicator bar "jitter" on hover */
    filter: brightness(0.98);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.10);
}

.single-product-thumb-indicators li.active {
    border-color: #1f6fd1;
    background: #eef3fb;
    box-shadow: 0 8px 16px rgba(31, 111, 209, 0.24);
}

/* Beat Bootstrap .carousel-indicators li + generic .active background on thumbnails */
.single-product-thumb-indicators.carousel-indicators li.active {
    background: #eef3fb !important;
}

.single-product-slider-control {
    opacity: 0.92;
}

.single-product-slider-control .carousel-control-prev-icon,
.single-product-slider-control .carousel-control-next-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(15, 23, 42, 0.45);
    background-size: 55%;
}

.single-product-details-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e4e9f2;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    padding: 16px 18px;
}

.single-product-details-card p,
li {
    text-align: justify;
    color: #4b5e82;
    font-size: 14px;
    line-height: 28px;
}

.single-product-details-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    
}

.single-product-details-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(234, 243, 255, 0.92);
    background: radial-gradient(circle at top left, #1f6fd1 0, var(--color-primary-dark) 55%, var(--color-primary-dark) 100%);
    border-radius: 999px;
    padding: 6px 10px;
    margin-bottom: 8px;
}

.single-product-details-lead {
    color: #4b5e82;
    font-size: 13px;
}

.single-product-overview-card {
    position: relative;
    overflow: hidden;
}

.single-product-overview-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(900px 220px at 10% 0%, rgba(20, 97, 241, 0.10), transparent 55%),
        radial-gradient(700px 220px at 90% 20%, rgba(12, 188, 136, 0.10), transparent 60%);
}

.single-product-overview-card>* {
    position: relative;
    z-index: 1;
}

.single-product-overview-head {
    align-items: flex-start;
}

.single-product-overview-head-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.single-product-overview-link {
    border-radius: 999px;
    padding: 9px 12px;
    font-weight: 700;
    font-size: 12px;
    background: #ffffff;
    border: 1px solid #e4e9f2;
    color: #132244;
}

.single-product-overview-link:hover {
    background: #f7faff;
    color: #132244;
}

.single-product-overview-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.single-product-highlight {
    display: flex;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid #e9eef8;
    background: rgba(255, 255, 255, 0.92);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.single-product-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
    border-color: rgba(31, 111, 209, 0.30);
}

.single-product-highlight-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: radial-gradient(circle at top left, #1f6fd1 0, var(--color-primary-dark) 60%, var(--color-primary-dark) 100%);
    flex: 0 0 auto;
}

.single-product-highlight-title {
    font-weight: 800;
    font-size: 13px;
    color: #132244;
    line-height: 1.2;
}

.single-product-highlight-text {
    font-size: 12px;
    color: #4b5e82;
    line-height: 1.5;
    margin-top: 2px;
}

.single-product-overview-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.single-product-overview-btn {
    flex: 1 1 240px;
   
    font-weight: 800;

}

.single-product-overview-btn.secondary {
    background: #ffffff;
    border: 1px solid #d0daf0;
    color: var(--color-text);
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.single-product-overview-btn.secondary:hover,
.single-product-overview-btn.secondary:focus,
.single-product-overview-btn.secondary:active,
button.single-product-overview-btn.secondary:hover,
button.single-product-overview-btn.secondary:focus,
button.single-product-overview-btn.secondary:active {
    background: #f5f8ff !important;
    border-color: var(--color-primary) !important;
    color: var(--color-primary) !important;
}

.single-product-application-card,
.single-product-video-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.single-product-application-card::before,
.single-product-video-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(1000px 220px at 0% 0%, rgba(31, 111, 209, 0.08), transparent 55%);
}

.single-product-application-card>*,
.single-product-video-card>* {
    position: relative;
    z-index: 1;
}

.single-product-application-card .single-product-details-body,
.single-product-video-card .single-product-details-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.single-product-application-card .single-product-application-content {
    flex: 1 1 auto;
}

.single-product-video-card .single-product-video-wrap {
    flex: 1 1 auto;
}

.single-product-video-card .single-product-video-placeholder {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.single-product-application-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.single-product-application-item {
    border: 1px solid #e4e9f2;
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 14px;
    color: #223256;
    line-height: 1.6;
    background: #ffffff;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.single-product-application-item i {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f6fd1;
    background: rgba(31, 111, 209, 0.10);
    border: 1px solid rgba(31, 111, 209, 0.18);
    flex: 0 0 auto;
}

.single-product-application-item:hover {
    border-color: #cfe0ff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.single-product-application-content p:last-child {
    margin-bottom: 0;
}

.single-product-application-content ul,
.single-product-application-content ol {
    padding-left: 0;
    margin: 0;
}

.single-product-application-content li {
    list-style: none;
    border: 1px solid #e4e9f2;
    border-radius: 8px;
    padding: 8px 16px 8px 46px;
    font-size: 13px;
    color: #223256;
    line-height: 1.6;
    background: #ffffff;
    position: relative;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.single-product-application-content li+li {
    margin-top: 12px;
}

.single-product-application-content li::before {
    content: "\f058";
    font-family: "FontAwesome";
    position: absolute;
    left: 16px;
    top: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f6fd1;
    background: rgba(31, 111, 209, 0.10);
    border: 1px solid rgba(31, 111, 209, 0.18);
    font-size: 14px;
}

.single-product-application-content li:hover {
    border-color: #cfe0ff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.single-product-video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e4e9f2;
    background: #000;
}

.single-product-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.single-product-video-placeholder {
    border: 1px dashed #c8d6ef;
    border-radius: 14px;
    background: #f9fbff;
    padding: 24px 18px;
    text-align: center;
}

.single-product-video-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 10px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: radial-gradient(circle at top left, #1f6fd1 0, var(--color-primary-dark) 60%, var(--color-primary-dark) 100%);
}

.single-product-video-title {
    font-size: 18px;
    font-weight: 800;
    color: #132244;
    margin-bottom: 6px;
}

.single-product-video-text {
    margin: 0 auto 14px;
    max-width: 620px;
    color: #4b5e82;
    font-size: 13px;
    line-height: 1.7;
}
.single-product-spec-table{border: 1px solid #e4e9f2;  border-radius: 10px;}
.single-product-spec-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #e4e9f2;
}

.single-product-spec-table table td,
.single-product-spec-table table th {
    padding: 12px 14px;
    border-color: #e4e9f2 !important;
    font-size: 14px;
}

.single-product-spec-table table tr:nth-child(even) td {
    background: #f9fbff;
}

.single-product-spec-table table tr td:first-child,
.single-product-spec-table table tr th:first-child {
    font-weight: 700;
    color: #132244;
    width: 45%;
}

.single-product-spec-table table tr td:last-child,
.single-product-spec-table table tr th:last-child {
    color: #223256;
}

/* ============================
   Single product description typography
   (override legacy #data_align line-height:45px)
   ============================ */
.single-product-page #data_align {
    max-width: 100%;
}

.single-product-page #data_align p,
.single-product-page #data_align li {
    font-size: 14px;
    line-height: 1.75;
    color: #4b5e82;
}

.single-product-page #data_align p {
    margin-bottom: 12px;
    text-align: left;
}

.single-product-page #data_align h2,
.single-product-page #data_align h3,
.single-product-page #data_align h4 {
    color: var(--color-text);
    font-weight: 800;
    margin-top: 18px;
    margin-bottom: 10px;
}

.single-product-page #data_align ul,
.single-product-page #data_align ol {
    margin: 12px 0 14px;
    padding-left: 0;
}

.single-product-page #data_align ul li {
    list-style: none;
    position: relative;
    padding: 10px 12px 10px 34px;
    margin-bottom: 10px;
    border-radius: 12px;
    background: #f9fbff;
    border: 1px solid #e7eefb;
}

.single-product-page #data_align ul li::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 23px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), #0cbc88);
}

.single-product-page #data_align ul li strong {
    color: #223256;
}

.single-product-page #data_align ol {
    padding-left: 18px;
}

.single-product-page #data_align ol li {
    margin-bottom: 10px;
}

@media (max-width: 767.98px) {
    .single-product-hero-card {
        border-radius: 18px;
        padding: 18px 18px;
        text-align: center;
    }

    .single-product-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .single-product-topbar-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .single-product-details-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .single-product-overview-head-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .single-product-overview-highlights {
        grid-template-columns: 1fr;
    }

    .single-product-sidecard-image img {
        height: 250px;
    }

    .single-product-slider .carousel-inner {
        min-height: 250px;
    }

    .single-product-thumb-indicators li {
        width: 48px;
        height: 48px;
    }

    .single-product-slider-control .carousel-control-prev-icon,
    .single-product-slider-control .carousel-control-next-icon {
        width: 28px;
        height: 28px;
    }
}

.product-card-specs {
    border-radius: 10px;
    background: #f9fbff;
    padding: 0px 5px;
    font-size: 13px;
    margin-bottom: 7px;
}

.py-8 {
    padding: 50px 0px;
}

.product-card-spec-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(135, 156, 190, 0.5);
}

.product-card-spec-row:last-child {
    border-bottom: none;
}

.product-card-spec-label {
    color: #7a8ba5;
}

.product-card-spec-value {
    color: #132244;
    font-weight: 600;
    text-align: right;
}

.product-card-actions {
    display: flex;
    gap: 10px;
}

.product-card-btn {
    flex: 1 1 0;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 0;
    border: none;
}

.product-card-btn.details-btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #ffffff;
}

.product-card-btn.quote-btn {
    background: linear-gradient(135deg, var(--color-accent-bright), var(--color-accent));
    color: #111827;
}

.product-card-btn:hover {
    opacity: 0.92;
    color: #ffffff;
}

.product-card-btn.quote-btn:hover {
    color: #111827;
}

@media (max-width: 767.98px) {
    .product-card-elevated {
        border-radius: var(--radius-card);
    }

    .product-card-image {
        border-radius: var(--radius-card) var(--radius-card) 0 0;
    }
}

/* ============================
   Hero Section Styling
   ============================ */

.hero-enterprise {
    background: linear-gradient(160deg, #eaf2ff 0%, #f0f4fc 50%, #e4ecfa 100%);
    color: var(--color-text);
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero-enterprise::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 70% at 80% 30%, rgba(0, 86, 210, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 15% 80%, rgba(0, 86, 210, 0.04) 0%, transparent 55%);
    pointer-events: none;
}

.hero-enterprise .container {
    position: relative;
    z-index: 1;
}

.hero-enterprise .lead {
    color: #4e70af;
    font-size: 15px;
    line-height: 1.7;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #183d8d;
}

.hero-title span {
    display: block;
    color: #ffd700;
}

.hero-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 999px;
    background: rgba(0, 86, 210, 0.08);
    border: 1px solid rgba(0, 86, 210, 0.15);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.hero-core-range {
    margin-top: 20px;
}

.core-range-label {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-muted);
    margin-right: 8px;
    letter-spacing: 0.06em;
}

.core-range-pill {
    display: inline-block;
    margin: 4px 4px 0 0;
    padding: 5px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dce5f5;
    color: var(--color-text);
    font-size: 12px;
    font-weight: 500;
}

.hero-actions .btn {
    border-radius: 6px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 14px;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dce5f5;
    color: var(--color-text);
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.hero-trust-pill i {
    color: var(--color-primary);
}

.hero-primary-btn {
    background: var(--color-primary);
    border: none;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(0, 86, 210, 0.25);
}

/* .hero-primary-btn:hover {
    background: #0068ff;
} */

.hero-secondary-btn {
    background: #ffffff;
    border: 1px solid #d0daf0;
    color: var(--color-text);
}

.hero-secondary-btn:hover {
    background: #f5f8ff;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.hero-image-card {
    background: #ffffff;
    border: 1px solid #dce5f5;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 16px 48px rgba(15, 35, 70, 0.1);
    position: relative;
    display: inline-block;
}

.hero-image-card img {
    border-radius: 12px;
}

.hero-image-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: #ffffff;
    border-radius: 999px;
    padding: 8px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 6px 18px rgba(15, 35, 70, 0.12);
}

.hero-image-badge span {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
}

.hero-image-badge small {
    font-size: 11px;
    color: var(--color-muted);
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-enterprise {
        padding-top: 36px;
        padding-bottom: 36px;
    }
}

/* ============================
   Modern Contact Section
   ============================ */

.contact-section-modern {
    background: var(--color-bg);
}

.contact-card-form,
.contact-card-info {
    background: var(--color-surface);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 26px 10px;
}

.contact-card-header {
    margin-bottom: 18px;
}

.contact-card-header h2,
.contact-card-header h3 {
    font-weight: 700;
    color: #132244;
}

.contact-card-header p {
    color: #7a8ba5;
    font-size: 14px;
}

.contact-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(14, 101, 241, 0.08);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-badge-secondary {
    background: rgba(12, 188, 136, 0.08);
    color: #0cbc88;
}

.contact-form-modern .form-control {
    border-radius: 999px;
    border: 1px solid #dde4f3;
    font-size: 14px;
}

.contact-form-modern textarea.form-control {
    border-radius: 18px;
}

.contact-form-modern .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.15rem rgba(14, 101, 241, 0.15);
}

.contact-form-modern label {
    font-size: 13px;
    font-weight: 600;
    color: #394d70;
}

.contact-submit-btn {
    background: var(--color-primary);
    border-radius: 6px;
    color: #ffffff !important;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    box-shadow: 0 6px 18px rgba(0, 86, 210, 0.25);
    transition: background 0.18s ease, box-shadow 0.18s ease;
}

.contact-submit-btn:hover,
.contact-submit-btn:focus,
.contact-submit-btn:active,
button.contact-submit-btn:hover,
button.contact-submit-btn:focus,
button.contact-submit-btn:active {
    background: #0068ff !important;
    color: #ffffff !important;
    opacity: 1;
    box-shadow: 0 8px 24px rgba(0, 86, 210, 0.32) !important;
}

/* reCAPTCHA + submit button in one row */
.recaptcha-submit-row .g-recaptcha {
    width: 100%;
}
.recaptcha-submit-row .g-recaptcha > div {
    width: 100% !important;
}
.recaptcha-submit-row iframe {
    max-width: 100% !important;
}
/* 768px and above: keep in single row */
@media (min-width: 768px) {
    .recaptcha-submit-btn {
        width: 100%;
        white-space: nowrap;
    }
}
@media (max-width: 767.98px) {
    .recaptcha-submit-row .g-recaptcha {
        overflow: hidden;
    }
    .recaptcha-submit-btn {
        width: 100%;
    }
}

.contact-info-list {
    margin-top: 10px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 18px;
    background: #f6f8ff;
    margin-bottom: 10px;
}

.contact-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 16px;
}

.contact-info-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #7a8ba5;
    font-weight: 600;
}

.contact-info-value {
    font-size: 14px;
    color: #132244;
    font-weight: 500;
}

.contact-info-value a {
    color: #132244;
}

.contact-whatsapp-btn {

    border-radius: 999px;
    background: #0cbc88;
    color: #ffffff;
    font-weight: 600;
    border: none;
    padding: 10px 30px;
}

.contact-whatsapp-btn:hover {
    color: #ffffff;
    opacity: 0.95;
}

/* ============================
   Enterprise CTA Section (v2)
   ============================ */
.ecta {
    background: var(--color-bg);
}

.ecta-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    align-items: start;
}

/* Form Card */
.ecta-form-card {
    background: #ffffff;
    border: 1px solid #e4e9f2;
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: var(--shadow-card);
}

.ecta-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.ecta-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.ecta-field:only-child {
    margin-bottom: 14px;
}

.ecta-field label {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ecta-input {
    width: 100%;
    border: 1px solid #e1e6f2;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--color-text);
    background: #fafbfd;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.ecta-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 86, 210, 0.08);
    background: #ffffff;
}

.ecta-textarea {
    resize: vertical;
    border-radius: 10px;
    min-height: 100px;
}

.ecta-submit-row {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    margin-top: 18px;
}

.ecta-recaptcha {
    flex-shrink: 0;
}

.ecta-submit-btn {
    flex: 1;
    background: var(--color-primary);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 86, 210, 0.2);
    transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
    white-space: nowrap;
}

.ecta-submit-btn:hover,
.ecta-submit-btn:focus,
.ecta-submit-btn:active,
button.ecta-submit-btn:hover,
button.ecta-submit-btn:focus,
button.ecta-submit-btn:active {
    background: #0068ff !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(0, 86, 210, 0.3) !important;
    transform: translateY(-1px);
}

/* Info Card */
.ecta-info-card {
    background: linear-gradient(160deg, #0d2240 0%, #091a32 60%, #071122 100%);
    border-radius: 12px;
    padding: 20px 20px;
    color: #ffffff;
}

.ecta-info-title {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.ecta-info-desc {
    font-size: 13px;
    color: rgba(207, 216, 234, 0.6);
    line-height: 1.6;
    margin-bottom: 20px;
}

.ecta-info-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.ecta-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none !important;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.ecta-info-row:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
}

.ecta-info-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(0, 86, 210, 0.15);
    color: #6fb1ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.ecta-info-body {
    display: flex;
    flex-direction: column;
}

.ecta-info-label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(207, 216, 234, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ecta-info-value {
    font-size: 13.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
}

a.ecta-info-row .ecta-info-value {
    transition: color 0.15s ease;
}

a.ecta-info-row:hover .ecta-info-value {
    color: #ffffff;
}

.ecta-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #25d366;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 20px;
    border-radius: 8px;
    border: none;
    text-decoration: none !important;
    margin-bottom: 20px;
    transition: background 0.18s ease, transform 0.15s ease;
}

.ecta-wa-btn:hover {
    background: #1ebe5a;
    transform: translateY(-1px);
    color: #ffffff !important;
}

.ecta-trust {
    display: flex;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.ecta-trust-item {
    flex: 1;
    text-align: center;
    padding: 8px 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.ecta-trust-item strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 3px;
}

.ecta-trust-item span {
    font-size: 10px;
    font-weight: 600;
    color: rgba(207, 216, 234, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 991.98px) {
    .ecta-grid {
        grid-template-columns: 1fr;
    }

    .ecta-info-card {
        order: -1;
    }

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

@media (max-width: 575.98px) {
    .ecta-form-card {
        padding: 22px 16px;
    }

    .ecta-field-row {
        grid-template-columns: 1fr;
    }

    .ecta-submit-row {
        flex-direction: column;
    }

    .ecta-submit-btn {
        width: 100%;
    }

    .ecta-info-card {
        padding: 22px 16px;
    }

    .ecta-wa-btn {
        font-size: 13px;
    }
}

/* ============================
   Enterprise enquiry modal
   ============================ */
.inquiry-modal--enterprise .inquiry-modal-card {
    border: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.35);
}

.inquiry-modal--enterprise .inquiry-modal-header {
    border: 0;
    padding: 18px 20px;
    background: radial-gradient(circle at top left, #1f6fd1 0, var(--color-primary-dark) 50%, var(--color-primary-dark) 100%);
    color: #ffffff;
}

.inquiry-modal--enterprise .inquiry-modal-kicker {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(234, 243, 255, 0.92);
    background: rgba(4, 14, 40, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 6px 10px;
    margin-bottom: 8px;
}

.inquiry-modal--enterprise .inquiry-modal-title {
    font-weight: 800;
    font-size: 18px;
    color: #ffffff;
}

.inquiry-modal--enterprise .inquiry-modal-close {
    color: rgba(255, 255, 255, 0.95);
    opacity: 1;
    text-shadow: none;
}

.inquiry-modal--enterprise .inquiry-modal-body {
    padding: 18px 18px 18px;
    background: #f4f7fd;
}

.inquiry-modal--enterprise .inquiry-modal-alert:empty {
    display: none;
}

.inquiry-modal--enterprise .inquiry-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 12px;
}

.inquiry-modal--enterprise .inquiry-input {
    border-radius: 6px;
    border: 1px solid #dde4f3;
    background: #ffffff;
    padding: 10px 12px;
}

.inquiry-modal--enterprise .inquiry-product-title-input {
    background: #f3f5f9;
    border: 1px solid #cfd7e6;
    color: #5f6774;
    font-weight: 500;
    border-radius: 6px;
    padding: 10px 10px;
    /* line-height: 1.35; */
    /* height: 38px; */
}

.inquiry-modal--enterprise .inquiry-product-title-input:focus {
    background: #f3f5f9;
    border-color: #bfc8da;
    box-shadow: none;
}

.inquiry-modal--enterprise .inquiry-product-title-input[readonly] {
    opacity: 1;
}

.inquiry-modal--enterprise .inquiry-product-top {
    border-bottom: 1px solid #d9e1ef;
    padding: 2px 2px 12px;
    margin-bottom: 12px;
}

.inquiry-modal--enterprise .inquiry-product-top-title {
    font-size: 16px;
    font-weight: 700;
    color: #2f2f2f;
    line-height: 1.35;
    margin-bottom: 4px;
}

.inquiry-modal--enterprise .inquiry-product-top-subtitle {
    font-size: 13px;
    color: #7a7f88;
    line-height: 1.55;
}

.inquiry-modal--enterprise .form-group label {
    font-size: 12px;
    font-weight: 700;
    color: #223256;
    margin-bottom: 6px;
}

.inquiry-modal--enterprise .inquiry-modal-aside {
    background: #ffffff;
    border: 1px solid #e4e9f2;
    border-radius: 18px;
    padding: 14px 14px 14px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    height: 100%;
}

.inquiry-modal--enterprise .inquiry-modal-aside-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 10px;
}

.inquiry-modal--enterprise .inquiry-modal-aside-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: grid;
    gap: 10px;
}

.inquiry-modal--enterprise .inquiry-modal-aside-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #4b5e82;
}

.inquiry-modal--enterprise .inquiry-modal-aside-list i {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #eef4ff;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 2px;
}

.inquiry-modal--enterprise .inquiry-submit-btn {
    border-radius: 6px;
    background: var(--color-primary);
    color: #ffffff !important;
    border: none;
    padding: 12px 0;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(0, 86, 210, 0.25);
    transition: background 0.18s ease, box-shadow 0.18s ease;
}

.inquiry-modal--enterprise .inquiry-submit-btn:hover,
.inquiry-modal--enterprise .inquiry-submit-btn:focus,
.inquiry-modal--enterprise .inquiry-submit-btn:active,
.inquiry-modal--enterprise button.inquiry-submit-btn:hover,
.inquiry-modal--enterprise button.inquiry-submit-btn:focus,
.inquiry-modal--enterprise button.inquiry-submit-btn:active {
    background: #0068ff !important;
    color: #ffffff !important;
    opacity: 1;
    box-shadow: 0 8px 24px rgba(0, 86, 210, 0.32) !important;
}

.inquiry-modal--enterprise .inquiry-secondary-btn {
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid #d0daf0;
    color: var(--color-text);
    padding: 12px 0;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.inquiry-modal--enterprise .inquiry-secondary-btn:hover,
.inquiry-modal--enterprise .inquiry-secondary-btn:focus,
.inquiry-modal--enterprise .inquiry-secondary-btn:active,
.inquiry-modal--enterprise button.inquiry-secondary-btn:hover,
.inquiry-modal--enterprise button.inquiry-secondary-btn:focus,
.inquiry-modal--enterprise button.inquiry-secondary-btn:active {
    background: #f5f8ff !important;
    border-color: var(--color-primary) !important;
    color: var(--color-primary) !important;
}

@media (max-width: 767.98px) {
    .inquiry-modal--enterprise .inquiry-form-grid {
        grid-template-columns: 1fr;
    }

    .inquiry-modal--enterprise .inquiry-modal-body {
        padding: 14px;
    }
}

@media (max-width: 991.98px) {

    .contact-card-form,
    .contact-card-info {
        border-radius: 18px;
        box-shadow: 0 10px 26px rgba(15, 35, 52, 0.16);
        margin-bottom: 18px;
    }
}

/* ============================
   Modern Blog Section
   ============================ */

.blog-section-modern {
    background: #fafafa;
}

.blog-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    font-weight: 600;
    color: #7a8ba5;
    margin-bottom: 6px;
}

.blog-heading {
    font-size: 24px;
    font-weight: 700;
    max-width: 640px;
    margin: 0 auto;
    color: var(--color-text);
}

.blog-card {
    background: var(--color-surface);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(0, 86, 210, 0.18);
}

.blog-card-image-wrapper {
    display: block;
    overflow: hidden;
    max-height: 220px;
}

.blog-card-image {
    width: 100%;
    display: block;
    height: 220px;

}

.blog-card-body {
    padding: 16px 20px 18px;
}

.blog-card-category {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-primary);
}

.blog-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-top: 4px;
    margin-bottom: 6px;
}

.blog-card-title a {
    color: var(--color-text);
}

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

.blog-card-excerpt {
    font-size: 13px;
    color: var(--color-muted);
    margin-bottom: 10px;
}

.blog-card-meta {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    font-size: 11px;
    color: #9aa4b9;
}

.blog-card-meta i {
    margin-right: 4px;
}

/* ============================
   Industrial Applications (home)
   ============================ */
.applications-section-enterprise {
    background: var(--color-bg);
}

.applications-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    font-weight: 700;
    color: #7a8ba5;
    margin-bottom: 6px;
}

.applications-heading {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-text);
    margin: 0 auto 8px;
    max-width: 680px;
}

.applications-subtitle {
    max-width: 85ch;
    margin-left: auto;
    margin-right: auto;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.applications-card {
    background: #ffffff;
    border: 1px solid #e4e9f2;
    border-radius: 20px;
    padding: 16px 16px 16px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    height: 100%;
}

.applications-card:hover {
    border-color: #cfe0ff;
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

.applications-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #eef4ff;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.applications-title {
    margin-top: 12px;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 800;
    color: var(--color-text);
}

.applications-text {
    font-size: 13px;
    color: #4b5e82;
    margin-bottom: 12px;
}

.applications-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.applications-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: #f6f8ff;
    border: 1px solid #e1e6f5;
    color: #4b5e82;
    font-size: 11px;
    font-weight: 700;
}

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

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

/* ============================
   Single blog page (enterprise)
   ============================ */
.single-blog-page {
    background: #f4f7fd;
}

.single-blog-card {
    background: #ffffff;
    border: 1px solid #e4e9f2;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.single-blog-cover img {
    width: 100%;
    
    object-fit: cover;
   
}

.single-blog-body {
    padding: 18px 20px 20px;
}

.single-blog-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 10px;
}

.single-blog-meta i {
    margin-right: 6px;
    color: var(--color-primary);
}

/* Override legacy #blog_data typography */
.single-blog-page #blog_data p,
.single-blog-page #blog_data li {
    font-size: 14px;
    line-height: 1.75;
    color: #4b5e82;
}

.single-blog-page #blog_data p {
    margin-bottom: 12px;
    text-align: left;
}

.single-blog-page #blog_data h2,
.single-blog-page #blog_data h3,
.single-blog-page #blog_data h4 {
    color: var(--color-text);
    font-weight: 800;
    margin-top: 18px;
    margin-bottom: 10px;
}

.single-blog-page #blog_data ul,
.single-blog-page #blog_data ol {
    margin: 12px 0 14px;
}

.single-blog-page #blog_data ul {
    padding-left: 0;
}

.single-blog-page #blog_data ul li {
    list-style: none;
    position: relative;
    padding: 12px 14px 12px 44px;
    margin-bottom: 12px;
    border-radius: 12px;
    background: #f6f8ff;
    border: 1px solid #e4e9f2;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.single-blog-page #blog_data ul li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: var(--color-primary);
}

.single-blog-page #blog_data ol {
    padding-left: 18px;
}

.single-blog-side-card {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid rgba(14, 101, 241, 0.18);
    border-radius: 18px;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
    padding: 14px 14px 14px;
}

/* Enterprise override for single blog sidebar accordion */
.single-blog-side-card .product-filter-panel--enterprise .custom-card-header {
    background: linear-gradient(135deg, #fafafa 0%, #e8e9eb 100%);
    /* border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 14px !important; */

    color: #ffffff !important;
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
}

.single-blog-side-card .product-filter-panel--enterprise .custom-card-header a {
    color: #ffffff !important;
    text-decoration: none !important;
}

.single-blog-side-card .product-filter-panel--enterprise .custom-card:hover .custom-card-header {
    filter: brightness(1.03);
}

.single-blog-side-card .product-filter-panel--enterprise .custom-card .card-body {
    background: #ffffff !important;
    padding: 0 !important;
}

.single-blog-side-card .product-filter-panel--enterprise .card-in-list ul li a {
    color: #223256 !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    padding: 10px 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: #ffffff !important;
    border-top: 1px solid #f0f3f8;
}

.single-blog-side-card .product-filter-panel--enterprise .card-in-list ul li a:hover {
    background: #eef4ff !important;
    color: var(--color-primary) !important;
}

.single-blog-side-card .product-filter-panel--enterprise .custom-card .card-body ul li.is-active a {
    background: #eef4ff !important;
    color: #102548 !important;
    font-weight: 800 !important;
    border-left: 3px solid var(--color-primary);
}

.single-blog-side-card .product-filter-panel--enterprise .product-filter-count {
    background: rgba(14, 101, 241, 0.12) !important;
    border: 1px solid rgba(14, 101, 241, 0.22) !important;
    color: var(--color-primary) !important;
}

.single-blog-side-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 6px;
}

.single-blog-side-text {
    font-size: 13px;
    color: #4b5e82;
}

@media (max-width: 767.98px) {
    .single-blog-cover img {
        height: 220px;
    }

    .single-blog-body {
        padding: 14px 14px 16px;
    }
}

@media (max-width: 991.98px) {
    .blog-heading {
        font-size: 20px;
    }
}

/* ============================
   FAQ Section
   ============================ */

.faq-section-modern {
    width: 100%;
    background: #fff;
}

.faq-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(15, 35, 52, 0.08);
    padding: 28px 30px 30px;
}

.faq-accordion .card {
    border-radius: 14px !important;
    border: 1px solid #dde4f3;
    margin-bottom: 10px;
    box-shadow: 0 4px 14px rgba(15, 35, 52, 0.06);
    overflow: hidden;
}

.faq-accordion .card:last-child {
    margin-bottom: 0;
}

.faq-header {
    background: #ffffff;
    border-bottom: 0;
    border-radius: 14px !important;
    padding: 10px 16px;
}

.faq-toggle {
    width: 100%;
    text-align: left;
    padding: 0;
    color: #132244;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.faq-toggle:hover,
.faq-toggle:focus {
    text-decoration: none;
    color: var(--color-primary);
}

.faq-body {
    font-size: 14px;
    color: #4b5e82;
    background: #f6f8ff;
    border-top: 1px solid #dde4f3;
}

/* Expand/collapse indicator */
.faq-toggle::after {
    content: "\25bc";
    float: right;
    font-size: 11px;
    color: #9aa4b9;
    transition: transform 0.2s ease;
}

.faq-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Highlight active FAQ card */
.faq-accordion .collapse.show {
    background: #f6f8ff;
}

/* ============================
   Enterprise Footer
   ============================ */

/* Tier 1: CTA Banner */
.ent-footer-cta {
    background: linear-gradient(135deg, #0a2a5e 0%, #0d3b7a 50%, #0f4590 100%);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.ent-footer-cta::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -10%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.ent-footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.ent-footer-cta-title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px;
    line-height: 1.3;
}

.ent-footer-cta-text {
    font-size: 14px;
    color: rgba(207, 216, 234, 0.85);
    margin: 0;
    max-width: 440px;
}

.ent-footer-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.ent-footer-cta-btn {
    background: #ffffff;
    color: var(--color-primary) !important;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.ent-footer-cta-btn:hover {
    background: #f0f4ff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: var(--color-primary) !important;
}

.ent-footer-cta-call {
    background: transparent;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px;
    padding: 11px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: background 0.18s ease, border-color 0.18s ease;
}

.ent-footer-cta-call:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff !important;
}

/* Tier 2: Main Footer */
.ent-footer-main {
    background: linear-gradient(180deg, #0a1628 0%, #071122 100%);
    padding: 56px 0 48px;
    color: #ffffff;
}

.ent-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.3fr 1fr;
    gap: 48px;
}

.ent-footer-logo {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.ent-footer-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(207, 216, 234, 0.7);
    margin-bottom: 20px;
    max-width: 420px;
}

.ent-footer-social {
    display: flex;
    gap: 10px;
}

.ent-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.ent-footer-social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

/* Footer products */
.ent-footer-products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ent-footer-product-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.18s ease, border-color 0.18s ease;
    text-decoration: none !important;
}

.ent-footer-product-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.ent-footer-product-img {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.ent-footer-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ent-footer-product-name {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(207, 216, 234, 0.8);
    line-height: 1.35;
    transition: color 0.15s ease;
}

.ent-footer-product-card:hover .ent-footer-product-name {
    color: #ffffff;
}

.ent-footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ent-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ent-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(207, 216, 234, 0.75);
    font-size: 13.5px;
    line-height: 1.55;
}

.ent-footer-contact-list li:last-child {
    border-bottom: none;
}

.ent-footer-contact-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--color-primary);
    margin-top: 1px;
}

.ent-footer-contact-list li a {
    color: rgba(207, 216, 234, 0.85);
    transition: color 0.15s ease;
}

.ent-footer-contact-list li a:hover {
    color: #ffffff;
}

/* Tier 3: Locations Strip */
.ent-footer-locations {
    background: #060e1c;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ent-footer-locations-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.ent-footer-locations-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.ent-footer-locations-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ent-footer-loc-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 600;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.ent-footer-loc-pill:hover {
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.25);
    color: var(--color-accent-bright);
}

/* Tier 4: Bottom Bar */
.ent-footer-bottom {
    background: #040a14;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.ent-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ent-footer-copyright {
    font-size: 12.5px;
    color: rgba(207, 216, 234, 0.4);
    letter-spacing: 0.02em;
}

/* Footer responsive */
@media (max-width: 991.98px) {
    .ent-footer-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .ent-footer-cta-text {
        max-width: none;
    }

    .ent-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .ent-footer-brand {
        grid-column: 1 / -1;
    }

    .ent-footer-desc {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .ent-footer-cta {
        padding: 32px 0;
    }

    .ent-footer-cta-title {
        font-size: 20px;
    }

    .ent-footer-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .ent-footer-cta-btn,
    .ent-footer-cta-call {
        width: 100%;
        text-align: center;
    }

    .ent-footer-main {
        padding: 36px 0 32px;
    }

    .ent-footer-grid {
        grid-template-columns: 1fr;
    }

    .ent-footer-brand {
        grid-column: auto;
    }

    .ent-footer-products-grid {
        grid-template-columns: 1fr;
    }

    .ent-footer-locations-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Home About section after hero */
.home-about-top-section {
    background: #fafafa;
}

.home-about-top-card {
    
    
    border-radius: 22px;
    padding: 40px 20px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.home-about-top-image-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
    height: 100%;
}

.home-about-top-image-wrap img {
    width: 100%;
    min-height: 280px;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-about-top-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(4, 14, 40, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.home-about-top-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5f7498;
    margin-bottom: 6px;
}

.home-about-top-title {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 900;
    color: #132244;
    margin-bottom: 10px;
}

.home-about-top-text {
    color: #4b5e82;
    line-height: 1.75;
    margin-bottom: 10px;
    font-size: 14px;
}

.home-about-top-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.home-about-top-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #223256;
    font-size: 14px;
    line-height: 1.6;
}

.home-about-top-list i {
    color: var(--color-primary);
    margin-top: 3px;
}

@media (max-width: 767.98px) {
    .home-about-top-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .home-about-top-card {
        border-radius: 16px;
        padding: 14px;
    }

    .home-about-top-title {
        font-size: 22px;
    }

    .home-about-top-image-wrap img {
        min-height: 220px;
    }

    .home-about-top-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .home-about-top-actions .btn {
        width: 100%;
        margin: 0 !important;
        min-height: 42px;
        padding: 10px 14px;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Mobile sticky slide-out navigation */
@media (max-width: 991.98px) {
    
    .mobile-slideout-overlay {
        position: fixed;
        inset: 0;
        background: rgba(6, 14, 34, 0.5);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.2s ease, visibility 0.2s ease;
        z-index: 1065;
    }

    .main-navbar .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: min(84vw, 200px);
        height: 100vh;
        background: linear-gradient(180deg, #0f1e36 0%, #0a1628 100%);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: -16px 0 36px rgba(2, 8, 20, 0.45);
        padding: 12px 12px 18px;
        overflow-y: auto;
        transform: translateX(100%);
        opacity: 1;
        transition: transform 0.25s ease;
        z-index: 1070;
    }

    .main-navbar .navbar-collapse.show {
        transform: translateX(0);
    }

    body.mobile-menu-open .mobile-slideout-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    .mobile-slideout-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0px 4px 6px;
        margin-bottom: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .mobile-slideout-title {
        color: #ffffff;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        font-size: 12px;
    }

    .mobile-slideout-close {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-slideout-close:hover {
        background: rgba(255, 255, 255, 0.14);
    }

    .main-navbar .navbar-nav {
        width: 100%;
        gap: 4px;
        align-items: stretch;
    }

    .main-navbar .navbar-nav .nav-item {
        width: 100%;
    }

    .main-navbar .navbar-nav .nav-link {
        width: 100%;
        border-radius: 6px;
        padding: 10px 12px;
        text-align: left;
        color:#fff !important;
    }
}

/* Home applications CTA buttons */
.applications-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.applications-cta .btn {
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
}

@media (max-width: 767.98px) {
    .applications-cta {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 12px !important;
    }

    .applications-cta .btn {
        width: 100%;
        margin: 0 !important;
        padding: 10px 14px;
        min-height: 42px;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.2;
    }
}

@media (max-width: 425px) {
    /* .gap{gap: 12px !important;} */
    .main-navbar .navbar-nav .nav-link{color:#fff !important;}
    .show_body .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 5px 24px !important;
        border-radius: 8px;
    }

    .hero-actions .about-btn-secondary {
        margin-top: 12px;
    }

    .working-cta .btn {
        width: 100%;
    }
    .working-cta .about-btn-primary{
        padding: 6px 22px !important;
        border-radius: 8px;
    }
    .working-cta .about-btn-secondary {
        margin-top: 12px !important;
        padding: 5px 22px !important;
        border-radius: 8px;
    }
    .applications-cta .btn{padding: 5px 14px !important;  border-radius: 8px;}
    .about-hero-enterprise-actions .btn {
        width: 100%;
         border-radius: 8px;
        
    }
    

    .about-hero-enterprise-actions .about-btn-secondary {
        margin-top: 12px;
         border-radius: 8px;
    }

    .about-main-cta .btn {
        width: 100%;
         border-radius: 8px;
    }
    .about-why .btn {
        width: 100%;
         border-radius: 8px;
    }
    .single-product-topbar-actions .btn{
        border-radius: 8px;
        width: 100%;
    }
    .single-blog-side-card .btn{
         border-radius: 8px;
        width: 100%;
    }
    .single-product-overview-actions .btn {
        width: 100%;
         border-radius: 8px;
    }
    .about-why .about-btn-secondary {
        margin-top: 12px;
    }
    .contact-info-item{
        display: block !important;
        text-align: center;
        justify-items: center;
    }

    .contact-social{
        justify-items: center;
        justify-content: center;
    }
    .contact-whatsapp-btn{
        width: 100%;
         border-radius: 8px;
    }
}