/* ============================================================
   Process Steps — Public CSS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

 @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..900;1,9..40,100..900&display=swap');

.ps-section{
     font-family: "DM Sans", sans-serif;
}
/* ============================================================
   TIMELINE NAVIGATOR
   ============================================================ */
.ps-timeline {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 50px;
    gap: 0;
}

/* Horizontal connector line */
.ps-line {
    position: absolute;
    top: 44px; /* center of circle */
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--ps-line-color, #d0d8e8);
    z-index: 0;
}

/* Each step */
.ps-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    cursor: pointer;
    position: relative;
    z-index: 1;
    outline: none;
}

/* Circle */
.ps-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 2px solid var(--ps-inactive-circle, #E2E8F0);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--ps-inactive-circle, #aab8cc);
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.2s;
    margin-bottom: 14px;
}
.ps-step:hover .ps-circle {
    border-color: var(--ps-active-circle, #0D72B8);
    color: var(--ps-active-circle, #0D72B8);
    transform: scale(1.05);
}
.ps-step--active .ps-circle {
    background: var(--ps-active-circle, #0D72B8);
    border-color: var(--ps-active-circle, #0D72B8);
    color: #ffffff;
    transform: scale(1.08);
}
.ps-step:hover.ps-step--active .ps-circle{
    color:white;
}
/* Step label */
.ps-step-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--ps-inactive-label, #49566A);
    text-align: center;
    max-width: 250px;
    line-height: 1.4;
    transition: color 0.3s;
}
.ps-step--active .ps-step-label {
    color: var(--ps-active-label, #000F3A);
    font-weight: 600;
}
.ps-step:hover .ps-step-label {
    color: var(--ps-active-label, #000F3A);
}

/* ============================================================
   CONTENT PANELS
   ============================================================ */
.ps-panels { position: relative; }

.ps-panel { display: none; }
.ps-panel--active { display: block; }

.ps-panel-inner {
    background: var(--ps-card-bg, #ffffff);
    border-radius: 16px;
    padding: 32px 36px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    animation: ps-fadein 0.3s ease;
}

@keyframes ps-fadein {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Left side */
.ps-panel-left { flex: 1; min-width: 0; }

.pd-flex{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.ps-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    box-shadow: 0 10px 25.6px 0 rgba(13, 114, 184, 0.77);
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
    flex-shrink: 0;
}
.ps-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ps-icon-wrap--empty {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: #0D72B8;
}

.ps-badge {
    display: inline-block;
    background: var(--ps-badge-bg, #e8f0fe);
    color: var(--ps-badge-text, #0D72B8);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 0px;
}

.ps-panel-title {
    font-size: 22px;
    font-weight: 700;
    color: #000F3A;
    margin: 0 0 12px;
     font-family: "DM Sans", sans-serif;
    line-height: 1.3;
}

.ps-panel-desc {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

/* Right side — activities */
.ps-panel-right {
    flex: 1;
    min-width: 0;
    padding-top: 4px;
}

.ps-activities-title {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin: 0 0 16px;
}

.ps-activities-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ps-activities-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.ps-check-icon {
    color: var(--ps-active-circle, #0D72B8);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .ps-panel-inner { flex-direction: column; gap: 28px; padding: 24px 20px; }
    .ps-circle { width: 68px; height: 68px; font-size: 15px; }
    .ps-line { top: 34px; }
    .ps-step-label { font-size: 12px; max-width: 100px; }
}

@media (max-width: 600px) {
    .ps-section { padding: 24px 14px 32px; }
    .ps-timeline { gap: 0; }
    .ps-circle { width: 52px; height: 52px; font-size: 13px; margin-bottom: 8px; }
    .ps-line { top: 26px; left: 5%; right: 5%; }
    .ps-step-label { font-size: 11px; max-width: 70px; }
    .ps-panel-title { font-size: 18px; }
    .ps-panel-inner { padding: 18px 14px; }
}
