/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333;
    line-height: 1.6;
}

/* Section Header */
.journey-section {
    /* padding: 80px 20px; */
    max-width: 1200px;
    margin: 80px auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.journey-header {
    text-align: center;
    margin-bottom: 50px;
}

.journey-header .subheading {
    font-size: 1.2rem;
    /* text-transform: capitalize; */
    margin-bottom: 10px;
    border-radius: 50px;
    border: 1px solid #98adff;
    padding: 8px 20px;
    display: inline;
    font-weight: 550;
    /* text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem; */
}

.journey-header h2 {
    font-size: 2.2rem;
    margin: 15px 0;
    color: #25228d;
    line-height: 1.3;
    max-width: 900px;
    text-align: center;
}

.journey-header .intro {
    color: #333;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #98adff;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}

.timeline-content {
    width: 45%;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content.left {
    left: 0;
    transform: translateX(-30px);
}

.timeline-content.right {
    left: 55%;
    transform: translateX(30px);
}

.timeline-content .icon {
    width: 50px;
    height: 50px;
    background: #181818;
    color: #fff;
    /* font-size: 1.5rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0a0a0a;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #555;
}

.timeline-content .year {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #25228d;
    font-weight: bold;
}

/* Closing Section */
.journey-closing {
    width: 100%;
    max-width: 1400px;
    text-align: center;
    padding: 50px 20px;
    margin-top: 60px;
    /* background-color: #25228d; */
}

.journey-closing h3 {
    font-size: 1.8rem;
    color: #4d0c81;
    margin-bottom: 15px;
}

.journey-closing p {
    color: #555;
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 1rem;
}

.journey-closing .highlight {
    color: #cb1725;
}

.cta-btn {
    background: #2e23df;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #25228d;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .timeline-content {
        width: 50%;
    }

    .timeline-content.right {
        left: 50%;
        transform: translateX(20px);
    }
}

@media screen and (max-width: 768px) {

    .journey-header{
        padding: 0;

        .subheading{
            font-size: 1rem !important;
        }

        h2{
            font-size: 1.8rem !important;
            line-height: 2.2rem !important;
        }
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        left: 40px !important;
        transform: translateX(0) !important;
        margin-bottom: 30px;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    .timeline-content .year {
        font-size: 0.8rem;
    }
}