/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/


/* Hero slider text visibility fix */
.wd-slider .wd-slide-bg:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(6, 19, 22, 0.82) 0%,
        rgba(6, 19, 22, 0.70) 32%,
        rgba(6, 19, 22, 0.35) 55%,
        rgba(6, 19, 22, 0.05) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.wd-slider .wd-slide-container {
    position: relative;
    z-index: 3;
}

.wd-slider .woodmart-title-container {
    color: #ffffff !important;
    text-shadow: 0 4px 18px rgba(0,0,0,0.35);
    font-weight: 700 !important;
}

.wd-slider .elementor-widget-text-editor {
    color: #ffffff !important;
    max-width: 620px !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
    text-shadow: 0 3px 14px rgba(0,0,0,0.35);
}

.wd-slider .btn-color-primary {
    background-color: #08A66A !important;
    border-color: #08A66A !important;
    color: #ffffff !important;
}

.wd-slider .btn-style-bordered {
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    background: rgba(255,255,255,0.08) !important;
    backdrop-filter: blur(6px);
}









/* ===============================
   GLOBAL WPFORMS THEME STYLING
   Works for all future WPForms
================================= */

.wpforms-container {
    margin: 0 !important;
}

/* Field spacing */
.wpforms-container .wpforms-field {
    padding: 0 0 18px 0 !important;
}

/* Labels */
.wpforms-container .wpforms-field-label {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #242424 !important;
    margin-bottom: 8px !important;
    line-height: 1.4 !important;
}

/* Inputs + Textarea + Select */
.wpforms-container input[type="text"],
.wpforms-container input[type="email"],
.wpforms-container input[type="number"],
.wpforms-container input[type="tel"],
.wpforms-container input[type="url"],
.wpforms-container input[type="password"],
.wpforms-container input[type="search"],
.wpforms-container input[type="date"],
.wpforms-container input[type="file"],
.wpforms-container select,
.wpforms-container textarea {
    width: 100% !important;
    height: 46px !important;
    border: 1px solid #e5e5e5 !important;
    background: #fff !important;
    color: #333 !important;
    font-size: 14px !important;
    padding: 10px 14px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    transition: all 0.25s ease !important;
}

/* Textarea */
.wpforms-container textarea {
    height: 150px !important;
    resize: vertical !important;
    padding-top: 12px !important;
}

/* Placeholder */
.wpforms-container input::placeholder,
.wpforms-container textarea::placeholder {
    color: #777 !important;
    opacity: 1 !important;
}

/* Focus state */
.wpforms-container input:focus,
.wpforms-container textarea:focus,
.wpforms-container select:focus {
    border-color: #111 !important;
    box-shadow: none !important;
}

/* 2 Column layout */
.wpforms-container .wpforms-one-half {
    width: 48.5% !important;
    margin-left: 3% !important;
}

.wpforms-container .wpforms-first {
    margin-left: 0 !important;
}

/* Submit container */
.wpforms-container .wpforms-submit-container {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Submit button */
.wpforms-container button.wpforms-submit {
    background: #111 !important;
    color: #fff !important;
    border: 1px solid #111 !important;
    height: auto !important;
    min-height: 46px !important;
    padding: 13px 30px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.4px !important;
    border-radius: 0 !important;
    line-height: 1 !important;
    transition: all 0.25s ease !important;
    box-shadow: none !important;
}

/* Submit hover */
.wpforms-container button.wpforms-submit:hover {
    background: #333 !important;
    border-color: #333 !important;
    color: #fff !important;
}

/* Error messages */
.wpforms-container label.wpforms-error {
    color: #d63638 !important;
    font-size: 13px !important;
    margin-top: 5px !important;
}

/* Required star */
.wpforms-container .wpforms-required-label {
    color: #d63638 !important;
}

/* File upload */
.wpforms-container input[type="file"] {
    padding: 10px !important;
    height: auto !important;
}

/* Select dropdown */
.wpforms-container select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    cursor: pointer !important;
}

/* Number field alignment */
.wpforms-container input[type="number"] {
    text-align: left !important;
}

/* Spinner alignment */
.wpforms-container .wpforms-submit-spinner {
    margin-left: 10px !important;
}

/* Hide hidden/honeypot fields */
.wpforms-container .wpforms-field[aria-hidden="true"],
.wpforms-container .wpforms-field-hp {
    display: none !important;
}

/* Checkbox & radio */
.wpforms-container input[type="checkbox"],
.wpforms-container input[type="radio"] {
    width: auto !important;
    height: auto !important;
    margin-right: 8px !important;
}

/* Modern form fix */
.wpforms-render-modern input,
.wpforms-render-modern textarea,
.wpforms-render-modern select {
    border-radius: 0 !important;
}

/* Mobile responsive */
@media (max-width: 767px) {

    .wpforms-container .wpforms-one-half,
    .wpforms-container .wpforms-one-third,
    .wpforms-container .wpforms-two-third {
        width: 100% !important;
        margin-left: 0 !important;
    }

    .wpforms-container button.wpforms-submit {
        width: 100% !important;
    }

    .wpforms-container input,
    .wpforms-container textarea,
    .wpforms-container select {
        font-size: 16px !important;
    }
}








/* ================================
   NONSTOP INDUSTRIES TABS DESIGN
   KEEPING THEME TYPOGRAPHY DEFAULT
================================ */

/* MAIN WRAPPER */
.wd-tabs.tabs-design-default{
    position: relative;
    padding: 20px 0;
}

/* TAB HEADER */
.wd-tabs .wd-tabs-header{
    margin-bottom: 45px;
}

/* TAB NAVIGATION */
.wd-tabs .wd-nav-tabs{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0px;
    padding: 14px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    width: fit-content;
    margin: auto;
}

/* EACH TAB */
.wd-tabs .wd-nav-tabs > li{
    margin: 0 !important;
    list-style: none;
}

/* TAB LINK */
.wd-tabs .wd-nav-tabs > li > a{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px !important;
    border-radius: 80px;
    background: transparent;
    transition: all .35s ease;
    overflow: hidden;
    text-decoration: none !important;
}

/* TAB TEXT */
.wd-tabs .wd-tabs-title{
    color: #061316;
    transition: all .35s ease;
    position: relative;
    z-index: 2;
}

