@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

.shr-timeline-section {
    background-color: #F5F5F5;
    padding: 100px 20px;
    font-family: 'DM Sans', sans-serif;
    color: #333333;
}

.shr-timeline-container {
    max-width: 1000px;
    margin: 0 auto;
}

.shr-timeline-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.shr-timeline-title {
    font-family: Georgia, serif;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.shr-timeline-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

.shr-timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto 60px;
}

.shr-timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #dcdcdc;
    transform: translateX(-50%);
}

.shr-timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.shr-timeline-item:last-child {
    margin-bottom: 0;
}

.shr-timeline-item.left {
    justify-content: flex-start;
}

.shr-timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background-color: #0A2540; /* Navy Blue */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    z-index: 2;
    border: 4px solid #F5F5F5;
}

.shr-timeline-content {
    width: calc(50% - 40px);
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
}

/* Add an arrow pointing to the center line */
.shr-timeline-content::before {
    content: '';
    position: absolute;
    top: 16px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.shr-timeline-item.left .shr-timeline-content::before {
    right: -10px;
    border-left: 10px solid #ffffff;
}

.shr-timeline-item.right .shr-timeline-content::before {
    left: -10px;
    border-right: 10px solid #ffffff;
}

.shr-step-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #1a1a1a;
}

.shr-step-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

.shr-timeline-cta {
    text-align: center;
    margin-top: 60px;
}

.shr-btn-start {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #0A2540; /* Navy Blue */
    color: #ffffff !important;
    padding: 16px 36px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.shr-btn-start:hover {
    background-color: #06182a; /* Darker Navy */
    transform: translateY(-2px);
}

.shr-btn-start i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.shr-btn-start:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .shr-timeline-line {
        left: 24px;
    }
    .shr-timeline-item {
        justify-content: flex-end !important;
    }
    .shr-timeline-content {
        width: calc(100% - 70px);
    }
    .shr-timeline-dot {
        left: 24px;
    }
    .shr-timeline-item.left .shr-timeline-content::before,
    .shr-timeline-item.right .shr-timeline-content::before {
        left: -10px;
        right: auto;
        border-right: 10px solid #ffffff;
        border-left: none;
    }
}
