
   
 :root {
        --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
        --font-serif: "Playfair Display", serif;
        --brand-red: #D62928;
        --brand-cream: #faf9f6;
    }

    body {
        font-family: var(--font-sans);
        background-color: var(--brand-cream);
        margin: 0;
        color: #1e1e1e;
    }

    .font-serif {
        font-family: var(--font-serif);
    }

    .font-serif-black {
        font-family: var(--font-serif);
        font-weight: 900;
    }

    /* Brand colors utility classes */
    .bg-brand-cream {
        background-color: var(--brand-cream) !important;
    }

    .bg-brand-red {
        background-color: var(--brand-red) !important;
    }

    .bg-brand-red-light {
        background-color: rgba(214, 41, 40, 0.1) !important;
    }

    .text-brand-red {
        color: var(--brand-red) !important;
    }

    .text-brand-muted {
        color: #5c4e3d !important;
        /* warm dark brown for readability on cream */
    }

    .border-brand {
        border: 1px solid rgba(214, 41, 40, 0.2) !important;
    }

    .border-brand-subtle {
        border-color: rgba(214, 41, 40, 0.1) !important;
    }

    /* Buttons */
    .btn-brand-red {
        background-color: var(--brand-red) !important;
        color: #fff !important;
        border: none;
        transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .btn-brand-red:hover {
        background-color: #b11f1f !important;
        transform: translateY(-2px);
    }

    .btn-outline-brand-red {
        border: 2px solid var(--brand-red) !important;
        color: var(--brand-red) !important;
        background: transparent;
    }

    .btn-outline-brand-red:hover {
        background-color: var(--brand-red) !important;
        color: #fff !important;
    }

    /* Navbar (Positivus style) */
    .navbar-new {
        background-color: var(--brand-cream);
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(214, 41, 40, 0.1);
    }

    .navbar-brand {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--brand-red);
        text-decoration: none;
        letter-spacing: -0.02em;
    }

    .navbar-brand:hover {
        color: var(--brand-red);
    }

    .nav-links a {
        text-decoration: none;
        color: #2d2d2d;
        font-weight: 500;
        transition: color 0.2s;
    }

    .nav-links a:hover {
        color: var(--brand-red);
    }

    .nav-links .request-quote {
        background-color: transparent;
        border: 2px solid var(--brand-red);
        color: var(--brand-red);
        padding: 0.5rem 1.5rem;
        border-radius: 40px;
        font-weight: 600;
        transition: 0.2s;
    }

    .nav-links .request-quote:hover {
        background-color: var(--brand-red);
        color: #fff;
    }

    /* Hero section */
    .hero-clean {
        position: relative;
        overflow: hidden;
    }

    .hero-clean::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--brand-red) 0%, rgba(214, 41, 40, 0.2) 100%);
    }

    .hero-title {
        font-size: 2.9rem;
        line-height: 1.3;
    }

    /* Cards */
    .service-card,
    .task-card,
    .platform-card,
    .testimonial-card,
    .blog-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover,
    .task-card:hover,
    .platform-card:hover,
    .testimonial-card:hover,
    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(214, 41, 40, 0.1) !important;
    }

    /* Accordion customisation */
    .accordion-button::after {
        display: none;
        /* remove default Bootstrap arrow */
    }

    .accordion-button:not(.collapsed) {
        background-color: #FFF3E0;
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }

    .accordion-button i {
        transition: transform 0.2s ease;
    }

    .accordion-button:not(.collapsed) i {
        transform: rotate(45deg);
    }

    .accordion-item {
        overflow: hidden;
    }

    /* Partner logos */
    .trusted-logos span {
        transition: opacity 0.3s ease;
    }

    .trusted-logos span:hover {
        opacity: 1 !important;
        color: var(--brand-red) !important;
    }