/* ACTIVE TAB */
.wd-tabs .wd-nav-tabs > li.wd-active > a{
    background: linear-gradient(135deg,#08A66A 0%, #24D39A 100%);
    box-shadow:
        0 12px 30px rgba(8,166,106,0.28),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* ACTIVE TEXT */
.wd-tabs .wd-nav-tabs > li.wd-active .wd-tabs-title{
    color: #ffffff !important;
}

/* HOVER EFFECT */
.wd-tabs .wd-nav-tabs > li:not(.wd-active) > a:hover{
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.wd-tabs .wd-nav-tabs > li:not(.wd-active) > a:hover .wd-tabs-title{
    color: #08A66A;
}

/* CONTENT WRAPPER */
.wd-tabs .wd-tab-content-wrapper{
    margin-top: 40px;
}

/* CONTENT CARD */
.wd-tabs .wd-tab-content{
    background: linear-gradient(180deg,#ffffff 0%, #f8fffc 100%);
    border-radius: 34px;
    padding: 25px;
    border: 1px solid rgba(8,166,106,0.08);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.06),
        inset 0 1px 0 rgba(255,255,255,0.5);
    overflow: hidden;
    position: relative;
}

/* GLOW EFFECT */
.wd-tabs .wd-tab-content:before{
    content: "";
    position: absolute;
    top: -140px;
    right: -140px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(36,211,154,0.15) 0%, rgba(36,211,154,0) 70%);
    pointer-events: none;
}

/* CONTAINER ALIGNMENT */
.wd-tabs .e-con-inner{
    align-items: center;
    gap: 70px;
}

/* TEXT COLOR */
.wd-tabs .elementor-widget-text-editor p{
    color: #5d6a6d;
}

/* LIST STYLE */
.wd-tabs .elementor-widget-text-editor ul{
    padding: 0;
}

.wd-tabs .elementor-widget-text-editor ul li{
    list-style: none;
    position: relative;
    padding-left: 34px;
    margin-bottom: 18px;
    color: #061316;
}

/* CUSTOM ICON */
.wd-tabs .elementor-widget-text-editor ul li:before{
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 100px;
    background: linear-gradient(135deg,#08A66A,#24D39A);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 14px rgba(8,166,106,0.25);
}

/* BUTTON */
.wd-tabs .btn.btn-style-default{
    background: linear-gradient(135deg,#08A66A 0%,#24D39A 100%) !important;
    color: #ffffff !important;
    border-radius: 100px !important;
    padding: 16px 34px !important;
    border: none !important;
    transition: all .35s ease;
    box-shadow: 0 14px 34px rgba(8,166,106,0.25);
}

/* BUTTON HOVER */
.wd-tabs .btn.btn-style-default:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(8,166,106,0.35);
}

/* IMAGE AREA */
.wd-tabs .wd-image{
    position: relative;
    text-align: center;
}

/* IMAGE CARD */
.wd-tabs .wd-image img{
    border-radius: 28px;
    background: #fff;
    padding: 25px;
    box-shadow:
        0 20px 50px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.6);
    transition: all .45s ease;
}

/* IMAGE HOVER */
.wd-tabs .wd-image img:hover{
    transform: translateY(-8px) scale(1.03);
}

/* MOBILE */
@media(max-width:1024px){

    .wd-tabs .wd-tab-content{
        padding: 40px;
    }

    .wd-tabs .e-con-inner{
        gap: 40px;
    }
}

@media(max-width:767px){

    .wd-tabs .wd-nav-tabs{
        border-radius: 24px;
        padding: 12px;
        gap: 12px;
    }

    .wd-tabs .wd-nav-tabs > li{
        width: 100%;
    }

    .wd-tabs .wd-nav-tabs > li > a{
        width: 100%;
    }

    .wd-tabs .wd-tab-content{
        padding: 30px 24px;
        border-radius: 24px;
    }

    .wd-tabs .wd-button-wrapper{
        text-align: center !important;
    }

    .wd-tabs .wd-image{
        margin-top: 30px;
    }
}

.e-con-inner {}











    /* NonStop Single Blog Design - scoped only */
    .ns-single-blog {
        --ns-green: #08a66a;
        --ns-dark: #061316;
        --ns-muted: #5d6864;
        --ns-soft: #f6f8f7;
        --ns-mint: #eaf8f1;
        --ns-border: rgba(6, 19, 22, 0.1);
        --ns-shadow: 0 18px 55px rgba(6, 19, 22, 0.09);
        color: var(--ns-dark);
        overflow: hidden;
    }
    .ns-single-blog * {
        box-sizing: border-box;
    }
/*    .ns-single-blog a {
        color: var(--ns-green);
        text-decoration: none;
        font-weight: 700;
    }
*/    .ns-single-blog img {
        max-width: 100%;
        height: auto;
        border-radius: 26px;
        display: block;
    }

/*    .ns-single-blog .section-10 {
        max-width: 1180px;
        margin: 0 auto;
        padding: 34px 18px 70px;
    }
*/
    .ns-single-blog .section-9 {
        position: relative;
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 36px;
        align-items: center;
        padding: 54px;
        border: 1px solid var(--ns-border);
        border-radius: 34px;
        background: radial-gradient(circle at 15% 15%, rgba(8, 166, 106, 0.14), transparent 32%),
            linear-gradient(135deg, #fff 0%, #f4fbf7 100%);
        box-shadow: var(--ns-shadow);
        overflow: hidden;
    }
    .ns-single-blog .section-9:before {
        content: "";
        position: absolute;
        right: -140px;
        top: -150px;
        width: 340px;
        height: 340px;
        border-radius: 50%;
        background: rgba(8, 166, 106, 0.1);
    }
    .ns-single-blog .section-9:after {
        content: "Genomics • HIPAA • Cloud Security";
        position: absolute;
        left: 54px;
        top: 28px;
        padding: 8px 14px;
        border-radius: 999px;
        background: #fff;
        border: 1px solid var(--ns-border);
        color: var(--ns-green);
        font-weight: 800;
        letter-spacing: 0.02em;
    }
    .ns-single-blog .heading-6 {
        position: relative;
        margin: 34px 0 0;
        line-height: 1.08;
        max-width: 760px;
        z-index: 1;
    }
    .ns-single-blog .image-4 {
        position: relative;
        width: 100% !important;
        object-fit: cover;
        box-shadow: 0 20px 60px rgba(6, 19, 22, 0.16);
        z-index: 1;
    }
    .ns-single-blog .section-15,
    .ns-single-blog .section-13,
    .ns-single-blog .section-12,
    .ns-single-blog .section-17,
    .ns-single-blog .section-19 {
        margin-top: 34px;
        padding: 38px;
        border: 1px solid var(--ns-border);
        border-radius: 30px;
        background: #fff;
        box-shadow: 0 12px 38px rgba(6, 19, 22, 0.055);
    }
    .ns-single-blog .section-13:nth-of-type(even),
    .ns-single-blog .section-17:nth-of-type(even) {
        background: linear-gradient(180deg, #fff 0%, var(--ns-soft) 100%);
    }
    .ns-single-blog .section-15 {
        background: linear-gradient(135deg, #fff 0%, #f2fbf7 100%);
    }
    .ns-single-blog .text-span-28 {
        float: left;
        margin: 0.02em 10px 0 0;
        color: var(--ns-green);
        font-weight: 900;
        line-height: 0.85;
    }

/*    .ns-single-blog .div-block-19 {
        margin-top: 24px;
        padding: 28px;
        border-left: 5px solid var(--ns-green);
        border-radius: 22px;
        background: #fff;
        box-shadow: 0 14px 35px rgba(8, 166, 106, 0.1);
        margin-bottom: 24px;
    }
*/
    .ns-single-blog .heading-7,
    .ns-single-blog .heading-10,
    .ns-single-blog .heading-11,
    .ns-single-blog .heading-12,
    .ns-single-blog .heading-13,
    .ns-single-blog .heading-14,
    .ns-single-blog .heading-15,
    .ns-single-blog .heading-16 {
        margin-top: 0;
        line-height: 1.16;
    }
    .ns-single-blog .heading-7:after {
        content: "";
        display: block;
        width: 72px;
        height: 4px;
        margin: 16px 0 24px;
        border-radius: 999px;
        background: var(--ns-green);
    }
    .ns-single-blog p {
        color: inherit;
    }
    .ns-single-blog .paragraph-49,
    .ns-single-blog .paragraph-52,
    .ns-single-blog .paragraph-53,
    .ns-single-blog .paragraph-55 {
        color: var(--ns-muted);
        margin-top: 15px;
    }
/*    .ns-single-blog strong {
        color: var(--ns-dark);
    }
*/
    .ns-single-blog .grid-copy,
    .ns-single-blog .grid-10 {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
        margin: 24px 0;
    }
    .ns-single-blog .feature-item-ai-solutions-copy-copy,
    .ns-single-blog .div-block-21,
    .ns-single-blog .div-block-21-copy,
    .ns-single-blog .div-block-23,
    .ns-single-blog .div-block-24 {
        height: 100%;
        padding: 24px;
        border: 1px solid var(--ns-border);
        border-radius: 22px;
        background: #fff;
        box-shadow: 0 10px 30px rgba(6, 19, 22, 0.055);
        transition:
            transform 0.25s ease,
            box-shadow 0.25s ease,
            border-color 0.25s ease;
    }
    .ns-single-blog .feature-item-ai-solutions-copy-copy:hover,
    .ns-single-blog .div-block-21:hover,
    .ns-single-blog .div-block-21-copy:hover,
    .ns-single-blog .div-block-23:hover,
    .ns-single-blog .div-block-24:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 45px rgba(6, 19, 22, 0.1);
        border-color: rgba(8, 166, 106, 0.32);
    }
    .ns-single-blog .paragraph-48 {
        margin: 0;
        color: var(--ns-dark);
        font-weight: 800;
    }
    .ns-single-blog ul {
        padding-left: 1.2em;
        margin: 12px 0 0;
    }
    .ns-single-blog li {
        margin: 8px 0;
        color: var(--ns-muted);
    }
    .ns-single-blog li::marker {
        color: var(--ns-green);
    }
    .ns-single-blog .table-grid {
        display: grid;
        grid-template-columns: 1fr 1.15fr 1.55fr;
        gap: 0;
        margin: 24px 0;
        border: 1px solid var(--ns-border);
        border-radius: 22px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 12px 34px rgba(6, 19, 22, 0.055);
    }
    .ns-single-blog .table-grid > div {
        padding: 16px 18px;
        border-right: 1px solid var(--ns-border);
        border-bottom: 1px solid var(--ns-border);
        min-height: 64px;
        display: flex;
        align-items: center;
    }
    .ns-single-blog .table-grid > div:nth-child(3n) {
        border-right: 0;
    }
    .ns-single-blog .table-grid > div:nth-child(-n + 3) {
        background: var(--ns-dark);
        color: #fff;
    }
    .ns-single-blog .table-grid > div:nth-child(-n + 3) strong,
    .ns-single-blog .table-grid > div:nth-child(-n + 3) p {
        color: #fff;
    }
    .ns-single-blog .table-grid p {
        margin: 0;
    }
    .ns-single-blog .section-12 {
        background: linear-gradient(135deg, #f7fbf9 0%, #fff 100%);
    }
    .ns-single-blog .tabs-menu-2 {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin: 24px 0 22px;
    }
    .ns-single-blog .w-tab-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 18px;
        border: 1px solid var(--ns-border);
        border-radius: 999px;
        background: #fff;
        color: var(--ns-dark);
        box-shadow: 0 8px 22px rgba(6, 19, 22, 0.04);
        cursor: pointer;
        text-decoration: none !important;
    }
    .ns-single-blog .w-tab-link.w--current,
    .ns-single-blog .w-tab-link.is-active {
        background: var(--ns-green);
        border-color: var(--ns-green);
        color: #fff;
        box-shadow: 0 14px 30px rgba(8, 166, 106, 0.24);
    }
    .ns-single-blog .w-tab-link.w--current strong,
    .ns-single-blog .w-tab-link.is-active strong {
        color: #fff;
    }
    .ns-single-blog .w-tab-content {
        padding: 30px;
        border-radius: 26px;
        background: #fff;
        border: 1px solid var(--ns-border);
        box-shadow: 0 14px 40px rgba(6, 19, 22, 0.06);
    }
    .ns-single-blog .w-tab-pane {
        display: none;
    }
    .ns-single-blog .w-tab-pane.w--tab-active {
        display: block;
        animation: nsFade 0.28s ease;
    }
    @keyframes nsFade {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: none;
        }
    }
    .ns-single-blog .w-tab-pane img {
        margin-top: 24px;
        width: 100%;
        border: 1px solid var(--ns-border);
        box-shadow: 0 18px 40px rgba(6, 19, 22, 0.08);
    }
    .ns-single-blog .div-block-67 {
        padding: 24px;
        border-radius: 22px;
        background: var(--ns-mint);
        border: 1px solid rgba(8, 166, 106, 0.22);
    }
    .ns-single-blog .grid-10 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .ns-single-blog .grid-10 > div {
        padding: 24px;
        border-radius: 22px;
        background: #fff;
        border: 1px solid var(--ns-border);
        box-shadow: 0 10px 30px rgba(6, 19, 22, 0.055);
    }
    .ns-single-blog .section-19 {
        background: linear-gradient(135deg, var(--ns-dark), #0d2d24);
        color: #fff;
        border: 0;
    }
    .ns-single-blog .section-19 .heading-7,
    .ns-single-blog .section-19 strong,
    .ns-single-blog .section-19 p {
        color: #fff;
    }
    .ns-single-blog .section-19 .heading-7:after {
        background: #fff;
        opacity: 0.8;
    }
    .ns-single-blog .section-19 a {
        color: #80ffc7;
    }
    .ns-single-blog .section-14 {
        margin-top: 36px;
    }
    .ns-single-blog .footer-cta-about-us {
        position: relative;
        padding: 48px;
        border-radius: 34px;
        background: radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.24), transparent 30%),
            linear-gradient(135deg, #08a66a 0%, #066b48 100%);
        color: #fff;
        overflow: hidden;
        box-shadow: var(--ns-shadow);
    }
    .ns-single-blog .footer-cta-about-us:before,
    .ns-single-blog .footer-cta-about-us:after {
        content: "";
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
    }
    .ns-single-blog .footer-cta-about-us:before {
        width: 220px;
        height: 220px;
        right: -70px;
        bottom: -80px;
    }
    .ns-single-blog .footer-cta-about-us:after {
        width: 120px;
        height: 120px;
        left: -38px;
        top: -45px;
    }
    .ns-single-blog .community-content {
        position: relative;
        z-index: 1;
        max-width: 850px;
    }
    .ns-single-blog .community-title,
    .ns-single-blog .community-title strong,
    .ns-single-blog .community-text-3 {
        color: #fff;
    }
    .ns-single-blog .button-wrap {
        display: inline-flex;
        margin-top: 18px;
        padding: 14px 20px;
        border-radius: 999px;
        background: #fff;
        color: var(--ns-dark) !important;
        font-weight: 800;
        text-decoration: none !important;
        margin-bottom: 18px;
    }
    .ns-single-blog .button-inner {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .ns-single-blog .button-icon {
        width: 16px;
        height: 16px;
    }
    @media (max-width: 1024px) {
        .ns-single-blog .section-9 {
            grid-template-columns: 1fr;
            padding: 42px 28px;
        }
        .ns-single-blog .section-9:after {
            left: 28px;
        }
        .ns-single-blog .grid-copy {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .ns-single-blog .grid-10 {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }
    @media (max-width: 767px) {
        .ns-single-blog .section-10 {
            padding: 18px 10px 46px;
        }
        .ns-single-blog .section-9,
        .ns-single-blog .section-15,
        .ns-single-blog .section-13,
        .ns-single-blog .section-12,
        .ns-single-blog .section-17,
        .ns-single-blog .section-19,
        .ns-single-blog .footer-cta-about-us {
            padding: 24px;
            border-radius: 24px;
        }
        .ns-single-blog .grid-copy,
        .ns-single-blog .grid-10 {
            grid-template-columns: 1fr;
        }
        .ns-single-blog .table-grid {
            display: block;
        }
        .ns-single-blog .table-grid > div {
            border-right: 0;
        }
        .ns-single-blog .tabs-menu-2 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
        }
        .ns-single-blog .w-tab-link {
            padding: 11px 10px;
        }
        .ns-single-blog .w-tab-content {
            padding: 20px;
        }
        .ns-single-blog .section-9:after {
            position: relative;
            left: auto;
            top: auto;
            display: inline-block;
            margin-bottom: 12px;
        }
        .ns-single-blog .heading-6 {
            margin-top: 0;
        }
    }





    /* Blog spacing compatibility fix */
.ns-single-blog .section-11,
.ns-single-blog .section-38,
.ns-single-blog .section-16-copy,
.ns-single-blog .section-23,
.ns-single-blog .section-24,
.ns-single-blog .section-25 {
  margin-top: 34px;
  padding: 38px;
  border: 1px solid var(--ns-border);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(6, 19, 22, 0.055);
}

.ns-single-blog .section-16-copy {
  background: linear-gradient(135deg, #f7fbf9 0%, #ffffff 100%);
  border-left: 5px solid var(--ns-green);
}

.ns-single-blog .section-24,
.ns-single-blog .section-25 {
  margin-top: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.ns-single-blog .section-38 > .section-38,
.ns-single-blog .section-38 > .section-24 {
  margin-top: 0;
}

.ns-single-blog .div-block-36,
.ns-single-blog .div-block-38,
.ns-single-blog .div-block-69 {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--ns-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(6, 19, 22, 0.055);
}

.ns-single-blog .div-block-37 {
  height: 100%;
}

.ns-single-blog .heading-20,
.ns-single-blog .heading-21,
.ns-single-blog .heading-17 {
  margin-top: 0;
  line-height: 1.16;
}

.ns-single-blog .section-15 > img,
.ns-single-blog .section-38 > img,
.ns-single-blog .section-11 > img,
.ns-single-blog .section-16-copy > img {
  margin: 26px auto;
  width: 100%;
  border: 1px solid var(--ns-border);
  box-shadow: 0 18px 40px rgba(6, 19, 22, 0.08);
}

.ns-single-blog p:last-child,
.ns-single-blog ul:last-child,
.ns-single-blog ol:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .ns-single-blog .section-11,
  .ns-single-blog .section-38,
  .ns-single-blog .section-16-copy,
  .ns-single-blog .section-23,
  .ns-single-blog .section-24,
  .ns-single-blog .section-25 {
    padding: 24px;
    border-radius: 24px;
  }
}



/* HIPAA / SOC2 blog format support */
.ns-single-blog .blog-hero-1-2-3-4,
.ns-single-blog .intro-section,
.ns-single-blog .compare-section,
.ns-single-blog .hipaa-section,
.ns-single-blog .soc2-section,
.ns-single-blog .ai-section,
.ns-single-blog .arch-section-1,
.ns-single-blog .bvp-section,
.ns-single-blog .faq-section-1-2-3-4,
.ns-single-blog .refs-section,
.ns-single-blog .page-footer-cta,
.ns-single-blog .cs-section,
.ns-single-blog .cta-green {
  margin-top: 34px;
  padding: 38px;
  border: 1px solid var(--ns-border);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(6, 19, 22, 0.055);
}

.ns-single-blog .blog-hero-1-2-3-4 {
  background: linear-gradient(135deg, #ffffff 0%, #f2fbf7 100%);
}

.ns-single-blog .blog-hero-stats-1,
.ns-single-blog .hipaa-grid-1,
.ns-single-blog .ai-grid,
.ns-single-blog .arch-list-1-2,
.ns-single-blog .cs-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.ns-single-blog .blog-stat-card-1-2,
.ns-single-blog .hipaa-card-1,
.ns-single-blog .ai-card,
.ns-single-blog .arch-item,
.ns-single-blog .soc2-step,
.ns-single-blog .faq-item-1-2-3-4-5-6-7-8,
.ns-single-blog .cs-stat {
  padding: 24px;
  border: 1px solid var(--ns-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(6, 19, 22, 0.055);
}

.ns-single-blog .blog-stat-num,
.ns-single-blog .cs-stat-n {
  color: var(--ns-green);
  font-weight: 900;
}

.ns-single-blog .section-label-1-2-3-4-5-6-7-8-9-10-11,
.ns-single-blog .section-label-3,
.ns-single-blog .section-label-4,
.ns-single-blog .section-label-5,
.ns-single-blog .section-label-6,
.ns-single-blog .section-label-7,
.ns-single-blog .section-label-8,
.ns-single-blog .cs-card-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--ns-mint);
  color: var(--ns-green);
  font-weight: 800;
}

.ns-single-blog table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 20px;
}

.ns-single-blog th {
  background: var(--ns-dark);
  color: #fff;
}

.ns-single-blog th,
.ns-single-blog td {
  padding: 16px;
  border: 1px solid var(--ns-border);
  vertical-align: top;
}

.ns-single-blog .green-col,
.ns-single-blog .partner-col,
.ns-single-blog .green-head {
  background: #f0fbf6;
}

.ns-single-blog .cta-green,
.ns-single-blog .page-footer-cta,
.ns-single-blog .bvp-final-cta {
  background: linear-gradient(135deg, #08A66A 0%, #066b48 100%);
  color: #fff;
}

.ns-single-blog .cta-green *,
.ns-single-blog .page-footer-cta *,
.ns-single-blog .bvp-final-cta * {
  color: #fff;
}

.ns-single-blog .cta-green-btn,
.ns-single-blog .bvp-final-btn,
.ns-single-blog .page-footer-btn,
.ns-single-blog .cs-card-link {
  display: inline-flex;
  margin-top: 18px;
  padding: 13px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--ns-dark) !important;
  font-weight: 800;
  text-decoration: none !important;
}

.ns-single-blog .risk-callout,
.ns-single-blog .ai-plain-rule,
.ns-single-blog .intro-box {
  margin-top: 24px;
  padding: 26px;
  border-left: 5px solid var(--ns-green);
  border-radius: 22px;
  background: #f6fbf8;
}

.ns-single-blog .faq-answer-1 {
  display: none;
  margin-top: 12px;
}

.ns-single-blog .faq-item-1-2-3-4-5-6-7-8.is-open .faq-answer-1 {
  display: block;
}

.ns-single-blog .faq-question-1 {
  cursor: pointer;
}

.ns-single-blog .refs-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ns-border);
}

@media (max-width: 767px) {
  .ns-single-blog .blog-hero-stats-1,
  .ns-single-blog .hipaa-grid-1,
  .ns-single-blog .ai-grid,
  .ns-single-blog .arch-list-1-2,
  .ns-single-blog .cs-card-stats {
    grid-template-columns: 1fr;
  }

  .ns-single-blog .blog-hero-1-2-3-4,
  .ns-single-blog .intro-section,
  .ns-single-blog .compare-section,
  .ns-single-blog .hipaa-section,
  .ns-single-blog .soc2-section,
  .ns-single-blog .ai-section,
  .ns-single-blog .arch-section-1,
  .ns-single-blog .bvp-section,
  .ns-single-blog .faq-section-1-2-3-4,
  .ns-single-blog .refs-section,
  .ns-single-blog .page-footer-cta,
  .ns-single-blog .cs-section,
  .ns-single-blog .cta-green {
    padding: 24px;
    border-radius: 24px;
  }

  .ns-single-blog table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}



/* FIX CTA SECTION */
.ns-single-blog .bvp-final-cta,
.ns-single-blog .cta-green-inner,
.ns-single-blog .page-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.ns-single-blog .bvp-final-btn,
.ns-single-blog .cta-green-btn,
.ns-single-blog .page-footer-btn {
  margin-top: 0 !important;
  flex-shrink: 0;
}

/* FIX FAQ ACCORDION */
.ns-single-blog .faq-list-1-2-3-4-5-6-7-8-9 {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ns-single-blog .faq-item-1-2-3-4-5-6-7-8 {
  padding: 0;
  overflow: hidden;
  border-radius: 26px;
}

.ns-single-blog .faq-question-1 {
  padding: 28px 34px;
  margin: 0;
}

.ns-single-blog .faq-answer-1 {
  display: none;
  padding: 0 34px 30px;
  margin: 0;
}

.ns-single-blog .faq-item-1-2-3-4-5-6-7-8.is-open .faq-answer-1 {
  display: block;
}

.faq-inner h3 {
    margin-bottom: 0;
}

/* MOBILE */
@media (max-width: 767px) {

  .ns-single-blog .bvp-final-cta,
  .ns-single-blog .cta-green-inner,
  .ns-single-blog .page-footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .ns-single-blog .faq-question-1 {
    padding: 22px;
  }

  .ns-single-blog .faq-answer-1 {
    padding: 0 22px 22px;
  }

}



/* FINAL CTA SECTION */
.ns-single-blog .bvp-final-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 42px;
    margin-top: 34px;
    overflow: hidden;
    border-radius: 34px;
    background: linear-gradient(135deg, #08A66A 0%, #066b48 100%);
    box-shadow: 0 20px 50px rgba(8, 166, 106, 0.22);
}

.ns-single-blog .bvp-final-cta::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.ns-single-blog .bvp-final-cta::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.ns-single-blog .bvp-final-cta > div {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.ns-single-blog .heading-96 {
    margin: 0 0 14px;
    color: #fff;
    line-height: 1.15;
}

.ns-single-blog .paragraph-235 {
    margin: 0;
    color: rgba(255,255,255,0.92);
    line-height: 1.7;
}

.ns-single-blog .bvp-final-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 999px;
    background: #fff;
    color: #061316 !important;
    text-decoration: none !important;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.ns-single-blog .bvp-final-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 30px rgba(0,0,0,0.16);
}

/* MOBILE */
@media (max-width: 767px) {

    .ns-single-blog .bvp-final-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
        gap: 24px;
        border-radius: 26px;
    }

    .ns-single-blog .bvp-final-btn {
        width: 100%;
    }

}








/* PREMIUM FAQ DESIGN FIX */
.ns-single-blog .case-study-faq,
.ns-single-blog .case-study-faq-copy {
    max-width: 100%;
}

.ns-single-blog .templates-layout-7 {
    display: block !important;
}

.ns-single-blog .templates-thumb-wrap {
    display: none !important;
}

.ns-single-blog .templates-faq,
.ns-single-blog .faq-wrapper {
    width: 100%;
}

.ns-single-blog .faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ns-single-blog .faq-item-2,
.ns-single-blog .faq-item {
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid var(--ns-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(6, 19, 22, 0.055);
}

.ns-single-blog .faq-heading-2,
.ns-single-blog .faq-heading {
    padding: 22px 26px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
}

.ns-single-blog .faq-heading-title-8 {
    margin: 0;
    line-height: 1.35;
}

.ns-single-blog .faq-icon-wrap {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: #eefaf5;
    color: var(--ns-green);
}

.ns-single-blog .faq-icon,
.ns-single-blog .faq-icon-2 {
/*    width: 18px;
    height: 18px;
*/}

.ns-single-blog .faq-content,
.ns-single-blog .faq-content-2 {
    display: none;
    padding: 0 26px 24px;
    margin: 0;
}

.ns-single-blog .faq-item.active .faq-content,
.ns-single-blog .faq-item-2.active .faq-content-2 {
    display: block;
}

.ns-single-blog .faq-body {
    padding-top: 2px;
    border-top: 1px solid var(--ns-border);
}

.ns-single-blog .faq-body p,
.ns-single-blog .faq-body ul {
    margin-top: 14px;
}

@media (max-width: 767px) {
    .ns-single-blog .faq-heading-2,
    .ns-single-blog .faq-heading {
        padding: 20px;
    }

    .ns-single-blog .faq-content,
    .ns-single-blog .faq-content-2 {
        padding: 0 20px 22px;
    }
}



/* FIX HUGE EMPTY PLATFORM SECTIONS */
.ns-single-blog .container-89,
.ns-single-blog .platform-layout-4,
.ns-single-blog .platform-box-wrap-13 {
    width: 100%;
    min-height: auto !important;
    height: auto !important;
}

.ns-single-blog .platform-box-wrap-13 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.ns-single-blog .platform-box-10,
.ns-single-blog .platform-box-11,
.ns-single-blog .platform-box-12,
.ns-single-blog .platform-box-13,
.ns-single-blog .platform-box-14,
.ns-single-blog .platform-box-15 {
    opacity: 1 !important;
    transform: none !important;
    height: auto !important;
    min-height: auto !important;
    padding: 28px;
    border: 1px solid var(--ns-border);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(6,19,22,.06);
}

.ns-single-blog .platform-box-content-9 {
    height: auto;
}

.ns-single-blog .platform-box-title-wrap {
    margin-bottom: 14px;
}

.ns-single-blog .platform-box-title-3 {
    margin: 0;
    line-height: 1.3;
}

.ns-single-blog .platform-box-text-6,
.ns-single-blog .platform-box-text-7,
.ns-single-blog .platform-box-text-8 {
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 767px) {

    .ns-single-blog .platform-box-wrap-13 {
        grid-template-columns: 1fr;
    }

    .ns-single-blog .platform-box-10,
    .ns-single-blog .platform-box-11,
    .ns-single-blog .platform-box-12,
    .ns-single-blog .platform-box-13,
    .ns-single-blog .platform-box-14,
    .ns-single-blog .platform-box-15 {
        padding: 22px;
    }

}



/* FIX HUGE EMPTY FAQ WEBFLOW SECTIONS */
.ns-single-blog .faq-wrapper-2,
.ns-single-blog .templates-thumb-wrap-2,
.ns-single-blog .faq-components,
.ns-single-blog .templates-faq-2 {
    opacity: 1 !important;
    transform: none !important;
    min-height: auto !important;
    height: auto !important;
}

.ns-single-blog .templates-thumb-wrap-2 {
    display: none !important;
}

.ns-single-blog .faq-wrapper-2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ns-single-blog .faq-wrapper-2 .faq-item {
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid var(--ns-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(6, 19, 22, 0.055);
}

.ns-single-blog .faq-wrapper-2 .faq-heading {
    padding: 22px 26px;
    margin: 0;
}

.ns-single-blog .faq-wrapper-2 .faq-content {
    display: none !important;
    height: auto !important;
    padding: 0 26px 24px;
}

.ns-single-blog .faq-wrapper-2 .faq-item.active .faq-content {
    display: block !important;
}

.ns-single-blog .common-title-wrap,
.ns-single-blog .templates-heading {
    opacity: 1 !important;
    transform: none !important;
}

.ns-single-blog .faq-section-components,
.ns-single-blog .section-spacing-8,
.ns-single-blog .container-90 {
    min-height: auto !important;
    height: auto !important;
}




section.section-16-copy-copy {
    padding: 38px 0px;
}

.faq-section-components {
    padding: 38px 0;
}


/* ADD 38PX TOP/BOTTOM SPACING TO THESE SECTIONS */
.ns-single-blog .section-13-copy,
.ns-single-blog .case-study-faq-copy {
    padding-top: 38px;
    padding-bottom: 38px;
}

/* MOBILE */
@media (max-width: 767px) {

    .ns-single-blog .section-13-copy,
    .ns-single-blog .case-study-faq-copy {
        padding-top: 28px;
        padding-bottom: 28px;
    }

} 



.w-layout-grid.grid-copy-3-3 div {
    margin-bottom: 15px;
}

.w-layout-grid.grid-2-2-copy div {
    margin-bottom: 15px;
}



.faq-wrapper {
    opacity: 1 !important;
}
















/* =========================
END TO END STACK SECTION
========================= */

.section_end_to_end {
    --stack-primary: #08A66A;
    --stack-dark: #061316;
    --stack-border: #e7ecef;
    --stack-bg: #ffffff;
}

/* Main Grid Spacing */
.section_end_to_end .e-grid .e-con-inner {
    gap: 28px;
    justify-content: center;
}

/* Each Icon Box */
.section_end_to_end .wd-info-box {
    background: #fff;
    border: 1px solid var(--stack-border);
    border-radius: 22px;
    padding: 26px 18px;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

/* Top Glow Effect */
.section_end_to_end .wd-info-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,#08A66A,#5de0b3);
    transition: all .4s ease;
}

/* Hover */
.section_end_to_end .wd-info-box:hover {
    transform: translateY(-8px);
    border-color: rgba(8,166,106,0.25);
    box-shadow: 0 18px 40px rgba(8,166,106,0.14);
    background: linear-gradient(180deg,#ffffff 0%,#f7fffb 100%);
}

.section_end_to_end .wd-info-box:hover::before {
    left: 0;
}

/* Icon Wrapper */
.section_end_to_end .box-icon-wrapper {
    margin-bottom: 18px;
}

/* Icon Styling */
.section_end_to_end .info-box-icon img {
    max-width: 62px;
    max-height: 62px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform .35s ease;
    filter: grayscale(5%);
}

/* Hover Icon */
.section_end_to_end .wd-info-box:hover .info-box-icon img {
    transform: scale(1.12);
}

/* Title */
.section_end_to_end .info-box-title {
    color: var(--stack-dark);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .2px;
    margin: 0;
    transition: all .3s ease;
    text-align: center;
}

/* Hover Title */
.section_end_to_end .wd-info-box:hover .info-box-title {
    color: var(--stack-primary);
}

/* Section Heading */
.section_end_to_end .woodmart-title-container {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

/* Nice Underline */
.section_end_to_end .woodmart-title-container::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg,#08A66A,#5de0b3);
    transform: translateX(-50%);
    border-radius: 30px;
}

/* Remove Default Empty Link Overlay Issue */
.section_end_to_end .wd-info-box-link {
    display: none !important;
}

/* Better Section Gap */
.section_end_to_end .e-con-full {
    margin-bottom: 50px;
}

/* Mobile */
@media (max-width: 767px) {

    .section_end_to_end .e-grid .e-con-inner {
        grid-template-columns: repeat(2,1fr);
        gap: 16px;
    }

    .section_end_to_end .wd-info-box {
        min-height: 145px;
        padding: 20px 12px;
        border-radius: 18px;
    }

    .section_end_to_end .info-box-icon img {
        max-width: 48px;
        max-height: 48px;
    }

    .section_end_to_end .info-box-title {
        font-size: 13px;
        line-height: 1.4;
    }

    .section_end_to_end .e-con-full {
        margin-bottom: 35px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {

    .section_end_to_end .e-grid .e-con-inner {
        gap: 20px;
    }

    .section_end_to_end .wd-info-box {
        min-height: 155px;
    }
}

.elementor-element.elementor-element-46afc6d.wd-section-stretch.section_end_to_end.info_images.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded {}

.elementor-element.elementor-element-46afc6d.wd-section-stretch.section_end_to_end.info_images.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded {}


/* =========================================
REDUCE GAP BETWEEN ICON BOXES
========================================= */

.section_end_to_end .e-grid .e-con-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px !important;
}

/* Smaller Card Width */
.section_end_to_end .wd-info-box {
    width: 120px;
    min-height: 150px;
    padding: 22px 12px;
    border-radius: 22px;
}

/* Better alignment */
.section_end_to_end .info-box-wrapper {
    margin: 0 !important;
}

/* Section spacing reduce */
.section_end_to_end .e-con-full {
    margin-bottom: 35px;
}

/* Icon size */
.section_end_to_end .info-box-icon img {
    max-width: 52px;
    max-height: 52px;
}

/* Text */
.section_end_to_end .info-box-title {
    font-size: 15px;
    line-height: 1.4;
    margin-top: 10px;
}

/* Mobile */
@media (max-width: 767px){

    .section_end_to_end .e-grid .e-con-inner{
        gap: 12px !important;
    }

    .section_end_to_end .wd-info-box{
        width: 105px;
        min-height: 135px;
        padding: 18px 10px;
    }

    .section_end_to_end .info-box-title{
        font-size: 13px;
    }

    .section_end_to_end .info-box-icon img{
        max-width: 42px;
        max-height: 42px;
    }
}




/* =========================================
FINAL INTEGRATIONS SECTION CSS
========================================= */

.section_integrations {
    --integration-primary: #08A66A;
    --integration-border: #e7ecef;
}

/* Section background */
/*.section_integrations {
    background: #eafaf4;
}*/

/* Heading */
.section_integrations .woodmart-title-container {
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
    margin-bottom: 20px;
}

.section_integrations .woodmart-title-container::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 75px;
    height: 3px;
    background: linear-gradient(90deg,#08A66A,#61e3b5);
    transform: translateX(-50%);
    border-radius: 30px;
}

/* Grid */
.section_integrations .e-grid {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px 30px;
}

/* Each card */
.section_integrations .wd-info-box {
    width: 235px;
    height: 135px;
    min-height: 135px;
    padding: 14px !important;
    background: #fff;
    border: 1px solid var(--integration-border);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,0.04);
    transition: all .35s ease;
}

/* Remove Woodmart extra icon bg padding */
.section_integrations .box-icon-wrapper,
.section_integrations .box-icon-with-bg {
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
}

/* Logo holder */
.section_integrations .info-box-icon {
    width: 100%;
    height: 100%;
    min-height: unset !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #f4f4f4;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo image */
.section_integrations .info-box-icon img {
    max-width: 82%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: all .35s ease;
}

/* Hide empty content */
.section_integrations .info-box-content {
    display: none !important;
}

/* Hover */
.section_integrations .wd-info-box:hover {
    transform: translateY(-6px);
    border-color: rgba(8,166,106,0.25);
    box-shadow: 0 18px 42px rgba(8,166,106,0.14);
}

.section_integrations .wd-info-box:hover .info-box-icon img {
    transform: scale(1.06);
}

/* Remove link overlay */
.section_integrations .wd-info-box-link {
    display: none !important;
}

/* Tablet */
@media (max-width: 1024px) {
    .section_integrations .e-grid {
        gap: 20px;
    }

    .section_integrations .wd-info-box {
        width: 210px;
        height: 120px;
        min-height: 120px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .section_integrations .e-grid {
        gap: 14px;
    }

    .section_integrations .wd-info-box {
        width: calc(50% - 8px);
        height: 100px;
        min-height: 100px;
        padding: 10px !important;
        border-radius: 18px;
    }

    .section_integrations .info-box-icon img {
        max-width: 86%;
        max-height: 54px;
    }
}

/* REMOVE GREY OVAL ICON BACKGROUND */

.section_integrations .box-icon-with-bg {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

/* Remove inner grey shape */
.section_integrations .info-box-icon {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Better clean logo sizing */
.section_integrations .info-box-icon img {
    max-width: 80%;
    max-height: 68px;
    object-fit: contain;
}

/* Cleaner premium cards */
.section_integrations .wd-info-box {
    background: #ffffff;
    border: 1px solid #e8eeee;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* CENTER LOGOS PERFECTLY */

.section_integrations .wd-info-box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
}

.section_integrations .box-icon-wrapper,
.section_integrations .box-icon-with-bg,
.section_integrations .info-box-icon {
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Image perfectly centered */
.section_integrations .info-box-icon img {
    display: block;
    margin: auto !important;
    max-width: 78%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}










footer .wd-list .wd-icon,
footer .wd-list > li > img,
footer .wd-list picture img {
    filter: brightness(0) saturate(100%);
    opacity: 0.47;
}


.social-discord .wd-icon:before{
    content: "\43" !important; /* C */
    font-family: inherit !important;
    font-weight: 700;
    font-size: 20px;
}

/* =========================================
CERTIFICATIONS SECTION - UNIFORM LOGOS
========================================= */


/* Main row */
.section_certifications .elementor-element-7d12d9d .e-con-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 50px !important;
    flex-wrap: wrap;
}

/* Logo card */
.section_certifications .elementor-widget-image {
    width: 310px !important;
    height: 120px !important;
    background: #fff;
    border-radius: 22px;
    padding: 22px 28px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.04);
}

/* Image uniform */
.section_certifications .elementor-widget-image img {
    max-width: 100% !important;
    max-height: 75px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block;
    margin: 0 auto;
}

/* AWS image balance */
.section_certifications .elementor-widget-image:first-child img {
    max-height: 88px !important;
}

/* Mobile */
@media (max-width: 767px) {
    .section_certifications .elementor-element-7d12d9d .e-con-inner {
        gap: 18px !important;
    }

    .section_certifications .elementor-widget-image {
        width: 100% !important;
        max-width: 320px !important;
        height: 110px !important;
    }
}






/* ===============================
CASE STUDIES SECTION DESIGN
=============================== */



/* Main case study card */
.custom_case_studies .e-con-boxed.e-con-child {
    background: #fff !important;
    border-radius: 18px !important;
    margin-bottom: 28px !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(8,166,106,0.10);
    overflow: hidden;
}

/* Inner row */
.custom_case_studies .e-con-boxed.e-con-child > .e-con-inner {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 34px !important;
    align-items: center !important;
    padding: 34px !important;
}

/* Image area */
.custom_case_studies .wd-image {
    background: #f7fffb;
    border: 1px solid rgba(8,166,106,0.18);
    border-radius: 14px;
    padding: 20px;
    overflow: hidden;
}

/*.custom_case_studies .wd-image img {
    width: 100% !important;
    height: 300px !important;
    object-fit: contain !important;
    display: block;
}
*/
/* Content spacing */
.custom_case_studies .title-wrapper {
    margin-bottom: 18px !important;
}

.custom_case_studies .title-subtitle {
    color: #7b8588 !important;
    margin-bottom: 10px !important;
}

.custom_case_studies u {
    color: #08A66A !important;
    text-decoration: none !important;
}

/* Client / Challenge / Impact blocks */
.custom_case_studies .paragraph-31,
.custom_case_studies .elementor-heading-title {
    color: #061316 !important;
    margin-bottom: 8px !important;
}

.custom_case_studies .wd-text-block,
.custom_case_studies .elementor-widget-text-editor {
    color: #4d5a5d !important;
}

.custom_case_studies .wd-text-block p,
.custom_case_studies .elementor-widget-text-editor p {
    margin-bottom: 12px !important;
    line-height: 1.7 !important;
}

/* Hover effect */
.custom_case_studies .e-con-boxed.e-con-child {
    transition: all .35s ease;
}

.custom_case_studies .e-con-boxed.e-con-child:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 55px rgba(8,166,106,0.12);
}

/* Mobile */
@media (max-width: 767px) {
    .custom_case_studies {
        padding: 45px 0 !important;
    }

    .custom_case_studies .e-con-boxed.e-con-child > .e-con-inner {
        grid-template-columns: 1fr;
        padding: 22px !important;
        gap: 24px !important;
    }

    .custom_case_studies .wd-image img {
        height: auto !important;
        max-height: 260px;
    }
}



/* =========================================
CAREER FORM DESIGN
WPFORMS
========================================= */

div.wpforms-container-full {
    width: 100%;
}

/* Form Layout */
div.wpforms-container-full .wpforms-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.05);
    border: 1px solid rgba(8,166,106,0.10);
}

/* Labels */
div.wpforms-container-full .wpforms-field-label {
    color: #061316 !important;
    margin-bottom: 10px !important;
    font-weight: 600;
}

/* Inputs */
div.wpforms-container-full input[type="text"],
div.wpforms-container-full input[type="email"],
div.wpforms-container-full input[type="tel"],
div.wpforms-container-full textarea,
div.wpforms-container-full select {
    width: 100% !important;
    min-height: 56px;
    border-radius: 14px !important;
    border: 1px solid #dbe6e2 !important;
    background: #f8fbfa !important;
    padding: 14px 18px !important;
    box-shadow: none !important;
    transition: all .25s ease;
}

/* Placeholder */
div.wpforms-container-full input::placeholder,
div.wpforms-container-full textarea::placeholder {
    color: #8a9793;
}

/* Focus */
div.wpforms-container-full input:focus,
div.wpforms-container-full textarea:focus,
div.wpforms-container-full select:focus {
    border-color: #08A66A !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(8,166,106,0.10) !important;
}

/* Textarea */
div.wpforms-container-full textarea {
    min-height: 150px;
    resize: vertical;
}

/* Field spacing */
div.wpforms-container-full .wpforms-field {
    margin-bottom: 24px !important;
}

/* Two column spacing */
div.wpforms-container-full .wpforms-one-half {
    width: calc(50% - 10px) !important;
}

/* Submit button */
div.wpforms-container-full button.wpforms-submit {
    min-width: 220px;
    height: 56px;
    border-radius: 14px !important;
    border: none !important;
    background: linear-gradient(135deg,#08A66A,#0cc37f) !important;
    color: #fff !important;
    padding: 0 28px !important;
    transition: all .3s ease;
    box-shadow: 0 14px 30px rgba(8,166,106,0.22);
}

/* Button hover */
div.wpforms-container-full button.wpforms-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(8,166,106,0.28);
}

/* Required star */
div.wpforms-container-full .wpforms-required-label {
    color: #08A66A !important;
}

/* Error */
div.wpforms-container-full label.wpforms-error {
    margin-top: 8px !important;
    color: #ff4d4f !important;
}

/* Hide spam trap fields */
div.wpforms-container-full #wpforms-30365-field_3-container,
div.wpforms-container-full #wpforms-30365-field_7-container {
    display: none !important;
}

/* Mobile */
@media (max-width: 767px) {

    div.wpforms-container-full .wpforms-form {
        padding: 24px;
        border-radius: 18px;
    }

    div.wpforms-container-full .wpforms-one-half {
        width: 100% !important;
        margin-left: 0 !important;
    }

    div.wpforms-container-full button.wpforms-submit {
        width: 100%;
    }
}







/* =========================================
PREMIUM CONTACT PAGE DESIGN
Uniform • Modern • Professional
========================================= */

.custom_contact {
    background:
        radial-gradient(circle at top left, rgba(8,166,106,0.14), transparent 34%),
        linear-gradient(135deg, #f6fbf8 0%, #eef8f4 100%) !important;
    padding: 80px 16px !important;
}

.custom_contact > .e-con-inner {
    max-width: 1240px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 30px !important;
    align-items: stretch !important;
}

/* Main white cards */
.custom_contact .elementor-element-88d31e4,
.custom_contact .elementor-element-789122a {
    background: rgba(255,255,255,0.94) !important;
    border: 1px solid rgba(8,166,106,0.13) !important;
    border-radius: 28px !important;
    padding: 34px !important;
    box-shadow: 0 24px 70px rgba(6,19,22,0.08) !important;
    overflow: hidden !important;
    position: relative;
}

.custom_contact .elementor-element-88d31e4::before,
.custom_contact .elementor-element-789122a::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, #08A66A, #24D39A);
}

/* Titles */
.custom_contact .title-wrapper {
    margin-bottom: 14px !important;
}

.custom_contact .woodmart-title-container {
    color: #061316 !important;
    font-size: 28px !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px;
}

.custom_contact .title-subtitle {
    color: #08A66A !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 8px !important;
}

.custom_contact .wd-text-block p {
    color: #5d6965 !important;
    font-size: 15.5px !important;
    line-height: 1.75 !important;
    margin-bottom: 0 !important;
}

/* Contact boxes grid */
.custom_contact .elementor-element-0351567 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px !important;
    margin-top: 24px !important;
}

.custom_contact .elementor-element-e87d355,
.custom_contact .elementor-element-8daaffa {
    display: contents !important;
}

/* Contact info card */
.custom_contact .wd-info-box {
    height: 100% !important;
    min-height: 142px !important;
    padding: 18px !important;
    border-radius: 20px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8fdfb 100%) !important;
    border: 1px solid #ddeee7 !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 14px !important;
    box-shadow: 0 10px 26px rgba(6,19,22,0.045) !important;
    transition: all .28s ease !important;
}

.custom_contact .wd-info-box:hover {
    transform: translateY(-4px);
    border-color: rgba(8,166,106,0.38) !important;
    box-shadow: 0 18px 40px rgba(6,19,22,0.09) !important;
}

/* Icons */
.custom_contact .box-icon-wrapper {
    margin: 0 !important;
    flex: 0 0 48px !important;
}

.custom_contact .info-box-icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, rgba(8,166,106,0.14), rgba(8,166,106,0.05)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.custom_contact .info-box-icon svg {
    width: 24px !important;
    height: 24px !important;
}

.custom_contact .info-box-icon svg path {
    fill: #08A66A !important;
}

/* Info text */
.custom_contact .info-box-inner p {
    margin: 0 !important;
    color: #42504b !important;
    font-size: 14.5px !important;
    line-height: 1.55 !important;
}

.custom_contact .info-box-inner strong,
.custom_contact .info-box-inner b {
    color: #061316 !important;
    font-weight: 800 !important;
}

/* Bottom CTA note */
.custom_contact .elementor-element-5812e7b {
    margin-top: 22px !important;
    padding: 20px 22px !important;
    border-radius: 20px !important;
    background: #061316 !important;
    border: none !important;
    box-shadow: 0 16px 40px rgba(6,19,22,0.16);
}

.custom_contact .elementor-element-5812e7b p {
    color: rgba(255,255,255,0.82) !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
}

.custom_contact .elementor-element-5812e7b a {
    color: #24D39A !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

/* Form wrapper */
.custom_contact .wpforms-container {
    margin-top: 20px !important;
}

.custom_contact .wpforms-form {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* Form spacing */
.custom_contact .wpforms-field {
    margin-bottom: 16px !important;
    padding: 0 !important;
}

.custom_contact .wpforms-field-label {
    color: #061316 !important;
    font-size: 13.5px !important;
    font-weight: 800 !important;
    margin-bottom: 7px !important;
}

/* Inputs */
.custom_contact input[type="text"],
.custom_contact input[type="email"],
.custom_contact input[type="number"],
.custom_contact textarea {
    width: 100% !important;
    min-height: 48px !important;
    padding: 12px 15px !important;
    border-radius: 14px !important;
    border: 1px solid #dbe8e3 !important;
    background: #fafffc !important;
    color: #061316 !important;
    font-size: 15px !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8) !important;
    transition: all .25s ease !important;
}

.custom_contact textarea {
    min-height: 135px !important;
    resize: vertical;
}

.custom_contact input::placeholder,
.custom_contact textarea::placeholder {
    color: #8a9692 !important;
}

/* Focus */
.custom_contact input:focus,
.custom_contact textarea:focus {
    outline: none !important;
    border-color: #08A66A !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(8,166,106,0.10) !important;
}

/* Two column WPForms fields */
.custom_contact .wpforms-one-half {
    width: calc(50% - 8px) !important;
    margin-left: 16px !important;
}

.custom_contact .wpforms-first {
    margin-left: 0 !important;
}

/* Hide honeypot fields properly */
.custom_contact #wpforms-15775-field_6-container,
.custom_contact #wpforms-15775-field_7-container {
    display: none !important;
}

/* Submit button */
.custom_contact .wpforms-submit-container {
    margin-top: 8px !important;
    padding: 0 !important;
}

.custom_contact .wpforms-submit {
    width: 100% !important;
    height: 52px !important;
    padding: 0 28px !important;
    border-radius: 14px !important;
    border: none !important;
    background: linear-gradient(135deg, #061316 0%, #0f292b 100%) !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: .2px;
    box-shadow: 0 14px 30px rgba(6,19,22,0.18) !important;
    transition: all .28s ease !important;
}

.custom_contact .wpforms-submit:hover {
    background: linear-gradient(135deg, #08A66A 0%, #24D39A 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(8,166,106,0.28) !important;
}

/* Tablet */
@media (max-width: 991px) {
    .custom_contact {
        padding: 60px 14px !important;
    }

    .custom_contact > .e-con-inner {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .custom_contact {
        padding: 42px 12px !important;
    }

    .custom_contact .elementor-element-88d31e4,
    .custom_contact .elementor-element-789122a {
        padding: 24px 18px !important;
        border-radius: 22px !important;
    }

    .custom_contact .woodmart-title-container {
        font-size: 24px !important;
    }

    .custom_contact .elementor-element-0351567 {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .custom_contact .wd-info-box {
        min-height: auto !important;
    }

    .custom_contact .wpforms-one-half {
        width: 100% !important;
        margin-left: 0 !important;
    }

    .custom_contact .wpforms-submit {
        height: 50px !important;
    }
}




.wd-widget-collapse .widget-title:after {
    color: #000 !important;
}








.ns-single-blog .grid-copy {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 24px 0;
}

.ns-single-blog .grid-copy .div-block-21 {
    padding: 14px 28px !important;
    margin: 0 !important;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    background: #fff;
/*    display: flex;
*/    align-items: center;
    min-height: 42px;
    box-sizing: border-box;
}

.ns-single-blog .grid-copy .div-block-21 h3 {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.35;
    width: 100%;
    font-size: 16px !important;
}




/* MPI Flow Design */
.ns-single-blog .div-block-19 > .grid-copy {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin: 36px 0 0;
    padding: 0;
    flex-wrap: wrap;
}

.ns-single-blog .div-block-19 > .grid-copy .paragraph-49 {
    margin: 0 !important;
}

/* Text cards */
.ns-single-blog .div-block-19 > .grid-copy .paragraph-49:nth-child(1),
.ns-single-blog .div-block-19 > .grid-copy .paragraph-49:nth-child(3),
.ns-single-blog .div-block-19 > .grid-copy .paragraph-49:nth-child(5) {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 22px 26px;
    min-width: 220px;
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(6, 19, 22, 0.06);
}

/* Highlight MPI center card */
.ns-single-blog .div-block-19 > .grid-copy .paragraph-49:nth-child(3) {
    border-color: #08A66A;
    box-shadow: 0 14px 38px rgba(8, 166, 106, 0.12);
}

/* Arrows */
.ns-single-blog .div-block-19 > .grid-copy .paragraph-49:nth-child(2),
.ns-single-blog .div-block-19 > .grid-copy .paragraph-49:nth-child(4) {
    font-size: 34px;
    font-weight: 600;
    color: #08A66A;
    line-height: 1;
    min-width: 34px;
    text-align: center;
}

/* Mobile */
@media (max-width: 767px) {
    .ns-single-blog .div-block-19 > .grid-copy {
        flex-direction: column;
        gap: 16px;
    }

    .ns-single-blog .div-block-19 > .grid-copy .paragraph-49:nth-child(2),
    .ns-single-blog .div-block-19 > .grid-copy .paragraph-49:nth-child(4) {
        transform: rotate(90deg);
    }

    .ns-single-blog .div-block-19 > .grid-copy .paragraph-49:nth-child(1),
    .ns-single-blog .div-block-19 > .grid-copy .paragraph-49:nth-child(3),
    .ns-single-blog .div-block-19 > .grid-copy .paragraph-49:nth-child(5) {
        width: 100%;
        min-width: 100%;
    }
}

p.community-text-3 {
    margin-bottom: 15px ! IMPORTANT;
}




/* ==========================================
   Comparison Table
========================================== */

.table-grid-copy {
    display: grid;
    grid-template-columns: 2.5fr 0.8fr 1fr 1fr 1fr;
    border: 1px solid #dfe7e5;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(6, 19, 22, 0.06);
}

.table-grid-copy > div {
    padding: 16px 18px;
    border-right: 1px solid #dfe7e5;
    border-bottom: 1px solid #dfe7e5;
    display: flex;
    align-items: center;
    min-height: 72px;
    background: #fff;
}

.table-grid-copy > div:nth-child(5n) {
    border-right: none;
}

/* Header Row */
.table-grid-copy > div:nth-child(-n+5) {
    background: #08A66A;
    color: #ffffff;
    font-weight: 700;
    min-height: 80px;
}

.table-grid-copy > div:nth-child(-n+5) p,
.table-grid-copy > div:nth-child(-n+5) strong {
    color: #ffffff;
    margin: 0;
}

/* Paragraph Reset */
.table-grid-copy p {
    margin: 0;
    line-height: 1.5;
    font-size: 15px;
    color: #061316;
}

/* Weight Column */
.table-grid-copy > div:nth-child(5n+2) {
    justify-content: center;
    text-align: center;
    font-weight: 700;
}

/* Partner Columns */
.table-grid-copy > div:nth-child(5n+3),
.table-grid-copy > div:nth-child(5n+4),
.table-grid-copy > div:nth-child(5n+5) {
    justify-content: center;
    text-align: center;
}

/* Alternate Rows */
.table-grid-copy > div:nth-child(10n+6),
.table-grid-copy > div:nth-child(10n+7),
.table-grid-copy > div:nth-child(10n+8),
.table-grid-copy > div:nth-child(10n+9),
.table-grid-copy > div:nth-child(10n+10) {
    background: #f8fbfa;
}

/* Last Row Border Fix */
.table-grid-copy > div:nth-last-child(-n+5) {
    border-bottom: none;
}

/* Tick / Score Styling */
.table-grid-copy .score-high {
    color: #08A66A;
    font-weight: 700;
}

.table-grid-copy .score-medium {
    color: #f59e0b;
    font-weight: 700;
}

.table-grid-copy .score-low {
    color: #ef4444;
    font-weight: 700;
}

/* Mobile */
@media (max-width: 767px) {

    .table-grid-copy {
        grid-template-columns: 1.8fr .8fr .8fr .8fr .8fr;
        font-size: 13px;
        overflow-x: auto;
        display: grid;
    }

    .table-grid-copy > div {
        padding: 12px;
        min-height: 60px;
    }

    .table-grid-copy p {
        font-size: 13px;
        line-height: 1.4;
        word-break: break-word;
    }
}


.ns-single-blog section.section-19 ul li {
    color: #fff !important;
}

.progress-thumb-wrap {
    margin-bottom: 15PX;
}

.div-block-21 {
    margin-bottom: 10px;
}


.mb15{
    margin-bottom: 15px !important;
}
.mb10{
    margin-bottom: 10px !important;
}

.mt10{
    margin-top: 10px !important;
}

.mt15{
    margin-top: 15px !important;
}


.soc2-steps .soc2-step {
    margin-bottom: 10px;
}

.common-title-wrap.templates-heading p {
    margin-bottom: 15px;
}

/* ==========================================
   FAQ ICON STYLING
========================================== */

.faq-heading-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.faq-heading-title-8 {
    flex: 1;
    margin-bottom: 0;
}

/* Circle Background */
.faq-icon-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #eef6f2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    flex-shrink: 0;
}

/* Arrow */
.faq-icon-2 {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #08A66A;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    padding: 0;
    margin: 0;
    transition: transform 0.3s ease;
}

/* Open State */
.faq-item-2.w--open .faq-icon-2,
.faq-item-2.active .faq-icon-2 {
    transform: rotate(180deg);
}

/* Mobile */
@media (max-width: 767px) {
    .faq-icon-wrap {
        width: 40px;
        height: 40px;
        min-width: 40px;
        margin-left: 12px;
    }

    .faq-icon-2 {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


@media (max-width: 767px) {
    .integration-cards-row {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}