/* ============================================================
   Arcprojects.io — shared custom styles
   Loaded site-wide from the app origin via ~/css/site-custom.css
   (kept out of the inline <style> in _Layout to reduce page weight).
   ============================================================ */

/* Toast/alert container (was inline in _Layout) */
.alerts-container {
    position: fixed;
    z-index: 999999999;
    width: auto;
    right: 0;
    bottom: 0;
}

/* Inline newsletter subscribe row (was inline in _Layout) */
.subscribe-inline {
    display: flex !important;
    align-items: center;
    width: 100%;
    gap: 10px;
}

    .subscribe-inline input {
        flex: 1;
        height: 52px;
        padding: 0 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        width: auto !important;
    }

    .subscribe-inline button {
        height: 52px;
        padding: 0 22px;
        border: none;
        border-radius: 6px;
        white-space: nowrap;
        background: #0d1b3e;
        color: #fff;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: auto !important;
        min-width: 130px;
    }

/* ------------------------------------------------------------
   Shared content card — used on Services, Features, Who Uses,
   Why Arcprojects, About Us, Home, Contact, Pricing, Login,
   Register content sections.
   ------------------------------------------------------------ */
.arc-content-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px 26px;
    height: 100%;
    border: 1.5px solid #e9edf5;
    border-top: 3px solid #1E3A5F;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
    transition: box-shadow .25s ease, transform .25s ease;
}

    .arc-content-card:hover {
        box-shadow: 0 10px 30px rgba(30, 58, 95, .12);
        transform: translateY(-4px);
    }

    .arc-content-card h3 {
        color: #1E3A5F;
        font-size: 1.05rem;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .arc-content-card p {
        color: #555;
        line-height: 1.7;
        margin-bottom: 0;
    }