.btn-outline-brand-red {
    color: #dc2626;        /* your brand red */
    border: 2px solid #dc2626;
    background: transparent;
}
.btn-outline-brand-red:hover {
    background: #dc2626;
    color: #fff;
}

    /* Fixed buttons */
    .fixed-btn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background-color: var(--brand-red);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: all 0.2s ease;
        z-index: 1040;
        border: none;
    }

    .fixed-btn:hover {
        background-color: #b11f1f;
        transform: scale(1.1);
    }

    #backToTop {
        bottom: 100px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

    #backToTop.show {
        opacity: 1;
        visibility: visible;
    }

    /* Chat modal */
    .chat-modal {
        display: none;
        position: fixed;
        bottom: 100px;
        right: 30px;
        width: 280px;
        background: var(--brand-cream);
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        z-index: 1050;
        padding: 1.2rem;
        border: 1px solid rgba(214, 41, 40, 0.3);
    }

    .chat-modal.open {
        display: block;
    }

    .chat-header {
        font-weight: bold;
        margin-bottom: 8px;
        color: var(--brand-red);
    }

    .chat-close {
        float: right;
        cursor: pointer;
        color: #999;
    }

    .chat-close:hover {
        color: #333;
    }
    /* Auth modal styles */
    .auth-modal {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1060;
        align-items: center;
        justify-content: center;
    }

    .auth-modal.open {
        display: flex;
    }

    .modal-content {
        background: var(--brand-cream);
        border-radius: 2rem;
        padding: 2.5rem;
        max-width: 500px;
        width: 90%;
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(214, 41, 40, 0.2);
    }

    .tab-button {
        padding: 0.75rem 0;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        font-weight: 500;
        color: #999;
        border-bottom: 2px solid transparent;
        transition: 0.2s;
        flex: 1;
    }

    .tab-button.active {
        color: #1a1a1a;
        border-bottom-color: var(--brand-red);
    }

    .tab-content {
        display: none;
    }

    .tab-content.active {
        display: block;
    }

    /* Floating buttons */
    .fixed-btn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background-color: var(--brand-red);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: all 0.2s ease;
        z-index: 1040;
        border: none;
    }

    .fixed-btn:hover {
        background-color: #b11f1f;
        transform: scale(1.1);
    }

    #backToTop {
        bottom: 100px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

    #backToTop.show {
        opacity: 1;
        visibility: visible;
    }

    #chatBtn {
        bottom: 30px;
    }

    .chat-modal {
        display: none;
        position: fixed;
        bottom: 100px;
        right: 30px;
        width: 280px;
        background: var(--brand-cream);
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        z-index: 1050;
        padding: 1.2rem;
        border: 1px solid rgba(214, 41, 40, 0.3);
    }

    .chat-modal.open {
        display: block;
    }

    .chat-header {
        font-weight: bold;
        margin-bottom: 8px;
        color: var(--brand-red);
    }

    .chat-close {
        float: right;
        cursor: pointer;
        color: #999;
    }

    .chat-close:hover {
        color: #333;
    }

   

    /* Navbar */
    .navbar.bg-white {
        background-color: var(--brand-cream) !important;
    }

    /* Sections that were bg-light or custom gray */
    .bg-light,
    .bg-custom-gray {
        background-color: var(--brand-cream) !important;
    }


    /* ================= SERVICES RED & BLACK STYLE ================= */

.services-new {
    background: #f3f3f3;
}

/* Card Base (keep thick border + hard shadow) */
.service-card-new {
    padding: 40px;
    border-radius: 30px;
    min-height: 260px;
    border: 2px solid #111;
    box-shadow: 0 8px 0 #111;
    transition: 0.3s ease;
    position: relative;
}

.service-card-new:hover {
    transform: translateY(-6px);
}

/* 🔴 RED CARD */
.card-red {
    background: #e53935;
    color: white;
}

/* ⚫ BLACK CARD */
.card-black {
    background: #111111;
    color: white;
}

/* Labels */
.label-white {
    background: white;
    color: #111;
    padding: 4px 10px;
    border-radius: 6px;
}

.label-red {
    background: #e53935;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
}

/* Learn More Row */
.learn-row {
    position: absolute;
    bottom: 30px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

/* Arrow Circle */
.circle-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: white;
    color: #111;
}

.form-control:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 0.25rem rgba(214, 41, 40, 0.25);
}
  