/* ==========================================
   Process/Timeline Page
   ========================================== */
section {
    padding: 60px 0;
}
.page-header {
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    padding: 150px 0 80px 0;
    text-align: center;
    color: var(--white);
    margin-top: 0;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-header h1{
    font-size: 50px;
    color: var(--yellow);
}
.page-header p{
    font-size: 22px;
    padding: 20px 30px;
    
}
.process-section {
    background: var(--white);
}

.timeline {
    max-width: 900px;
    margin: 50px auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--yellow), var(--golden));
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 100px;
    height: 100px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.timeline-icon i {
    font-size: 40px;
    color: var(--black);
}

.step-number {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: var(--golden);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.timeline-content {
    flex: 1;
    padding: 30px;
    background: var(--gray);
    border-radius: 15px;
    margin: 0 30px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--black);
}

.process-benefits {
    background: var(--gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 10px gray;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 160, 23, 0.3);
}

.benefit-card i {
    font-size: 50px;
    color: var(--golden);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.cta-section {
    background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
    text-align: center;
    color: var(--white);
    padding: 80px 0;
}
.cta-section h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
}
.btn-primary {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s 
ease;
    border: 2px solid var(--yellow);
}
.btn-primary:hover {
    background: var(--golden);
    border-color: var(--golden);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 160, 23, 0.4);
}
/* .section-title {
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
} */

.section-title {
    font-size: 45px;
    font-weight: 600;
    text-align: center;
    color: var(--black);
    margin-bottom: 20px;
    position: relative;
    /* display: inline-block; */
}
@media only screen and (max-width:500px){
    .section-title {
        font-size: 32px;
    }
}
