.logo{
    height: 60px;
    width: auto;
}

.timeline-wrapper {
    position: relative;
    padding: 4rem 0;
}

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

.dashed-timeline-line {
    width: 4px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    background: linear-gradient(to bottom, #0d6efd 30%, transparent 70%);
    background-size: 100% 36px;
    animation: vertical-line-run 2s linear infinite;
}

@keyframes section-title-run-center {
    0% { top: 0; }
    50% { top: 40%; }
    100% { top: 0; }
}

.timeline-item {
    width: 45%;
    position: relative;
    margin: 2rem 0;
}

.timeline-item.left { 
    left: 0; 
}
.timeline-item.right { 
    left: 55%; 
}

.timeline-content {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}



.timeline-item.left .timeline-content.card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    border-left: 4px solid #0d6efd;
    border-top: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.timeline-item.right .timeline-content.card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    border-right: 4px solid #0d6efd;
    border-top: 1px solid #dee2e6;
    border-left: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.timeline-arrow-left {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #0d6efd;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
}

.timeline-arrow-right {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #0d6efd;
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .timeline-item,
    .timeline-item.left,
    .timeline-item.right {
        width: 100%;
        left: 0 !important;
        margin-left: 0;
        margin-bottom: 2rem;
    }
    .timeline-arrow-left,
    .timeline-arrow-right {
        display: none;
    }
    .dashed-timeline-line {
        left: 50%;
    }
}

.progress {
    height: 25px;
}
.progress-bar {
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 25px;
}
.section-title p {
    font-size: 1rem;
    color: #555;
}

.topbar-items{
    height: 45px;
}

.footer-bottom-bar{
    background: #061429;
}

.footer-credit-wrapper{
    height: 75px;
}

.slider-text-wrapper{
    max-width: 900px;
}

.card-inner-wrapper{
    height: 150px;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .card-icon-wrapper {
        width: 50px;
        height: 50px;
    }
}