
:root {
    --ddd-primary: #e93191;
    --ddd-primary-dark: #c51e78;
    --ddd-secondary: #ffad3d;
    --ddd-sky: #41bfe9;
    --ddd-green: #91ca56;
    --ddd-mint: #5fb27a;
    --ddd-yellow: #ffe45a;
    --ddd-coral: #fb6f49;
    --ddd-lavender: #b879bf;
    --ddd-light: #fff9f2;
    --ddd-soft-pink: #fff0f8;
    --ddd-dark: #292536;
    --ddd-muted: #6c6778;
    --ddd-border: #efe6f2;
    --ddd-shadow: 0 16px 40px rgba(41, 37, 54, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
/*    padding-top: 80px;*/
    color: var(--ddd-dark);
    background: #fff;
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
   
}

a {
    color: var(--ddd-primary);
}

    a:hover {
        color: var(--ddd-primary-dark);
    }

.ddd-navbar {
    min-height: 68px;
    border-bottom: 1px solid var(--ddd-border);
}

.ddd-logo {
    width: 112px;
    height: auto;
}

.navbar .btn,
.btn {
    border-radius: 999px;
    font-weight: 700;
}

.btn-primary {
    --bs-btn-bg: var(--ddd-primary);
    --bs-btn-border-color: var(--ddd-primary);
    --bs-btn-hover-bg: var(--ddd-primary-dark);
    --bs-btn-hover-border-color: var(--ddd-primary-dark);
    --bs-btn-active-bg: var(--ddd-primary-dark);
    --bs-btn-active-border-color: var(--ddd-primary-dark);
}

.btn-outline-primary {
    --bs-btn-color: var(--ddd-primary);
    --bs-btn-border-color: var(--ddd-primary);
    --bs-btn-hover-bg: var(--ddd-primary);
    --bs-btn-hover-border-color: var(--ddd-primary);
    --bs-btn-active-bg: var(--ddd-primary-dark);
    --bs-btn-active-border-color: var(--ddd-primary-dark);
}

.mt_80 {
    margin-top: 80px;
}

.ddd-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--ddd-border);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(233, 49, 145, 0.12), rgba(65, 191, 233, 0.12)), #fff;
    box-shadow: var(--ddd-shadow);
   
}

.brand-logo{
    width:160px !important;
}

.ddd-hero::after {
    position: absolute;
    right: 24px;
    bottom: 14px;
    color: rgba(184, 121, 191, 0.22);
    content: "*";
    font-size: 4.5rem;
    line-height: 1;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    border-radius: 999px;
    background: #fff;
    color: var(--ddd-primary-dark);
    font-size: 0.9rem;
    font-weight: 800;
}

.summary-card,
.support-card,
.timeline-card {
    border: 1px solid var(--ddd-border);
    border-radius: 8px;
    box-shadow: var(--ddd-shadow);
}

.summary-label {
    color: var(--ddd-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.summary-value {
    color: var(--ddd-dark);
    font-weight: 800;
}

.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

    .timeline::before {
        position: absolute;
        top: 18px;
        bottom: 18px;
        left: 20px;
        width: 3px;
        border-radius: 999px;
        background: var(--ddd-border);
        content: "";
    }

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 1rem;
}

.timeline-dot {
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(41, 37, 54, 0.12);
    font-size: 1rem;
    font-weight: 900;
}

.timeline-item.completed .timeline-dot {
    background: var(--ddd-green);
    color: #17230c;
}

.timeline-item.active .timeline-dot {
    background: var(--ddd-primary);
    color: #fff;
}

.timeline-item.pending .timeline-dot {
    background: #f1eef4;
    color: var(--ddd-muted);
}

.timeline-item.completed .timeline-card {
    border-left: 5px solid var(--ddd-green);
}

.timeline-item.active .timeline-card {
    border-left: 5px solid var(--ddd-primary);
    background: linear-gradient(90deg, var(--ddd-soft-pink), #fff 45%);
}

.timeline-item.pending .timeline-card {
    border-left: 5px solid #d8d2de;
}

.badge-soft-success {
    background: rgba(145, 202, 86, 0.18);
    color: #315410;
}

.badge-soft-active {
    background: rgba(233, 49, 145, 0.14);
    color: var(--ddd-primary-dark);
}

.badge-soft-pending {
    background: #f1eef4;
    color: var(--ddd-muted);
}

.feature-strip {
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(255, 173, 61, 0.15), rgba(255, 228, 90, 0.18));
}

.form-control,
.form-select {
    border-color: var(--ddd-border);
    border-radius: 8px;
}

    .form-control:focus,
    .form-select:focus {
        border-color: var(--ddd-primary);
        box-shadow: 0 0 0 0.25rem rgba(233, 49, 145, 0.16);
    }

    .form-control::placeholder {
        color: #9b94a6;
        font-size: 0.9rem;
    }

.ddd-footer {
    border-top: 1px solid var(--ddd-border);
    background: #fff;
}

@media (max-width: 575.98px) {
    body {
        padding-top: 106px;
    }

    .mt_80 {
        margin-top: 0px;
    }

    .ddd-navbar {
        min-height: 92px;
    }

    .ddd-logo {
        width: 98px;
    }

    .ddd-hero::after {
        display: none;
    }

    .timeline-item {
        gap: 0.75rem;
    }
}

@media (min-width: 768px) {
    .w-md-auto {
        width: auto !important;
    }
}


/*login-page-css-start*/
.ddd-page {
    min-height: 100vh;
    background: #f4f1fb;
    display: flex;
    justify-content: center;
    align-items: flex-start;
/*    padding-top: 40px;*/
}

.ddd-logo {
    width: 112px;
    height: auto;
}

.ddd-card {
    width: 460px;
    background: #ffffff;
    border: 1px solid #ebe5fb;
    border-radius: 10px;
    padding: 42px 40px 38px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0,0,0,.03);
}

.ddd-icon {
    font-size: 52px;
    line-height: 1;
    margin-bottom: 16px;
}

.ddd-title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    color: #7c4dff;
}

.ddd-subtitle {
    margin: 0 auto 28px;
    max-width: 320px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.8;
}

.ddd-form {
    display: flex;
    gap: 12px;
}

.ddd-input {
    flex: 1;
    height: 44px;
    border: 1px solid #d7c9ff;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 14px;
    outline: none;
    color: #475569;
}

    .ddd-input::placeholder {
        color: #94a3b8;
    }

    .ddd-input:focus {
        border-color: #b89cff;
        box-shadow: 0 0 0 3px rgba(124,77,255,.12);
    }

.ddd-btn {
    width: 80px;
    height: 44px;
    border: none;
    border-radius: 10px;
    background: #b194e8;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
}

    .ddd-btn:hover:not(:disabled) {
        background: #a382e2;
    }

    .ddd-btn:disabled {
        opacity: .7;
        cursor: not-allowed;
    }

@media (max-width: 576px) {

    .ddd-page {
        padding: 20px;
    }

    .ddd-card {
        width: 100%;
        padding: 30px 20px;
    }

    .ddd-form {
        flex-direction: column;
    }

    .ddd-btn {
        width: 100%;
    }
}
/*login-page-css-end*/

