/* Our Story Page Specific Styles */
/* Ensure top bar elements receive pointer events */
/* Improve hover states */

.uk-timeline {
    position: relative;
}

.uk-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background: var(--primary-color);
    z-index: 1;
}

.uk-timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 80px;
}

.uk-timeline-icon {
    position: absolute;
    left: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 0 4px white, 0 0 0 6px var(--primary-color);
}

.uk-timeline-content {
    position: relative;
    margin-left: 15px;
}

/* Hero section overlay */
.uk-height-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

.uk-height-large .uk-container {
    position: relative;
    z-index: 1;
}

/* Founder image styling */
.uk-border-circle {
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .uk-timeline::before {
        left: 20px;
    }

    .uk-timeline-item {
        padding-left: 60px;
    }

    .uk-timeline-icon {
        width: 40px;
        height: 40px;
    }

    .uk-timeline-content {
        margin-left: 0;
    }
}